docs: fix broken compare links in CHANGELOG files#953
Open
netbrah wants to merge 1 commit intoanthropics:mainfrom
Open
docs: fix broken compare links in CHANGELOG files#953netbrah wants to merge 1 commit intoanthropics:mainfrom
netbrah wants to merge 1 commit intoanthropics:mainfrom
Conversation
Fixes anthropics#875 Several compare links in CHANGELOG.md files referenced non-existent tags, producing 404s on GitHub: - Root: v0.50.0 section URL pointed to sdk-v0.42.0 (doesn't exist) instead of sdk-v0.50.0 - Root: v0.12.4 section referenced sdk-v0.12.3 (tag uses v0.12.3 without sdk- prefix) - vertex-sdk: v0.10.0 section linked to v0.7.0...v0.7.1 range (no v0.10.0 tag exists; corrected to v0.7.1...v0.11.0) - vertex-sdk: v0.1.0 section referenced non-existent v0.0.1 tag (initial release, linked to release tag instead) - bedrock-sdk: v0.21.0 section referenced non-existent v0.20.0 tag (corrected to v0.12.7...v0.21.0) - foundry-sdk: v0.2.0 section referenced non-existent v0.1.0 tag (initial release, linked to release tag instead) Made-with: Cursor
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.
Fixes #875
Several compare links across CHANGELOG files referenced non-existent tags, producing 404 errors on GitHub.
Root CHANGELOG.md:
sdk-v0.42.0(doesn't exist) — corrected tosdk-v0.41.0...sdk-v0.50.0sdk-v0.12.3tag doesn't exist (usesv0.12.3prefix) — updated tov0.12.3...sdk-v0.12.4packages/vertex-sdk/CHANGELOG.md:
v0.7.0...v0.7.1(wrong range, no v0.10.0 tag) — corrected tov0.7.1...v0.11.0vertex-sdk-v0.0.1tag doesn't exist — linked to release tag (initial release)packages/bedrock-sdk/CHANGELOG.md:
bedrock-sdk-v0.20.0tag doesn't exist — corrected tov0.12.7...v0.21.0packages/foundry-sdk/CHANGELOG.md:
foundry-sdk-v0.1.0tag doesn't exist — linked to release tag (initial release)All replacement tags verified via
git tag -l.