Skip to content

Commit 97c1fa3

Browse files
committed
2018-08-15, Version 10.9.0 (Current)
Notable changes: * buffer: * Fix out-of-bounds (OOB) write in `Buffer.write()` for UCS-2 encoding (CVE-2018-12115) * Fix unintentional exposure of uninitialized memory in `Buffer.alloc()` (CVE-2018-7166) * deps: * Upgrade to OpenSSL 1.1.0i, fixing: - Client DoS due to large DH parameter (CVE-2018-0732) - ECDSA key extraction via local side-channel (CVE not assigned) * Upgrade V8 from 6.7 to 6.8 (Michaël Zasso) #21079 - Memory reduction and performance improvements, details at: https://v8project.blogspot.com/2018/06/v8-release-68.html * http: `http.get()` and `http.request()` (and `https` variants) can now accept three arguments to allow for a `URL` _and_ an `options` object (Sam Ruby) #21616 * Added new collaborators * Sam Ruby (https://github.com/rubys) * George Adams (https://github.com/gdams)
1 parent 1efdc58 commit 97c1fa3

File tree

5 files changed

+203
-9
lines changed

5 files changed

+203
-9
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_V10.md#10.8.0">10.8.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.9.0">10.9.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V10.md#10.8.0">10.8.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V10.md#10.7.0">10.7.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V10.md#10.6.0">10.6.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V10.md#10.5.0">10.5.0</a><br/>

doc/api/crypto.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2144,8 +2144,8 @@ request.
21442144
<!-- YAML
21452145
added: v10.5.0
21462146
changes:
2147-
- version: REPLACEME
2148-
pr-url: https://github.com/nodejs/node/pull/XXX
2147+
- version: v10.9.0
2148+
pr-url: https://github.com/nodejs/node/pull/21525
21492149
description: The `cost`, `blockSize` and `parallelization` option names
21502150
have been added.
21512151
-->
@@ -2198,8 +2198,8 @@ crypto.scrypt('secret', 'salt', 64, { N: 1024 }, (err, derivedKey) => {
21982198
<!-- YAML
21992199
added: v10.5.0
22002200
changes:
2201-
- version: REPLACEME
2202-
pr-url: https://github.com/nodejs/node/pull/XXX
2201+
- version: v10.9.0
2202+
pr-url: https://github.com/nodejs/node/pull/21525
22032203
description: The `cost`, `blockSize` and `parallelization` option names
22042204
have been added.
22052205
-->

doc/api/http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1802,7 +1802,7 @@ added to the [`'request'`][] event.
18021802
<!-- YAML
18031803
added: v0.3.6
18041804
changes:
1805-
- version: REPLACEME
1805+
- version: v10.9.0
18061806
pr-url: https://github.com/nodejs/node/pull/21616
18071807
description: allow both url and options to be passed to `http.get()`
18081808
- version: v7.5.0
@@ -1879,7 +1879,7 @@ requests.
18791879
<!-- YAML
18801880
added: v0.3.6
18811881
changes:
1882-
- version: REPLACEME
1882+
- version: v10.9.0
18831883
pr-url: https://github.com/nodejs/node/pull/21616
18841884
description: allow both url and options to be passed to `http.request()`
18851885
- version: v7.5.0

doc/api/https.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ https.createServer(options, (req, res) => {
116116
<!-- YAML
117117
added: v0.3.6
118118
changes:
119-
- version: REPLACEME
119+
- version: v10.9.0
120120
pr-url: https://github.com/nodejs/node/pull/21616
121121
description: allow both url and options to be passed to `https.get()`
122122
- version: v7.5.0
@@ -164,7 +164,7 @@ Global instance of [`https.Agent`][] for all HTTPS client requests.
164164
<!-- YAML
165165
added: v0.3.6
166166
changes:
167-
- version: REPLACEME
167+
- version: v10.9.0
168168
pr-url: https://github.com/nodejs/node/pull/21616
169169
description: allow both url and options to be passed to `https.request()`
170170
- version: v9.3.0

0 commit comments

Comments
 (0)