CLXP-879: Node 22 β BREAKING engines bump (semver-major, owner gates publish)#155
Merged
Conversation
Bump the published @coorpacademy/update-node tool to Node 22 as part of the Node EOL remediation (CLXP-879). - .nvmrc: v20.17.0 -> v22.0.0 - package.json engines.node: >=18.12.1 -> >=22.0.0 (BREAKING) - .travis.yml: default node_js 20 -> 22; drop Node 18 test job (keep 20, 22) - .github/workflows/ci.yml: drop 18.x from matrix (keep 20.x, 22.x) The engines floor is a semver-major break for consumers still on Node <22. Recommend releasing as v8.0.0. Maintainer controls the actual npm publish. Test/integration fixtures (Node 12/14/18 + Python 3.8) left untouched. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Reportβ
All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #155 +/- ##
=======================================
Coverage 75.12% 75.12%
=======================================
Files 19 19
Lines 619 619
=======================================
Hits 465 465
Misses 154 154 β View full report in Codecov by Harness. π New features to boost your workflow:
|
esa-coorp
approved these changes
Jun 5, 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.
CLXP-879: Node EOL remediation β bump to Node 22
This is part of the Node EOL remediation track.
@coorpacademy/update-nodeis a published npm tool, so bumping the engines floor is a BREAKING change.package.jsonengines.nodemoves from>=18.12.1β>=22.0.0.v8.0.0(semver MAJOR). The current version is7.7.0.npm publishβ this PR only lands the source change. No publish is performed here.Changes
.nvmrcv20.17.0βv22.0.0package.jsonengines.node:>=18.12.1β>=22.0.0(npmfield unchanged β it was never set).travis.ymlnode_js20β22; dropped the Node 18 test job (matrix now 20 + 22).github/workflows/ci.yml18.xfrom the matrix (now['20.x', '22.x'])Explicitly NOT touched
test/integration/β the Node 12/14/18 + Python 3.8 values there are intentional input fixtures for the tool's own patching tests, not runtime targets.Consumer note
Validation
package.jsonre-parsed withnode -e JSON.parseβ.travis.ymlre-parsed (YAML anchors resolve; test jobs = node20, node22) βnpm install/ full test run β CI validates.π€ Generated with Claude Code