diff options
| author | Michaël Zasso <targos@protonmail.com> | 2019-11-05 10:55:13 +0100 |
|---|---|---|
| committer | Michaël Zasso <targos@protonmail.com> | 2019-11-05 10:57:38 +0100 |
| commit | 64eacd8741f23cb91569faf7ec793c83badb04e3 (patch) | |
| tree | 03fcd31c0c592cab95d3ac49ea6aa16c0fda2ea9 /doc/api/cli.md | |
| parent | 1bded9841c24bf2f119ad61c88b7ad3703ec0d0c (diff) | |
| download | node-new-v13.1.0-proposal.tar.gz | |
2019-11-05, Version 13.1.0 (Current)v13.1.0v13.1.0-proposal
Notable changes:
* cli:
* Added a new flag (`--trace-uncaught`) that makes Node.js print the
stack trace at the time of throwing uncaught exceptions, rather than
at the creation of the `Error` object, if there is any. This is
disabled by default because it affects GC behavior.
https://github.com/nodejs/node/pull/30025
* crypto
* Added `Hash.prototype.copy()` method. It returns a new `Hash` object
with its internal state cloned from the original one.
https://github.com/nodejs/node/pull/29910
* dgram
* Added source-specific multicast support. This adds methods to
Datagram sockets to support RFC 4607
(https://tools.ietf.org/html/rfc4607) for IPv4 and IPv6.
https://github.com/nodejs/node/pull/15735
* fs
* Added a `bufferSize` option to `fs.opendir()`. It allows to control
the number of entries that are buffered internally when reading from
the directory. https://github.com/nodejs/node/pull/30114
* meta
* Added Chengzhong Wu (https://github.com/legendecas) to
collaborators. https://github.com/nodejs/node/pull/30115
PR-URL: https://github.com/nodejs/node/pull/30262
Diffstat (limited to 'doc/api/cli.md')
| -rw-r--r-- | doc/api/cli.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/cli.md b/doc/api/cli.md index d9d7d3ad5e..fa46a00aff 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -207,7 +207,7 @@ Enable experimental diagnostic report feature. ### `--experimental-resolve-self` <!-- YAML -added: REPLACEME +added: v13.1.0 --> Enable experimental support for a package using `require` or `import` to load @@ -767,7 +767,7 @@ connection problems. ### `--trace-uncaught` <!-- YAML -added: REPLACEME +added: v13.1.0 --> Print stack traces for uncaught exceptions; usually, the stack trace associated |
