fix(release): align the agent-host package version with 0.14.6 - #205
Open
dajiaohuang wants to merge 1 commit into
Open
fix(release): align the agent-host package version with 0.14.6#205dajiaohuang wants to merge 1 commit into
dajiaohuang wants to merge 1 commit into
Conversation
`packages/agent-host` was added at the stale `0.14.6-rc.4` version and never advanced through rc.5, rc.6, or the 0.14.6 stable release. Every other version surface already states 0.14.6, so `node scripts/check-release-docs.mjs` fails on `main` and `scripts/release.mjs` refuses to tag while any surface disagrees. The package is private and consumed through `workspace:*`, so its version carries no resolution weight; aligning it restores the documented invariant in release-runbook 4.1 without changing any dependency graph. Refs vastsa#200
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
dajiaohuang
force-pushed
the
fix/agent-host-version-surface
branch
from
September 11, 2026 10:52
68a3ac4 to
c54956f
Compare
|
@dajiaohuang is attempting to deploy a commit to the vastsa's projects Team on Vercel. A member of the Team first needs to authorize 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.
Fixes #200.
Summary
packages/agent-host/package.jsonstates0.14.6-rc.4while every other version surface states0.14.6. This restores the invariant that release-runbook 4.1 requires and makes the release preflight pass onmain.Cause
packages/agent-hostwas added byc9f7cd86already carrying the stale0.14.6-rc.4version, and it was not advanced by the laterchore(release)bumps forv0.14.6-rc.5,v0.14.6-rc.6, orv0.14.6.Reproduction
On
mainat6e6d710e:With this change:
Changes
packages/agent-host/package.json:0.14.6-rc.4→0.14.6.Validation
node scripts/check-release-docs.mjs— exit 1 before, exit 0 after. This is the scriptscripts/release.mjsruns before tagging and the onepnpm check:release-docsexposes.pnpm install --frozen-lockfile— passes with the change. The package is private and consumed asworkspace:*, sopnpm-lock.yamlrecordslink:../../packages/agent-hostwith no version and needs no update.pnpm --filter @pi-desktop/agent-host build— passes.pnpm --filter @pi-desktop/agent-host test— 34 tests pass.node scripts/check-style-tokens.mjs— passes.git diff --check— clean.No spec, ADR, or E2E-documentation update is included: this is a version-surface alignment in a private workspace package, with no user-visible or protocol-visible behavior change (R1/R3 do not apply).
🤖 Generated with Claude Code