Skip to content

Commit 99e317e

Browse files
targosbmeck
authored andcommitted
2024-05-15, Version 22.2.0 (Current)
Notable changes: cli: * (SEMVER-MINOR) allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) nodejs#52766 doc: * add pimterry to collaborators (Tim Perry) nodejs#52874 fs: * (SEMVER-MINOR) allow 'withFileTypes' to be used with globs (Aviv Keller) nodejs#52837 inspector: * (SEMVER-MINOR) introduce the `--inspect-wait` flag (Kohei Ueno) nodejs#52734 lib,src: * remove --experimental-policy (Rafael Gonzaga) nodejs#52583 perf_hooks: * (SEMVER-MINOR) add `deliveryType` and `responseStatus` fields (Matthew Aitken) nodejs#51589 test_runner: * (SEMVER-MINOR) support test plans (Colin Ihrig) nodejs#52860 zlib: * (SEMVER-MINOR) expose zlib.crc32() (Joyee Cheung) nodejs#52692 PR-URL: nodejs#52971
1 parent 30a9c6e commit 99e317e

File tree

9 files changed

+185
-19
lines changed

9 files changed

+185
-19
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ release.
3838
</tr>
3939
<tr>
4040
<td valign="top">
41-
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.1.0">22.1.0</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.2.0">22.2.0</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V22.md#22.1.0">22.1.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V22.md#22.0.0">22.0.0</a><br/>
4344
</td>
4445
<td valign="top">

doc/api/assert.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ An alias of [`assert.ok()`][].
555555
<!-- YAML
556556
added: v0.1.21
557557
changes:
558-
- version: REPLACEME
558+
- version: v22.2.0
559559
pr-url: https://github.com/nodejs/node/pull/51805
560560
description: Error cause and errors properties are now compared as well.
561561
- version: v18.0.0
@@ -739,7 +739,7 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the
739739
<!-- YAML
740740
added: v1.2.0
741741
changes:
742-
- version: REPLACEME
742+
- version: v22.2.0
743743
pr-url: https://github.com/nodejs/node/pull/51805
744744
description: Error cause and errors properties are now compared as well.
745745
- version: v18.0.0

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ vm.measureMemory();
568568
### `--disable-wasm-trap-handler`
569569

570570
<!-- YAML
571-
added: REPLACEME
571+
added: v22.2.0
572572
-->
573573

574574
By default, Node.js enables trap-handler-based WebAssembly bound
@@ -1337,7 +1337,7 @@ endpoint on `http://host:port/json/list`.
13371337
### `--inspect-wait[=[host:]port]`
13381338

13391339
<!-- YAML
1340-
added: REPLACEME
1340+
added: v22.2.0
13411341
-->
13421342

13431343
Activate inspector on `host:port` and wait for debugger to be attached.

doc/api/errors.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -3379,7 +3379,7 @@ An import attribute is not supported by this version of Node.js.
33793379
### `ERR_MANIFEST_ASSERT_INTEGRITY`
33803380

33813381
<!-- YAML
3382-
removed: REPLACEME
3382+
removed: v22.2.0
33833383
-->
33843384

33853385
An attempt was made to load a resource, but the resource did not match the
@@ -3391,7 +3391,7 @@ manifests for more information.
33913391
### `ERR_MANIFEST_DEPENDENCY_MISSING`
33923392

33933393
<!-- YAML
3394-
removed: REPLACEME
3394+
removed: v22.2.0
33953395
-->
33963396

33973397
An attempt was made to load a resource, but the resource was not listed as a
@@ -3403,7 +3403,7 @@ for policy manifests for more information.
34033403
### `ERR_MANIFEST_INTEGRITY_MISMATCH`
34043404

34053405
<!-- YAML
3406-
removed: REPLACEME
3406+
removed: v22.2.0
34073407
-->
34083408

34093409
An attempt was made to load a policy manifest, but the manifest had multiple
@@ -3416,7 +3416,7 @@ policy manifests for more information.
34163416
### `ERR_MANIFEST_INVALID_RESOURCE_FIELD`
34173417

