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:
authorRichard Lau <rlau@redhat.com>2021-02-05 21:03:02 +0300
committerRichard Lau <rlau@redhat.com>2021-02-09 17:52:34 +0300
commitef1c506ecc375d3fb253fe6fc7fb563518d03e8d (patch)
treeed611f6eae67d705e3ae61a68b4f9908c4f60dc9
parentfe2c98003e3289c92d429b4c80e232bf437d6cb0 (diff)
2021-02-09, Version 10.23.3 'Dubnium' (LTS)v10.23.3
Notable changes: The update to npm 6.14.11 has been relanded so that npm correctly reports its version. PR-URL: https://github.com/nodejs/node/pull/37241
-rw-r--r--CHANGELOG.md3
-rw-r--r--doc/changelogs/CHANGELOG_V10.md15
-rw-r--r--src/node_version.h2
3 files changed, 18 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 98b1b86fac5..1a561c88366 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -33,7 +33,8 @@ release.
<a href="doc/changelogs/CHANGELOG_V12.md#12.0.0">12.0.0</a><br/>
</td>
<td valign="top">
-<b><a href="doc/changelogs/CHANGELOG_V10.md#10.23.2">10.23.2</a></b><br/>
+<b><a href="doc/changelogs/CHANGELOG_V10.md#10.23.3">10.23.3</a></b><br/>
+<a href="doc/changelogs/CHANGELOG_V10.md#10.23.2">10.23.2</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.23.1">10.23.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.23.0">10.23.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.22.1">10.22.1</a><br/>
diff --git a/doc/changelogs/CHANGELOG_V10.md b/doc/changelogs/CHANGELOG_V10.md
index 13af4a67b22..2d7eb9d2dc8 100644
--- a/doc/changelogs/CHANGELOG_V10.md
+++ b/doc/changelogs/CHANGELOG_V10.md
@@ -10,6 +10,7 @@
</tr>
<tr>
<td valign="top">
+<a href="#10.23.3">10.23.3</a><br/>
<a href="#10.23.2">10.23.2</a><br/>
<a href="#10.23.1">10.23.1</a><br/>
<a href="#10.23.0">10.23.0</a><br/>
@@ -67,6 +68,20 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
+<a id="10.23.3"></a>
+## 2021-02-09, Version 10.23.3 'Dubnium' (LTS), @richardlau
+
+### Notable changes
+
+The update to npm 6.14.11 has been relanded so that npm correctly reports its version.
+
+### Commits
+
+* [[`953a85035d`](https://github.com/nodejs/node/commit/953a85035d)] - **crypto**: fix crash when calling digest after piping (Tobias Nießen) [#28251](https://github.com/nodejs/node/pull/28251)
+* [[`fe2c98003e`](https://github.com/nodejs/node/commit/fe2c98003e)] - **deps**: upgrade npm to 6.14.11 (Ruy Adorno) [#37173](https://github.com/nodejs/node/pull/37173)
+* [[`7b7fb43b8a`](https://github.com/nodejs/node/commit/7b7fb43b8a)] - ***Revert*** "**deps**: upgrade npm to 6.14.11" (Richard Lau) [#37278](https://github.com/nodejs/node/pull/37278)
+* [[`1c6fbd6ffe`](https://github.com/nodejs/node/commit/1c6fbd6ffe)] - **test**: add test that verifies crypto stream pipeline (Evan Lucas) [#37009](https://github.com/nodejs/node/pull/37009)
+
<a id="10.23.2"></a>
## 2021-01-26, Version 10.23.2 'Dubnium' (LTS), @richardlau
diff --git a/src/node_version.h b/src/node_version.h
index cbbd6aa6d47..811d63b3657 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -29,7 +29,7 @@
#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Dubnium"
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)