Skip to content

Commit

Permalink
2023-11-14, Version 21.2.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

doc:
  * add MrJithil to collaborators (Jithil P Ponnan) nodejs#50666
  * add Ethan-Arrowood as a collaborator (Ethan Arrowood) nodejs#50393
esm:
  * (SEMVER-MINOR) add import.meta.dirname and import.meta.filename (James Sumners) nodejs#48740
fs:
  * add stacktrace to fs/promises (翠 / green) nodejs#49849
lib:
  * (SEMVER-MINOR) add `--no-experimental-global-navigator` CLI flag (Antoine du Hamel) nodejs#50562
  * (SEMVER-MINOR) add navigator.language & navigator.languages (Aras Abbasi) nodejs#50303
  * (SEMVER-MINOR) add navigator.platform (Aras Abbasi) nodejs#50385
stream:
  * (SEMVER-MINOR) add support for `deflate-raw` format to webstreams compression (Damian Krzeminski) nodejs#50097
  * use Array for Readable buffer (Robert Nagy) nodejs#50341
  * optimize creation (Robert Nagy) nodejs#50337
test_runner:
  * (SEMVER-MINOR) adds built in lcov reporter (Phil Nash) nodejs#50018
  * (SEMVER-MINOR) add Date to the supported mock APIs (Lucas Santos) nodejs#48638
test_runner, cli:
  * (SEMVER-MINOR) add --test-timeout flag (Shubham Pandey) nodejs#50443

PR-URL: nodejs#50681
  • Loading branch information
targos authored and martenrichter committed Nov 26, 2023
1 parent e9c6d17 commit cb27942
Show file tree
Hide file tree
Showing 9 changed files with 183 additions and 15 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.1.0">21.1.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.2.0">21.2.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V21.md#21.1.0">21.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a><br/>
</td>
<td valign="top">
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ Disable exposition of [CustomEvent Web API][] on the global scope.
### `--no-experimental-global-navigator`

<!-- YAML
added: REPLACEME
added: v21.2.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -1784,7 +1784,7 @@ node --test --test-shard=3/3
### `--test-timeout`

<!-- YAML
added: REPLACEME
added: v21.2.0
-->

A number of milliseconds the test execution will fail after. If unspecified,
Expand Down
4 changes: 2 additions & 2 deletions doc/api/esm.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ properties.
### `import.meta.dirname`

<!-- YAML
added: REPLACEME
added: v21.2.0
-->

> Stability: 1.2 - Release candidate
Expand All @@ -348,7 +348,7 @@ added: REPLACEME
### `import.meta.filename`

<!-- YAML
added: REPLACEME
added: v21.2.0
-->

> Stability: 1.2 - Release candidate
Expand Down
6 changes: 3 additions & 3 deletions doc/api/globals.md
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ console.log(`This process is running on ${navigator.hardwareConcurrency} logical
### `navigator.language`

<!-- YAML
added: REPLACEME
added: v21.2.0
-->

* {string}
Expand All @@ -655,7 +655,7 @@ console.log(`The preferred language of the Node.js instance has the tag '${navig
### `navigator.languages`

<!-- YAML
added: REPLACEME
added: v21.2.0
-->

* {Array<string>}
Expand All @@ -675,7 +675,7 @@ console.log(`The preferred languages are '${navigator.languages}'`);
### `navigator.platform`

<!-- YAML
added: REPLACEME
added: v21.2.0
-->

* {string}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -1817,7 +1817,7 @@ which is a `MockTimers` instance.
added:
- v20.4.0
changes:
- version: REPLACEME
- version: v21.2.0
pr-url: https://github.com/nodejs/node/pull/48638
description: Updated parameters to be an option object with available APIs
and the default initial epoch.
Expand Down Expand Up @@ -2303,7 +2303,7 @@ clocks or actual timers outside of the mocking environment.

<!-- YAML
added:
- REPLACEME
- v21.2.0
-->

Sets the current Unix timestamp that will be used as reference for any mocked
Expand Down
2 changes: 1 addition & 1 deletion doc/api/vm.md
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ function with the given `params`.
<!-- YAML
added: v0.3.1
changes:
- version: REPLACEME
- version: v21.2.0
pr-url: https://github.com/nodejs/node/pull/50360
description: The `importModuleDynamically` option is supported now.
- version: v14.6.0
Expand Down
4 changes: 2 additions & 2 deletions doc/api/wasi.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ wat2wasm demo.wat
## Security

<!-- YAML
added: REPLACEME
added: v21.2.0
changes:
- version: REPLACEME
- version: v21.2.0
pr-url: https://github.com/nodejs/node/pull/50396
description: Clarify WASI security properties.
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/webstreams.md
Original file line number Diff line number Diff line change
Expand Up @@ -1421,7 +1421,7 @@ changes:
<!-- YAML
added: v17.0.0
changes:
- version: REPLACEME
- version: v21.2.0
pr-url: https://github.com/nodejs/node/pull/50097
description: format now accepts `deflate-raw` value.
-->
Expand Down Expand Up @@ -1459,7 +1459,7 @@ changes:
<!-- YAML
added: v17.0.0
changes:
- version: REPLACEME
- version: v21.2.0
pr-url: https://github.com/nodejs/node/pull/50097
description: format now accepts `deflate-raw` value.
-->
Expand Down
167 changes: 167 additions & 0 deletions doc/changelogs/CHANGELOG_V21.md

Large diffs are not rendered by default.

0 comments on commit cb27942

Please sign in to comment.