Skip to content

Commit 0fc3592

Browse files
committedMar 21, 2018
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) #17615 - From now on it is possible to use a validation object in throws instead of the other possibilities. (Ruben Bridgewater) #17584 * crypto: - allow passing null as IV unless required (Tobias Nießen) #18644 * fs: - support as and as+ flags in stringToFlags() (Sarat Addepalli) #18801 * tls: - expose Finished messages in TLSSocket (Anton Salikhmetov) #19102 * tty: - Add getColorDepth function to determine if terminal supports colors (Ruben Bridgewater) #17615 * util: - add util.inspect compact option (Ruben Bridgewater) #17576 * **Added new collaborators** - [watson](https://github.com/watson) Thomas Watson PR-URL: #19428
1 parent 81f88e3 commit 0fc3592

File tree

7 files changed

+171
-11
lines changed

7 files changed

+171
-11
lines changed
 

‎CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ release.
3131
</tr>
3232
<tr>
3333
<td valign="top">
34-
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.8.0">9.8.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.9.0">9.9.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V9.md#9.7.1">9.8.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V9.md#9.7.1">9.7.1</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V9.md#9.7.0">9.7.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V9.md#9.6.1">9.6.1</a><br/>

‎doc/api/assert.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ For more information about the used equality comparisons see
1515

1616
## Strict mode
1717
<!-- YAML
18-
added: REPLACEME
18+
added: v9.9.0
1919
changes:
20-
- version: REPLACEME
20+
- version: v9.9.0
2121
pr-url: https://github.com/nodejs/node/pull/17615
2222
description: Added error diffs to the strict mode
23-
- version: REPLACEME
23+
- version: v9.9.0
2424
pr-url: https://github.com/nodejs/node/pull/17002
2525
description: Added strict mode to the assert module.
2626
-->
@@ -924,7 +924,7 @@ instead of the `AssertionError`.
924924
<!-- YAML
925925
added: v0.1.21
926926
changes:
927-
- version: REPLACEME
927+
- version: v9.9.0
928928
pr-url: https://github.com/nodejs/node/pull/17584
929929
description: The `error` parameter can now be an object as well.
930930
- version: v4.2.0

‎doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1294,7 +1294,7 @@ Adversaries][] for details.
12941294
<!-- YAML
12951295
added: v0.1.94
12961296
changes:
1297-
- version: REPLACEME
1297+
- version: v9.9.0
12981298
pr-url: https://github.com/nodejs/node/pull/18644
12991299
description: The `iv` parameter may now be `null` for ciphers which do not
13001300
need an initialization vector.
@@ -1366,7 +1366,7 @@ to create the `Decipher` object.
13661366
<!-- YAML
13671367
added: v0.1.94
13681368
changes:
1369-
- version: REPLACEME
1369+
- version: v9.9.0
13701370
pr-url: https://github.com/nodejs/node/pull/18644
13711371
description: The `iv` parameter may now be `null` for ciphers which do not
13721372
need an initialization vector.

‎doc/api/tls.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ For Example: `{ type: 'ECDH', name: 'prime256v1', size: 256 }`
585585

586586
### tlsSocket.getFinished()
587587
<!-- YAML
588-
added: REPLACEME
588+
added: v9.9.0
589589
-->
590590

591591
* 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.
647647

648648
### tlsSocket.getPeerFinished()
649649
<!-- YAML
650-
added: REPLACEME
650+
added: v9.9.0
651651
-->
652652

653653
* Returns: {Buffer|undefined} The latest `Finished` message that is expected

‎doc/api/tty.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ is updated whenever the `'resize'` event is emitted.
123123

124124
### writeStream.getColorDepth([env])
125125
<!-- YAML
126-
added: REPLACEME
126+
added: v9.9.0
127127
-->
128128

129129
* `env` {Object} A object containing the environment variables to check.

‎doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ changes:
348348
- version: REPLACEME
349349
pr-url: https://github.com/nodejs/node/pull/17907
350350
description: The `depth` default changed to Infinity.
351-
- version: REPLACEME
351+
- version: v9.9.0
352352
pr-url: https://github.com/nodejs/node/pull/17576
353353
description: The `compact` option is supported now.
354354
- version: v6.6.0

‎doc/changelogs/CHANGELOG_V9.md

+159
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)