chore(release): bump version 4.8.4 -> 4.8.5 - #302
Merged
Conversation
Shipped files (dist/host-runtime/claude.*) changed after package.json was bumped to 4.8.4: the entry-point start gate, the finish-release real-credential wiring, and the Claude channel intake-instructions fix all landed after that bump commit. A plugin cache keyed by version would stage 4.8.4 and never pick up any of it, so release-preconditions' "shipped files changed after bump" guard refuses to cut 4.8.4 as-is. Bumping to 4.8.5 in its own commit, with nothing shipped changing after it, resolves the guard cleanly instead of working around it.
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.
What it does
Bumps all 10 version anchors (package.json, package-lock.json x2, both plugin.json manifests, marketplace.json, CHANGELOG.md, CODEMAP.md, docs/ARCHITECTURE.md, docs/api/API_REFERENCE.md, herdr-plugin.toml) from 4.8.4 to 4.8.5, renames the CHANGELOG
[4.8.4]section to[4.8.5]with today's date, and adds an entry documenting the Claude channel intake-instructions fix (PR #301).Why it is needed
package.jsonwas bumped to 4.8.4 in an earlier commit, but shipped files (dist/host-runtime/claude.*, from PR #300 and PR #301) kept changing after that bump while chasing this release's own gate failures.scripts/lib/release-preconditions.mjs's "shipped files changed after bump" guard correctly refuses to cut 4.8.4 as-is — a plugin cache keyed by version would stage 4.8.4 and never see those later fixes. Bumping to 4.8.5 in its own commit, with nothing shipped changing after it, resolves this cleanly.How to test
Linked issues
None.