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) #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
  • Loading branch information
marco-ippolito committed Jun 20, 2024
1 parent 473fa73 commit 0bf200b
Show file tree
Hide file tree
Showing 7 changed files with 202 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ release.
</tr>
<tr>
<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
4 changes: 2 additions & 2 deletions doc/api/assert.md
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ An alias of [`assert.ok()`][].
<!-- YAML
added: v0.1.21
changes:
- version: REPLACEME
- version: v20.15.0
pr-url: https://github.com/nodejs/node/pull/51805

Check warning on line 559 in doc/api/assert.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Error cause and errors properties are now compared as well.
- version: v18.0.0
Expand Down Expand Up @@ -739,7 +739,7 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the
<!-- YAML
added: v1.2.0
changes:
- version: REPLACEME
- version: v20.15.0
pr-url: https://github.com/nodejs/node/pull/51805

Check warning on line 743 in doc/api/assert.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Error cause and errors properties are now compared as well.
- version: v18.0.0
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ vm.measureMemory();
### `--disable-wasm-trap-handler`

<!-- YAML
added: REPLACEME
added: v20.15.0
-->

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

<!-- YAML
added: REPLACEME
added: v20.15.0
-->

Activate inspector on `host:port` and wait for debugger to be attached.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -2920,7 +2920,7 @@ The name of the test.

<!-- YAML
added:
- REPLACEME
- v20.15.0
-->

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

<!-- YAML
added: REPLACEME
added: v20.15.0
-->

* `data` {string|Buffer|TypedArray|DataView} When `data` is a string,
Expand Down
191 changes: 191 additions & 0 deletions doc/changelogs/CHANGELOG_V20.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 20
#define NODE_MINOR_VERSION 14
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 15
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Iron"

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 0bf200b

Please sign in to comment.