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.
31
31
</tr >
32
32
<tr >
33
33
<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 />
35
36
<a href =" doc/changelogs/CHANGELOG_V14.md#14.13.1 " >14.13.1</a ><br />
36
37
<a href =" doc/changelogs/CHANGELOG_V14.md#14.13.0 " >14.13.0</a ><br />
37
38
<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 10
10
</tr >
11
11
<tr >
12
12
<td >
13
+ <a href =" #14.15.0 " >14.15.0</a ><br />
13
14
<a href =" #14.14.0 " >14.14.0</a ><br />
14
15
<a href =" #14.13.0 " >14.13.0</a ><br />
15
16
<a href =" #14.12.0 " >14.12.0</a ><br />
46
47
* [ io.js] ( CHANGELOG_IOJS.md )
47
48
* [ Archive] ( CHANGELOG_ARCHIVE.md )
48
49
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
+
49
64
<a id =" 14.14.0 " ></a >
50
65
## 2020-10-15, Version 14.14.0 (Current), @MylesBorins
51
66
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