2025-10-28, Version 24.11.0 'Krypton' (LTS)

Notable changes:

This release marks the transition of Node.js 24.x into Long Term Support (LTS)
with the codename 'Krypton'. It will continue to receive updates through to
the end of April 2028.

Other than updating metadata, such as the `process.release` object, to reflect
that the release is LTS, no further changes from Node.js 24.10.0 are included.

PR-URL: https://github.com/nodejs/node/pull/60414
This commit is contained in:
Richard Lau 2025-10-24 13:20:33 +00:00
parent 77d81979a3
commit fb3451512b
No known key found for this signature in database
GPG Key ID: C43CEC45C17AB93C
3 changed files with 24 additions and 4 deletions

View File

@ -3,9 +3,9 @@
Select a Node.js version below to view the changelog history:
* [Node.js 25](doc/changelogs/CHANGELOG_V25.md) **Current**
* [Node.js 24](doc/changelogs/CHANGELOG_V24.md) **Current**
* [Node.js 24](doc/changelogs/CHANGELOG_V24.md) **Long Term Support**
* [Node.js 23](doc/changelogs/CHANGELOG_V23.md) End-of-Life
* [Node.js 22](doc/changelogs/CHANGELOG_V22.md) **Long Term Support**
* [Node.js 22](doc/changelogs/CHANGELOG_V22.md) Long Term Support
* [Node.js 21](doc/changelogs/CHANGELOG_V21.md) End-of-Life
* [Node.js 20](doc/changelogs/CHANGELOG_V20.md) Long Term Support
* [Node.js 19](doc/changelogs/CHANGELOG_V19.md) End-of-Life
@ -35,7 +35,7 @@ release.
<table>
<tr>
<th title="Current"><a href="doc/changelogs/CHANGELOG_V25.md">25</a> (Current)</th>
<th title="Current"><a href="doc/changelogs/CHANGELOG_V24.md">24</a> (Current)</th>
<th title="LTS Until 2028-04"><a href="doc/changelogs/CHANGELOG_V24.md">24</a> (LTS)</th>
<th title="LTS Until 2027-04"><a href="doc/changelogs/CHANGELOG_V22.md">22</a> (LTS)</th>
<th title="LTS Until 2026-04"><a href="doc/changelogs/CHANGELOG_V20.md">20</a> (LTS)</th>
</tr>
@ -44,7 +44,8 @@ release.
<b><a href="doc/changelogs/CHANGELOG_V25.md#25.0.0">25.0.0</a></b><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.10.0">24.10.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.11.0">24.11.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V24.md#24.10.0">24.10.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V24.md#24.9.0">24.9.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V24.md#24.8.0">24.8.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V24.md#24.7.0">24.7.0</a><br/>

View File

@ -4,10 +4,14 @@
<table>
<tr>
<th>LTS 'Krypton'</th>
<th>Current</th>
</tr>
<tr>
<td>
<a href="#24.11.0">24.11.0</a><br/>
</td>
<td>
<a href="#24.10.0">24.10.0</a><br/>
<a href="#24.9.0">24.9.0</a><br/>
<a href="#24.8.0">24.8.0</a><br/>
@ -53,6 +57,19 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
<a id="24.11.0"></a>
## 2025-10-28, Version 24.11.0 'Krypton' (LTS), @richardlau
### Notable Changes
This release marks the transition of Node.js 24.x into Long Term Support (LTS)
with the codename 'Krypton'. It will continue to receive updates through to
the end of April 2028.
Other than updating metadata, such as the `process.release` object, to reflect
that the release is LTS, no further changes from Node.js 24.10.0 are included.
<a id="24.10.0"></a>
## 2025-10-08, Version 24.10.0 (Current), @RafaelGSS

View File

@ -29,6 +29,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
assert.strictEqual(process.release.lts, 'Iron');
} else if (versionParts[0] === '22' && versionParts[1] >= 11) {
assert.strictEqual(process.release.lts, 'Jod');
} else if (versionParts[0] === '24' && versionParts[1] >= 11) {
assert.strictEqual(process.release.lts, 'Krypton');
} else {
assert.strictEqual(process.release.lts, undefined);
}