From e0a3e550ea9f1cec6cdbed65ebaf2c0f7bafe08c Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Mon, 23 Oct 2017 18:35:14 -0400 Subject: [PATCH] 2017-10-24, Node.js Version 8.8.0 (Current) Notable Changes: * crypto: - expose ECDH class https://github.com/nodejs/node/pull/8188 * http2: - http2 is now exposed by defualt without the need for a flag https://github.com/nodejs/node/pull/15685 - a new environment varible NODE\_NO\_HTTP2 has been added to allow userland http2 to be required https://github.com/nodejs/node/pull/15685 - support has been added for generic `Duplex` streams https://github.com/nodejs/node/pull/16269 * module: - resolve and instantiate loader pipeline hooks have been added to the ESM lifecycle https://github.com/nodejs/node/pull/15445 * zlib: - CVE-2017-14919 - In zlib v1.2.9, a change was made that causes an error to be raised when a raw deflate stream is initialized with windowBits set to 8. On some versions this crashes Node and you cannot recover from it, while on some versions it throws an exception. Node.js will now gracefully set windowBits to 9 replicating the legacy behavior to avoid a DOS vector. https://github.com/nodejs-private/node-private/pull/95 PR-URL: https://github.com/nodejs-private/node-private/pull/98 --- CHANGELOG.md | 3 +- doc/api/child_process.md | 12 +- doc/api/domain.md | 3 +- doc/changelogs/CHANGELOG_V8.md | 312 ++++++++++++++++++++++++++++++++- 4 files changed, 320 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d7e2c904b..83660f2476 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,7 +27,8 @@ release. -8.7.0
+8.8.0
+8.7.0
8.6.0
8.5.0
8.4.0
diff --git a/doc/api/child_process.md b/doc/api/child_process.md index 413949c287..64bee59a66 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -128,7 +128,7 @@ exec('"my script.cmd" a b', (err, stdout, stderr) => { @@ -244,7 +244,7 @@ lsExample(); @@ -375,7 +375,7 @@ supported by `child_process.fork()` and will be ignored if set.