From 4e0f2773ff9465148a654dd0a2c1668104c20fec Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 23 Oct 2024 15:43:54 +0000 Subject: [PATCH] 2024-10-29, Version 22.11.0 'Jod' (LTS) Notable changes: This release marks the transition of Node.js 22.x into Long Term Support (LTS) with the codename 'Jod'. The 22.x release line now moves into "Active LTS" and will remain so until October 2025. After that time, it will move into "Maintenance" until end of life in April 2027. Other than updating metadata, such as the `process.release` object, to reflect that the release is LTS, no further changes from Node.js 22.10.0 are included. PR-URL: https://github.com/nodejs/node/pull/55504 --- CHANGELOG.md | 11 +++++----- doc/changelogs/CHANGELOG_V22.md | 30 +++++++++++++++++++++++++++ src/node_version.h | 10 ++++----- test/parallel/test-process-release.js | 2 ++ 4 files changed, 43 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0452e6288ebe8d..baeacedd63610d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,11 @@ Select a Node.js version below to view the changelog history: -* [Node.js 22](doc/changelogs/CHANGELOG_V22.md) **Current** +* [Node.js 22](doc/changelogs/CHANGELOG_V22.md) **Long Term Support** * [Node.js 21](doc/changelogs/CHANGELOG_V21.md) **Current** -* [Node.js 20](doc/changelogs/CHANGELOG_V20.md) **Long Term Support** +* [Node.js 20](doc/changelogs/CHANGELOG_V20.md) Long Term Support * [Node.js 19](doc/changelogs/CHANGELOG_V19.md) End-of-Life -* [Node.js 18](doc/changelogs/CHANGELOG_V18.md) **Long Term Support** +* [Node.js 18](doc/changelogs/CHANGELOG_V18.md) Long Term Support * [Node.js 17](doc/changelogs/CHANGELOG_V17.md) End-of-Life * [Node.js 16](doc/changelogs/CHANGELOG_V16.md) End-of-Life * [Node.js 15](doc/changelogs/CHANGELOG_V15.md) End-of-Life @@ -31,14 +31,15 @@ release. - +
22 (Current)22 (LTS) 21 (Current) 20 (LTS) 18 (LTS)
-22.10.0
+22.11.0
+22.10.0
22.9.0
22.8.0
22.7.0
diff --git a/doc/changelogs/CHANGELOG_V22.md b/doc/changelogs/CHANGELOG_V22.md index c5e3816f68b8fe..764b8101de3cfc 100644 --- a/doc/changelogs/CHANGELOG_V22.md +++ b/doc/changelogs/CHANGELOG_V22.md @@ -4,10 +4,14 @@ + +
LTS 'Jod' Current
+22.11.0
+
22.10.0
22.9.0
22.8.0
@@ -49,6 +53,32 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2024-10-29, Version 22.11.0 'Jod' (LTS), @richardlau + +### Notable Changes + +This release marks the transition of Node.js 22.x into Long Term Support (LTS) +with the codename 'Jod'. The 22.x release line now moves into "Active LTS" +and will remain so until October 2025. After that time, it will move into +"Maintenance" until end of life in April 2027. + +Other than updating metadata, such as the `process.release` object, to reflect +that the release is LTS, no further changes from Node.js 22.10.0 are included. + +### OpenSSL 3.x + +Official binaries for Node.js 22.x currently include OpenSSL 3.0.x (more +specifically, the [quictls OpenSSL fork](https://github.com/quictls/openssl)). +OpenSSL 3.0.x is the currently designated long term support version that is +scheduled to be supported until 7th September 2026, which is within the expected +lifetime of Node.js 22.x. We are expecting upstream OpenSSL to announce a +successor long term support version prior to that date and since OpenSSL now +follows a semantic versioning-like versioning scheme we expect to be able to +update to the next long term supported version of OpenSSL during the lifetime of +Node.js 22.x. + ## 2024-10-16, Version 22.10.0 (Current), @aduh95 diff --git a/src/node_version.h b/src/node_version.h index fde5ecfff14172..81f4157b56fc1c 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 22 -#define NODE_MINOR_VERSION 10 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 11 +#define NODE_PATCH_VERSION 0 -#define NODE_VERSION_IS_LTS 0 -#define NODE_VERSION_LTS_CODENAME "" +#define NODE_VERSION_IS_LTS 1 +#define NODE_VERSION_LTS_CODENAME "Jod" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) diff --git a/test/parallel/test-process-release.js b/test/parallel/test-process-release.js index 98a089a8f9ef5a..ae4a02aa850e87 100644 --- a/test/parallel/test-process-release.js +++ b/test/parallel/test-process-release.js @@ -27,6 +27,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) { assert.strictEqual(process.release.lts, 'Hydrogen'); } else if (versionParts[0] === '20' && versionParts[1] >= 9) { assert.strictEqual(process.release.lts, 'Iron'); +} else if (versionParts[0] === '22' && versionParts[1] >= 11) { + assert.strictEqual(process.release.lts, 'Jod'); } else { assert.strictEqual(process.release.lts, undefined); }