Skip to content

Commit 637d260

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: TODO
1 parent cc6a96f commit 637d260

File tree

4 files changed

+27
-9
lines changed

4 files changed

+27
-9
lines changed

CHANGELOG.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Select a Node.js version below to view the changelog history:
44

5-
* [Node.js 18](doc/changelogs/CHANGELOG_V18.md) **Current**
5+
* [Node.js 18](doc/changelogs/CHANGELOG_V18.md) **Long Term Support**
66
* [Node.js 17](doc/changelogs/CHANGELOG_V17.md) **Current**
7-
* [Node.js 16](doc/changelogs/CHANGELOG_V16.md) **Long Term Support**
7+
* [Node.js 16](doc/changelogs/CHANGELOG_V16.md) Long Term Support
88
* [Node.js 15](doc/changelogs/CHANGELOG_V15.md) End-of-Life
99
* [Node.js 14](doc/changelogs/CHANGELOG_V14.md) Long Term Support
1010
* [Node.js 13](doc/changelogs/CHANGELOG_V13.md) End-of-Life
@@ -27,15 +27,16 @@ release.
2727

2828
<table>
2929
<tr>
30-
<th title="Current"><a href="doc/changelogs/CHANGELOG_V18.md">18</a> (Current)</th>
30+
<th title="LTS Until 2025-04"><a href="doc/changelogs/CHANGELOG_V18.md">18</a> (LTS)</th>
3131
<th title="Current"><a href="doc/changelogs/CHANGELOG_V17.md">17</a> (Current)</th>
3232
<th title="LTS Until 2024-04"><a href="doc/changelogs/CHANGELOG_V16.md">16</a> (LTS)</th>
3333
<th title="LTS Until 2023-04"><a href="doc/changelogs/CHANGELOG_V14.md">14</a> (LTS)</th>
3434
<th title="LTS Until 2022-04"><a href="doc/changelogs/CHANGELOG_V12.md">12</a> (LTS)</th>
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.11.0">18.11.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.12.0">18.12.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V18.md#18.11.0">18.11.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V18.md#18.10.0">18.10.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V18.md#18.9.1">18.9.1</a><br/>
4142
<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/>
@@ -45,6 +49,17 @@
4549
* [io.js](CHANGELOG_IOJS.md)
4650
* [Archive](CHANGELOG_ARCHIVE.md)
4751

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

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

src/node_version.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 18
26-
#define NODE_MINOR_VERSION 11
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 12
27+
#define NODE_PATCH_VERSION 0
2828

29-
#define NODE_VERSION_IS_LTS 0
30-
#define NODE_VERSION_LTS_CODENAME ""
29+
#define NODE_VERSION_IS_LTS 1
30+
#define NODE_VERSION_LTS_CODENAME "Hydrogen"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

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)