fix(release): revert v14.3.0 and fix release pipeline Node.js regression#2774
Merged
ankita10119 merged 1 commit intomasterfrom Apr 6, 2026
Merged
fix(release): revert v14.3.0 and fix release pipeline Node.js regression#2774ankita10119 merged 1 commit intomasterfrom
ankita10119 merged 1 commit intomasterfrom
Conversation
Piyush-85
approved these changes
Apr 6, 2026
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.
Changes
The
v14.3.0release was triggered via PR #2773 but failed in CI before npm publish completed. The version bump was merged to master but the package was never actually published to npm, leaving master in an inconsistent state with a version number that doesn't exist on the registry.Revert v14.3.0 version bump
Reverts
package.json,package-lock.json,.version,README.md, andCHANGELOG.mdback to 14.2.5. Since 14.3.0 was never published to npm, the next successful release will use 14.3.0 again, this revert simply clears the failed release state so the release tooling can re-bump cleanly.Pin Node.js to
22.22.1inrelease.ymlThe root cause of the release failure: Node.js
22.22.2(the version currently resolved by node-version: 22 on the latest GitHub Actions runner images) ships with a broken bundled npm that is missing the promise-retry internal module. This causes the npm install -g npm@11 step to fail with Cannot find module 'promise-retry'.This is a confirmed upstream regression tracked at
nodejs/node#62425. Pinning to22.22.1is the recommended temporary workaround until a fixed patch is released upstream, at which point node-version: 22 can be restored.References
nodejs/node#62425Testing
Checklist