From 74fb02f689e5e5f911c3a85faf3cdddcd316e076 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Sun, 18 Mar 2018 14:45:41 +0100 Subject: 2018-03-21, Version 9.9.0 (Current) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Notable changes: * assert: - From now on all error messages produced by `assert` in strict mode will produce a error diff. (Ruben Bridgewater) https://github.com/nodejs/node/pull/17615 - From now on it is possible to use a validation object in throws instead of the other possibilities. (Ruben Bridgewater) https://github.com/nodejs/node/pull/17584 * crypto: - allow passing null as IV unless required (Tobias Nießen) https://github.com/nodejs/node/pull/18644 * fs: - support as and as+ flags in stringToFlags() (Sarat Addepalli) https://github.com/nodejs/node/pull/18801 * tls: - expose Finished messages in TLSSocket (Anton Salikhmetov) https://github.com/nodejs/node/pull/19102 * tty: - Add getColorDepth function to determine if terminal supports colors (Ruben Bridgewater) https://github.com/nodejs/node/pull/17615 * util: - add util.inspect compact option (Ruben Bridgewater) https://github.com/nodejs/node/pull/17576 * **Added new collaborators** - [watson](https://github.com/watson) Thomas Watson PR-URL: https://github.com/nodejs/node/pull/19428 --- CHANGELOG.md | 3 +- doc/api/assert.md | 12 ++-- doc/api/crypto.md | 4 +- doc/api/tls.md | 4 +- doc/api/tty.md | 2 +- doc/api/util.md | 4 +- doc/changelogs/CHANGELOG_V9.md | 159 +++++++++++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 8 files changed, 177 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ace79efd98e..74b83c56eb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,7 +29,8 @@ release. -9.8.0
+9.9.0
+9.8.0
9.7.1
9.7.0
9.6.1
diff --git a/doc/api/assert.md b/doc/api/assert.md index c1bcc9ebb31..2ecf628e4aa 100644 --- a/doc/api/assert.md +++ b/doc/api/assert.md @@ -15,12 +15,12 @@ For more information about the used equality comparisons see ## Strict mode @@ -765,8 +765,8 @@ instead of the `AssertionError`. * Returns: {Buffer|undefined} The latest `Finished` message that has been @@ -646,7 +646,7 @@ If the peer does not provide a certificate, an empty object will be returned. ### tlsSocket.getPeerFinished() * Returns: {Buffer|undefined} The latest `Finished` message that is expected diff --git a/doc/api/tty.md b/doc/api/tty.md index ce6dbae8fa6..a3ade6656f3 100644 --- a/doc/api/tty.md +++ b/doc/api/tty.md @@ -123,7 +123,7 @@ is updated whenever the `'resize'` event is emitted. ### writeStream.getColorDepth([env]) * `env` {object} A object containing the environment variables to check. diff --git a/doc/api/util.md b/doc/api/util.md index bc1d3ae262a..77940425e1d 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -316,8 +316,8 @@ stream.write('With ES6');