From 456bc88c2a16d595e25d5f48ada9646bf21464eb Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Fri, 13 Dec 2019 12:05:56 -0500 Subject: [PATCH] 2019-12-17, Version 8.17.0 'Carbon' (LTS) This is a security release. For more details about the vulnerability please consult the npm blog: https://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli Notable Changes: * deps: update npm to 6.13.4 https://github.com/nodejs/node/pull/30904 PR-URL: https://github.com/nodejs/node/pull/30941 --- CHANGELOG.md | 3 ++- doc/changelogs/CHANGELOG_V8.md | 19 +++++++++++++++++++ src/node_version.h | 6 +++--- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 593121b263137b..4e29f99b6efa97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,7 +27,8 @@ release. -8.16.2
+8.17.0
+8.16.2
8.16.1
8.16.0
8.15.1
diff --git a/doc/changelogs/CHANGELOG_V8.md b/doc/changelogs/CHANGELOG_V8.md index c67b63adfed931..b1b89ef4c1ad50 100644 --- a/doc/changelogs/CHANGELOG_V8.md +++ b/doc/changelogs/CHANGELOG_V8.md @@ -10,6 +10,7 @@ +8.17.0
8.16.2
8.16.1
8.16.0
@@ -65,6 +66,24 @@ [Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and will be supported actively until April 2019 and maintained until December 2019. + +## 2019-12-17, Version 8.17.0 'Carbon' (LTS), @MylesBorins + +This is a security release. + +For more details about the vulnerability please consult the npm blog: + +https://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli + +### Notable changes + +* **deps**: update npm to 6.13.4 [#30904](https://github.com/nodejs/node/pull/30904) + +### Commits + +* [[`208b813e49`](https://github.com/nodejs/node/commit/208b813e49)] - **build,win**: add test-ci-native and test-ci-js (João Reis) [#30724](https://github.com/nodejs/node/pull/30724) +* [[`369a23a670`](https://github.com/nodejs/node/commit/369a23a670)] - **deps**: update npm to 6.13.4 (Audrey Eschright) [#30904](https://github.com/nodejs/node/pull/30904) + ## 2019-10-09, Version 8.16.2 'Carbon' (LTS), @BethGriggs diff --git a/src/node_version.h b/src/node_version.h index c68e74c6839b47..d227c1e4c4cf17 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 8 -#define NODE_MINOR_VERSION 16 -#define NODE_PATCH_VERSION 3 +#define NODE_MINOR_VERSION 17 +#define NODE_PATCH_VERSION 0 #define NODE_VERSION_IS_LTS 1 #define NODE_VERSION_LTS_CODENAME "Carbon" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)