File tree 4 files changed +31
-9
lines changed 4 files changed +31
-9
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Select a Node.js version below to view the changelog history:
4
4
5
- * [ Node.js 14] ( doc/changelogs/CHANGELOG_V14.md ) ** Current **
5
+ * [ Node.js 14] ( doc/changelogs/CHANGELOG_V14.md ) ** Long Term Support **
6
6
* [ Node.js 13] ( doc/changelogs/CHANGELOG_V13.md ) End-of-Life
7
- * [ Node.js 12] ( doc/changelogs/CHANGELOG_V12.md ) ** Long Term Support**
7
+ * [ Node.js 12] ( doc/changelogs/CHANGELOG_V12.md ) Long Term Support
8
8
* [ Node.js 11] ( doc/changelogs/CHANGELOG_V11.md ) End-of-Life
9
9
* [ Node.js 10] ( doc/changelogs/CHANGELOG_V10.md ) Long Term Support
10
10
* [ Node.js 9] ( doc/changelogs/CHANGELOG_V9.md ) End-of-Life
@@ -24,13 +24,14 @@ release.
24
24
<!-- lint disable maximum-line-length-->
25
25
<table >
26
26
<tr >
27
- <th title =" Current " ><a href =" doc/changelogs/CHANGELOG_V14.md " >14</a ><sup >Current </sup ></th >
27
+ <th title =" LTS Until 2023-04 " ><a href =" doc/changelogs/CHANGELOG_V14.md " >14</a ><sup >LTS </sup ></th >
28
28
<th title =" LTS Until 2022-04 " ><a href =" doc/changelogs/CHANGELOG_V12.md " >12</a ><sup >LTS</sup ></th >
29
29
<th title =" LTS Until 2021-04 " ><a href =" doc/changelogs/CHANGELOG_V10.md " >10</a ><sup >LTS</sup ></th >
30
30
</tr >
31
31
<tr >
32
32
<td valign="top">
33
- <b ><a href =" doc/changelogs/CHANGELOG_V14.md#14.14.0 " >14.14.0</a ></b ><br />
33
+ <b ><a href =" doc/changelogs/CHANGELOG_V14.md#14.15.0 " >14.15.0</a ></b ><br />
34
+ <a href =" doc/changelogs/CHANGELOG_V14.md#14.14.0 " >14.14.0</a ><br />
34
35
<a href =" doc/changelogs/CHANGELOG_V14.md#14.13.1 " >14.13.1</a ><br />
35
36
<a href =" doc/changelogs/CHANGELOG_V14.md#14.13.0 " >14.13.0</a ><br />
36
37
<a href =" doc/changelogs/CHANGELOG_V14.md#14.12.0 " >14.12.0</a ><br />
Original file line number Diff line number Diff line change 6
6
7
7
<table >
8
8
<tr >
9
+ <th >LTS 'Fermium'</th >
9
10
<th >Current</th >
10
11
</tr >
11
12
<tr >
12
13
<td valign =" top " >
14
+ <a href =" #14.15.0 " >14.15.0</a ><br />
15
+ </td >
16
+ <td valign =" top " >
13
17
<a href =" #14.14.0 " >14.14.0</a ><br />
14
18
<a href =" #14.13.0 " >14.13.0</a ><br />
15
19
<a href =" #14.12.0 " >14.12.0</a ><br />
46
50
* [ io.js] ( CHANGELOG_IOJS.md )
47
51
* [ Archive] ( CHANGELOG_ARCHIVE.md )
48
52
53
+ <a id =" 14.15.0 " ></a >
54
+ ## 2020-10-27, Version 14.15.0 'Fermium' (LTS), @richardlau
55
+
56
+ ### Notable Changes
57
+
58
+ This release marks the transition of Node.js 14.x into Long Term Support (LTS)
59
+ with the codename 'Fermium'. The 14.x release line now moves into "Active LTS"
60
+ and will remain so until October 2021. After that time, it will move into
61
+ "Maintenance" until end of life in April 2023.
62
+
63
+ ### Commits
64
+
65
+ * [[ ` 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 )
66
+ * [[ ` 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 )
67
+
49
68
<a id =" 14.14.0 " ></a >
50
69
## 2020-10-15, Version 14.14.0 (Current), @MylesBorins
51
70
Original file line number Diff line number Diff line change 23
23
#define SRC_NODE_VERSION_H_
24
24
25
25
#define NODE_MAJOR_VERSION 14
26
- #define NODE_MINOR_VERSION 14
27
- #define NODE_PATCH_VERSION 1
26
+ #define NODE_MINOR_VERSION 15
27
+ #define NODE_PATCH_VERSION 0
28
28
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 "Fermium "
31
31
32
- #define NODE_VERSION_IS_RELEASE 0
32
+ #define NODE_VERSION_IS_RELEASE 1
33
33
34
34
#ifndef NODE_STRINGIFY
35
35
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
19
19
assert . strictEqual ( process . release . lts , 'Dubnium' ) ;
20
20
} else if ( versionParts [ 0 ] === '12' && versionParts [ 1 ] >= 13 ) {
21
21
assert . strictEqual ( process . release . lts , 'Erbium' ) ;
22
+ } else if ( versionParts [ 0 ] === '14' && versionParts [ 1 ] >= 15 ) {
23
+ assert . strictEqual ( process . release . lts , 'Fermium' ) ;
22
24
} else {
23
25
assert . strictEqual ( process . release . lts , undefined ) ;
24
26
}
You can’t perform that action at this time.
0 commit comments