Uh oh!
There was an error while loading. Please reload this page.
Sync the non-npm manifests to 4.5.1 (one-time, unblocks the release) - #189
Merged
Conversation
The release that bumped package.json to 4.5.1 ran from the commit BEFORE the version-sync fix (#186) landed, so it used the old plain `changeset version` with no sync. The next release run then hit the new guard and stopped, exactly as designed: check-versions: FAILED — manifests disagree with package.json (4.5.1) - python/pyproject.toml is at 4.5.0, expected 4.5.1 (package.json) ... (all six) That is the guard working, not a regression — main genuinely carries a package.json bump that never reached the other five manifests. This is the last bump that can happen: from here `changeset version` runs `changeset version && node scripts/sync-versions.mjs`, and the changesets action commits the whole working tree, so the manifests ride along in the bump commit. No changeset on purpose. 4.5.1 was never published — the failing guard skipped every publish step — so merging this lets the release finish 4.5.1 consistently across npm, PyPI, crates.io, the Go tag and NuGet. Adding a changeset would bump to 4.5.2 and strand 4.5.1 in the changelog with nothing published under it. Verified: `uv sync --locked` and `cargo check --locked` both clean at 4.5.1. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0152bbE1veqfG1SVJdyLCBxC
|
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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.
What happened
The release that bumped
package.jsonto4.5.1ran from the commit before the version-sync fix (#186) landed, so it used the old plainchangeset versionwith no sync. The next release run then hit the new guard and stopped:That is the guard doing its job, not a regression.
maingenuinely carries apackage.jsonbump that never reached the other five manifests — the exact defect #186 exists to stop, caught on the last bump the old flow could produce.This is a one-time transition. From here
pnpm run versionischangeset version && node scripts/sync-versions.mjs, andchangesets/actioncommits the whole working tree after the version command, so the synced manifests ride along inside the bump commit.Why no changeset
4.5.1was never published — the failing guard skipped every publish step (npm, PyPI, crates.io, the Go tag, NuGet were allskipped). Merging this lets the release finish4.5.1consistently across all five registries.Adding a changeset would bump to
4.5.2and strand4.5.1in the changelog with nothing published under it. No code changes here, only version metadata.Verification
node scripts/check-versions.mjs→OK (all manifests at 4.5.1)uv sync --locked --group devclean (this is whyuv.lockhad to be in the synced set — it errors outright on a stale lock)cargo check --lockedclean, socargo publish --lockedwill be too🤖 Generated with Claude Code
https://claude.ai/code/session_0152bbE1veqfG1SVJdyLCBxC