Skip to content

Commit c86bcd1

Browse files
UlisesGasconalexfernandez
authored andcommitted
2023-09-04, Version 20.6.0 (Current)
Notable changes: deps: * V8: cherry-pick 93275031284c (Joyee Cheung) nodejs#48660 doc: * add new TSC members (Michael Dawson) nodejs#48841 * add rluvaton to collaborators (Raz Luvaton) nodejs#49215 esm: * unflag import.meta.resolve (Guy Bedford) nodejs#49028 * add `initialize` hook, integrate with `register` (Izaak Schroeder) nodejs#48842 * unflag `Module.register` and allow nested loader `import()` (Izaak Schroeder) nodejs#48559 inspector: * (SEMVER-MINOR) open add `SymbolDispose` (Chemi Atlow) nodejs#48765 module: * implement `register` utility (João Lenon) nodejs#46826 * make CJS load from ESM loader (Antoine du Hamel) nodejs#47999 src: * add built-in `.env` file support (Yagiz Nizipli) nodejs#48890 * initialize cppgc (Daryl Haresign and Joyee Cheung) nodejs#48660 and nodejs#45704 test_runner: * (SEMVER-MINOR) expose location of tests (Colin Ihrig) nodejs#48975 PR-URL: nodejs#49185
1 parent 34072d2 commit c86bcd1

9 files changed

+239
-12
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.5.1">20.5.1</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.6.0">20.6.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.1">20.5.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.0">20.5.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V20.md#20.4.0">20.4.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V20.md#20.3.1">20.3.1</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ added:
527527
- v13.9.0
528528
- v12.16.2
529529
changes:
530-
- version: REPLACEME
530+
- version: v20.6.0
531531
pr-url: https://github.com/nodejs/node/pull/49028
532532
description: synchronous import.meta.resolve made available by default, with
533533
the flag retained for enabling the experimental second argument
@@ -1007,7 +1007,7 @@ disappear in a non-semver-major release.
10071007
> Stability: 1.1 - Active development
10081008
10091009
<!-- YAML
1010-
added: REPLACEME
1010+
added: v20.6.0
10111011
-->
10121012

10131013
Loads environment variables from a file relative to the current directory,

doc/api/esm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ changes:
338338
pr-url: https://github.com/nodejs/node/pull/38587
339339
description: Add support for WHATWG `URL` object to `parentURL` parameter.
340340
- version:
341-
- REPLACEME
341+
- v20.6.0
342342
pr-url: https://github.com/nodejs/node/pull/49028
343343
description: Unflag import.meta.resolve, with `parentURL` parameter still
344344
flagged.

doc/api/fs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ makeDirectory().catch(console.error);
11641164
<!-- YAML
11651165
added: v10.0.0
11661166
changes:
1167-
- version: REPLACEME
1167+
- version: v20.6.0
11681168
pr-url: https://github.com/nodejs/node/pull/48828
11691169
description: The `prefix` parameter now accepts buffers and URL.
11701170
- version:
@@ -3259,7 +3259,7 @@ See the POSIX mkdir(2) documentation for more details.
32593259
<!-- YAML
32603260
added: v5.10.0
32613261
changes:
3262-
- version: REPLACEME
3262+
- version: v20.6.0
32633263
pr-url: https://github.com/nodejs/node/pull/48828
32643264
description: The `prefix` parameter now accepts buffers and URL.
32653265
- version: v18.0.0
@@ -5575,7 +5575,7 @@ See the POSIX mkdir(2) documentation for more details.
55755575
<!-- YAML
55765576
added: v5.10.0
55775577
changes:
5578-
- version: REPLACEME
5578+
- version: v20.6.0
55795579
pr-url: https://github.com/nodejs/node/pull/48828
55805580
description: The `prefix` parameter now accepts buffers and URL.
55815581
- version:

doc/api/inspector.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ console.
421421

422422
<!-- YAML
423423
changes:
424-
- version: REPLACEME
424+
- version: v20.6.0
425425
pr-url: https://github.com/nodejs/node/pull/48765
426426
description: inspector.open() now returns a `Disposable` object.
427427
-->

doc/api/module.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ isBuiltin('wss'); // false
8383
### `module.register(specifier[, parentURL][, options])`
8484
8585
<!-- YAML
86-
added: REPLACEME
86+
added: v20.6.0
8787
-->
8888
8989
> Stability: 1.1 - Active development

doc/api/single-executable-applications.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ added:
77
- v19.7.0
88
- v18.16.0
99
changes:
10-
- version: REPLACEME
10+
- version: v20.6.0
1111
pr-url: https://github.com/nodejs/node/pull/46824
1212
description: Added support for "useSnapshot".
13-
- version: REPLACEME
13+
- version: v20.6.0
1414
pr-url: https://github.com/nodejs/node/pull/48191
1515
description: Added support for "useCodeCache".
1616
-->

doc/api/webstreams.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ port2.postMessage(stream, [stream]);
392392
### `ReadableStream.from(iterable)`
393393

394394
<!-- YAML
395-
added: REPLACEME
395+
added: v20.6.0
396396
-->
397397

398398
* `iterable` {Iterable} Object implementing the `Symbol.asyncIterator` or

doc/changelogs/CHANGELOG_V20.md

+226
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)