Skip to content

Commit b932930

Browse files
committed
2024-12-10, Version 23.4.0 (Current)
Notable changes: assert: * (SEMVER-MINOR) add partialDeepStrictEqual (Giovanni Bucci) #54630 cli: * (SEMVER-MINOR) implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) #55604 doc: * add LJHarb to collaborators (Jordan Harband) #56132 doc,lib,src,test: * (SEMVER-MINOR) unflag sqlite module (Colin Ihrig) #55890 net: * (SEMVER-MINOR) support blocklist in net.connect (theanarkh) #56075 * (SEMVER-MINOR) add SocketAddress.parse (James M Snell) #56076 * (SEMVER-MINOR) add net.BlockList.isBlockList(value) (James M Snell) #56078 * (SEMVER-MINOR) support blocklist for net.Server (theanarkh) #56079 process: * (SEMVER-MINOR) deprecate `features.{ipv6,uv}` and `features.tls_*` (René) #55545 sqlite: * (SEMVER-MINOR) add `StatementSync.prototype.iterate` method (tpoisseau) #54213 PR-URL: #56119
1 parent f184a0a commit b932930

10 files changed

+205
-22
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ release.
3939
</tr>
4040
<tr>
4141
<td valign="top">
42-
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.3.0">23.3.0</a></b><br/>
42+
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.4.0">23.4.0</a></b><br/>
43+
<a href="doc/changelogs/CHANGELOG_V23.md#23.3.0">23.3.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V23.md#23.2.0">23.2.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V23.md#23.1.0">23.1.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V23.md#23.0.0">23.0.0</a><br/>

doc/api/assert.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2551,7 +2551,7 @@ argument.
25512551
## `assert.partialDeepStrictEqual(actual, expected[, message])`
25522552

25532553
<!-- YAML
2554-
added: REPLACEME
2554+
added: v23.4.0
25552555
-->
25562556

25572557
> Stability: 1.0 - Early development

doc/api/cli.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ See [Loading ECMAScript modules using `require()`][].
16541654
<!-- YAML
16551655
added: v22.5.0
16561656
changes:
1657-
- version: REPLACEME
1657+
- version: v23.4.0
16581658
pr-url: https://github.com/nodejs/node/pull/55890
16591659
description: SQLite is unflagged but still experimental.
16601660
-->
@@ -2425,7 +2425,7 @@ subtests inherit this value from their parent. The default value is `Infinity`.
24252425
<!-- YAML
24262426
added: v22.3.0
24272427
changes:
2428-
- version: REPLACEME
2428+
- version: v23.4.0
24292429
pr-url: https://github.com/nodejs/node/pull/55897
24302430
description: Snapsnot testing is no longer experimental.
24312431
-->
@@ -2543,7 +2543,7 @@ Print stack traces for deprecations.
25432543
### `--trace-env`
25442544

25452545
<!-- YAML
2546-
added: REPLACEME
2546+
added: v23.4.0
25472547
-->
25482548

25492549
Print information about any access to environment variables done in the current Node.js
@@ -2566,15 +2566,15 @@ To print the stack trace of the access, use `--trace-env-js-stack` and/or
25662566
### `--trace-env-js-stack`
25672567

25682568
<!-- YAML
2569-
added: REPLACEME
2569+
added: v23.4.0
25702570
-->
25712571

25722572
In addition to what `--trace-env` does, this prints the JavaScript stack trace of the access.
25732573

25742574
### `--trace-env-native-stack`
25752575

25762576
<!-- YAML
2577-
added: REPLACEME
2577+
added: v23.4.0
25782578
-->
25792579

25802580
In addition to what `--trace-env` does, this prints the native stack trace of the access.

doc/api/deprecations.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3779,7 +3779,7 @@ It is recommended to use the `new` qualifier instead. This applies to all REPL c
37793779

37803780
<!-- YAML
37813781
changes:
3782-
- version: REPLACEME
3782+
- version: v23.4.0
37833783
pr-url: https://github.com/nodejs/node/pull/55892
37843784
description: Documentation-only.
37853785
-->
@@ -3793,7 +3793,7 @@ will throw an error in a future version.
37933793

37943794
<!-- YAML
37953795
changes:
3796-
- version: REPLACEME
3796+
- version: v23.4.0
37973797
pr-url: https://github.com/nodejs/node/pull/55545
37983798
description: Documentation-only deprecation.
37993799
-->
@@ -3806,7 +3806,7 @@ These properties are unconditionally `true`. Any checks based on these propertie
38063806

