Skip to content

Commit

Permalink
2023-05-03, Version 20.1.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

assert:
  * deprecate `CallTracker` (Moshe Atlow) #47740
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:
  * (SEMVER-MINOR) add `recursive` option to `readdir` and `opendir` (Ethan Arrowood) #41439
  * (SEMVER-MINOR) add support for `mode` flag to specify the copy behavior of the `cp` methods (Tetsuharu Ohzeki) #47084
http:
  * (SEMVER-MINOR) add `highWaterMark` option `http.createServer` (HinataKah0) #47405
stream:
  * (SEMVER-MINOR) preserve object mode in `compose` (Raz Luvaton) #47413
test_runner:
  * (SEMVER-MINOR) add `testNamePatterns` to `run` API (Chemi Atlow) #47628
  * (SEMVER-MINOR) execute `before` hook on test (Chemi Atlow) #47586
  * (SEMVER-MINOR) support combining coverage reports (Colin Ihrig) #47686
wasi:
  * (SEMVER-MINOR) make `returnOnExit` true by default (Michael Dawson) #47390

PR-URL: #47820
  • Loading branch information
targos committed May 3, 2023
1 parent 159cf02 commit 68ef4a6
Show file tree
Hide file tree
Showing 12 changed files with 196 additions and 26 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -37,7 +37,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.0.0">20.0.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.1.0">20.1.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.0.0">20.0.0</a><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.9.0">19.9.0</a></b><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/assert.md
Expand Up @@ -222,7 +222,7 @@ added:
- v14.2.0
- v12.19.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47740

Check warning on line 226 in doc/api/assert.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: the `assert.CallTracker` class has been deprecated and will be
removed in a future version.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Expand Up @@ -625,7 +625,7 @@ added:
- v19.7.0
- v18.15.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47686

Check warning on line 629 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: This option can be used with `--test`.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/deprecations.md
Expand Up @@ -3364,7 +3364,7 @@ be added when a function is bound to an `AsyncResource`.

<!-- YAML
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47740

Check warning on line 3368 in doc/api/deprecations.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Documentation-only deprecation.
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/dns.md
Expand Up @@ -795,7 +795,7 @@ dns orders in workers.
## `dns.getDefaultResultOrder()`

<!-- YAML
added: REPLACEME
added: v20.1.0
-->

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

<!-- YAML
added: REPLACEME
added: v20.1.0
-->

Get the value of `dnsOrder`.
Expand Down
20 changes: 10 additions & 10 deletions doc/api/fs.md
Expand Up @@ -966,7 +966,7 @@ try {
<!-- YAML
added: v16.7.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47084

Check warning on line 970 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Accept an additional `mode` option to specify
the copy behavior as the `mode` argument of `fs.copyFile()`.
Expand Down Expand Up @@ -1220,7 +1220,7 @@ a colon, Node.js will open a file system stream, as described by
<!-- YAML
added: v12.12.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/41439

Check warning on line 1224 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Added `recursive` option.
- version:
Expand Down Expand Up @@ -1271,7 +1271,7 @@ closed after the iterator exits.
<!-- YAML
added: v10.0.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/41439

Check warning on line 1275 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Added `recursive` option.
- version: v10.11.0
Expand Down Expand Up @@ -2301,7 +2301,7 @@ copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
<!-- YAML
added: v16.7.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47084

Check warning on line 2305 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Accept an additional `mode` option to specify
the copy behavior as the `mode` argument of `fs.copyFile()`.
Expand Down Expand Up @@ -3410,7 +3410,7 @@ const { openAsBlob } = require('node:fs');
<!-- YAML
added: v12.12.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/41439
description: Added `recursive` option.
- version: v18.0.0
Expand Down Expand Up @@ -3550,7 +3550,7 @@ above values.
<!-- YAML
added: v0.1.8
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/41439
description: Added `recursive` option.
- version: v18.0.0
Expand Down Expand Up @@ -5222,7 +5222,7 @@ copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
<!-- YAML
added: v16.7.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47084
description: Accept an additional `mode` option to specify
the copy behavior as the `mode` argument of `fs.copyFile()`.
Expand Down Expand Up @@ -5562,7 +5562,7 @@ object with an `encoding` property specifying the character encoding to use.
<!-- YAML
added: v12.12.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/41439
description: Added `recursive` option.
- version:
Expand Down Expand Up @@ -5622,7 +5622,7 @@ this API: [`fs.open()`][].
<!-- YAML
added: v0.1.21
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/41439
description: Added `recursive` option.
- version: v10.10.0
Expand Down Expand Up @@ -6495,7 +6495,7 @@ value is determined by the `options.encoding` passed to [`fs.readdir()`][] or
#### `dirent.path`
<!-- YAML
added: REPLACEME
added: v20.1.0
-->
* {string}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http.md
Expand Up @@ -3192,7 +3192,7 @@ Found'`.
<!-- YAML
added: v0.1.13
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47405
description: The `highWaterMark` option is supported now.
- version: v18.0.0
Expand Down
2 changes: 1 addition & 1 deletion doc/api/net.md
Expand Up @@ -1539,7 +1539,7 @@ then returns the `net.Socket` that starts the connection.
<!-- YAML
added: v0.5.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47405
description: The `highWaterMark` option is supported now.
- version:
Expand Down
6 changes: 3 additions & 3 deletions doc/api/test.md
Expand Up @@ -728,7 +728,7 @@ added:
- v18.9.0
- v16.19.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47628
description: Add a testNamePatterns option.
-->
Expand Down Expand Up @@ -1508,7 +1508,7 @@ added:
- v18.0.0
- v16.17.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47586
description: The `before` function was added to TestContext.
-->
Expand All @@ -1520,7 +1520,7 @@ exposed as part of the API.
### `context.before([fn][, options])`

<!-- YAML
added: REPLACEME
added: v20.1.0
-->

* `fn` {Function|AsyncFunction} The hook function. The first argument
Expand Down
2 changes: 1 addition & 1 deletion doc/api/wasi.md
Expand Up @@ -118,7 +118,7 @@ added:
- v13.3.0
- v12.16.0
changes:
- version: REPLACEME
- version: v20.1.0
pr-url: https://github.com/nodejs/node/pull/47390
description: default value of returnOnExit changed to true.
- version: v20.0.0
Expand Down

0 comments on commit 68ef4a6

Please sign in to comment.