Skip to content

Commit cd1193d

Browse files
committed
2018-10-30 Version 10.13.0 'Dubnium' (LTS)
This release marks the transition of Node.js 10.x into Long Term Support (LTS) with the codename 'Dubnium'. The 10.x release line now moves in to "Active LTS" and will remain so until April 2020. After that time it will move in to "Maintenance" until end of life in April 2021. Notable Changes: This release only includes minimal changes necessary to fix known regressions prior to LTS. PR-URL: #23831
1 parent 93335cb commit cd1193d

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ release lines.
99
Select a Node.js version below to view the changelog history:
1010

1111
* [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**
1313
* [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
1515
* [Node.js 7](doc/changelogs/CHANGELOG_V7.md) — End-of-Life
1616
* [Node.js 6](doc/changelogs/CHANGELOG_V6.md) — Long Term Support
1717
* [Node.js 5](doc/changelogs/CHANGELOG_V5.md) — End-of-Life
@@ -36,7 +36,8 @@ release.
3636
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.0.0">11.0.0</a></b><br/>
3737
</td>
3838
<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/>
4041
<a href="doc/changelogs/CHANGELOG_V10.md#10.11.0">10.11.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V10.md#10.10.0">10.10.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V10.md#10.9.0">10.9.0</a><br/>

doc/changelogs/CHANGELOG_V10.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#10.13.0">10.13.0</a><br/>
1213
<a href="#10.12.0">10.12.0</a><br/>
1314
<a href="#10.11.0">10.11.0</a><br/>
1415
<a href="#10.10.0">10.10.0</a><br/>
@@ -41,6 +42,25 @@
4142
* [io.js](CHANGELOG_IOJS.md)
4243
* [Archive](CHANGELOG_ARCHIVE.md)
4344

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+
4464
<a id="10.12.0"></a>
4565
## 2018-10-10, Version 10.12.0 (Current), @targos
4666

test/parallel/test-process-release.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
1515
assert.strictEqual(process.release.lts, 'Boron');
1616
} else if (versionParts[0] === '8' && versionParts[1] >= 9) {
1717
assert.strictEqual(process.release.lts, 'Carbon');
18+
} else if (versionParts[0] === '10' && versionParts[1] >= 13) {
19+
assert.strictEqual(process.release.lts, 'Dubnium');
1820
} else {
1921
assert.strictEqual(process.release.lts, undefined);
2022
}

0 commit comments

Comments
 (0)