Skip to content

Commit 1a552f6

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 42d36dc commit 1a552f6

File tree

9 files changed

+219
-16
lines changed

9 files changed

+219
-16
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.4.0">13.4.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.3.0">13.3.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V13.md#13.2.0">13.2.0</a><br/>

doc/api/assert.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the
427427

428428
## `assert.doesNotMatch(string, regexp[, message])`
429429
<!-- YAML
430-
added: REPLACEME
430+
added: v13.6.0
431431
-->
432432

433433
* `string` {string}
@@ -766,7 +766,7 @@ let err;
766766

767767
## `assert.match(string, regexp[, message])`
768768
<!-- YAML
769-
added: REPLACEME
769+
added: v13.6.0
770770
-->
771771

772772
* `string` {string}

doc/api/cli.md

+2-2
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

+2-2
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

+4-4
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

+1-1
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

+1-1
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

+202
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 13
26-
#define NODE_MINOR_VERSION 5
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 6
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)