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:
authorBeth Griggs <bgriggs@redhat.com>2021-07-26 19:42:52 +0300
committerBeth Griggs <bgriggs@redhat.com>2021-07-30 01:52:55 +0300
commit0e22fa0f3d690fad6d76672e835f38f81b7bbd2f (patch)
treee2759e2493bfa70168dc14806fbbf7978086e9ca /doc/api
parent43502622f53345fe1845bec1743d249484a288a6 (diff)
2021-07-29, Version 16.6.0 (Current)
This is a security release. Notable Changes: - CVE-2021-22930: Use after free on close http2 on stream canceling (High) [#39423](https://github.com/nodejs/node/pull/39423) - (SEMVER-MINOR) deps: update V8 to 9.2.230.21 (Michaƫl Zasso) [#39470](https://github.com/nodejs/node/pull/39470) - inspector: mark as stable (Gireesh Punathil) [#37748](https://github.com/nodejs/node/pull/37748) - punycode: add pending deprecation (Antoine du Hamel) [#38444](https://github.com/nodejs/node/pull/38444) - (SEMVER-MINOR) repl: enable --experimental-repl-await /w opt-out (hemanth.hm) [#34733](https://github.com/nodejs/node/pull/34733) PR-URL: https://github.com/nodejs/node/pull/39534
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/cli.md2
-rw-r--r--doc/api/deprecations.md2
-rw-r--r--doc/api/process.md2
-rw-r--r--doc/api/webstreams.md24
4 files changed, 15 insertions, 15 deletions
diff --git a/doc/api/cli.md b/doc/api/cli.md
index 6c240ffcca4..2314886f79a 100644
--- a/doc/api/cli.md
+++ b/doc/api/cli.md
@@ -281,7 +281,7 @@ Use the specified file as a security policy.
### `--no-experimental-repl-await`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
Use this flag to disable top-level await in REPL.
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index aeee173abd7..d3db9660fb3 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -831,7 +831,7 @@ The [`require.extensions`][] property is deprecated.
### DEP0040: `punycode` module
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v16.6.0
pr-url: https://github.com/nodejs/node/pull/38444
description: Added support for `--pending-deprecation`.
- version: v7.0.0
diff --git a/doc/api/process.md b/doc/api/process.md
index 2a4d6e83976..bde8797aa97 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -3251,7 +3251,7 @@ This feature is not available in [`Worker`][] threads.
## `process.setSourceMapsEnabled(val)`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
> Stability: 1 - Experimental
diff --git a/doc/api/webstreams.md b/doc/api/webstreams.md
index 083567aa8da..b90fc19b500 100644
--- a/doc/api/webstreams.md
+++ b/doc/api/webstreams.md
@@ -1120,19 +1120,19 @@ added: v16.5.0
### Class: `TextEncoderStream`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
#### `new TextEncoderStream()`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
Creates a new `TextEncoderStream` instance.
#### `textEncoderStream.encoding`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
* Type: {string}
@@ -1141,26 +1141,26 @@ The encoding supported by the `TextEncoderStream` instance.
#### `textEncoderStream.readable`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
* Type: {ReadableStream}
#### `textEncoderStream.writable`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
* Type: {WritableStream}
### Class: `TextDecoderStream`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
#### `new TextDecoderStream([encoding[, options]])`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
* `encoding` {string} Identifies the `encoding` that this `TextDecoder` instance
@@ -1176,7 +1176,7 @@ Creates a new `TextDecoderStream` instance.
#### `textDecoderStream.encoding`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
* Type: {string}
@@ -1185,7 +1185,7 @@ The encoding supported by the `TextDecoderStream` instance.
#### `textDecoderStream.fatal`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
* Type: {boolean}
@@ -1195,7 +1195,7 @@ thrown.
#### `textDecoderStream.ignoreBOM`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
* Type: {boolean}
@@ -1205,14 +1205,14 @@ mark.
#### `textDecoderStream.readable`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
* Type: {ReadableStream}
#### `textDecoderStream.writable`
<!-- YAML
-added: REPLACEME
+added: v16.6.0
-->
* Type: {WritableStream}