38073807
<!-- YAML
38083808
changes:
3809-
- version: REPLACEME
3809+
- version: v23.4.0
38103810
pr-url: https://github.com/nodejs/node/pull/55545
38113811
description: Documentation-only deprecation.
38123812
-->

doc/api/errors.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2449,7 +2449,7 @@ object.
24492449
### `ERR_QUIC_APPLICATION_ERROR`
24502450

24512451
<!-- YAML
2452-
added: REPLACEME
2452+
added: v23.4.0
24532453
-->
24542454

24552455
> Stability: 1 - Experimental
@@ -2503,7 +2503,7 @@ Opening a QUIC stream failed.
25032503
### `ERR_QUIC_TRANSPORT_ERROR`
25042504

25052505
<!-- YAML
2506-
added: REPLACEME
2506+
added: v23.4.0
25072507
-->
25082508

25092509
> Stability: 1 - Experimental
@@ -2515,7 +2515,7 @@ A QUIC transport error occurred.
25152515
### `ERR_QUIC_VERSION_NEGOTIATION_ERROR`
25162516

25172517
<!-- YAML
2518-
added: REPLACEME
2518+
added: v23.4.0
25192519
-->
25202520

25212521
> Stability: 1 - Experimental

doc/api/net.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ The list of rules added to the blocklist.
173173
### `BlockList.isBlockList(value)`
174174

175175
<!-- YAML
176-
added: REPLACEME
176+
added: v23.4.0
177177
-->
178178

179179
* `value` {any} Any JS value
@@ -247,7 +247,7 @@ added:
247247
### `SocketAddress.parse(input)`
248248

249249
<!-- YAML
250-
added: REPLACEME
250+
added: v23.4.0
251251
-->
252252

253253
* `input` {string} An input string containing an IP address and optional port,

doc/api/process.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1930,7 +1930,7 @@ A boolean value that is `true` if the current Node.js build includes the inspect
19301930
19311931
<!-- YAML
19321932
added: v0.5.3
1933-
deprecated: REPLACEME
1933+
deprecated: v23.4.0
19341934
-->
19351935
19361936
> Stability: 0 - Deprecated. This property is always true, and any checks based on it are
@@ -1969,7 +1969,7 @@ A boolean value that is `true` if the current Node.js build includes support for
19691969
19701970
<!-- YAML
19711971
added: v4.8.0
1972-
deprecated: REPLACEME
1972+
deprecated: v23.4.0
19731973
-->
19741974
19751975
> Stability: 0 - Deprecated. Use `process.features.tls` instead.
@@ -1985,7 +1985,7 @@ This value is therefore identical to that of `process.features.tls`.
19851985
19861986
<!-- YAML
19871987
added: v0.11.13
1988-
deprecated: REPLACEME
1988+
deprecated: v23.4.0
19891989
-->
19901990
19911991
> Stability: 0 - Deprecated. Use `process.features.tls` instead.
@@ -2001,7 +2001,7 @@ This value is therefore identical to that of `process.features.tls`.
20012001
20022002
<!-- YAML
20032003
added: v0.5.3
2004-
deprecated: REPLACEME
2004+
deprecated: v23.4.0
20052005
-->
20062006
20072007
> Stability: 0 - Deprecated. Use `process.features.tls` instead.
@@ -2032,7 +2032,7 @@ A value that is `"strip"` if Node.js is run with `--experimental-strip-types`,
20322032
20332033
<!-- YAML
20342034
added: v0.5.3
2035-
deprecated: REPLACEME
2035+
deprecated: v23.4.0
20362036
-->
20372037
20382038
> Stability: 0 - Deprecated. This property is always true, and any checks based on it are

doc/api/sqlite.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ values in `namedParameters` and `anonymousParameters`.
320320
### `statement.iterate([namedParameters][, ...anonymousParameters])`
321321

322322
<!-- YAML
323-
added: REPLACEME
323+
added: v23.4.0
324324
-->
325325

326326
* `namedParameters` {Object} An optional object used to bind named parameters.

doc/api/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3345,7 +3345,7 @@ added:
33453345
- v22.2.0
33463346
- v20.15.0
33473347
changes:
3348-
- version: REPLACEME
3348+
- version: v23.4.0
33493349
pr-url: https://github.com/nodejs/node/pull/55895
33503350
description: This function is no longer experimental.
33513351
-->

0 commit comments

Comments
 (0)