File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 33Select 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
Original file line number Diff line number Diff line change 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 />
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
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments