Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2019-12-13 20:05:56 +0300
committerMyles Borins <mylesborins@google.com>2019-12-16 22:59:10 +0300
commit456bc88c2a16d595e25d5f48ada9646bf21464eb (patch)
tree42dcb208b6d8eed530638c9f69659472626266de
parent208b813e49e8e63bd4cbec0348c3515eb24c2fbe (diff)
2019-12-17, Version 8.17.0 'Carbon' (LTS)v8.17.0
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
-rw-r--r--CHANGELOG.md3
-rw-r--r--doc/changelogs/CHANGELOG_V8.md19
-rw-r--r--src/node_version.h6
3 files changed, 24 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 593121b2631..4e29f99b6ef 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -27,7 +27,8 @@ release.
</tr>
<tr>
<td valign="top">
-<b><a href="doc/changelogs/CHANGELOG_V8.md#8.16.2">8.16.2</a></b><br/>
+<b><a href="doc/changelogs/CHANGELOG_V8.md#8.17.0">8.17.0</a></b><br/>
+<a href="doc/changelogs/CHANGELOG_V8.md#8.16.2">8.16.2</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.16.1">8.16.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.16.0">8.16.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.15.1">8.15.1</a><br/>
diff --git a/doc/changelogs/CHANGELOG_V8.md b/doc/changelogs/CHANGELOG_V8.md
index c67b63adfed..b1b89ef4c1a 100644
--- a/doc/changelogs/CHANGELOG_V8.md
+++ b/doc/changelogs/CHANGELOG_V8.md
@@ -10,6 +10,7 @@
</tr>
<tr>
<td valign="top">
+<a href="#8.17.0">8.17.0</a><br/>
<a href="#8.16.2">8.16.2</a><br/>
<a href="#8.16.1">8.16.1</a><br/>
<a href="#8.16.0">8.16.0</a><br/>
@@ -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.
+<a id="8.17.0"></a>
+## 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)
+
<a id="8.16.2"></a>
## 2019-10-09, Version 8.16.2 'Carbon' (LTS), @BethGriggs
diff --git a/src/node_version.h b/src/node_version.h
index c68e74c6839..d227c1e4c4c 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)