Skip to content

Commit 4f64397

Browse files
committed
2023-05-02, Version 20.1.0 (Current)
Notable changes: crypto: * update root certificates to NSS 3.89 (Node.js GitHub Bot) #47659 dns: * (SEMVER-MINOR) expose getDefaultResultOrder (btea) #46973 doc: * add KhafraDev to collaborators (Matthew Aitken) #47510 fs: * add recursive option to readdir and opendir (Ethan Arrowood) #41439 * (SEMVER-MINOR) add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) #47084 stream: * (SEMVER-MINOR) preserve object mode in compose (Raz Luvaton) #47413 test_runner: * (SEMVER-MINOR) support combining coverage reports (Colin Ihrig) #47686 wasi: * (SEMVER-MINOR) make returnOnExit true by default (Michael Dawson) #47390 PR-URL: TODO
1 parent 24b3128 commit 4f64397

12 files changed

+194
-26
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ release.
3737
</tr>
3838
<tr>
3939
<td valign="top">
40-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.0.0">20.0.0</a></b><br/>
40+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.1.0">20.1.0</a></b><br/>
41+
<a href="doc/changelogs/CHANGELOG_V20.md#20.0.0">20.0.0</a><br/>
4142
</td>
4243
<td valign="top">
4344
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.9.0">19.9.0</a></b><br/>

doc/api/assert.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ added:
222222
- v14.2.0
223223
- v12.19.0
224224
changes:
225-
- version: REPLACEME
225+
- version: v20.1.0
226226
pr-url: https://github.com/nodejs/node/pull/47740
227227
description: the `assert.CallTracker` class has been deprecated and will be
228228
removed in a future version.

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ added:
625625
- v19.7.0
626626
- v18.15.0
627627
changes:
628-
- version: REPLACEME
628+
- version: v20.1.0
629629
pr-url: https://github.com/nodejs/node/pull/47686
630630
description: This option can be used with `--test`.
631631
-->

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3364,7 +3364,7 @@ be added when a function is bound to an `AsyncResource`.
33643364

33653365
<!-- YAML
33663366
changes:
3367-
- version: REPLACEME
3367+
- version: v20.1.0
33683368
pr-url: https://github.com/nodejs/node/pull/47740
33693369
description: Documentation-only deprecation.
33703370
-->

doc/api/dns.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ dns orders in workers.
795795
## `dns.getDefaultResultOrder()`
796796

797797
<!-- YAML
798-
added: REPLACEME
798+
added: v20.1.0
799799
-->
800800

801801
Get the default value for `verbatim` in [`dns.lookup()`][] and
@@ -1366,7 +1366,7 @@ default dns orders in workers.
13661366
### `dnsPromises.getDefaultResultOrder()`
13671367

13681368
<!-- YAML
1369-
added: REPLACEME
1369+
added: v20.1.0
13701370
-->
13711371

13721372
Get the value of `dnsOrder`.

