Skip to content

Commit a80f8ff

Browse files
committed
[api-minor] Update the supported Node.js "patch" versions
We haven't made any changes to the supported Node.js versions for close to a year, however now seems like a good time to do so in order to unblock future (major version) package upgrades. - Babel version `8` is now close to release, since https://github.com/babel/babel/releases contain an 8-RC version and according to [this article](https://babel.dev/blog/2026/01/31/7.29.0) no new `7` releases are planned. See also https://babel.dev/blog/2025/05/30/babel-8-beta and note the supported Node.js versions in https://next.babeljs.io/docs/v8-migration/#nodejs-support - ESLint version `10` was just released, see https://eslint.org/blog/2026/02/eslint-v10.0.0-released/ and note the supported Node.js versions in https://eslint.org/docs/latest/use/migrate-to-10.0.0#-nodejs--v2019-v21-v23-are-no-longer-supported
1 parent c00591c commit a80f8ff

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

gulpfile.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2284,7 +2284,7 @@ function packageJson() {
22842284
url: `git+${DIST_GIT_URL}`,
22852285
},
22862286
engines: {
2287-
node: ">=20.16.0 || >=22.3.0",
2287+
node: ">=20.19.0 || >=22.13.0 || >=24",
22882288
},
22892289
scripts: {},
22902290
};

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"url": "git://github.com/mozilla/pdf.js.git"
6767
},
6868
"engines": {
69-
"node": ">=20.16.0 || >=22.3.0"
69+
"node": ">=20.19.0 || >=22.13.0 || >=24"
7070
},
7171
"license": "Apache-2.0"
7272
}

0 commit comments

Comments
 (0)