Skip to content

Commit 03b8258

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 734323d commit 03b8258

File tree

6 files changed

+206
-12
lines changed

6 files changed

+206
-12
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
@@ -2153,8 +2153,8 @@ request.
21532153
<!-- YAML
21542154
added: v10.5.0
21552155
changes:
2156-
- version: REPLACEME
2157-
pr-url: https://github.com/nodejs/node/pull/XXX
2156+
- version: v10.9.0
2157+
pr-url: https://github.com/nodejs/node/pull/21525
21582158
description: The `cost`, `blockSize` and `parallelization` option names
21592159
have been added.
21602160
-->
@@ -2208,8 +2208,8 @@ crypto.scrypt('secret', 'salt', 64, { N: 1024 }, (err, derivedKey) => {
22082208
<!-- YAML
22092209
added: v10.5.0
22102210
changes:
2211-
- version: REPLACEME
2212-
pr-url: https://github.com/nodejs/node/pull/XXX
2211+
- version: v10.9.0
2212+
pr-url: https://github.com/nodejs/node/pull/21525
22132213
description: The `cost`, `blockSize` and `parallelization` option names
22142214
have been added.
22152215
-->

doc/api/http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1798,7 +1798,7 @@ added to the [`'request'`][] event.
17981798
<!-- YAML
17991799
added: v0.3.6
18001800
changes:
1801-
- version: REPLACEME
1801+
- version: v10.9.0
18021802
pr-url: https://github.com/nodejs/node/pull/21616
18031803
description: allow both url and options to be passed to `http.get()`
18041804
- version: v7.5.0
@@ -1875,7 +1875,7 @@ requests.
18751875
<!-- YAML
18761876
added: v0.3.6
18771877
changes:
1878-
- version: REPLACEME
1878+
- version: v10.9.0
18791879
pr-url: https://github.com/nodejs/node/pull/21616
18801880
description: allow both url and options to be passed to `http.request()`
18811881
- 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)