34183418
<!-- YAML
3419-
removed: REPLACEME
3419+
removed: v22.2.0
34203420
-->
34213421

34223422
A policy manifest resource had an invalid value for one of its fields. Update
@@ -3428,7 +3428,7 @@ documentation for policy manifests for more information.
34283428
### `ERR_MANIFEST_INVALID_SPECIFIER`
34293429

34303430
<!-- YAML
3431-
removed: REPLACEME
3431+
removed: v22.2.0
34323432
-->
34333433

34343434
A policy manifest resource had an invalid value for one of its dependency
@@ -3440,7 +3440,7 @@ documentation for policy manifests for more information.
34403440
### `ERR_MANIFEST_PARSE_POLICY`
34413441

34423442
<!-- YAML
3443-
removed: REPLACEME
3443+
removed: v22.2.0
34443444
-->
34453445

34463446
An attempt was made to load a policy manifest, but the manifest was unable to
@@ -3451,7 +3451,7 @@ be parsed. See the documentation for policy manifests for more information.
34513451
### `ERR_MANIFEST_TDZ`
34523452

34533453
<!-- YAML
3454-
removed: REPLACEME
3454+
removed: v22.2.0
34553455
-->
34563456

34573457
An attempt was made to read from a policy manifest, but the manifest
@@ -3462,7 +3462,7 @@ initialization has not yet taken place. This is likely a bug in Node.js.
34623462
### `ERR_MANIFEST_UNKNOWN_ONERROR`
34633463

34643464
<!-- YAML
3465-
removed: REPLACEME
3465+
removed: v22.2.0
34663466
-->
34673467

34683468
A policy manifest was loaded, but had an unknown value for its "onerror"

doc/api/fs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ behavior is similar to `cp dir1/ dir2/`.
10741074
<!-- YAML
10751075
added: v22.0.0
10761076
changes:
1077-
- version: REPLACEME
1077+
- version: v22.2.0
10781078
pr-url: https://github.com/nodejs/node/pull/52837
10791079
description: Add support for `withFileTypes` as an option.
10801080
-->
@@ -3116,7 +3116,7 @@ descriptor. See [`fs.utimes()`][].
31163116
<!-- YAML
31173117
added: v22.0.0
31183118
changes:
3119-
- version: REPLACEME
3119+
- version: v22.2.0
31203120
pr-url: https://github.com/nodejs/node/pull/52837
31213121
description: Add support for `withFileTypes` as an option.
31223122
-->
@@ -5650,7 +5650,7 @@ Synchronous version of [`fs.futimes()`][]. Returns `undefined`.
56505650
<!-- YAML
56515651
added: v22.0.0
56525652
changes:
5653-
- version: REPLACEME
5653+
- version: v22.2.0
56545654
pr-url: https://github.com/nodejs/node/pull/52837
56555655
description: Add support for `withFileTypes` as an option.
56565656
-->

doc/api/perf_hooks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ added:
253253
- v18.2.0
254254
- v16.17.0
255255
changes:
256-
- version: REPLACEME
256+
- version: v22.2.0
257257
pr-url: https://github.com/nodejs/node/pull/51589
258258
description: Added bodyInfo, responseStatus, and deliveryType arguments.
259259
-->

doc/api/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2983,7 +2983,7 @@ The name of the test.
29832983

29842984
<!-- YAML
29852985
added:
2986-
- REPLACEME
2986+
- v22.2.0
29872987
-->
29882988

29892989
> Stability: 1 - Experimental

doc/api/zlib.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ as appropriate for the derived class).
715715
### `zlib.crc32(data[, value])`
716716

717717
<!-- YAML
718-
added: REPLACEME
718+
added: v22.2.0
719719
-->
720720

721721
* `data` {string|Buffer|TypedArray|DataView} When `data` is a string,

0 commit comments

Comments
 (0)