This repository was archived by the owner on Jan 31, 2026. It is now read-only.
Conversation
- Update .nvmrc from lts/fermium (Node 14) to Node 22 - Add engines field to root package.json (>=22) - Update engines field in example/package.json (>=22) - Pin CI workflow to Node 22 for reproducible builds
Greptile SummaryThis PR cleanly upgrades the project from Node.js 14 (EOL April 2023) to Node.js 22 LTS. All changes are consistent and properly updated across configuration files. Key Changes:
Note: Confidence Score: 5/5
Important Files Changed
|
71c5648 to
67a7831
Compare
BREAKING CHANGE: Minimum Node.js version is now 22.12.0 - Update .nvmrc from lts/fermium (Node 14) to 22.12.0 - Add engines field to root package.json (>=22) - Update engines field in example/package.json (>=22) - Update CI workflows to use Node 22.12.0
safaiyeh
pushed a commit
that referenced
this pull request
Dec 27, 2025
# [4.0.0](v3.3.0...v4.0.0) (2025-12-27) ### chore * upgrade to Node.js 22 LTS ([#582](#582)) ([ddba249](ddba249)) ### BREAKING CHANGES * Minimum Node.js version is now 22.12.0 - Update .nvmrc from lts/fermium (Node 14) to 22.12.0 - Add engines field to root package.json (>=22) - Update engines field in example/package.json (>=22) - Update CI workflows to use Node 22.12.0
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
Upgrades the repository to use Node.js 22 LTS (the current Long-Term Support version).
Changes
.nvmrclts/fermium(Node 14)22package.json"engines": { "node": ">=22" }example/package.json"node": ">=18""node": ">=22".github/workflows/codeql.ymlnode-version: "lts/*"node-version: "22"Why