Skip to content

Commit 7d9ad19

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 a924e20 commit 7d9ad19

File tree

7 files changed

+204
-9
lines changed

7 files changed

+204
-9
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.14.0">20.14.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.15.0">20.15.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V20.md#20.14.0">20.14.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V20.md#20.13.1">20.13.1</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V20.md#20.13.0">20.13.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V20.md#20.12.2">20.12.2</a><br/>

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: v20.15.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: v20.15.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1292,7 +1292,7 @@ endpoint on `http://host:port/json/list`.
12921292
### `--inspect-wait[=[host:]port]`
12931293

12941294
<!-- YAML
1295-
added: REPLACEME
1295+
added: v20.15.0
12961296
-->
12971297

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

doc/api/test.md

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

29212921
<!-- YAML
29222922
added:
2923-
- REPLACEME
2923+
- v20.15.0
29242924
-->
29252925

29262926
> 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: v20.15.0
719719
-->
720720

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

doc/changelogs/CHANGELOG_V20.md

+194
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 20
26-
#define NODE_MINOR_VERSION 14
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 15
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Iron"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)