Skip to content

Commit 167ef1a

Browse files
2024-06-20, Version 20.15.0 'Iron' (LTS)
Notable changes: doc: * add pimterry to collaborators (Tim Perry) #52874 inspector: * (SEMVER-MINOR) introduce the `--inspect-wait` flag (Kohei Ueno) #52734 test_runner: * (SEMVER-MINOR) support test plans (Colin Ihrig) #52860 tools: * (SEMVER-MINOR) fix get_asan_state() in tools/test.py (Joyee Cheung) #52766 * (SEMVER-MINOR) support max_virtual_memory test configuration (Joyee Cheung) #52766 * (SEMVER-MINOR) support != in test status files (Joyee Cheung) #52766 zlib: * (SEMVER-MINOR) expose zlib.crc32() (Joyee Cheung) #52692 PR-URL: #53486
1 parent 53e9106 commit 167ef1a

File tree

6 files changed

+209
-6
lines changed

6 files changed

+209
-6
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ release.
5959
<a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a><br/>
6060
</td>
6161
<td valign="top">
62-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.14.0">20.14.0</a></b><br/>
62+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.15.0">20.15.0</a></b><br/>
63+
<a href="doc/changelogs/CHANGELOG_V20.md#20.14.0">20.14.0</a><br/>
6364
<a href="doc/changelogs/CHANGELOG_V20.md#20.13.1">20.13.1</a><br/>
6465
<a href="doc/changelogs/CHANGELOG_V20.md#20.13.0">20.13.0</a><br/>
6566
<a href="doc/changelogs/CHANGELOG_V20.md#20.12.2">20.12.2</a><br/>

doc/api/assert.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,9 @@ An alias of [`assert.ok()`][].
555555
<!-- YAML
556556
added: v0.1.21
557557
changes:
558-
- version: v22.2.0
558+
- version:
559+
- v22.2.0
560+
- v20.15.0
559561
pr-url: https://github.com/nodejs/node/pull/51805
560562
description: Error cause and errors properties are now compared as well.
561563
- version: v18.0.0
@@ -739,7 +741,9 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the
739741
<!-- YAML
740742
added: v1.2.0
741743
changes:
742-
- version: v22.2.0
744+
- version:
745+
- v22.2.0
746+
- v20.15.0
743747
pr-url: https://github.com/nodejs/node/pull/51805
744748
description: Error cause and errors properties are now compared as well.
745749
- version: v18.0.0

doc/api/cli.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,9 @@ vm.measureMemory();
635635
### `--disable-wasm-trap-handler`
636636

637637
<!-- YAML
638-
added: v22.2.0
638+
added:
639+
- v22.2.0
640+
- v20.15.0
639641
-->
640642

641643
By default, Node.js enables trap-handler-based WebAssembly bound
@@ -1470,7 +1472,9 @@ endpoint on `http://host:port/json/list`.
14701472
### `--inspect-wait[=[host:]port]`
14711473

14721474
<!-- YAML
1473-
added: v22.2.0
1475+
added:
1476+
- v22.2.0
1477+
- v20.15.0
14741478
-->
14751479

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

doc/api/test.md

+1
Original file line numberDiff line numberDiff line change
@@ -3223,6 +3223,7 @@ The name of the test.
32233223
<!-- YAML
32243224
added:
32253225
- v22.2.0
3226+
- v20.15.0
32263227
-->
32273228

32283229
> Stability: 1 - Experimental

doc/api/zlib.md

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

717717
<!-- YAML
718-
added: v22.2.0
718+
added:
719+
- v22.2.0
720+
- v20.15.0
719721
-->
720722

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

0 commit comments

Comments
 (0)