Skip to content

Commit fa0f086

Browse files
committed
2018-08-15, Version 10.9.0 (Current)
Notable changes: * deps: 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 * fs: Implement a fs.mkdir() recursive option, similar to the mkdirp npm package or mkdir -p on the command line (Benjamin Coe) #21875 * 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
1 parent 7933310 commit fa0f086

File tree

6 files changed

+159
-11
lines changed

6 files changed

+159
-11
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
-->
@@ -2207,8 +2207,8 @@ crypto.scrypt('secret', 'salt', 64, { N: 1024 }, (err, derivedKey) => {
22072207
<!-- YAML
22082208
added: v10.5.0
22092209
changes:
2210-
- version: REPLACEME
2211-
pr-url: https://github.com/nodejs/node/pull/XXX
2210+
- version: v10.9.0
2211+
pr-url: https://github.com/nodejs/node/pull/21525
22122212
description: The `cost`, `blockSize` and `parallelization` option names
22132213
have been added.
22142214
-->

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)