diff options
author | Ruben Bridgewater <ruben@bridgewater.de> | 2019-05-21 13:49:35 +0200 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2019-05-21 15:28:56 +0200 |
commit | 20c11bed06dbcfa1b8e71f2ed1bee7c2164cc656 (patch) | |
tree | c5192e335cee0a6627ea9f4b8f00dff9dceaf68c /doc/api | |
parent | 9f5b6900e788afce29d27b71d167f188064e4ede (diff) | |
download | node-new-20c11bed06dbcfa1b8e71f2ed1bee7c2164cc656.tar.gz |
2019-05-21, Version 12.3.0 (Current)v12.3.0v12.3.0-proposal
Notable changes:
* esm:
* Added the `--experimental-wasm-modules` flag to support
WebAssembly modules (Myles Borins & Guy Bedford)
https://github.com/nodejs/node/pull/27659
* process:
* Log errors using `util.inspect` in case of fatal exceptions
(Ruben Bridgewater) https://github.com/nodejs/node/pull/27243
* repl:
* Add `process.on('uncaughtException')` support (Ruben Bridgewater)
https://github.com/nodejs/node/pull/27151
* stream:
* Implemented `Readable.from` async iterator utility (Guy Bedford)
https://github.com/nodejs/node/pull/27660
* tls:
* Expose built-in root certificates (Ben Noordhuis)
https://github.com/nodejs/node/pull/26415
* Support `net.Server` options (Luigi Pinca)
https://github.com/nodejs/node/pull/27665
* Expose `keylog` event on TLSSocket (Alba Mendez)
https://github.com/nodejs/node/pull/27654
* worker:
* Added the ability to unshift messages from the `MessagePort`
(Anna Henningsen) https://github.com/nodejs/node/pull/27294
PR-URL: https://github.com/nodejs/node/pull/27799
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/deprecations.md | 2 | ||||
-rw-r--r-- | doc/api/repl.md | 2 | ||||
-rw-r--r-- | doc/api/stream.md | 4 | ||||
-rw-r--r-- | doc/api/tls.md | 8 | ||||
-rw-r--r-- | doc/api/worker_threads.md | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index e1614819bd..87b2e1cb8d 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -2456,7 +2456,7 @@ Module.createRequireFromPath() is deprecated. Please use [`module.createRequire( ### DEP0131: Legacy HTTP parser <!-- YAML changes: - - version: REPLACEME + - version: v12.3.0 pr-url: https://github.com/nodejs/node/pull/27498 description: Documentation-only. --> diff --git a/doc/api/repl.md b/doc/api/repl.md index 563817c632..193e82240b 100644 --- a/doc/api/repl.md +++ b/doc/api/repl.md @@ -140,7 +140,7 @@ global or scoped variable, the input `fs` will be evaluated on-demand as #### Global Uncaught Exceptions <!-- YAML changes: - - version: REPLACEME + - version: v12.3.0 pr-url: https://github.com/nodejs/node/pull/27151 description: The `'uncaughtException'` event is from now on triggered if the repl is used as standalone program. diff --git a/doc/api/stream.md b/doc/api/stream.md index 79623662e4..8b525b953b 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -504,7 +504,7 @@ the status of the `highWaterMark`. ##### writable.writableObjectMode <!-- YAML -added: REPLACEME +added: v12.3.0 --> Getter for the property `objectMode` of a given `Writable` stream. @@ -1098,7 +1098,7 @@ the status of the `highWaterMark`. ##### readable.readableObjectMode <!-- YAML -added: REPLACEME +added: v12.3.0 --> Getter for the property `objectMode` of a given `Readable` stream. diff --git a/doc/api/tls.md b/doc/api/tls.md index 3edb604071..4e0122f11f 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -336,7 +336,7 @@ connections using TLS or SSL. ### Event: 'keylog' <!-- YAML -added: REPLACEME +added: v12.3.0 --> * `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format. @@ -654,7 +654,7 @@ Construct a new `tls.TLSSocket` object from an existing TCP socket. ### Event: 'keylog' <!-- YAML -added: REPLACEME +added: v12.3.0 --> * `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format. @@ -1486,7 +1486,7 @@ publicly trusted list of CAs as given in <!-- YAML added: v0.3.2 changes: - - version: REPLACEME + - version: v12.3.0 pr-url: https://github.com/nodejs/node/pull/27665 description: The `options` parameter now supports `net.createServer()` options. @@ -1602,7 +1602,7 @@ console.log(tls.getCiphers()); // ['aes128-gcm-sha256', 'aes128-sha', ...] ## tls.rootCertificates <!-- YAML -added: REPLACEME +added: v12.3.0 --> * {string[]} diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md index 3c36a0a03c..000851bc8a 100644 --- a/doc/api/worker_threads.md +++ b/doc/api/worker_threads.md @@ -127,7 +127,7 @@ if (isMainThread) { ## worker.receiveMessageOnPort(port) <!-- YAML -added: REPLACEME +added: v12.3.0 --> * `port` {MessagePort} |