Skip to content

Commit 1968ef3

Browse files
2024-07-24, Version 20.16.0 'Iron' (LTS)
Notable changes: buffer: * (SEMVER-MINOR) add .bytes() method to Blob (Matthew Aitken) #53221 doc: * doc-only deprecate OpenSSL engine-based APIs (Richard Lau) #53329 * (SEMVER-MINOR) add context.assert docs (Colin Ihrig) #53169 * (SEMVER-MINOR) improve explanation about built-in modules (Joyee Cheung) #52762 * add StefanStojanovic to collaborators (StefanStojanovic) #53118 * add Marco Ippolito to TSC (Rafael Gonzaga) #53008 inspector: * fix disable async hooks on Debugger.setAsyncCallStackDepth (Joyee Cheung) #53473 net: * (SEMVER-MINOR) add new net.server.listen tracing channel (Paolo Insogna) #53136 process: * (SEMVER-MINOR) add process.getBuiltinModule(id) (Joyee Cheung) #52762 src,permission: * (SEMVER-MINOR) --allow-wasi & prevent WASI exec (Rafael Gonzaga) #53124 test_runner: * (SEMVER-MINOR) add context.fullName (Colin Ihrig) #53169 util: * (SEMVER-MINOR) support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) #53107 PR-URL: #53945
1 parent 24f078a commit 1968ef3

12 files changed

+254
-23
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.15.1">20.15.1</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.16.0">20.16.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V20.md#20.15.1">20.15.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V20.md#20.15.0">20.15.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V20.md#20.14.0">20.14.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V20.md#20.13.1">20.13.1</a><br/>

doc/api/cli.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Relative paths are NOT supported through the CLI flag.
270270
### `--allow-wasi`
271271

272272
<!-- YAML
273-
added: REPLACEME
273+
added: v20.16.0
274274
-->
275275

276276
> Stability: 1.1 - Active development
@@ -492,7 +492,7 @@ node -C development app.js
492492
added: v12.0.0
493493
changes:
494494
- version:
495-
- REPLACEME
495+
- v20.16.0
496496
pr-url: https://github.com/nodejs/node/pull/53343
497497
description: The `--cpu-prof` flags are now stable.
498498
-->
@@ -520,7 +520,7 @@ CPU.20190409.202950.15293.0.0.cpuprofile
520520
added: v12.0.0
521521
changes:
522522
- version:
523-
- REPLACEME
523+
- v20.16.0
524524
pr-url: https://github.com/nodejs/node/pull/53343
525525
description: The `--cpu-prof` flags are now stable.
526526
-->
@@ -539,7 +539,7 @@ The default value is controlled by the
539539
added: v12.2.0
540540
changes:
541541
- version:
542-
- REPLACEME
542+
- v20.16.0
543543
pr-url: https://github.com/nodejs/node/pull/53343
544544
description: The `--cpu-prof` flags are now stable.
545545
-->
@@ -555,7 +555,7 @@ by `--cpu-prof`. The default is 1000 microseconds.
555555
added: v12.0.0
556556
changes:
557557
- version:
558-
- REPLACEME
558+
- v20.16.0
559559
pr-url: https://github.com/nodejs/node/pull/53343
560560
description: The `--cpu-prof` flags are now stable.
561561
-->
@@ -1110,7 +1110,7 @@ To allow polyfills to be added,
11101110
added: v12.4.0
11111111
changes:
11121112
- version:
1113-
- REPLACEME
1113+
- v20.16.0
11141114
pr-url: https://github.com/nodejs/node/pull/53343
11151115
description: The `--heap-prof` flags are now stable.
11161116
-->
@@ -1138,7 +1138,7 @@ Heap.20190409.202950.15293.0.001.heapprofile
11381138
added: v12.4.0
11391139
changes:
11401140
- version:
1141-
- REPLACEME
1141+
- v20.16.0
11421142
pr-url: https://github.com/nodejs/node/pull/53343
11431143
description: The `--heap-prof` flags are now stable.
11441144
-->
@@ -1157,7 +1157,7 @@ The default value is controlled by the
11571157
added: v12.4.0
11581158
changes:
11591159
- version:
1160-
- REPLACEME
1160+
- v20.16.0
11611161
pr-url: https://github.com/nodejs/node/pull/53343
11621162
description: The `--heap-prof` flags are now stable.
11631163
-->
@@ -1173,7 +1173,7 @@ by `--heap-prof`. The default is 512 \* 1024 bytes.
11731173
added: v12.4.0
11741174
changes:
11751175
- version:
1176-
- REPLACEME
1176+
- v20.16.0
11771177
pr-url: https://github.com/nodejs/node/pull/53343
11781178
description: The `--heap-prof` flags are now stable.
11791179
-->
@@ -2823,7 +2823,7 @@ added:
28232823
- v12.16.0
28242824
changes:
28252825
- version:
2826-
- REPLACEME
2826+
- v20.16.0
28272827
pr-url: https://github.com/nodejs/node/pull/52905
28282828
description:
28292829
Remove the possibility to use this env var with

