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:
authorMichaël Zasso <targos@protonmail.com>2021-08-25 10:01:17 +0300
committerMichaël Zasso <targos@protonmail.com>2021-08-25 23:51:53 +0300
commit31772a4e85c642276604af6850caa3c590d21aa5 (patch)
treee34e6f257eb069e03002c096f9843ede9f3166b5 /doc/api
parent18bb2cef83a097902cca41af47868b5bf535e4af (diff)
2021-08-25, Version 16.8.0 (Current)
Notable changes: doc: * deprecate type coercion for `dns.lookup` options (Antoine du Hamel) https://github.com/nodejs/node/pull/38906 stream: * (SEMVER-MINOR) add `stream.Duplex.from` utility (Robert Nagy) https://github.com/nodejs/node/pull/39519 * (SEMVER-MINOR) add `isDisturbed` helper (Robert Nagy) https://github.com/nodejs/node/pull/39628 util: * (SEMVER-MINOR) expose `toUSVString` (Robert Nagy) https://github.com/nodejs/node/pull/39814 PR-URL: https://github.com/nodejs/node/pull/39875
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/deprecations.md2
-rw-r--r--doc/api/stream.md6
-rw-r--r--doc/api/util.md2
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index 0c1a7be2a60..634dc0f6e96 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -2789,7 +2789,7 @@ deprecated and should no longer be used.
### DEP0153: `dns.lookup` and `dnsPromises.lookup` options type coercion
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v16.8.0
pr-url: https://github.com/nodejs/node/pull/38906
description: Documentation-only deprecation.
-->
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 0d93e5492c9..cd7577dbc98 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1263,7 +1263,7 @@ the stream has not been destroyed or emitted `'error'` or `'end'`.
##### `readable.readableAborted`
<!-- YAML
-added: REPLACEME
+added: v16.8.0
-->
> Stability: 1 - Experimental
@@ -2079,7 +2079,7 @@ added: REPLACEME
### `stream.Readable.isDisturbed(stream)`
<!-- YAML
-added: REPLACEME
+added: v16.8.0
-->
> Stability: 1 - Experimental
@@ -2126,7 +2126,7 @@ added: REPLACEME
### `stream.Duplex.from(src)`
<!-- YAML
-added: REPLACEME
+added: v16.8.0
-->
* `src` {Stream|Blob|ArrayBuffer|string|Iterable|AsyncIterable|
diff --git a/doc/api/util.md b/doc/api/util.md
index e0912093af3..eeb0e1b2a90 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -1308,7 +1308,7 @@ The encoding supported by the `TextEncoder` instance. Always set to `'utf-8'`.
## `util.toUSVString(string)`
<!-- YAML
-added: REPLACEME
+added: v16.8.0
-->
* `string` {string}