Standardise post-release dev synchronisation - #53
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Outcome
Post-release synchronization is now an explicit, enforced part of the Optimisarr
release flow. A release cannot quietly leave
devpublishing the previousapplication version again.
What changed
devsynchronization sequenceUnreleasedsection after every releaseOpenAPI drift, and mismatched release tags
Root cause
Release
0.2.9correctly bumped its version on the release branch andmain,but that metadata did not flow back to
dev. Thedevimage thereforecontained the current code while truthfully compiling the stale
0.2.8application version.
The new guard requires development state to match the newest release tag and
requires release/tag state to match its dated changelog heading. The protected
Docker publish job depends on this check.
Scope and safety
This changes release metadata validation and contributor guidance only. It does
not change media processing, database state, replacement safety, or runtime
configuration.
Validation
dotnet build Optimisarr.slnx --configuration Release --warnaserror— zero warnings
dotnet test Optimisarr.slnx --configuration Release --no-build— 1,487 passed
python3 -m unittest discover -s scripts/tests -p 'test_*.py'— 6 passed
python3 scripts/check_release_metadata.pypython3 scripts/check_docs.pygit diff --checkThe existing NVENC harness test requires Bash 4's
mapfile, which macOS'ssystem Bash does not provide; the unchanged test remains part of the Ubuntu CI
documentation job.