doc/api/fs.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ try {
966966
<!-- YAML
967967
added: v16.7.0
968968
changes:
969-
- version: REPLACEME
969+
- version: v20.1.0
970970
pr-url: https://github.com/nodejs/node/pull/47084
971971
description: Accept an additional `mode` option to specify
972972
the copy behavior as the `mode` argument of `fs.copyFile()`.
@@ -1220,7 +1220,7 @@ a colon, Node.js will open a file system stream, as described by
12201220
<!-- YAML
12211221
added: v12.12.0
12221222
changes:
1223-
- version: REPLACEME
1223+
- version: v20.1.0
12241224
pr-url: https://github.com/nodejs/node/pull/41439
12251225
description: Added `recursive` option.
12261226
- version:
@@ -1271,7 +1271,7 @@ closed after the iterator exits.
12711271
<!-- YAML
12721272
added: v10.0.0
12731273
changes:
1274-
- version: REPLACEME
1274+
- version: v20.1.0
12751275
pr-url: https://github.com/nodejs/node/pull/41439
12761276
description: Added `recursive` option.
12771277
- version: v10.11.0
@@ -2301,7 +2301,7 @@ copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
23012301
<!-- YAML
23022302
added: v16.7.0
23032303
changes:
2304-
- version: REPLACEME
2304+
- version: v20.1.0
23052305
pr-url: https://github.com/nodejs/node/pull/47084
23062306
description: Accept an additional `mode` option to specify
23072307
the copy behavior as the `mode` argument of `fs.copyFile()`.
@@ -3410,7 +3410,7 @@ const { openAsBlob } = require('node:fs');
34103410
<!-- YAML
34113411
added: v12.12.0
34123412
changes:
3413-
- version: REPLACEME
3413+
- version: v20.1.0
34143414
pr-url: https://github.com/nodejs/node/pull/41439
34153415
description: Added `recursive` option.
34163416
- version: v18.0.0
@@ -3550,7 +3550,7 @@ above values.
35503550
<!-- YAML
35513551
added: v0.1.8
35523552
changes:
3553-
- version: REPLACEME
3553+
- version: v20.1.0
35543554
pr-url: https://github.com/nodejs/node/pull/41439
35553555
description: Added `recursive` option.
35563556
- version: v18.0.0
@@ -5222,7 +5222,7 @@ copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
52225222
<!-- YAML
52235223
added: v16.7.0
52245224
changes:
5225-
- version: REPLACEME
5225+
- version: v20.1.0
52265226
pr-url: https://github.com/nodejs/node/pull/47084
52275227
description: Accept an additional `mode` option to specify
52285228
the copy behavior as the `mode` argument of `fs.copyFile()`.
@@ -5562,7 +5562,7 @@ object with an `encoding` property specifying the character encoding to use.
55625562
<!-- YAML
55635563
added: v12.12.0
55645564
changes:
5565-
- version: REPLACEME
5565+
- version: v20.1.0
55665566
pr-url: https://github.com/nodejs/node/pull/41439
55675567
description: Added `recursive` option.
55685568
- version:
@@ -5622,7 +5622,7 @@ this API: [`fs.open()`][].
56225622
<!-- YAML
56235623
added: v0.1.21
56245624
changes:
5625-
- version: REPLACEME
5625+
- version: v20.1.0
56265626
pr-url: https://github.com/nodejs/node/pull/41439
56275627
description: Added `recursive` option.
56285628
- version: v10.10.0
@@ -6495,7 +6495,7 @@ value is determined by the `options.encoding` passed to [`fs.readdir()`][] or
64956495
#### `dirent.path`
64966496
64976497
<!-- YAML
6498-
added: REPLACEME
6498+
added: v20.1.0
64996499
-->
65006500
65016501
* {string}

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3192,7 +3192,7 @@ Found'`.
31923192
<!-- YAML
31933193
added: v0.1.13
31943194
changes:
3195-
- version: REPLACEME
3195+
- version: v20.1.0
31963196
pr-url: https://github.com/nodejs/node/pull/47405
31973197
description: The `highWaterMark` option is supported now.
31983198
- version: v18.0.0

doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1539,7 +1539,7 @@ then returns the `net.Socket` that starts the connection.
15391539
<!-- YAML
15401540
added: v0.5.0
15411541
changes:
1542-
- version: REPLACEME
1542+
- version: v20.1.0
15431543
pr-url: https://github.com/nodejs/node/pull/47405
15441544
description: The `highWaterMark` option is supported now.
15451545
- version:

doc/api/test.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ added:
728728
- v18.9.0
729729
- v16.19.0
730730
changes:
731-
- version: REPLACEME
731+
- version: v20.1.0
732732
pr-url: https://github.com/nodejs/node/pull/47628
733733
description: Add a testNamePatterns option.
734734
-->
@@ -1508,7 +1508,7 @@ added:
15081508
- v18.0.0
15091509
- v16.17.0
15101510
changes:
1511-
- version: REPLACEME
1511+
- version: v20.1.0
15121512
pr-url: https://github.com/nodejs/node/pull/47586
15131513
description: The `before` function was added to TestContext.
15141514
-->
@@ -1520,7 +1520,7 @@ exposed as part of the API.
15201520
### `context.before([fn][, options])`
15211521

15221522
<!-- YAML
1523-
added: REPLACEME
1523+
added: v20.1.0
15241524
-->
15251525

15261526
* `fn` {Function|AsyncFunction} The hook function. The first argument

doc/api/wasi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ added:
118118
- v13.3.0
119119
- v12.16.0
120120
changes:
121-
- version: REPLACEME
121+
- version: v20.1.0
122122
pr-url: https://github.com/nodejs/node/pull/47390
123123
description: default value of returnOnExit changed to true.
124124
- version: v20.0.0

0 commit comments

Comments
 (0)