Skip to content

Commit

Permalink
2023-09-04, Version 20.6.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
UlisesGascon authored and alexfernandez committed Nov 1, 2023
1 parent 34072d2 commit c86bcd1
Show file tree
Hide file tree
Showing 9 changed files with 239 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -35,7 +35,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.5.1">20.5.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.6.0">20.6.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.1">20.5.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.0">20.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.4.0">20.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.3.1">20.3.1</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Expand Up @@ -527,7 +527,7 @@ added:
- v13.9.0
- v12.16.2
changes:
- version: REPLACEME
- version: v20.6.0
pr-url: https://github.com/nodejs/node/pull/49028
description: synchronous import.meta.resolve made available by default, with
the flag retained for enabling the experimental second argument
Expand Down Expand Up @@ -1007,7 +1007,7 @@ disappear in a non-semver-major release.
> Stability: 1.1 - Active development
<!-- YAML
added: REPLACEME
added: v20.6.0
-->

Loads environment variables from a file relative to the current directory,
Expand Down
2 changes: 1 addition & 1 deletion doc/api/esm.md
Expand Up @@ -338,7 +338,7 @@ changes:
pr-url: https://github.com/nodejs/node/pull/38587
description: Add support for WHATWG `URL` object to `parentURL` parameter.
- version:
- REPLACEME
- v20.6.0
pr-url: https://github.com/nodejs/node/pull/49028
description: Unflag import.meta.resolve, with `parentURL` parameter still
flagged.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/fs.md
Expand Up @@ -1164,7 +1164,7 @@ makeDirectory().catch(console.error);
<!-- YAML
added: v10.0.0
changes:
- version: REPLACEME
- version: v20.6.0
pr-url: https://github.com/nodejs/node/pull/48828
description: The `prefix` parameter now accepts buffers and URL.
- version:
Expand Down Expand Up @@ -3259,7 +3259,7 @@ See the POSIX mkdir(2) documentation for more details.
<!-- YAML
added: v5.10.0
changes:
- version: REPLACEME
- version: v20.6.0
pr-url: https://github.com/nodejs/node/pull/48828
description: The `prefix` parameter now accepts buffers and URL.
- version: v18.0.0
Expand Down Expand Up @@ -5575,7 +5575,7 @@ See the POSIX mkdir(2) documentation for more details.
<!-- YAML
added: v5.10.0
changes:
- version: REPLACEME
- version: v20.6.0
pr-url: https://github.com/nodejs/node/pull/48828
description: The `prefix` parameter now accepts buffers and URL.
- version:
Expand Down
2 changes: 1 addition & 1 deletion doc/api/inspector.md
Expand Up @@ -421,7 +421,7 @@ console.

<!-- YAML
changes:
- version: REPLACEME
- version: v20.6.0
pr-url: https://github.com/nodejs/node/pull/48765
description: inspector.open() now returns a `Disposable` object.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/module.md
Expand Up @@ -83,7 +83,7 @@ isBuiltin('wss'); // false
### `module.register(specifier[, parentURL][, options])`
<!-- YAML
added: REPLACEME
added: v20.6.0
-->
> Stability: 1.1 - Active development
Expand Down
4 changes: 2 additions & 2 deletions doc/api/single-executable-applications.md
Expand Up @@ -7,10 +7,10 @@ added:
- v19.7.0
- v18.16.0
changes:
- version: REPLACEME
- version: v20.6.0
pr-url: https://github.com/nodejs/node/pull/46824
description: Added support for "useSnapshot".
- version: REPLACEME
- version: v20.6.0
pr-url: https://github.com/nodejs/node/pull/48191
description: Added support for "useCodeCache".
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/webstreams.md
Expand Up @@ -392,7 +392,7 @@ port2.postMessage(stream, [stream]);
### `ReadableStream.from(iterable)`

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

* `iterable` {Iterable} Object implementing the `Symbol.asyncIterator` or
Expand Down
226 changes: 226 additions & 0 deletions doc/changelogs/CHANGELOG_V20.md

Large diffs are not rendered by default.

0 comments on commit c86bcd1

Please sign in to comment.