Skip to content

Commit

Permalink
2018-08-15, Version 10.9.0 (Current)
Browse files Browse the repository at this point in the history
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
* Added new collaborators
  * Sam Ruby (https://github.com/rubys)
  * George Adams (https://github.com/gdams)
  • Loading branch information
rvagg committed Aug 15, 2018
1 parent b7b4aa0 commit 604bac1
Show file tree
Hide file tree
Showing 6 changed files with 162 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -31,7 +31,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.8.0">10.8.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.9.0">10.9.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.8.0">10.8.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.7.0">10.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.6.0">10.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.5.0">10.5.0</a><br/>
Expand Down
8 changes: 4 additions & 4 deletions doc/api/crypto.md
Expand Up @@ -2153,8 +2153,8 @@ request.
<!-- YAML
added: v10.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/XXX
- version: v10.9.0
pr-url: https://github.com/nodejs/node/pull/21525
description: The `cost`, `blockSize` and `parallelization` option names
have been added.
-->
Expand Down Expand Up @@ -2207,8 +2207,8 @@ crypto.scrypt('secret', 'salt', 64, { N: 1024 }, (err, derivedKey) => {
<!-- YAML
added: v10.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/XXX
- version: v10.9.0
pr-url: https://github.com/nodejs/node/pull/21525
description: The `cost`, `blockSize` and `parallelization` option names
have been added.
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/http.md
Expand Up @@ -1798,7 +1798,7 @@ added to the [`'request'`][] event.
<!-- YAML
added: v0.3.6
changes:
- version: REPLACEME
- version: v10.9.0
pr-url: https://github.com/nodejs/node/pull/21616
description: allow both url and options to be passed to `http.get()`
- version: v7.5.0
Expand Down Expand Up @@ -1875,7 +1875,7 @@ requests.
<!-- YAML
added: v0.3.6
changes:
- version: REPLACEME
- version: v10.9.0
pr-url: https://github.com/nodejs/node/pull/21616
description: allow both url and options to be passed to `http.request()`
- version: v7.5.0
Expand Down
4 changes: 2 additions & 2 deletions doc/api/https.md
Expand Up @@ -116,7 +116,7 @@ https.createServer(options, (req, res) => {
<!-- YAML
added: v0.3.6
changes:
- version: REPLACEME
- version: v10.9.0
pr-url: https://github.com/nodejs/node/pull/21616
description: allow both url and options to be passed to `https.get()`
- version: v7.5.0
Expand Down Expand Up @@ -164,7 +164,7 @@ Global instance of [`https.Agent`][] for all HTTPS client requests.
<!-- YAML
added: v0.3.6
changes:
- version: REPLACEME
- version: v10.9.0
pr-url: https://github.com/nodejs/node/pull/21616
description: allow both url and options to be passed to `https.request()`
- version: v9.3.0
Expand Down

0 comments on commit 604bac1

Please sign in to comment.