From cd1193d9ed83c37a431a19ae33bbf5e25ec15d65 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Tue, 23 Oct 2018 10:16:47 -0400 Subject: [PATCH] 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: https://github.com/nodejs/node/pull/23831 --- CHANGELOG.md | 7 ++++--- doc/changelogs/CHANGELOG_V10.md | 20 ++++++++++++++++++++ test/parallel/test-process-release.js | 2 ++ 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1e1e3e9e0a765..d8a3920fb4b5b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,9 @@ release lines. Select a Node.js version below to view the changelog history: * [Node.js 11](doc/changelogs/CHANGELOG_V11.md) - **Current** -* [Node.js 10](doc/changelogs/CHANGELOG_V10.md) — Current +* [Node.js 10](doc/changelogs/CHANGELOG_V10.md) — **Long Term Support** * [Node.js 9](doc/changelogs/CHANGELOG_V9.md) — End-of-Life -* [Node.js 8](doc/changelogs/CHANGELOG_V8.md) — **Long Term Support** +* [Node.js 8](doc/changelogs/CHANGELOG_V8.md) — Long Term Support * [Node.js 7](doc/changelogs/CHANGELOG_V7.md) — End-of-Life * [Node.js 6](doc/changelogs/CHANGELOG_V6.md) — Long Term Support * [Node.js 5](doc/changelogs/CHANGELOG_V5.md) — End-of-Life @@ -36,7 +36,8 @@ release. 11.0.0
-10.12.0
+10.13.0
+10.12.0
10.11.0
10.10.0
10.9.0
diff --git a/doc/changelogs/CHANGELOG_V10.md b/doc/changelogs/CHANGELOG_V10.md index f8d8f9b95b21d1..9182311eb2be05 100644 --- a/doc/changelogs/CHANGELOG_V10.md +++ b/doc/changelogs/CHANGELOG_V10.md @@ -9,6 +9,7 @@ +10.13.0
10.12.0
10.11.0
10.10.0
@@ -41,6 +42,25 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + +## 2018-10-30, Version 10.13.0 'Dubnium' (LTS), @MylesBorins + +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. + +### Commits + +* [[`2ba6010082`](https://github.com/nodejs/node/commit/2ba6010082)] - **buffer**: fix crash for invalid index types (Anna Henningsen) +* [[`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) +* [[`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) + ## 2018-10-10, Version 10.12.0 (Current), @targos diff --git a/test/parallel/test-process-release.js b/test/parallel/test-process-release.js index 8b6bca9141beed..019903d09322a4 100644 --- a/test/parallel/test-process-release.js +++ b/test/parallel/test-process-release.js @@ -15,6 +15,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) { assert.strictEqual(process.release.lts, 'Boron'); } else if (versionParts[0] === '8' && versionParts[1] >= 9) { assert.strictEqual(process.release.lts, 'Carbon'); +} else if (versionParts[0] === '10' && versionParts[1] >= 13) { + assert.strictEqual(process.release.lts, 'Dubnium'); } else { assert.strictEqual(process.release.lts, undefined); }