Skip to content

Commit ee7e999

Browse files
committed
2023-12-14, Version 20.11.0 'Iron' (LTS)
Notable changes: crypto: * update root certificates to NSS 3.95 (Node.js GitHub Bot) #50805 doc: * add MrJithil to collaborators (Jithil P Ponnan) #50666 * add Ethan-Arrowood as a collaborator (Ethan Arrowood) #50393 esm: * (SEMVER-MINOR) add import.meta.dirname and import.meta.filename (James Sumners) #48740 fs: * add c++ fast path for writeFileSync utf8 (CanadaHonk) #49884 module: * (SEMVER-MINOR) remove useCustomLoadersIfPresent flag (Chengzhong Wu) #48655 src: * (SEMVER-MINOR) add `--disable-warning` option (Ethan Arrowood) #50661 * (SEMVER-MINOR) create per isolate proxy env template (Chengzhong Wu) #48655 * (SEMVER-MINOR) make process binding data weak (Chengzhong Wu) #48655 stream: * use Array for Readable buffer (Robert Nagy) #50341 * optimize creation (Robert Nagy) #50337 test_runner: * (SEMVER-MINOR) adds built in lcov reporter (Phil Nash) #50018 * (SEMVER-MINOR) add Date to the supported mock APIs (Lucas Santos) #48638 test_runner, cli: * (SEMVER-MINOR) add --test-timeout flag (Shubham Pandey) #50443 PR-URL: #51124
1 parent 423c757 commit ee7e999

File tree

9 files changed

+265
-14
lines changed

9 files changed

+265
-14
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.10.0">20.10.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.11.0">20.11.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V20.md#20.10.0">20.10.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V20.md#20.9.0">20.9.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V20.md#20.8.1">20.8.1</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V20.md#20.8.0">20.8.0</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ Affects the default output directory of:
448448
> Stability: 1.1 - Active development
449449
450450
<!-- YAML
451-
added: REPLACEME
451+
added: v20.11.0
452452
-->
453453

454454
Disable specific process warnings by `code` or `type`.
@@ -1797,7 +1797,7 @@ node --test --test-shard=3/3
17971797
### `--test-timeout`
17981798

17991799
<!-- YAML
1800-
added: REPLACEME
1800+
added: v20.11.0
18011801
-->
18021802

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

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3424,7 +3424,7 @@ deprecated. Get them from `fs.constants` or `fs.promises.constants` instead.
34243424

34253425
<!-- YAML
34263426
changes:
3427-
- version: REPLACEME
3427+
- version: v20.11.0
34283428
pr-url: https://github.com/nodejs/node/pull/50486
34293429
description: A deprecation code has been assigned.
34303430
- version: v14.0.0

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: v20.11.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: v20.11.0
352352
-->
353353

354354
> Stability: 1.2 - Release candidate

doc/api/test.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,7 @@ which is a `MockTimers` instance.
18371837
added:
18381838
- v20.4.0
18391839
changes:
1840-
- version: REPLACEME
1840+
- version: v20.11.0
18411841
pr-url: https://github.com/nodejs/node/pull/48638
18421842
description: Updated parameters to be an option object with available APIs
18431843
and the default initial epoch.
@@ -2323,7 +2323,7 @@ clocks or actual timers outside of the mocking environment.
23232323

23242324
<!-- YAML
23252325
added:
2326-
- REPLACEME
2326+
- v20.11.0
23272327
-->
23282328

23292329
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: v20.11.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: v20.11.0
109109
changes:
110-
- version: REPLACEME
110+
- version: v20.11.0
111111
pr-url: https://github.com/nodejs/node/pull/50396
112112
description: Clarify WASI security properties.
113113
-->

doc/changelogs/CHANGELOG_V20.md

+250
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 20
26-
#define NODE_MINOR_VERSION 10
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 11
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Iron"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)