doc/api/crypto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5390,7 +5390,7 @@ added: v15.6.0
53905390
<!-- YAML
53915391
added: v0.11.11
53925392
changes:
5393-
- version: REPLACEME
5393+
- version: v20.16.0
53945394
pr-url: https://github.com/nodejs/node/pull/53329
53955395
description: Custom engine support in OpenSSL 3 is deprecated.
53965396
-->

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3530,7 +3530,7 @@ is deprecated to better align with recommendations per [NIST SP 800-38D][].
35303530

35313531
<!-- YAML
35323532
changes:
3533-
- version: REPLACEME
3533+
- version: v20.16.0
35343534
pr-url: https://github.com/nodejs/node/pull/53329
35353535
description: Documentation-only deprecation.
35363536
-->

doc/api/https.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ a `timeout` of 5 seconds.
342342
<!-- YAML
343343
added: v0.3.6
344344
changes:
345-
- version: REPLACEME
345+
- version: v20.16.0
346346
pr-url: https://github.com/nodejs/node/pull/53329
347347
description: The `clientCertEngine` option depends on custom engine
348348
support in OpenSSL which is deprecated in OpenSSL 3.

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1920,7 +1920,7 @@ console.log('After:', getActiveResourcesInfo());
19201920
## `process.getBuiltinModule(id)`
19211921
19221922
<!-- YAML
1923-
added: REPLACEME
1923+
added: v20.16.0
19241924
-->
19251925
19261926
* `id` {string} ID of the built-in module being requested.

doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ Getter for the property `objectMode` of a given `Writable` stream.
955955
##### `writable[Symbol.asyncDispose]()`
956956

957957
<!-- YAML
958-
added: REPLACEME
958+
added: v20.16.0
959959
-->
960960

961961
> Stability: 1 - Experimental

doc/api/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2921,7 +2921,7 @@ test('top level test', (t) => {
29212921
### `context.fullName`
29222922

29232923
<!-- YAML
2924-
added: REPLACEME
2924+
added: v20.16.0
29252925
-->
29262926

29272927
The name of the test and each of its ancestors, separated by `>`.

doc/api/tls.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1799,7 +1799,7 @@ argument.
17991799
<!-- YAML
18001800
added: v0.11.13
18011801
changes:
1802-
- version: REPLACEME
1802+
- version: v20.16.0
18031803
pr-url: https://github.com/nodejs/node/pull/53329
18041804
description: The `clientCertEngine`, `privateKeyEngine` and
18051805
`privateKeyIdentifier` options depend on custom engine
@@ -2060,7 +2060,7 @@ where `secureSocket` has the same API as `pair.cleartext`.
20602060
<!-- YAML
20612061
added: v0.3.2
20622062
changes:
2063-
- version: REPLACEME
2063+
- version: v20.16.0
20642064
pr-url: https://github.com/nodejs/node/pull/53329
20652065
description: The `clientCertEngine` option depends on custom engine
20662066
support in OpenSSL which is deprecated in OpenSSL 3.

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,7 @@ added:
13901390
- v18.3.0
13911391
- v16.17.0
13921392
changes:
1393-
- version: REPLACEME
1393+
- version: v20.16.0
13941394
pr-url: https://github.com/nodejs/node/pull/53107
13951395
description: add support for allowing negative options in input `config`.
13961396
- version:

0 commit comments

Comments
 (0)