Skip to content

Commit e908323

Browse files
committed
2020-01-07, Version v13.6.0 (Current)
Notable changes: * assert: * Implement `assert.match()` and `assert.doesNotMatch()` (Ruben Bridgewater) #30929 * events: * Add `EventEmitter.on` to async iterate over events (Matteo Collina) #27994 * Allow monitoring error events (Gerhard Stoebich) #30932 * fs: * Allow overriding `fs` for streams (Robert Nagy) #29083 * perf_hooks: * Move `perf_hooks` out of experimental (legendecas) #31101 * repl: * Implement ZSH-like reverse-i-search (Ruben Bridgewater) #31006 * tls: * Add PSK (pre-shared key) support (Denys Otrishko) #23188 PR-URL: #31238
1 parent 92cef79 commit e908323

File tree

8 files changed

+216
-13
lines changed

8 files changed

+216
-13
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V13.md#13.4.0">13.4.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.3.0">13.3.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.2.0">13.2.0</a><br/>

doc/api/assert.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the
432432

433433
## `assert.doesNotMatch(string, regexp[, message])`
434434
<!-- YAML
435-
added: REPLACEME
435+
added: v13.6.0
436436
-->
437437

438438
* `string` {string}
@@ -779,7 +779,7 @@ let err;
779779

780780
## `assert.match(string, regexp[, message])`
781781
<!-- YAML
782-
added: REPLACEME
782+
added: v13.6.0
783783
-->
784784

785785
* `string` {string}

doc/api/cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Enable experimental ES Module support in the `vm` module.
226226
<!-- YAML
227227
added: v13.3.0
228228
changes:
229-
- version: REPLACEME
229+
- version: v13.6.0
230230
pr-url: https://github.com/nodejs/node/pull/30980
231231
description: changed from `--experimental-wasi-unstable-preview0` to
232232
`--experimental-wasi-unstable-preview1`
@@ -870,7 +870,7 @@ See `SSL_CERT_DIR` and `SSL_CERT_FILE`.
870870

871871
### `--use-largepages=mode`
872872
<!-- YAML
873-
added: REPLACEME
873+
added: v13.6.0
874874
-->
875875

876876
Re-map the Node.js static code to large memory pages at startup. If supported on

doc/api/events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ Its `name` property is set to `'MaxListenersExceededWarning'`.
362362

363363
### `EventEmitter.errorMonitor`
364364
<!-- YAML
365-
added: REPLACEME
365+
added: v13.6.0
366366
-->
367367

368368
This symbol shall be used to install a listener for only monitoring `'error'`
@@ -888,7 +888,7 @@ See how to write a custom [rejection handler][rejection].
888888

889889
## `events.on(emitter, eventName)`
890890
<!-- YAML
891-
added: REPLACEME
891+
added: v13.6.0
892892
-->
893893

894894
* `emitter` {EventEmitter}

doc/api/fs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1674,8 +1674,8 @@ changes:
16741674
- version: v2.3.0
16751675
pr-url: https://github.com/nodejs/node/pull/1845
16761676
description: The passed `options` object can be a string now.
1677-
- version: REPLACEME
1678-
pr-url: https://github.com/nodejs/node/pull/REPLACEME
1677+
- version: v13.6.0
1678+
pr-url: https://github.com/nodejs/node/pull/29083
16791679
description: The `fs` options allow overriding the used `fs`
16801680
implementation.
16811681
-->
@@ -1777,8 +1777,8 @@ changes:
17771777
- version: v2.3.0
17781778
pr-url: https://github.com/nodejs/node/pull/1845
17791779
description: The passed `options` object can be a string now.
1780-
- version: REPLACEME
1781-
pr-url: https://github.com/nodejs/node/pull/REPLACEME
1780+
- version: v13.6.0
1781+
pr-url: https://github.com/nodejs/node/pull/29083
17821782
description: The `fs` options allow overriding the used `fs`
17831783
implementation.
17841784
-->

doc/api/repl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ undefined
236236

237237
### Reverse-i-search
238238
<!-- YAML
239-
added: REPLACEME
239+
added: v13.6.0
240240
-->
241241

242242
The REPL supports bi-directional reverse-i-search similar to [ZSH][]. It is

doc/api/tls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,7 @@ being issued by trusted CA (`options.ca`).
12411241
<!-- YAML
12421242
added: v0.11.3
12431243
changes:
1244-
- version: REPLACEME
1244+
- version: v13.6.0
12451245
pr-url: https://github.com/nodejs/node/pull/23188
12461246
description: The `pskCallback` option is now supported.
12471247
- version: v12.9.0

doc/changelogs/CHANGELOG_V13.md

Lines changed: 202 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)