Skip to content

Commit 506f7de

Browse files
committed
2021-10-26, Version 16.13.0 'Gallium' (LTS)
Notable changes: This release marks the transition of Node.js 16.x into Long Term Support (LTS) with the codename 'Gallium'. The 16.x release line now moves into "Active LTS" and will remain so until October 2022. After that time, it will move into "Maintenance" until end of life in April 2024. PR-URL: #40536
1 parent d4842e6 commit 506f7de

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 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 17](doc/changelogs/CHANGELOG\_V17.md) **Current**
6-
* [Node.js 16](doc/changelogs/CHANGELOG\_V16.md) **Current**
6+
* [Node.js 16](doc/changelogs/CHANGELOG\_V16.md) **Long Term Support**
77
* [Node.js 15](doc/changelogs/CHANGELOG\_V15.md) End-of-Life
8-
* [Node.js 14](doc/changelogs/CHANGELOG\_V14.md) **Long Term Support**
8+
* [Node.js 14](doc/changelogs/CHANGELOG\_V14.md) Long Term Support
99
* [Node.js 13](doc/changelogs/CHANGELOG\_V13.md) End-of-Life
1010
* [Node.js 12](doc/changelogs/CHANGELOG\_V12.md) Long Term Support
1111
* [Node.js 11](doc/changelogs/CHANGELOG\_V11.md) End-of-Life

doc/changelogs/CHANGELOG_V16.md

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

55
<table>
66
<tr>
7+
<th>LTS 'Gallium'</th>
78
<th>Current</th>
89
</tr>
910
<tr>
1011
<td>
12+
<a href="#16.13.0">16.13.0</a><br/>
13+
</td>
14+
<td>
1115
<a href="#16.12.0">16.12.0</a><br/>
1216
<a href="#16.11.1">16.11.1</a><br/>
1317
<a href="#16.11.0">16.11.0</a><br/>
@@ -50,6 +54,16 @@
5054
* [io.js](CHANGELOG\_IOJS.md)
5155
* [Archive](CHANGELOG\_ARCHIVE.md)
5256

57+
<a id="16.13.0"></a>
58+
## 2021-10-26, Version 16.13.0 'Gallium' (LTS), @richardlau
59+
60+
### Notable Changes
61+
62+
This release marks the transition of Node.js 16.x into Long Term Support (LTS)
63+
with the codename 'Gallium'. The 16.x release line now moves into "Active LTS"
64+
and will remain so until October 2022. After that time, it will move into
65+
"Maintenance" until end of life in April 2024.
66+
5367
<a id="16.12.0"></a>
5468
## 2021-10-20, Version 16.12.0 (Current), @richardlau
5569

test/parallel/test-process-release.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
2121
assert.strictEqual(process.release.lts, 'Erbium');
2222
} else if (versionParts[0] === '14' && versionParts[1] >= 15) {
2323
assert.strictEqual(process.release.lts, 'Fermium');
24+
} else if (versionParts[0] === '16' && versionParts[1] >= 13) {
25+
assert.strictEqual(process.release.lts, 'Gallium');
2426
} else {
2527
assert.strictEqual(process.release.lts, undefined);
2628
}

0 commit comments

Comments
 (0)