Skip to content

Commit

Permalink
2020-01-07, Version v13.6.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
BridgeAR committed Jan 7, 2020
1 parent 42d36dc commit 1a552f6
Show file tree
Hide file tree
Showing 9 changed files with 219 additions and 16 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -30,7 +30,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.4.0">13.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.3.0">13.3.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.2.0">13.2.0</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/assert.md
Expand Up @@ -427,7 +427,7 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the

## `assert.doesNotMatch(string, regexp[, message])`
<!-- YAML
added: REPLACEME
added: v13.6.0
-->

* `string` {string}
Expand Down Expand Up @@ -766,7 +766,7 @@ let err;

## `assert.match(string, regexp[, message])`
<!-- YAML
added: REPLACEME
added: v13.6.0
-->

* `string` {string}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Expand Up @@ -226,7 +226,7 @@ Enable experimental ES Module support in the `vm` module.
<!-- YAML
added: v13.3.0
changes:
- version: REPLACEME
- version: v13.6.0
pr-url: https://github.com/nodejs/node/pull/30980
description: changed from `--experimental-wasi-unstable-preview0` to
`--experimental-wasi-unstable-preview1`
Expand Down Expand Up @@ -870,7 +870,7 @@ See `SSL_CERT_DIR` and `SSL_CERT_FILE`.

### `--use-largepages=mode`
<!-- YAML
added: REPLACEME
added: v13.6.0
-->

Re-map the Node.js static code to large memory pages at startup. If supported on
Expand Down
4 changes: 2 additions & 2 deletions doc/api/events.md
Expand Up @@ -362,7 +362,7 @@ Its `name` property is set to `'MaxListenersExceededWarning'`.

### `EventEmitter.errorMonitor`
<!-- YAML
added: REPLACEME
added: v13.6.0
-->

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

## `events.on(emitter, eventName)`
<!-- YAML
added: REPLACEME
added: v13.6.0
-->

* `emitter` {EventEmitter}
Expand Down
8 changes: 4 additions & 4 deletions doc/api/fs.md
Expand Up @@ -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.
-->
Expand Down Expand Up @@ -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.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/repl.md
Expand Up @@ -236,7 +236,7 @@ undefined

### Reverse-i-search
<!-- YAML
added: REPLACEME
added: v13.6.0
-->

The REPL supports bi-directional reverse-i-search similar to [ZSH][]. It is
Expand Down
2 changes: 1 addition & 1 deletion doc/api/tls.md
Expand Up @@ -1241,7 +1241,7 @@ being issued by trusted CA (`options.ca`).
<!-- YAML
added: v0.11.3
changes:
- version: REPLACEME
- version: v13.6.0
pr-url: https://github.com/nodejs/node/pull/23188
description: The `pskCallback` option is now supported.
- version: v12.9.0
Expand Down
202 changes: 202 additions & 0 deletions doc/changelogs/CHANGELOG_V13.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 13
#define NODE_MINOR_VERSION 5
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 6
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 1a552f6

Please sign in to comment.