chore: resync version to the published 0.62.0 - #114
Merged
Conversation
The publish workflow bumps the version itself, publishes, then commits the bump back to main. On 2026-08-11 that commit lost a push race with a concurrent merge, so 0.62.0 reached npm while main stayed at 0.61.0. Every publish since has bumped 0.61.0 -> 0.62.0 and failed on "cannot publish over the previously published versions: 0.62.0". Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Greptile SummaryResynchronizes the repository package version with the already-published npm version so the release workflow can advance normally.
Confidence Score: 5/5The PR appears safe to merge because it consistently resynchronizes all package-version metadata without changing runtime or specification behavior. The checked-in package and lockfile versions are aligned, the release workflow consumes package.json as expected, and package-only changes do not trigger the publish workflow. Important Files Changed
Reviews (1): Last reviewed commit: "chore: resync version to the published 0..." | Re-trigger Greptile |
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.
Summary
mainsays0.62.0now, matching what is already on npm. This unblocks publishing — no spec, policy, or dist change.The publish workflow bumps the version itself (
npm version minor --no-git-tag-version), publishes, then commits the bump back tomain. On 2026-08-11, run 31499058733 (#99) bumped 0.61.0 → 0.62.0 and published 0.62.0 to npm successfully, then failed on the Commit version bump step:#100 merged mid-run, so the push lost the race. The bump commit never landed and there is no
v0.62.0tag or release, leavingmainat 0.61.0 while npm serves 0.62.0. Every publish run since bumps 0.61.0 → 0.62.0 and dies:That is every run from #99 through #112 — 8+ consecutive failures over ~13 days. Nothing on
mainafter #99's content has been published.Test plan
package.jsonandpackage-lock.json(both the top-level andpackages.""entries) read0.62.0, matchingnpm view @workos/openapi-spec version.release.yml:package.json/package-lock.jsonare deliberately excluded from itspathsfilter to avoid a publish loop, so no run should start on merge.release.ymlviaworkflow_dispatchwithbump: minor→ publishes0.63.0, carrying everything merged since Update OpenAPI spec (750e8f9) #99.Follow-ups (not in this PR)
v0.62.0at Update OpenAPI spec (750e8f9) #99's merge commit so the npm release has a matching tag and GitHub release.git pushhas no rebase or retry, so any two merges landing close together reproduce it. Eithergit pull --rebase origin mainbefore pushing, or move the bump commit ahead ofnpm publishso a lost race fails before publishing rather than after.🤖 Generated with Claude Code