Skip to content

Commit 0ca8617

Browse files
committed
2020-10-27, Version 14.15.0 'Fermium' (LTS)
Notable changes: This release marks the transition of Node.js 14.x into Long Term Support (LTS) with the codename 'Fermium'. The 14.x release line now moves into "Active LTS" and will remain so until October 2021. After that time, it will move into "Maintenance" until end of life in April 2023. PR-URL: #35746
1 parent 62ead4e commit 0ca8617

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
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 15](doc/changelogs/CHANGELOG_V15.md) **Current**
6-
* [Node.js 14](doc/changelogs/CHANGELOG_V14.md) **Current**
6+
* [Node.js 14](doc/changelogs/CHANGELOG_V14.md) **Long Term Support**
77
* [Node.js 13](doc/changelogs/CHANGELOG_V13.md) End-of-Life
8-
* [Node.js 12](doc/changelogs/CHANGELOG_V12.md) **Long Term Support**
8+
* [Node.js 12](doc/changelogs/CHANGELOG_V12.md) Long Term Support
99
* [Node.js 11](doc/changelogs/CHANGELOG_V11.md) End-of-Life
1010
* [Node.js 10](doc/changelogs/CHANGELOG_V10.md) Long Term Support
1111
* [Node.js 9](doc/changelogs/CHANGELOG_V9.md) End-of-Life
@@ -26,7 +26,7 @@ release.
2626
<table>
2727
<tr>
2828
<th title="Current"><a href="doc/changelogs/CHANGELOG_V15.md">15</a><sup>Current</sup></th>
29-
<th title="Current"><a href="doc/changelogs/CHANGELOG_V14.md">14</a><sup>Current</sup></th>
29+
<th title="LTS Until 2023-04"><a href="doc/changelogs/CHANGELOG_V14.md">14</a><sup>LTS</sup></th>
3030
<th title="LTS Until 2022-04"><a href="doc/changelogs/CHANGELOG_V12.md">12</a><sup>LTS</sup></th>
3131
<th title="LTS Until 2021-04"><a href="doc/changelogs/CHANGELOG_V10.md">10</a><sup>LTS</sup></th>
3232
</tr>
@@ -36,7 +36,8 @@ release.
3636
<a href="doc/changelogs/CHANGELOG_V15.md#15.0.0">15.0.0</a><br/>
3737
</td>
3838
<td valign="top">
39-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.14.0">14.14.0</a></b><br/>
39+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.15.0">14.15.0</a></b><br/>
40+
<a href="doc/changelogs/CHANGELOG_V14.md#14.14.0">14.14.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V14.md#14.13.1">14.13.1</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V14.md#14.13.0">14.13.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V14.md#14.12.0">14.12.0</a><br/>

doc/changelogs/CHANGELOG_V14.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@
66

77
<table>
88
<tr>
9+
<th>LTS 'Fermium'</th>
910
<th>Current</th>
1011
</tr>
1112
<tr>
12-
<td>
13+
<td valign="top">
14+
<a href="#14.15.0">14.15.0</a><br/>
15+
</td>
16+
<td valign="top">
1317
<a href="#14.14.0">14.14.0</a><br/>
1418
<a href="#14.13.1">14.13.1</a><br/>
1519
<a href="#14.13.0">14.13.0</a><br/>
@@ -48,6 +52,22 @@
4852
* [io.js](CHANGELOG_IOJS.md)
4953
* [Archive](CHANGELOG_ARCHIVE.md)
5054

55+
<a id="14.15.0"></a>
56+
## 2020-10-27, Version 14.15.0 'Fermium' (LTS), @richardlau
57+
58+
### Notable Changes
59+
60+
This release marks the transition of Node.js 14.x into Long Term Support (LTS)
61+
with the codename 'Fermium'. The 14.x release line now moves into "Active LTS"
62+
and will remain so until October 2021. After that time, it will move into
63+
"Maintenance" until end of life in April 2023.
64+
65+
### Commits
66+
67+
* [[`5b7a08c902`](https://github.com/nodejs/node/commit/5b7a08c902)] - **doc**: add missing link in Node.js 14 Changelog (Antoine du Hamel) [#35782](https://github.com/nodejs/node/pull/35782)
68+
* [[`90a5d59824`](https://github.com/nodejs/node/commit/90a5d59824)] - **doc**: fix Node.js 14.x changelogs (Richard Lau) [#35756](https://github.com/nodejs/node/pull/35756)
69+
* [[`7f788573b3`](https://github.com/nodejs/node/commit/7f788573b3)] - ***Revert*** "**test**: mark test-webcrypto-encrypt-decrypt-aes flaky" (Myles Borins) [#35666](https://github.com/nodejs/node/pull/35666)
70+
5171
<a id="14.14.0"></a>
5272
## 2020-10-15, Version 14.14.0 (Current), @MylesBorins
5373

test/parallel/test-process-release.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
1919
assert.strictEqual(process.release.lts, 'Dubnium');
2020
} else if (versionParts[0] === '12' && versionParts[1] >= 13) {
2121
assert.strictEqual(process.release.lts, 'Erbium');
22+
} else if (versionParts[0] === '14' && versionParts[1] >= 15) {
23+
assert.strictEqual(process.release.lts, 'Fermium');
2224
} else {
2325
assert.strictEqual(process.release.lts, undefined);
2426
}

0 commit comments

Comments
 (0)