Skip to content

Commit 8b0c699

Browse files
2024-08-21, Version 20.17.0 'Iron' (LTS)
Notable changes: http: * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) #54054 meta: * add jake to collaborators (jakecastelli) #54004 module: * (SEMVER-MINOR) support require()ing synchronous ESM graphs (Joyee Cheung) #51977 path: * (SEMVER-MINOR) add `matchesGlob` method (Aviv Keller) #52881 stream: * (SEMVER-MINOR) expose DuplexPair API (Austin Wright) #34111 * (SEMVER-MINOR) implement `min` option for `ReadableStreamBYOBReader.read` (Mattias Buelens) #50888 PR-URL: #54447
1 parent 612e457 commit 8b0c699

File tree

8 files changed

+251
-8
lines changed

8 files changed

+251
-8
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ release.
6464
<a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a><br/>
6565
</td>
6666
<td valign="top">
67-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.16.0">20.16.0</a></b><br/>
67+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.17.0">20.17.0</a></b><br/>
68+
<a href="doc/changelogs/CHANGELOG_V20.md#20.16.0">20.16.0</a><br/>
6869
<a href="doc/changelogs/CHANGELOG_V20.md#20.15.1">20.15.1</a><br/>
6970
<a href="doc/changelogs/CHANGELOG_V20.md#20.15.0">20.15.0</a><br/>
7071
<a href="doc/changelogs/CHANGELOG_V20.md#20.14.0">20.14.0</a><br/>

doc/api/cli.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,9 @@ following permissions are restricted:
10221022
### `--experimental-require-module`
10231023

10241024
<!-- YAML
1025-
added: v22.0.0
1025+
added:
1026+
- v22.0.0
1027+
- v20.17.0
10261028
-->
10271029

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

18491851
<!-- YAML
1850-
added: v22.0.0
1852+
added:
1853+
- v22.0.0
1854+
- v20.17.0
18511855
-->
18521856

18531857
This flag is only useful when `--experimental-require-module` is enabled.

doc/api/path.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,9 @@ path.format({
282282
## `path.matchesGlob(path, pattern)`
283283

284284
<!-- YAML
285-
added: v22.5.0
285+
added:
286+
- v22.5.0
287+
- v20.17.0
286288
-->
287289

288290
> Stability: 1 - Experimental

doc/api/stream.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2689,7 +2689,9 @@ further errors except from `_destroy()` may be emitted as `'error'`.
26892689
#### `stream.duplexPair([options])`
26902690

26912691
<!-- YAML
2692-
added: v22.6.0
2692+
added:
2693+
- v22.6.0
2694+
- v20.17.0
26932695
-->
26942696

26952697
* `options` {Object} A value to pass to both [`Duplex`][] constructors,

doc/api/tls.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1577,7 +1577,9 @@ protocol.
15771577
### `tlsSocket.setKeyCert(context)`
15781578

15791579
<!-- YAML
1580-
added: v22.5.0
1580+
added:
1581+
- v22.5.0
1582+
- v20.17.0
15811583
-->
15821584

15831585
* `context` {Object|tls.SecureContext} An object containing at least `key` and

doc/api/webcrypto.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,9 @@ The algorithms currently supported include:
574574
<!-- YAML
575575
added: v15.0.0
576576
changes:
577-
- version: v22.5.0
577+
- version:
578+
- v22.5.0
579+
- v20.17.0
578580
pr-url: https://github.com/nodejs/node/pull/53601
579581
description: The length parameter is now optional for `'ECDH'`, `'X25519'`,
580582
and `'X448'`.

doc/api/webstreams.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,9 @@ added: v16.5.0
622622
<!-- YAML
623623
added: v16.5.0
624624
changes:
625-
- version: v21.7.0
625+
- version:
626+
- v21.7.0
627+
- v20.17.0
626628
pr-url: https://github.com/nodejs/node/pull/50888
627629
description: Added `min` option.
628630
-->

doc/changelogs/CHANGELOG_V20.md

+228
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)