Skip to content

Commit

Permalink
2024-08-21, Version 20.17.0 'Iron' (LTS)
Browse files Browse the repository at this point in the history
Notable changes:

http:
  * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) nodejs#54054
meta:
  * add jake to collaborators (jakecastelli) nodejs#54004
module:
  * (SEMVER-MINOR) support require()ing synchronous ESM graphs (Joyee Cheung) nodejs#51977
path:
  * (SEMVER-MINOR) add `matchesGlob` method (Aviv Keller) nodejs#52881
stream:
  * (SEMVER-MINOR) expose DuplexPair API (Austin Wright) nodejs#34111
  * (SEMVER-MINOR) implement `min` option for `ReadableStreamBYOBReader.read` (Mattias Buelens) nodejs#50888

PR-URL: nodejs#54447
  • Loading branch information
marco-ippolito committed Aug 21, 2024
1 parent 612e457 commit 8b0c699
Show file tree
Hide file tree
Showing 8 changed files with 251 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ release.
<a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.16.0">20.16.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.17.0">20.17.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.16.0">20.16.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.15.1">20.15.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.15.0">20.15.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.14.0">20.14.0</a><br/>
Expand Down
8 changes: 6 additions & 2 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,9 @@ following permissions are restricted:
### `--experimental-require-module`

<!-- YAML
added: v22.0.0
added:
- v22.0.0
- v20.17.0
-->

> Stability: 1.1 - Active Development
Expand Down Expand Up @@ -1847,7 +1849,9 @@ Identical to `-e` but prints the result.
### `--experimental-print-required-tla`

<!-- YAML
added: v22.0.0
added:
- v22.0.0
- v20.17.0
-->

This flag is only useful when `--experimental-require-module` is enabled.
Expand Down
4 changes: 3 additions & 1 deletion doc/api/path.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ path.format({
## `path.matchesGlob(path, pattern)`

<!-- YAML
added: v22.5.0
added:
- v22.5.0
- v20.17.0
-->

> Stability: 1 - Experimental
Expand Down
4 changes: 3 additions & 1 deletion doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -2689,7 +2689,9 @@ further errors except from `_destroy()` may be emitted as `'error'`.
#### `stream.duplexPair([options])`

<!-- YAML
added: v22.6.0
added:
- v22.6.0
- v20.17.0
-->

* `options` {Object} A value to pass to both [`Duplex`][] constructors,
Expand Down
4 changes: 3 additions & 1 deletion doc/api/tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -1577,7 +1577,9 @@ protocol.
### `tlsSocket.setKeyCert(context)`

<!-- YAML
added: v22.5.0
added:
- v22.5.0
- v20.17.0
-->

* `context` {Object|tls.SecureContext} An object containing at least `key` and
Expand Down
4 changes: 3 additions & 1 deletion doc/api/webcrypto.md
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,9 @@ The algorithms currently supported include:
<!-- YAML
added: v15.0.0
changes:
- version: v22.5.0
- version:
- v22.5.0
- v20.17.0
pr-url: https://github.com/nodejs/node/pull/53601
description: The length parameter is now optional for `'ECDH'`, `'X25519'`,
and `'X448'`.
Expand Down
4 changes: 3 additions & 1 deletion doc/api/webstreams.md
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,9 @@ added: v16.5.0
<!-- YAML
added: v16.5.0
changes:
- version: v21.7.0
- version:
- v21.7.0
- v20.17.0
pr-url: https://github.com/nodejs/node/pull/50888
description: Added `min` option.
-->
Expand Down
228 changes: 228 additions & 0 deletions doc/changelogs/CHANGELOG_V20.md

Large diffs are not rendered by default.

0 comments on commit 8b0c699

Please sign in to comment.