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
path: root/src
diff options
context:
space:
mode:
authorBeth Griggs <bgriggs@redhat.com>2021-02-22 04:13:01 +0300
committerBeth Griggs <bgriggs@redhat.com>2021-02-22 20:15:07 +0300
commit7a4f260c5df43caa2f522e739b7cc3e7595d7e09 (patch)
tree0d8a9087a4f9b3d7957724386683c515a8175cf2 /src
parent2a3ce5974b254c29bb586f16653daa053e6d7d53 (diff)
2021-02-23, Version 15.10.0 (Current)v15.10.0
This is a security release. Notable changes: Vulnerabilities fixed: - **CVE-2021-22883**: HTTP2 'unknownProtocol' cause Denial of Service by resource exhaustion - **CVE-2021-22884**: DNS rebinding in --inspect - **CVE-2021-23840**: OpenSSL - Integer overflow in CipherUpdate PR-URL: https://github.com/nodejs-private/node-private/pull/253
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 cd0810e17a8..0f101a76d0b 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 15
-#define NODE_MINOR_VERSION 9
-#define NODE_PATCH_VERSION 1
+#define NODE_MINOR_VERSION 10
+#define NODE_PATCH_VERSION 0
#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)