summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2016-02-08 12:36:05 -0800
committerJames M Snell <jasnell@gmail.com>2016-02-09 08:42:15 -0800
commit58db386a1be17499a444df6a78743c9dfb3cfbe3 (patch)
treeb4cc107031d175158de264a3bedfae62d07d382f /src
parentd94f864abd0933c125afeb84b6f72ec709c63b43 (diff)
downloadnodejs-58db386a1be17499a444df6a78743c9dfb3cfbe3.tar.gz
nodejs-58db386a1be17499a444df6a78743c9dfb3cfbe3.tar.bz2
nodejs-58db386a1be17499a444df6a78743c9dfb3cfbe3.zip
2016-02-09, Version 4.3.0 'Argon' (LTS)v4.3.0
This is an important security release. All Node.js users should consult the security release summary at nodejs.org for details on patched vulnerabilities. Note that this release includes a non-backward compatible change to address a security issue. This change increases the version of the LTS v4.x line to v4.3.0. There will be *no further updates* to v4.2.x. * http: fix defects in HTTP header parsing for requests and responses that can allow request smuggling (CVE-2016-2086) or response splitting (CVE-2016-2216). HTTP header parsing now aligns more closely with the HTTP spec including restricting the acceptable characters. * http-parser: upgrade from 2.5.0 to 2.5.1 * openssl: upgrade from 1.0.2e to 1.0.2f. To mitigate against the Logjam attack, TLS clients now reject Diffie-Hellman handshakes with parameters shorter than 1024-bits, up from the previous limit of 768-bits. * src: - introduce new `--security-revert={cvenum}` command line flag for selective reversion of specific CVE fixes - allow the fix for CVE-2016-2216 to be selectively reverted using `--security-revert=CVE-2016-2216` PR-URL: https://github.com/nodejs/node-private/pull/20
Diffstat (limited to 'src')
-rw-r--r--src/node_version.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node_version.h b/src/node_version.h
index 1d2730b54..baae06c51 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -2,13 +2,13 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 4
-#define NODE_MINOR_VERSION 2
-#define NODE_PATCH_VERSION 7
+#define NODE_MINOR_VERSION 3
+#define NODE_PATCH_VERSION 0
#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)