chore(release): sync manifests to 4.1.27 (publish pushed to npm, version commit lost to a race)#286
chore(release): sync manifests to 4.1.27 (publish pushed to npm, version commit lost to a race)#286khaliqgant wants to merge 1 commit into
Conversation
…-kit@4.1.27 @agentworkforce/runtime@4.1.27 @agentworkforce/compose@4.1.27 @agentworkforce/delivery@4.1.27 @agentworkforce/workload-router@4.1.27 @agentworkforce/deploy@4.1.27 @agentworkforce/mcp-workforce@4.1.27 @agentworkforce/daytona-runner@4.1.27 @agentworkforce/local-surface@4.1.27 @agentworkforce/cli@4.1.27 agentworkforce@4.1.27
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
|
Warning Review limit reached
Next review available in: 16 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (16)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Code Review
This pull request bumps the version of various packages in the repository from 4.1.26 to 4.1.27 and updates the corresponding CHANGELOG.md files to document the release. I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
|
Closing as obsolete — the drift this fixed no longer exists, and merging it now would re-create it in the opposite direction. Releases 4.1.28 and 4.1.29 ran after the failed 4.1.27 job and their version commits landed on main cleanly. Current state:
main and npm are back in sync, and main is now ahead of this PR. Resolving the conflicts in favour of this branch would downgrade main's manifests 4.1.29 → 4.1.27 and break the next release; resolving in favour of main leaves the PR empty. Nothing of substance was lost — the orphaned commit Verified Residue: the 12 The real follow-up stands: the |
What happened
The 4.1.27 publish (
workflow_dispatch, run 29573660080) published all packages to npm successfully and pushed all 12 tags, then failed on its finalTag + pushstep:PR #283 merged to main while the release job was running, so the workflow's version-bump commit could not fast-forward.
Resulting drift
*-v4.1.277fe85f78— not an ancestor of mainThe published artifacts are correct and verified —
@agentworkforce/runtime@4.1.27containsdist/no-reply.jsand theNO_REPLYmarker (#278). Only the repo's record of the release is missing.Left unfixed, the next publish would try to bump 4.1.26 → 4.1.27 again and collide with what's already on npm.
This PR
A clean cherry-pick of the lost release commit
7fe85f78onto current main — the same 16 files (12package.jsonversion bumps + 4 CHANGELOG entries), nothing else.Follow-up worth considering
The
Tag + pushstep pushes tags before pushing the commit, so a race leaves tags published against a commit that never lands — the repo ends up in this split state rather than failing cleanly. Making that stepgit pull --rebasebefore pushing (or pushing the commit before the tags) would make the release idempotent under concurrent merges.