Skip to content

Commit 27adbf0

Browse files
committed
2020-06-02, Version 14.4.0 (Current)
This is a security release. Notable changes: Vulnerabilities fixed: CVE-2020-8172: TLS session reuse can lead to host certificate verification bypass (High). CVE-2020-11080: HTTP/2 Large Settings Frame DoS (Low). CVE-2020-8174: `napi_get_value_string_*()` allows various kinds of memory corruption (High). PR-URL: nodejs-private/node-private#212
1 parent 94571c1 commit 27adbf0

File tree

4 files changed

+33
-7
lines changed

4 files changed

+33
-7
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ release.
3131
</tr>
3232
<tr>
3333
<td valign="top">
34-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.3.0">14.3.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.4.0">14.4.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V14.md#14.3.0">14.3.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.2.0">14.2.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V14.md#14.1.0">14.1.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V14.md#14.0.0">14.0.0</a><br/>

doc/api/http2.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,8 @@ value only affects new connections to the server, not any existing connections.
19911991
<!-- YAML
19921992
added: v8.4.0
19931993
changes:
1994-
- version: REPLACEME
1994+
- version:
1995+
- v14.4.0
19951996
pr-url: https://github.com/nodejs-private/node-private/pull/204
19961997
description: Added `maxSettings` option with a default of 32.
19971998
- version:
@@ -2127,7 +2128,8 @@ server.listen(80);
21272128
<!-- YAML
21282129
added: v8.4.0
21292130
changes:
2130-
- version: REPLACEME
2131+
- version:
2132+
- v14.4.0
21312133
pr-url: https://github.com/nodejs-private/node-private/pull/204
21322134
description: Added `maxSettings` option with a default of 32.
21332135
- version:
@@ -2250,7 +2252,8 @@ server.listen(80);
22502252
<!-- YAML
22512253
added: v8.4.0
22522254
changes:
2253-
- version: REPLACEME
2255+
- version:
2256+
- v14.4.0
22542257
pr-url: https://github.com/nodejs-private/node-private/pull/204
22552258
description: Added `maxSettings` option with a default of 32.
22562259
- version: v13.0.0

doc/changelogs/CHANGELOG_V14.md

+22
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td>
13+
<a href="#14.4.0">14.4.0</a><br/>
1314
<a href="#14.3.0">14.3.0</a><br/>
1415
<a href="#14.2.0">14.2.0</a><br/>
1516
<a href="#14.1.0">14.1.0</a><br/>
@@ -34,6 +35,27 @@
3435
* [io.js](CHANGELOG_IOJS.md)
3536
* [Archive](CHANGELOG_ARCHIVE.md)
3637

38+
<a id="14.4.0"></a>
39+
## 2020-06-02, Version 14.4.0 (Current), @targos
40+
41+
### Notable changes
42+
43+
This is a security release.
44+
45+
Vulnerabilities fixed:
46+
* **CVE-2020-8172**: TLS session reuse can lead to host certificate verification bypass (High).
47+
* **CVE-2020-11080**: HTTP/2 Large Settings Frame DoS (Low).
48+
* **CVE-2020-8174**: `napi_get_value_string_*()` allows various kinds of memory corruption (High).
49+
50+
### Commits
51+
52+
* [[`07a4d5061f`](https://github.com/nodejs/node/commit/07a4d5061f)] - **crypto**: update root certificates (AshCripps) [#33682](https://github.com/nodejs/node/pull/33682)
53+
* [[`0a7bf50fd4`](https://github.com/nodejs/node/commit/0a7bf50fd4)] - **(SEMVER-MINOR)** **deps**: update nghttp2 to 1.41.0 (James M Snell) [nodejs-private/node-private#204](https://github.com/nodejs-private/node-private/pull/204)
54+
* [[`55e4c72af8`](https://github.com/nodejs/node/commit/55e4c72af8)] - **(SEMVER-MINOR)** **http2**: implement support for max settings entries (James M Snell) [nodejs-private/node-private#204](https://github.com/nodejs-private/node-private/pull/204)
55+
* [[`290720d16a`](https://github.com/nodejs/node/commit/290720d16a)] - **napi**: fix memory corruption vulnerability (Tobias Nießen) [nodejs-private/node-private#195](https://github.com/nodejs-private/node-private/pull/195)
56+
* [[`94571c1001`](https://github.com/nodejs/node/commit/94571c1001)] - **tls**: emit `session` after verifying certificate (Fedor Indutny) [nodejs-private/node-private#200](https://github.com/nodejs-private/node-private/pull/200)
57+
* [[`1658cf9ee6`](https://github.com/nodejs/node/commit/1658cf9ee6)] - **tools**: update certdata.txt (AshCripps) [#33682](https://github.com/nodejs/node/pull/33682)
58+
3759
<a id="14.3.0"></a>
3860
## 2020-05-19, Version 14.3.0 (Current), @codebytere
3961

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 14
26-
#define NODE_MINOR_VERSION 3
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 4
27+
#define NODE_PATCH_VERSION 0
2828

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)