Skip to content

Commit

Permalink
2024-06-20, Version 20.15.0 'Iron' (LTS)
Browse files Browse the repository at this point in the history
Notable changes:

doc:
  * add pimterry to collaborators (Tim Perry) nodejs#52874
inspector:
  * (SEMVER-MINOR) introduce the `--inspect-wait` flag (Kohei Ueno) nodejs#52734
test_runner:
  * (SEMVER-MINOR) support test plans (Colin Ihrig) nodejs#52860
tools:
  * (SEMVER-MINOR) fix get_asan_state() in tools/test.py (Joyee Cheung) nodejs#52766
  * (SEMVER-MINOR) support max_virtual_memory test configuration (Joyee Cheung) nodejs#52766
  * (SEMVER-MINOR) support != in test status files (Joyee Cheung) nodejs#52766
zlib:
  * (SEMVER-MINOR) expose zlib.crc32() (Joyee Cheung) nodejs#52692

PR-URL: nodejs#53486
  • Loading branch information
marco-ippolito authored and bmeck committed Jun 22, 2024
1 parent 734ebf9 commit f1e7573
Show file tree
Hide file tree
Showing 6 changed files with 209 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ release.
<a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.14.0">20.14.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.15.0">20.15.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.14.0">20.14.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.13.1">20.13.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.13.0">20.13.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.12.2">20.12.2</a><br/>
Expand Down
8 changes: 6 additions & 2 deletions doc/api/assert.md
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,9 @@ An alias of [`assert.ok()`][].
<!-- YAML
added: v0.1.21
changes:
- version: v22.2.0
- version:
- v22.2.0
- v20.15.0
pr-url: https://github.com/nodejs/node/pull/51805
description: Error cause and errors properties are now compared as well.
- version: v18.0.0
Expand Down Expand Up @@ -739,7 +741,9 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the
<!-- YAML
added: v1.2.0
changes:
- version: v22.2.0
- version:
- v22.2.0
- v20.15.0
pr-url: https://github.com/nodejs/node/pull/51805
description: Error cause and errors properties are now compared as well.
- version: v18.0.0
Expand Down
8 changes: 6 additions & 2 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,9 @@ vm.measureMemory();
### `--disable-wasm-trap-handler`

<!-- YAML
added: v22.2.0
added:
- v22.2.0
- v20.15.0
-->

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

<!-- YAML
added: v22.2.0
added:
- v22.2.0
- v20.15.0
-->

Activate inspector on `host:port` and wait for debugger to be attached.
Expand Down
1 change: 1 addition & 0 deletions doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -3223,6 +3223,7 @@ The name of the test.
<!-- YAML
added:
- v22.2.0
- v20.15.0
-->

> Stability: 1 - Experimental
Expand Down
4 changes: 3 additions & 1 deletion doc/api/zlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,9 @@ as appropriate for the derived class).
### `zlib.crc32(data[, value])`

<!-- YAML
added: v22.2.0
added:
- v22.2.0
- v20.15.0
-->

* `data` {string|Buffer|TypedArray|DataView} When `data` is a string,
Expand Down
Loading

0 comments on commit f1e7573

Please sign in to comment.