[AAASM-2105] 🔧 (npm): Bump root + 4 runtime sub-packages to 0.0.1-alpha.2#58
Conversation
Continue the cross-repo pre-release dry-run series. Single-line version bump per package.json (5 files total: root + 4 runtime-*). pnpm-lock.yaml unchanged — the AAASM-2098 fix means optionalDependencies use `workspace:*` which resolves to local workspace links that store no version (`version: link:packages/...`). Verified: * `pnpm install --frozen-lockfile` → exit 0 * `pnpm test --run` → 179 passed, 0 failed, 2 skipped Tracked: AAASM-2105
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
|
Claude Code review — AAASM-2105CI state24/25 SUCCESS — The Windows failure is a runner-environmental timing flakeThe test asserts that the maximum event-loop lag across a 10k- The threshold of 250ms is fragile on Windows. The right long-term fix is one of:
Out of scope for this PR — it's a pure version bump. The flaky-test fix deserves its own follow-up ticket if the rerun doesn't clear it. I've initiated a job rerun via Scope vs. acceptance criteria
Compared to the alpha-1 bump (AAASM-1934)
The AAASM-2098 fix shrinks every future workspace bump by 6+ lines and eliminates the lockfile-drift class of bug. This PR is the first demonstration of that win. VerdictReady for human approval and merge — pending Windows job rerun. The single failure is a documented platform-specific timing-flake category that the user pre-authorized to ignore. The scope-AC items are all satisfied; the lockfile-stable property from AAASM-2098 works exactly as intended. — Claude Code (Opus 4.7, 1M context) |



Description
Bump
node-sdkfrom0.0.1-alpha.1→0.0.1-alpha.2for the cross-repo alpha-2 pre-release dry-run.Diff
5 single-line version-field edits in
package.jsonfiles:package.json(root)packages/runtime-darwin-arm64/package.jsonpackages/runtime-darwin-x64/package.jsonpackages/runtime-linux-arm64/package.jsonpackages/runtime-linux-x64/package.jsonpnpm-lock.yamlunchanged — this is the AAASM-2098 fix paying off. Theworkspace:*protocol inoptionalDependenciesresolves to local workspace links (version: link:packages/runtime-*) which store no version, so workspace bumps don't drift the lockfile.Compared to the alpha-1 bump (AAASM-1934), this PR is 6 lines smaller and zero lockfile churn.
Related Issues
Testing
pnpm install --frozen-lockfile— exit 0pnpm test --run— 179 passed, 0 failed, 2 skippedgrep -rnE '"version": "0\.0\.1-alpha\.1"' package.json packages/— 0 hits— Claude Code (Opus 4.7, 1M context)