Skip to content

Commit cb27942

Browse files
targosmartenrichter
authored andcommitted
2023-11-14, Version 21.2.0 (Current)
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
1 parent e9c6d17 commit cb27942

File tree

9 files changed

+183
-15
lines changed

9 files changed

+183
-15
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ release.
3636
</tr>
3737
<tr>
3838
<td valign="top">
39-
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.1.0">21.1.0</a></b><br/>
39+
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.2.0">21.2.0</a></b><br/>
40+
<a href="doc/changelogs/CHANGELOG_V21.md#21.1.0">21.1.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a><br/>
4142
</td>
4243
<td valign="top">

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ Disable exposition of [CustomEvent Web API][] on the global scope.
11991199
### `--no-experimental-global-navigator`
12001200

12011201
<!-- YAML
1202-
added: REPLACEME
1202+
added: v21.2.0
12031203
-->
12041204

12051205
> Stability: 1 - Experimental
@@ -1784,7 +1784,7 @@ node --test --test-shard=3/3
17841784
### `--test-timeout`
17851785

17861786
<!-- YAML
1787-
added: REPLACEME
1787+
added: v21.2.0
17881788
-->
17891789

17901790
A number of milliseconds the test execution will fail after. If unspecified,

doc/api/esm.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ properties.
335335
### `import.meta.dirname`
336336

337337
<!-- YAML
338-
added: REPLACEME
338+
added: v21.2.0
339339
-->
340340

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

350350
<!-- YAML
351-
added: REPLACEME
351+
added: v21.2.0
352352
-->
353353

354354
> Stability: 1.2 - Release candidate

doc/api/globals.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ console.log(`This process is running on ${navigator.hardwareConcurrency} logical
634634
### `navigator.language`
635635

636636
<!-- YAML
637-
added: REPLACEME
637+
added: v21.2.0
638638
-->
639639

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

657657
<!-- YAML
658-
added: REPLACEME
658+
added: v21.2.0
659659
-->
660660

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

677677
<!-- YAML
678-
added: REPLACEME
678+
added: v21.2.0
679679
-->
680680

681681
* {string}

doc/api/test.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1817,7 +1817,7 @@ which is a `MockTimers` instance.
18171817
added:
18181818
- v20.4.0
18191819
changes:
1820-
- version: REPLACEME
1820+
- version: v21.2.0
18211821
pr-url: https://github.com/nodejs/node/pull/48638
18221822
description: Updated parameters to be an option object with available APIs
18231823
and the default initial epoch.
@@ -2303,7 +2303,7 @@ clocks or actual timers outside of the mocking environment.
23032303

23042304
<!-- YAML
23052305
added:
2306-
- REPLACEME
2306+
- v21.2.0
23072307
-->
23082308

23092309
Sets the current Unix timestamp that will be used as reference for any mocked

doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ function with the given `params`.
10521052
<!-- YAML
10531053
added: v0.3.1
10541054
changes:
1055-
- version: REPLACEME
1055+
- version: v21.2.0
10561056
pr-url: https://github.com/nodejs/node/pull/50360
10571057
description: The `importModuleDynamically` option is supported now.
10581058
- version: v14.6.0

doc/api/wasi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ wat2wasm demo.wat
105105
## Security
106106

107107
<!-- YAML
108-
added: REPLACEME
108+
added: v21.2.0
109109
changes:
110-
- version: REPLACEME
110+
- version: v21.2.0
111111
pr-url: https://github.com/nodejs/node/pull/50396
112112
description: Clarify WASI security properties.
113113
-->

doc/api/webstreams.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1421,7 +1421,7 @@ changes:
14211421
<!-- YAML
14221422
added: v17.0.0
14231423
changes:
1424-
- version: REPLACEME
1424+
- version: v21.2.0
14251425
pr-url: https://github.com/nodejs/node/pull/50097
14261426
description: format now accepts `deflate-raw` value.
14271427
-->
@@ -1459,7 +1459,7 @@ changes:
14591459
<!-- YAML
14601460
added: v17.0.0
14611461
changes:
1462-
- version: REPLACEME
1462+
- version: v21.2.0
14631463
pr-url: https://github.com/nodejs/node/pull/50097
14641464
description: format now accepts `deflate-raw` value.
14651465
-->

doc/changelogs/CHANGELOG_V21.md

+167
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)