Skip to content

Commit 17fae65

Browse files
committed
2024-10-24, Version 23.1.0 (Current)
Notable changes: assert: * (SEMVER-MINOR) make `assertion_error` use Myers diff algorithm (Giovanni Bucci) #54862 buffer: * (SEMVER-MINOR) make `Buffer` work with resizable `ArrayBuffer` (James M Snell) #55377 esm: * mark import attributes and JSON module as stable (Nicolò Ribaudo) #55333 lib: * (SEMVER-MINOR) add `UV_UDP_REUSEPORT` for udp (theanarkh) #55403 net: * (SEMVER-MINOR) add `UV_TCP_REUSEPORT` for tcp (theanarkh) #55408 test_runner: * mark `MockTimers` as stable (Erick Wendel) #55398 PR-URL: #55513
1 parent 4dc2791 commit 17fae65

File tree

7 files changed

+162
-9
lines changed

7 files changed

+162
-9
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ release.
3838
<th title="LTS Until 2025-04"><a href="doc/changelogs/CHANGELOG_V18.md">18</a> (LTS)</th>
3939
</tr>
4040
<tr>
41-
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.0.0">23.0.0</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.1.0">23.1.0</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V23.md#23.0.0">23.0.0</a><br/>
4243
</td>
4344
<td valign="top">
4445
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.9.0">22.9.0</a></b><br/>

doc/api/dgram.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ chained.
918918
<!-- YAML
919919
added: v0.11.13
920920
changes:
921-
- version: REPLACEME
921+
- version: v23.1.0
922922
pr-url: https://github.com/nodejs/node/pull/55403
923923
description: The `reusePort` option is supported.
924924
- version: v15.8.0

doc/api/net.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ Listening on a file descriptor is not supported on Windows.
471471
<!-- YAML
472472
added: v0.11.14
473473
changes:
474-
- version: REPLACEME
474+
- version: v23.1.0
475475
pr-url: https://github.com/nodejs/node/pull/55408
476476
description: The `reusePort` option is supported.
477477
- version: v15.6.0
@@ -623,7 +623,7 @@ with [`child_process.fork()`][].
623623
### `server.dropMaxConnection`
624624

625625
<!-- YAML
626-
added: REPLACEME
626+
added: v23.1.0
627627
-->
628628

629629
* {boolean}

doc/api/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2223,7 +2223,7 @@ added:
22232223
- v20.4.0
22242224
- v18.19.0
22252225
changes:
2226-
- version: REPLACEME
2226+
- version: v23.1.0
22272227
pr-url: https://github.com/nodejs/node/pull/55398
22282228
description: The Mock Timers is now stable.
22292229
-->

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ fs.access('file/that/does/not/exist', (err) => {
466466
## `util.getSystemErrorMessage(err)`
467467

468468
<!-- YAML
469-
added: REPLACEME
469+
added: v23.1.0
470470
-->
471471

472472
* `err` {number}

doc/changelogs/CHANGELOG_V23.md

+152
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 23
26-
#define NODE_MINOR_VERSION 0
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 1
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)