fix(release): align the agent-host package version with 0.14.6 - #205
fix(release): align the agent-host package version with 0.14.6#205dajiaohuang 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
|
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 PR targets an obsolete release surface. At current I am leaving this PR open and not merging it as-is. Please rebase it onto the current release surface if a current version alignment is still needed. |
|
I verified this against current I am leaving this PR unmerged because its requested version surface has already advanced on |
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