Skip to content

Commit efd3c9c

Browse files
committed
2022-10-25, Version 18.12.0 'Hydrogen' (LTS)
Notable changes: This release marks the transition of Node.js 18.x into Long Term Support (LTS) with the codename 'Hydrogen'. The 18.x release line now moves into "Active LTS" and will remain so until October 2023. After that time, it will move into "Maintenance" until end of life in April 2025. PR-URL: #45100
1 parent e749bbd commit efd3c9c

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Select a Node.js version below to view the changelog history:
44

55
* [Node.js 19](doc/changelogs/CHANGELOG_V19.md) **Current**
6-
* [Node.js 18](doc/changelogs/CHANGELOG_V18.md) **Current**
6+
* [Node.js 18](doc/changelogs/CHANGELOG_V18.md) **Long Term Support**
77
* [Node.js 17](doc/changelogs/CHANGELOG_V17.md) End-of-Life
88
* [Node.js 16](doc/changelogs/CHANGELOG_V16.md) **Long Term Support**
99
* [Node.js 15](doc/changelogs/CHANGELOG_V15.md) End-of-Life
@@ -29,7 +29,7 @@ release.
2929
<table>
3030
<tr>
3131
<th title="Current"><a href="doc/changelogs/CHANGELOG_V19.md">19</a> (Current)</th>
32-
<th title="Current"><a href="doc/changelogs/CHANGELOG_V18.md">18</a> (Current)</th>
32+
<th title="LTS Until 2025-04"><a href="doc/changelogs/CHANGELOG_V18.md">18</a> (LTS)</th>
3333
<th title="LTS Until 2023-09"><a href="doc/changelogs/CHANGELOG_V16.md">16</a> (LTS)</th>
3434
<th title="LTS Until 2023-04"><a href="doc/changelogs/CHANGELOG_V14.md">14</a> (LTS)</th>
3535
<th title="LTS Until 2022-04"><a href="doc/changelogs/CHANGELOG_V12.md">12</a> (LTS)</th>
@@ -39,7 +39,8 @@ release.
3939
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.0.0">19.0.0</a></b><br/>
4040
</td>
4141
<td valign="top">
42-
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.11.0">18.11.0</a></b><br/>
42+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.12.0">18.12.0</a></b><br/>
43+
<a href="doc/changelogs/CHANGELOG_V18.md#18.11.0">18.11.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V18.md#18.10.0">18.10.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V18.md#18.9.1">18.9.1</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V18.md#18.9.0">18.9.0</a><br/>

doc/changelogs/CHANGELOG_V18.md

+15
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@
44

55
<table>
66
<tr>
7+
<th>LTS 'Hydrogen'</th>
78
<th>Current</th>
89
</tr>
910
<tr>
1011
<td>
12+
<a href="#18.12.0">18.12.0</a><br/>
13+
</td>
14+
<td>
1115
<a href="#18.11.0">18.11.0</a><br/>
1216
<a href="#18.10.0">18.10.0</a><br/>
1317
<a href="#18.9.1">18.9.1</a><br/>
@@ -46,6 +50,17 @@
4650
* [io.js](CHANGELOG_IOJS.md)
4751
* [Archive](CHANGELOG_ARCHIVE.md)
4852

53+
<a id="18.12.0"></a>
54+
55+
## 2022-10-25, Version 18.12.0 'Hydrogen' (LTS), @ruyadorno and @RafaelGSS
56+
57+
### Notable Changes
58+
59+
This release marks the transition of Node.js 18.x into Long Term Support (LTS)
60+
with the codename 'Hydrogen'. The 18.x release line now moves into "Active LTS"
61+
and will remain so until October 2023. After that time, it will move into
62+
"Maintenance" until end of life in April 2025.
63+
4964
<a id="18.11.0"></a>
5065

5166
## 2022-10-13, Version 18.11.0 (Current), @danielleadams

test/parallel/test-process-release.js

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
2323
assert.strictEqual(process.release.lts, 'Fermium');
2424
} else if (versionParts[0] === '16' && versionParts[1] >= 13) {
2525
assert.strictEqual(process.release.lts, 'Gallium');
26+
} else if (versionParts[0] === '18' && versionParts[1] >= 12) {
27+
assert.strictEqual(process.release.lts, 'Hydrogen');
2628
} else {
2729
assert.strictEqual(process.release.lts, undefined);
2830
}

0 commit comments

Comments
 (0)