Skip to content

Commit b777394

Browse files
2025-06-24, Version 24.3.0 (Current)
Notable changes: doc: * add islandryu to collaborators (Shima Ryuhei) #58714 fs: * (SEMVER-MINOR) allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) #58490 module: * (SEMVER-MINOR) remove experimental warning from type stripping (Marco Ippolito) #58643 test: * fix test-timeout-flag after revert of auto subtest wait (Pietro Marchini) #58282 test_runner: * Revert "test_runner: remove promises returned by t.test() (Romain Menke) #58282 * Revert "test_runner: remove promises returned by test() (Romain Menke) #58282 * Revert "test_runner: automatically wait for subtests to finish (Romain Menke) #58282 * (SEMVER-MINOR) support object property mocking (Idan Goshen) #58438 url: * (SEMVER-MINOR) add fileURLToPathBuffer API (James M Snell) #58700 PR-URL: #58813
1 parent a1529d5 commit b777394

File tree

7 files changed

+110
-9
lines changed

7 files changed

+110
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ release.
4040
</tr>
4141
<tr>
4242
<td valign="top">
43-
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.2.0">24.2.0</a></b><br/>
43+
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.3.0">24.3.0</a></b><br/>
44+
<a href="doc/changelogs/CHANGELOG_V24.md#24.2.0">24.2.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V24.md#24.1.0">24.1.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V24.md#24.0.2">24.0.2</a><br/>
4647
<a href="doc/changelogs/CHANGELOG_V24.md#24.0.1">24.0.1</a><br/>

doc/api/inspector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ Also enables `Network.getResponseBody` command to retrieve the response data.
529529
### `inspector.Network.dataSent([params])`
530530

531531
<!-- YAML
532-
added: REPLACEME
532+
added: v24.3.0
533533
-->
534534

535535
* `params` {Object}

doc/api/test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2070,7 +2070,7 @@ Resets the implementation of the mock module.
20702070
## Class: `MockPropertyContext`
20712071

20722072
<!-- YAML
2073-
added: REPLACEME
2073+
added: v24.3.0
20742074
-->
20752075

20762076
The `MockPropertyContext` class is used to inspect or manipulate the behavior
@@ -2355,7 +2355,7 @@ test('mocks a builtin module in both module systems', async (t) => {
23552355
### `mock.property(object, propertyName[, value])`
23562356

23572357
<!-- YAML
2358-
added: REPLACEME
2358+
added: v24.3.0
23592359
-->
23602360

23612361
* `object` {Object} The object whose value is being mocked.

doc/api/typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- YAML
44
changes:
5-
- version: REPLACEME
5+
- version: v24.3.0
66
pr-url: https://github.com/nodejs/node/pull/58643
77
description: Type stripping no longer emits an experimental warning.
88
- version: v23.6.0

doc/api/url.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1361,7 +1361,7 @@ fileURLToPath('file:///hello world'); // Correct: /hello world (POSIX)
13611361
### `url.fileURLToPathBuffer(url[, options])`
13621362
13631363
<!--
1364-
added: REPLACEME
1364+
added: v24.3.0
13651365
-->
13661366
13671367
* `url` {URL | string} The file URL string or URL object to convert to a path.

doc/changelogs/CHANGELOG_V24.md

Lines changed: 100 additions & 0 deletions
Large diffs are not rendered by default.

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 24
26-
#define NODE_MINOR_VERSION 2
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 3
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
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)