From fa0f086286bb76294d38c8cf3288e9fed498c1fb Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Mon, 13 Aug 2018 19:02:06 +1000 Subject: [PATCH] 2018-08-15, Version 10.9.0 (Current) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- CHANGELOG.md | 3 +- doc/api/crypto.md | 8 +- doc/api/http.md | 4 +- doc/api/https.md | 4 +- doc/changelogs/CHANGELOG_V10.md | 147 ++++++++++++++++++++++++++++++++ src/node_version.h | 4 +- 6 files changed, 159 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85b95caba1057a..54764cc3626c6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,8 @@ release. -10.8.0
+10.9.0
+10.8.0
10.7.0
10.6.0
10.5.0
diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 8e76f7c6c49da6..db6081b49628bf 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -2153,8 +2153,8 @@ request. @@ -2207,8 +2207,8 @@ crypto.scrypt('secret', 'salt', 64, { N: 1024 }, (err, derivedKey) => { diff --git a/doc/api/http.md b/doc/api/http.md index 90a19a7888ab1a..8b1274f06d296e 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1798,7 +1798,7 @@ added to the [`'request'`][] event.