Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2019-09-25 01:45:45 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2019-09-25 21:31:42 +0300
commitb50c01c032b6fce5b2d2e370c9c23e31b8d656c9 (patch)
tree58e7cb3768d411170cfe8ea84241a0504c5be3b5 /doc/api
parentced89ad75d734329d23b147c80c5fa0de32fe30f (diff)
2019-09-24, Version 12.11.0 (Current)v12.11.0
Notable changes: * crypto: * Add `oaepLabel` option https://github.com/nodejs/node/pull/29489 * deps: * Update V8 to 7.7.299.11 https://github.com/nodejs/node/pull/28918 * More efficient memory handling * Stack trace serialization got faster * The `Intl.NumberFormat` API gained new functionality * For more information: https://v8.dev/blog/v8-release-77 * events: * Add support for `EventTarget` in `once` https://github.com/nodejs/node/pull/29498 * fs: * Expose memory file mapping flag `UV_FS_O_FILEMAP` https://github.com/nodejs/node/pull/29260 * inspector: * New API - `Session.connectToMainThread` https://github.com/nodejs/node/pull/28870 * process: * Initial SourceMap support via `env.NODE_V8_COVERAGE` https://github.com/nodejs/node/pull/28960 * stream: * Make `_write()` optional when `_writev()` is implemented https://github.com/nodejs/node/pull/29639 * tls: * Add option to override signature algorithms https://github.com/nodejs/node/pull/29598 * util: * Add `encodeInto` to `TextEncoder` https://github.com/nodejs/node/pull/29524 * worker: * The `worker_thread` module is now stable https://github.com/nodejs/node/pull/29512 PR-URL: https://github.com/nodejs/node/pull/29695
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/crypto.md4
-rw-r--r--doc/api/inspector.md2
-rw-r--r--doc/api/n-api.md2
-rw-r--r--doc/api/stream.md2
-rw-r--r--doc/api/tls.md4
-rw-r--r--doc/api/util.md2
6 files changed, 8 insertions, 8 deletions
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index 112865f180c..4dce34692c2 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -2383,7 +2383,7 @@ An array of supported digest functions can be retrieved using
<!-- YAML
added: v0.11.14
changes:
- - version: REPLACEME
+ - version: v12.11.0
pr-url: https://github.com/nodejs/node/pull/29489
description: The `oaepLabel` option was added.
- version: v12.9.0
@@ -2470,7 +2470,7 @@ be passed instead of a public key.
<!-- YAML
added: v0.11.14
changes:
- - version: REPLACEME
+ - version: v12.11.0
pr-url: https://github.com/nodejs/node/pull/29489
description: The `oaepLabel` option was added.
- version: v12.9.0
diff --git a/doc/api/inspector.md b/doc/api/inspector.md
index 96c3ad03c06..c469ed9c5db 100644
--- a/doc/api/inspector.md
+++ b/doc/api/inspector.md
@@ -125,7 +125,7 @@ Connects a session to the inspector back-end.
### session.connectToMainThread()
<!-- YAML
-added: REPLACEME
+added: v12.11.0
-->
Connects a session to the main thread inspector back-end. An exception will
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index 02da93926de..83ec6e66b63 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -167,7 +167,7 @@ listed as supporting a later version.
| v9.x | v9.0.0* | v9.3.0* | v9.11.0* | | |
| v10.x | | | v10.0.0 | | |
| v11.x | | | v11.0.0 | v11.8.0 | |
-| v12.x | | | | v12.0.0 | REPLACEME |
+| v12.x | | | | v12.0.0 | v12.11.0 |
| v13.x | | | | | |
\* Indicates that the N-API version was released as experimental
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 557e37ed7c0..5bfb8f5ea1e 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1776,7 +1776,7 @@ const myWritable = new Writable({
#### writable.\_write(chunk, encoding, callback)
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v12.11.0
pr-url: https://github.com/nodejs/node/pull/29639
description: _write() is optional when providing _writev().
-->
diff --git a/doc/api/tls.md b/doc/api/tls.md
index c9a30d97d72..24d826191f6 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -844,7 +844,7 @@ for more information.
### tlsSocket.getSharedSigalgs()
<!-- YAML
-added: REPLACEME
+added: v12.11.0
-->
* Returns: {Array} List of signature algorithms shared between the server and
@@ -1358,7 +1358,7 @@ argument.
<!-- YAML
added: v0.11.13
changes:
- - version: REPLACEME
+ - version: v12.11.0
pr-url: https://github.com/nodejs/node/pull/29598
description: Added `sigalgs` option to override supported signature
algorithms.
diff --git a/doc/api/util.md b/doc/api/util.md
index 90a0038c66d..f00cf9e58c3 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -185,7 +185,7 @@ property take precedence over `--trace-deprecation` and
<!-- YAML
added: v0.5.3
changes:
- - version: REPLACEME
+ - version: v12.11.0
pr-url: https://github.com/nodejs/node/pull/29606
description: The `%c` specifier is ignored now.
- version: v11.4.0