File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ release lines.
9
9
Select a Node.js version below to view the changelog history:
10
10
11
11
* [ Node.js 11] ( doc/changelogs/CHANGELOG_V11.md ) - ** Current**
12
- * [ Node.js 10] ( doc/changelogs/CHANGELOG_V10.md ) — Current
12
+ * [ Node.js 10] ( doc/changelogs/CHANGELOG_V10.md ) — ** Long Term Support **
13
13
* [ Node.js 9] ( doc/changelogs/CHANGELOG_V9.md ) — End-of-Life
14
- * [ Node.js 8] ( doc/changelogs/CHANGELOG_V8.md ) — ** Long Term Support**
14
+ * [ Node.js 8] ( doc/changelogs/CHANGELOG_V8.md ) — Long Term Support
15
15
* [ Node.js 7] ( doc/changelogs/CHANGELOG_V7.md ) — End-of-Life
16
16
* [ Node.js 6] ( doc/changelogs/CHANGELOG_V6.md ) — Long Term Support
17
17
* [ Node.js 5] ( doc/changelogs/CHANGELOG_V5.md ) — End-of-Life
@@ -36,7 +36,8 @@ release.
36
36
<b ><a href =" doc/changelogs/CHANGELOG_V11.md#11.0.0 " >11.0.0</a ></b ><br />
37
37
</td >
38
38
<td valign =" top " >
39
- <b ><a href =" doc/changelogs/CHANGELOG_V10.md#10.12.0 " >10.12.0</a ></b ><br />
39
+ <b ><a href =" doc/changelogs/CHANGELOG_V10.md#10.13.0 " >10.13.0</a ></b ><br />
40
+ <a href =" doc/changelogs/CHANGELOG_V10.md#10.12.0 " >10.12.0</a ><br />
40
41
<a href =" doc/changelogs/CHANGELOG_V10.md#10.11.0 " >10.11.0</a ><br />
41
42
<a href =" doc/changelogs/CHANGELOG_V10.md#10.10.0 " >10.10.0</a ><br />
42
43
<a href =" doc/changelogs/CHANGELOG_V10.md#10.9.0 " >10.9.0</a ><br />
Original file line number Diff line number Diff line change 9
9
</tr >
10
10
<tr >
11
11
<td >
12
+ <a href =" #10.13.0 " >10.13.0</a ><br />
12
13
<a href =" #10.12.0 " >10.12.0</a ><br />
13
14
<a href =" #10.11.0 " >10.11.0</a ><br />
14
15
<a href =" #10.10.0 " >10.10.0</a ><br />
41
42
* [ io.js] ( CHANGELOG_IOJS.md )
42
43
* [ Archive] ( CHANGELOG_ARCHIVE.md )
43
44
45
+ <a id =" 10.13.0 " ></a >
46
+ ## 2018-10-30, Version 10.13.0 'Dubnium' (LTS), @MylesBorins
47
+
48
+ This release marks the transition of Node.js 10.x into Long Term
49
+ Support (LTS) with the codename 'Dubnium'. The 10.x release line
50
+ now moves in to "Active LTS" and will remain so until April 2020.
51
+ After that time it will move in to "Maintenance" until end of
52
+ life in April 2021.
53
+
54
+ ### Notable Changes
55
+
56
+ This release only includes minimal changes necessary to fix known regressions prior to LTS.
57
+
58
+ ### Commits
59
+
60
+ * [[ ` 2ba6010082 ` ] ( https://github.com/nodejs/node/commit/2ba6010082 )] - ** buffer** : fix crash for invalid index types (Anna Henningsen)
61
+ * [[ ` 2cd68be69d ` ] ( https://github.com/nodejs/node/commit/2cd68be69d )] - ** build** : spawn ` make test-ci ` with ` -j1 ` (Refael Ackermann) [ #23733 ] ( https://github.com/nodejs/node/pull/23733 )
62
+ * [[ ` 1003f4c975 ` ] ( https://github.com/nodejs/node/commit/1003f4c975 )] - ** deps** : fix wrong default for v8 handle zapping (Refael Ackermann) [ #23801 ] ( https://github.com/nodejs/node/pull/23801 )
63
+
44
64
<a id =" 10.12.0 " ></a >
45
65
## 2018-10-10, Version 10.12.0 (Current), @targos
46
66
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
15
15
assert . strictEqual ( process . release . lts , 'Boron' ) ;
16
16
} else if ( versionParts [ 0 ] === '8' && versionParts [ 1 ] >= 9 ) {
17
17
assert . strictEqual ( process . release . lts , 'Carbon' ) ;
18
+ } else if ( versionParts [ 0 ] === '10' && versionParts [ 1 ] >= 13 ) {
19
+ assert . strictEqual ( process . release . lts , 'Dubnium' ) ;
18
20
} else {
19
21
assert . strictEqual ( process . release . lts , undefined ) ;
20
22
}
You can’t perform that action at this time.
0 commit comments