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 <mborins@us.ibm.com>2016-06-06 21:05:57 +0300
committerMyles Borins <myles.borins@gmail.com>2016-06-23 06:27:49 +0300
commita4d9beb28a9b2884ba5c2e1bccd461ac4c179901 (patch)
tree2ba8da6c5035b06e90429e36c1bdcbbac4c6eadb
parent134c3b3977318b6d98cb1ec3381f2ac61afd1370 (diff)
2016-06-23, Version 4.4.6 'Argon' (LTS)v4.4.6
This is an important security release. All Node.js users should consult the security release summary at nodejs.org for details on patched vulnerabilities. This release is specifically related to a Buffer overflow vulnerability discovered in v8, more details can be found in the CVE https://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1669 PR-URL: https://github.com/nodejs/node-private/pull/41
-rw-r--r--CHANGELOG.md10
-rw-r--r--src/node_version.h2
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 39dd5c8b801..1a1268f6cf3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
# Node.js ChangeLog
+## 2016-06-22, Version 4.4.6 'Argon' (LTS), @thealphanerd
+
+This is an important security release. All Node.js users should consult the security release summary at nodejs.org for details on patched vulnerabilities.
+
+This release is specifically related to a Buffer overflow vulnerability discovered in v8, more details can be found [in the CVE](https://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1669)
+
+### Commits
+
+* [[`134c3b3977`](https://github.com/nodejs/node/commit/134c3b3977)] - **deps**: backport 3a9bfec from v8 upstream (Ben Noordhuis) [nodejs/node-private#38](https://github.com/nodejs/node-private/pull/38)
+
## 2016-05-24, Version 4.4.5 'Argon' (LTS), @thealphanerd
### Notable Changes
diff --git a/src/node_version.h b/src/node_version.h
index 85afe22f25d..001bba78a47 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -8,7 +8,7 @@
#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Argon"
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)