Skip to content

Commit

Permalink
2021-07-29, Version 16.6.0 (Current)
Browse files Browse the repository at this point in the history
This is a security release.

Notable Changes:

- CVE-2021-22930: Use after free on close http2 on stream canceling
  (High) [#39423](#39423)
- (SEMVER-MINOR) deps: update V8 to 9.2.230.21 (Michaël Zasso)
  [#39470](#39470)
- inspector: mark as stable (Gireesh Punathil)
  [#37748](#37748)
- punycode: add pending deprecation (Antoine du Hamel)
  [#38444](#38444)
- (SEMVER-MINOR) repl: enable --experimental-repl-await /w opt-out
  (hemanth.hm) [#34733](#34733)

PR-URL: #39534
  • Loading branch information
BethGriggs committed Jul 29, 2021
1 parent 4350262 commit 0e22fa0
Show file tree
Hide file tree
Showing 6 changed files with 167 additions and 16 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -32,7 +32,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.5.0">16.5.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.6.0">16.6.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V16.md#16.5.0">16.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V16.md#16.4.2">16.4.2</a><br/>
<a href="doc/changelogs/CHANGELOG_V16.md#16.4.1">16.4.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V16.md#16.4.0">16.4.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion doc/api/deprecations.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Expand Up @@ -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
Expand Down
24 changes: 12 additions & 12 deletions doc/api/webstreams.md
Expand Up @@ -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}
Expand All @@ -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
Expand All @@ -1176,7 +1176,7 @@ Creates a new `TextDecoderStream` instance.
#### `textDecoderStream.encoding`
<!-- YAML
added: REPLACEME
added: v16.6.0
-->
* Type: {string}
Expand All @@ -1185,7 +1185,7 @@ The encoding supported by the `TextDecoderStream` instance.
#### `textDecoderStream.fatal`
<!-- YAML
added: REPLACEME
added: v16.6.0
-->
* Type: {boolean}
Expand All @@ -1195,7 +1195,7 @@ thrown.
#### `textDecoderStream.ignoreBOM`
<!-- YAML
added: REPLACEME
added: v16.6.0
-->
* Type: {boolean}
Expand All @@ -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}
Expand Down

0 comments on commit 0e22fa0

Please sign in to comment.