From 1a552f614b4ec2b9faf0bf932ad4e6ef4fdcaf01 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Tue, 7 Jan 2020 08:33:44 +0100 Subject: [PATCH] 2020-01-07, Version v13.6.0 (Current) Notable changes: * assert: * Implement `assert.match()` and `assert.doesNotMatch()` (Ruben Bridgewater) https://github.com/nodejs/node/pull/30929 * events: * Add `EventEmitter.on` to async iterate over events (Matteo Collina) https://github.com/nodejs/node/pull/27994 * Allow monitoring error events (Gerhard Stoebich) https://github.com/nodejs/node/pull/30932 * fs: * Allow overriding `fs` for streams (Robert Nagy) https://github.com/nodejs/node/pull/29083 * perf_hooks: * Move `perf_hooks` out of experimental (legendecas) https://github.com/nodejs/node/pull/31101 * repl: * Implement ZSH-like reverse-i-search (Ruben Bridgewater) https://github.com/nodejs/node/pull/31006 * tls: * Add PSK (pre-shared key) support (Denys Otrishko) https://github.com/nodejs/node/pull/23188 PR-URL: https://github.com/nodejs/node/pull/31238 --- CHANGELOG.md | 3 +- doc/api/assert.md | 4 +- doc/api/cli.md | 4 +- doc/api/events.md | 4 +- doc/api/fs.md | 8 +- doc/api/repl.md | 2 +- doc/api/tls.md | 2 +- doc/changelogs/CHANGELOG_V13.md | 202 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 9 files changed, 219 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb947ad02ab90b..15623ce71ab948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,7 +30,8 @@ release. -13.5.0
+13.6.0
+13.5.0
13.4.0
13.3.0
13.2.0
diff --git a/doc/api/assert.md b/doc/api/assert.md index 277f29880d5b24..0598ee8be10880 100644 --- a/doc/api/assert.md +++ b/doc/api/assert.md @@ -427,7 +427,7 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the ## `assert.doesNotMatch(string, regexp[, message])` * `string` {string} @@ -766,7 +766,7 @@ let err; ## `assert.match(string, regexp[, message])` * `string` {string} diff --git a/doc/api/cli.md b/doc/api/cli.md index dfb7ec875689ea..6ece4d4580244f 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -226,7 +226,7 @@ Enable experimental ES Module support in the `vm` module. Re-map the Node.js static code to large memory pages at startup. If supported on diff --git a/doc/api/events.md b/doc/api/events.md index 8c4e8c23ee664b..750473aa4c5114 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -362,7 +362,7 @@ Its `name` property is set to `'MaxListenersExceededWarning'`. ### `EventEmitter.errorMonitor` 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]. ## `events.on(emitter, eventName)` * `emitter` {EventEmitter} diff --git a/doc/api/fs.md b/doc/api/fs.md index 82bb47a2116b4c..eb92c7f0b3b2e4 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1674,8 +1674,8 @@ changes: - version: v2.3.0 pr-url: https://github.com/nodejs/node/pull/1845 description: The passed `options` object can be a string now. - - version: REPLACEME - pr-url: https://github.com/nodejs/node/pull/REPLACEME + - version: v13.6.0 + pr-url: https://github.com/nodejs/node/pull/29083 description: The `fs` options allow overriding the used `fs` implementation. --> @@ -1777,8 +1777,8 @@ changes: - version: v2.3.0 pr-url: https://github.com/nodejs/node/pull/1845 description: The passed `options` object can be a string now. - - version: REPLACEME - pr-url: https://github.com/nodejs/node/pull/REPLACEME + - version: v13.6.0 + pr-url: https://github.com/nodejs/node/pull/29083 description: The `fs` options allow overriding the used `fs` implementation. --> diff --git a/doc/api/repl.md b/doc/api/repl.md index 602aea02ab5495..a030da7b4df460 100644 --- a/doc/api/repl.md +++ b/doc/api/repl.md @@ -236,7 +236,7 @@ undefined ### Reverse-i-search The REPL supports bi-directional reverse-i-search similar to [ZSH][]. It is diff --git a/doc/api/tls.md b/doc/api/tls.md index cd6cf3f25cd2e8..81b86abee928e0 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -1241,7 +1241,7 @@ being issued by trusted CA (`options.ca`).