Skip to content

Commit 5053986

Browse files
UlisesGasconMedhansh404
authored andcommitted
2024-01-09, Version 20.11.0 'Iron' (LTS)
Notable changes: crypto: * update root certificates to NSS 3.95 (Node.js GitHub Bot) nodejs#50805 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 c++ fast path for writeFileSync utf8 (CanadaHonk) nodejs#49884 module: * (SEMVER-MINOR) remove useCustomLoadersIfPresent flag (Chengzhong Wu) nodejs#48655 * (SEMVER-MINOR) bootstrap module loaders in shadow realm (Chengzhong Wu) nodejs#48655 src: * (SEMVER-MINOR) add `--disable-warning` option (Ethan Arrowood) nodejs#50661 * (SEMVER-MINOR) create per isolate proxy env template (Chengzhong Wu) nodejs#48655 * (SEMVER-MINOR) make process binding data weak (Chengzhong Wu) nodejs#48655 stream: * 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#51124
1 parent dc34229 commit 5053986

File tree

8 files changed

+284
-10
lines changed

8 files changed

+284
-10
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ release.
4444
<a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a><br/>
4545
</td>
4646
<td valign="top">
47-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.10.0">20.10.0</a></b><br/>
47+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.11.0">20.11.0</a></b><br/>
48+
<a href="doc/changelogs/CHANGELOG_V20.md#20.10.0">20.10.0</a><br/>
4849
<a href="doc/changelogs/CHANGELOG_V20.md#20.9.0">20.9.0</a><br/>
4950
<a href="doc/changelogs/CHANGELOG_V20.md#20.8.1">20.8.1</a><br/>
5051
<a href="doc/changelogs/CHANGELOG_V20.md#20.8.0">20.8.0</a><br/>

doc/api/cli.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,9 @@ Affects the default output directory of:
513513
> Stability: 1.1 - Active development
514514
515515
<!-- YAML
516-
added: v21.3.0
516+
added:
517+
- v21.3.0
518+
- v20.11.0
517519
-->
518520

519521
Disable specific process warnings by `code` or `type`.
@@ -1924,7 +1926,9 @@ node --test --test-shard=3/3
19241926
### `--test-timeout`
19251927

19261928
<!-- YAML
1927-
added: v21.2.0
1929+
added:
1930+
- v21.2.0
1931+
- v20.11.0
19281932
-->
19291933

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

doc/api/deprecations.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -3527,7 +3527,9 @@ deprecated. Get them from `fs.constants` or `fs.promises.constants` instead.
35273527

35283528
<!-- YAML
35293529
changes:
3530-
- version: v21.3.0
3530+
- version:
3531+
- v21.3.0
3532+
- v20.11.0
35313533
pr-url: https://github.com/nodejs/node/pull/50486
35323534
description: A deprecation code has been assigned.
35333535
- version: v14.0.0

doc/api/esm.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,9 @@ properties.
342342
### `import.meta.dirname`
343343

344344
<!-- YAML
345-
added: v21.2.0
345+
added:
346+
- v21.2.0
347+
- v20.11.0
346348
-->
347349

348350
> Stability: 1.2 - Release candidate
@@ -355,7 +357,9 @@ added: v21.2.0
355357
### `import.meta.filename`
356358

357359
<!-- YAML
358-
added: v21.2.0
360+
added:
361+
- v21.2.0
362+
- v20.11.0
359363
-->
360364

361365
> Stability: 1.2 - Release candidate

doc/api/test.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,9 @@ added:
18371837
- v20.4.0
18381838
- v18.19.0
18391839
changes:
1840-
- version: v21.2.0
1840+
- version:
1841+
- v21.2.0
1842+
- v20.11.0
18411843
pr-url: https://github.com/nodejs/node/pull/48638
18421844
description: Updated parameters to be an option object with available APIs
18431845
and the default initial epoch.
@@ -2327,6 +2329,7 @@ clocks or actual timers outside of the mocking environment.
23272329
<!-- YAML
23282330
added:
23292331
- v21.2.0
2332+
- v20.11.0
23302333
-->
23312334

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

doc/api/vm.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,9 @@ function with the given `params`.
10551055
<!-- YAML
10561056
added: v0.3.1
10571057
changes:
1058-
- version: v21.2.0
1058+
- version:
1059+
- v21.2.0
1060+
- v20.11.0
10591061
pr-url: https://github.com/nodejs/node/pull/50360
10601062
description: The `importModuleDynamically` option is supported now.
10611063
- version: v14.6.0

doc/api/wasi.md

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

107107
<!-- YAML
108-
added: v21.2.0
108+
added:
109+
- v21.2.0
110+
- v20.11.0
109111
changes:
110-
- version: v21.2.0
112+
- version:
113+
- v21.2.0
114+
- v20.11.0
111115
pr-url: https://github.com/nodejs/node/pull/50396
112116
description: Clarify WASI security properties.
113117
-->

doc/changelogs/CHANGELOG_V20.md

+254
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)