hotfix: release stabilization v1.3.6 (r1)#109
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.
Problem
Post-release UAT for v1.3.6 failed in quality_install_path_versions. The source-build leg assumed every repo-local build must report 0.0.0-dev, which is not stable across release-tagged checkout states.
Root Cause
The install-path smoke script hard-coded a dev-only expectation for the source-build path instead of validating the actual source-build version surface consistently. Release installer and Homebrew paths still need exact release-version assertions, but the repo-local source build can legitimately vary with build metadata context.
Fix
Update scripts/test_cli_version_install_paths.sh so the source-build leg captures the built binary's plain --version output and asserts that all JSON version selectors agree with that same value. Keep exact release-version assertions unchanged for installer and Homebrew paths.
Validation