summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2018-03-18 14:45:41 +0100
committerMyles Borins <mylesborins@google.com>2018-03-21 15:47:12 +0000
commit0fc3592255f8d06a838869ca6827beb58871e98b (patch)
tree709282652eda0dd103f47a40b45a83094d15b5c6 /doc/api
parent81f88e30dd6de4c2132580a7238cb54b55e012fc (diff)
downloadandroid-node-v8-0fc3592255f8d06a838869ca6827beb58871e98b.tar.gz
android-node-v8-0fc3592255f8d06a838869ca6827beb58871e98b.tar.bz2
android-node-v8-0fc3592255f8d06a838869ca6827beb58871e98b.zip
2018-03-21, Version 9.9.0 (Current)
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
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/assert.md8
-rw-r--r--doc/api/crypto.md4
-rw-r--r--doc/api/tls.md4
-rw-r--r--doc/api/tty.md2
-rw-r--r--doc/api/util.md2
5 files changed, 10 insertions, 10 deletions
diff --git a/doc/api/assert.md b/doc/api/assert.md
index 9ce918dab9..93478402b0 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
<!-- YAML
-added: REPLACEME
+added: v9.9.0
changes:
- - version: REPLACEME
+ - version: v9.9.0
pr-url: https://github.com/nodejs/node/pull/17615
description: Added error diffs to the strict mode
- - version: REPLACEME
+ - version: v9.9.0
pr-url: https://github.com/nodejs/node/pull/17002
description: Added strict mode to the assert module.
-->
@@ -924,7 +924,7 @@ instead of the `AssertionError`.
<!-- YAML
added: v0.1.21
changes:
- - version: REPLACEME
+ - version: v9.9.0
pr-url: https://github.com/nodejs/node/pull/17584
description: The `error` parameter can now be an object as well.
- version: v4.2.0
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index 771bcef6a8..7073cf2249 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -1294,7 +1294,7 @@ Adversaries][] for details.
<!-- YAML
added: v0.1.94
changes:
- - version: REPLACEME
+ - version: v9.9.0
pr-url: https://github.com/nodejs/node/pull/18644
description: The `iv` parameter may now be `null` for ciphers which do not
need an initialization vector.
@@ -1366,7 +1366,7 @@ to create the `Decipher` object.
<!-- YAML
added: v0.1.94
changes:
- - version: REPLACEME
+ - version: v9.9.0
pr-url: https://github.com/nodejs/node/pull/18644
description: The `iv` parameter may now be `null` for ciphers which do not
need an initialization vector.
diff --git a/doc/api/tls.md b/doc/api/tls.md
index cff01013c1..39ef97562a 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -585,7 +585,7 @@ For Example: `{ type: 'ECDH', name: 'prime256v1', size: 256 }`
### tlsSocket.getFinished()
<!-- YAML
-added: REPLACEME
+added: v9.9.0
-->
* Returns: {Buffer|undefined} The latest `Finished` message that has been
@@ -647,7 +647,7 @@ If the peer does not provide a certificate, an empty object will be returned.
### tlsSocket.getPeerFinished()
<!-- YAML
-added: REPLACEME
+added: v9.9.0
-->
* Returns: {Buffer|undefined} The latest `Finished` message that is expected
diff --git a/doc/api/tty.md b/doc/api/tty.md
index 64612477fc..3aa5eb8e4a 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])
<!-- YAML
-added: REPLACEME
+added: v9.9.0
-->
* `env` {Object} A object containing the environment variables to check.
diff --git a/doc/api/util.md b/doc/api/util.md
index 524372a6fe..8a4e6a0960 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -348,7 +348,7 @@ changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/17907
description: The `depth` default changed to Infinity.
- - version: REPLACEME
+ - version: v9.9.0
pr-url: https://github.com/nodejs/node/pull/17576
description: The `compact` option is supported now.
- version: v6.6.0