File tree Expand file tree Collapse file tree 4 files changed +24
-6
lines changed Expand file tree Collapse file tree 4 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ release.
3131</tr >
3232<tr >
3333 <td valign="top">
34- <b ><a href =" doc/changelogs/CHANGELOG_V14.md#14.14.0 " >14.14.0</a ></b ><br />
34+ <b ><a href =" doc/changelogs/CHANGELOG_V14.md#14.15.0 " >14.15.0</a ></b ><br />
35+ <a href =" doc/changelogs/CHANGELOG_V14.md#14.14.0 " >14.14.0</a ><br />
3536<a href =" doc/changelogs/CHANGELOG_V14.md#14.13.1 " >14.13.1</a ><br />
3637<a href =" doc/changelogs/CHANGELOG_V14.md#14.13.0 " >14.13.0</a ><br />
3738<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 1010</tr >
1111<tr >
1212<td >
13+ <a href =" #14.15.0 " >14.15.0</a ><br />
1314<a href =" #14.14.0 " >14.14.0</a ><br />
1415<a href =" #14.13.0 " >14.13.0</a ><br />
1516<a href =" #14.12.0 " >14.12.0</a ><br />
4647 * [ io.js] ( CHANGELOG_IOJS.md )
4748 * [ Archive] ( CHANGELOG_ARCHIVE.md )
4849
50+ <a id =" 14.15.0 " ></a >
51+ ## 2020-10-27, Version 14.15.0 'Fermium' (LTS), @richardlau
52+
53+ ### Notable Changes
54+
55+ This release marks the transition of Node.js 14.x into Long Term Support (LTS)
56+ with the codename 'Fermium'. The 14.x release line now moves into "Active LTS"
57+ and will remain so until October 2021. After that time, it will move into
58+ "Maintenance" until end of life in April 2023.
59+
60+ ### Commits
61+
62+ * [[ ` 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 )
63+
4964<a id =" 14.14.0 " ></a >
5065## 2020-10-15, Version 14.14.0 (Current), @MylesBorins
5166
Original file line number Diff line number Diff line change 2323#define SRC_NODE_VERSION_H_
2424
2525#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
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 "Fermium "
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)
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments