Skip to content

Commit 1b0d17d

Browse files
committed
2020-11-16, Version 15.2.1 (Current)
This is a security release. Notable changes: Vulnerabilities fixed: * CVE-2020-8277: Denial of Service through DNS request (High). A Node.js application that allows an attacker to trigger a DNS request for a host of their choice could trigger a Denial of service by getting the application to resolve a DNS record with a larger number of responses. PR-URL: nodejs-private/node-private#232
1 parent 2a44836 commit 1b0d17d

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ release.
3232
</tr>
3333
<tr>
3434
<td valign="top">
35-
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.2.0">15.2.0</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.2.1">15.2.1</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V15.md#15.2.0">15.2.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V15.md#15.1.0">15.1.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V15.md#15.0.1">15.0.1</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V15.md#15.0.0">15.0.0</a><br/>

doc/changelogs/CHANGELOG_V15.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td>
13+
<a href="#15.2.1">15.2.1</a><br/>
1314
<a href="#15.2.0">15.2.0</a><br/>
1415
<a href="#15.1.0">15.1.0</a><br/>
1516
<a href="#15.0.1">15.0.1</a><br/>
@@ -35,6 +36,27 @@
3536
* [io.js](CHANGELOG_IOJS.md)
3637
* [Archive](CHANGELOG_ARCHIVE.md)
3738

39+
<a id="15.2.1"></a>
40+
## 2020-11-16, Version 15.2.1 (Current), @targos
41+
42+
### Notable changes
43+
44+
This is a security release.
45+
46+
Vulnerabilities fixed:
47+
48+
* **CVE-2020-8277**: Denial of Service through DNS request (High). A Node.js application that allows an attacker to trigger a DNS request for a host of their choice could trigger a Denial of service by getting the application to resolve a DNS record with a larger number of responses.
49+
50+
### Commits
51+
52+
* [[`2a44836eeb`](https://github.com/nodejs/node/commit/2a44836eeb)] - **deps**: cherry-pick 0d252eb from upstream c-ares (Michael Dawson) [nodejs-private/node-private#231](https://github.com/nodejs-private/node-private/pull/231)
53+
* [[`b1f5518a0a`](https://github.com/nodejs/node/commit/b1f5518a0a)] - **doc**: fix `events.getEventListeners` example (Dmitry Semigradsky) [#36085](https://github.com/nodejs/node/pull/36085)
54+
* [[`b477447a55`](https://github.com/nodejs/node/commit/b477447a55)] - **doc**: fix `added:` info for `stream.\_construct()` (Luigi Pinca) [#36067](https://github.com/nodejs/node/pull/36067)
55+
* [[`df211208c0`](https://github.com/nodejs/node/commit/df211208c0)] - **test**: add missing test coverage for setLocalAddress() (Rich Trott) [#36039](https://github.com/nodejs/node/pull/36039)
56+
* [[`f5191f5bd2`](https://github.com/nodejs/node/commit/f5191f5bd2)] - **test**: remove flaky designation for fixed test (Rich Trott) [#35961](https://github.com/nodejs/node/pull/35961)
57+
* [[`a2f652f7c5`](https://github.com/nodejs/node/commit/a2f652f7c5)] - **test**: move test-worker-eventlooputil to sequential (Rich Trott) [#35996](https://github.com/nodejs/node/pull/35996)
58+
* [[`b0b43b27d6`](https://github.com/nodejs/node/commit/b0b43b27d6)] - **test**: fix unreliable test-fs-write-file.js (Rich Trott) [#36102](https://github.com/nodejs/node/pull/36102)
59+
3860
<a id="15.2.0"></a>
3961
## 2020-11-10, Version 15.2.0 (Current), @danielleadams
4062

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)