Skip to content

Commit fb34515

Browse files
committed
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: #60414
1 parent 77d8197 commit fb34515

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
Select a Node.js version below to view the changelog history:
44

55
* [Node.js 25](doc/changelogs/CHANGELOG_V25.md) **Current**
6-
* [Node.js 24](doc/changelogs/CHANGELOG_V24.md) **Current**
6+
* [Node.js 24](doc/changelogs/CHANGELOG_V24.md) **Long Term Support**
77
* [Node.js 23](doc/changelogs/CHANGELOG_V23.md) End-of-Life
8-
* [Node.js 22](doc/changelogs/CHANGELOG_V22.md) **Long Term Support**
8+
* [Node.js 22](doc/changelogs/CHANGELOG_V22.md) Long Term Support
99
* [Node.js 21](doc/changelogs/CHANGELOG_V21.md) End-of-Life
1010
* [Node.js 20](doc/changelogs/CHANGELOG_V20.md) Long Term Support
1111
* [Node.js 19](doc/changelogs/CHANGELOG_V19.md) End-of-Life
@@ -35,7 +35,7 @@ release.
3535
<table>
3636
<tr>
3737
<th title="Current"><a href="doc/changelogs/CHANGELOG_V25.md">25</a> (Current)</th>
38-
<th title="Current"><a href="doc/changelogs/CHANGELOG_V24.md">24</a> (Current)</th>
38+
<th title="LTS Until 2028-04"><a href="doc/changelogs/CHANGELOG_V24.md">24</a> (LTS)</th>
3939
<th title="LTS Until 2027-04"><a href="doc/changelogs/CHANGELOG_V22.md">22</a> (LTS)</th>
4040
<th title="LTS Until 2026-04"><a href="doc/changelogs/CHANGELOG_V20.md">20</a> (LTS)</th>
4141
</tr>
@@ -44,7 +44,8 @@ release.
4444
<b><a href="doc/changelogs/CHANGELOG_V25.md#25.0.0">25.0.0</a></b><br/>
4545
</td>
4646
<td valign="top">
47-
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.10.0">24.10.0</a></b><br/>
47+
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.11.0">24.11.0</a></b><br/>
48+
<a href="doc/changelogs/CHANGELOG_V24.md#24.10.0">24.10.0</a><br/>
4849
<a href="doc/changelogs/CHANGELOG_V24.md#24.9.0">24.9.0</a><br/>
4950
<a href="doc/changelogs/CHANGELOG_V24.md#24.8.0">24.8.0</a><br/>
5051
<a href="doc/changelogs/CHANGELOG_V24.md#24.7.0">24.7.0</a><br/>

doc/changelogs/CHANGELOG_V24.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@
44

55
<table>
66
<tr>
7+
<th>LTS 'Krypton'</th>
78
<th>Current</th>
89
</tr>
910
<tr>
1011
<td>
12+
<a href="#24.11.0">24.11.0</a><br/>
13+
</td>
14+
<td>
1115
<a href="#24.10.0">24.10.0</a><br/>
1216
<a href="#24.9.0">24.9.0</a><br/>
1317
<a href="#24.8.0">24.8.0</a><br/>
@@ -53,6 +57,19 @@
5357
* [io.js](CHANGELOG_IOJS.md)
5458
* [Archive](CHANGELOG_ARCHIVE.md)
5559

60+
<a id="24.11.0"></a>
61+
62+
## 2025-10-28, Version 24.11.0 'Krypton' (LTS), @richardlau
63+
64+
### Notable Changes
65+
66+
This release marks the transition of Node.js 24.x into Long Term Support (LTS)
67+
with the codename 'Krypton'. It will continue to receive updates through to
68+
the end of April 2028.
69+
70+
Other than updating metadata, such as the `process.release` object, to reflect
71+
that the release is LTS, no further changes from Node.js 24.10.0 are included.
72+
5673
<a id="24.10.0"></a>
5774

5875
## 2025-10-08, Version 24.10.0 (Current), @RafaelGSS

test/parallel/test-process-release.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
2929
assert.strictEqual(process.release.lts, 'Iron');
3030
} else if (versionParts[0] === '22' && versionParts[1] >= 11) {
3131
assert.strictEqual(process.release.lts, 'Jod');
32+
} else if (versionParts[0] === '24' && versionParts[1] >= 11) {
33+
assert.strictEqual(process.release.lts, 'Krypton');
3234
} else {
3335
assert.strictEqual(process.release.lts, undefined);
3436
}

0 commit comments

Comments
 (0)