Skip to content

Commit da62300

Browse files
nodejs-github-botpanva
authored andcommitted
2025-08-14, Version 24.6.0 (Current)
Notable changes: cli: * (SEMVER-MINOR) add NODE_USE_SYSTEM_CA=1 (Joyee Cheung) nodejs#59276 crypto: * (SEMVER-MINOR) support ML-DSA KeyObject, sign, and verify (Filip Skokan) nodejs#59259 fs: * (SEMVER-MINOR) port SonicBoom module to fs module as Utf8Stream (James M Snell) nodejs#58897 http: * (SEMVER-MINOR) add server.keepAliveTimeoutBuffer option (Haram Jeong) nodejs#59243 lib: * docs deprecate _http_* (Sebastian Beltran) nodejs#59293 zlib: * (SEMVER-MINOR) add dictionary support to zstdCompress and zstdDecompress (lluisemper) nodejs#59240 PR-URL: nodejs#59449 Signed-off-by: RafaelGSS <[email protected]>
1 parent 8ae8d1e commit da62300

File tree

10 files changed

+115
-18
lines changed

10 files changed

+115
-18
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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_V24.md#24.5.0">24.5.0</a></b><br/>
42+
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.6.0">24.6.0</a></b><br/>
43+
<a href="doc/changelogs/CHANGELOG_V24.md#24.5.0">24.5.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V24.md#24.4.1">24.4.1</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V24.md#24.4.0">24.4.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V24.md#24.3.0">24.3.0</a><br/>

doc/api/assert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ try {
220220
## Class: `assert.Assert`
221221

222222
<!-- YAML
223-
added: REPLACEME
223+
added: v24.6.0
224224
-->
225225

226226
The `Assert` class allows creating independent assertion instances with custom options.

doc/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3699,7 +3699,7 @@ When both are set, `--use-env-proxy` takes precedence.
36993699
### `NODE_USE_SYSTEM_CA=1`
37003700

37013701
<!-- YAML
3702-
added: REPLACEME
3702+
added: v24.6.0
37033703
-->
37043704

37053705
Node.js uses the trusted CA certificates present in the system store along with

doc/api/crypto.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1916,7 +1916,7 @@ This can be called many times with new data as it is streamed.
19161916
<!-- YAML
19171917
added: v11.6.0
19181918
changes:
1919-
- version: REPLACEME
1919+
- version: v24.6.0
19201920
pr-url: https://github.com/nodejs/node/pull/59259
19211921
description: Add support for ML-DSA keys.
19221922
- version:
@@ -2024,7 +2024,7 @@ Other key details might be exposed via this API using additional attributes.
20242024
<!-- YAML
20252025
added: v11.6.0
20262026
changes:
2027-
- version: REPLACEME
2027+
- version: v24.6.0
20282028
pr-url: https://github.com/nodejs/node/pull/59259
20292029
description: Add support for ML-DSA keys.
20302030
- version:
@@ -3577,7 +3577,7 @@ input.on('readable', () => {
35773577
<!-- YAML
35783578
added: v11.6.0
35793579
changes:
3580-
- version: REPLACEME
3580+
- version: v24.6.0
35813581
pr-url: https://github.com/nodejs/node/pull/59259
35823582
description: Add support for ML-DSA keys.
35833583
- version: v15.12.0
@@ -3616,7 +3616,7 @@ of the passphrase is limited to 1024 bytes.
36163616
<!-- YAML
36173617
added: v11.6.0
36183618
changes:
3619-
- version: REPLACEME
3619+
- version: v24.6.0
36203620
pr-url: https://github.com/nodejs/node/pull/59259
36213621
description: Add support for ML-DSA keys.
36223622
- version: v15.12.0
@@ -3828,7 +3828,7 @@ underlying hash function. See [`crypto.createHmac()`][] for more information.
38283828
<!-- YAML
38293829
added: v10.12.0
38303830
changes:
3831-
- version: REPLACEME
3831+
- version: v24.6.0
38323832
pr-url: https://github.com/nodejs/node/pull/59259
38333833
description: Add support for ML-DSA key pairs.
38343834
- version: v18.0.0
@@ -3951,7 +3951,7 @@ a `Promise` for an `Object` with `publicKey` and `privateKey` properties.
39513951
<!-- YAML
39523952
added: v10.12.0
39533953
changes:
3954-
- version: REPLACEME
3954+
- version: v24.6.0
39553955
pr-url: https://github.com/nodejs/node/pull/59259
39563956
description: Add support for ML-DSA key pairs.
39573957
- version: v16.10.0
@@ -5604,7 +5604,7 @@ Throws an error if FIPS mode is not available.
56045604
<!-- YAML
56055605
added: v12.0.0
56065606
changes:
5607-
- version: REPLACEME
5607+
- version: v24.6.0
56085608
pr-url: https://github.com/nodejs/node/pull/59259
56095609
description: Add support for ML-DSA signing.
56105610
- version: v18.0.0
@@ -5720,7 +5720,7 @@ not introduce timing vulnerabilities.
57205720
<!-- YAML
57215721
added: v12.0.0
57225722
changes:
5723-
- version: REPLACEME
5723+
- version: v24.6.0
57245724
pr-url: https://github.com/nodejs/node/pull/59259
57255725
description: Add support for ML-DSA signature verification.
57265726
- version: v18.0.0

doc/api/deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4086,7 +4086,7 @@ Creating SHAKE-128 and SHAKE-256 digests without an explicit `options.outputLeng
40864086

40874087
<!-- YAML
40884088
changes:
4089-
- version: REPLACEME
4089+
- version: v24.6.0
40904090
pr-url: https://github.com/nodejs/node/pull/59293
40914091
description: Documentation-only deprecation.
40924092
-->

doc/api/fs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7713,7 +7713,7 @@ Type of file system.
77137713
### Class: `fs.Utf8Stream`
77147714
77157715
<!-- YAML
7716-
added: REPLACEME
7716+
added: v24.6.0
77177717
-->
77187718
77197719
> Stability: 1 - Experimental

doc/api/http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1972,7 +1972,7 @@ affects new connections to the server, not any existing connections.
19721972
### `server.keepAliveTimeoutBuffer`
19731973

19741974
<!-- YAML
1975-
added: REPLACEME
1975+
added: v24.6.0
19761976
-->
19771977

19781978
* Type: {number} Timeout in milliseconds. **Default:** `1000` (1 second).

doc/api/util.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ fs.access('file/that/does/not/exist', (err) => {
742742
## `util.setTraceSigInt(enable)`
743743

744744
<!-- YAML
745-
added: REPLACEME
745+
added: v24.6.0
746746
-->
747747

748748
* `enable` {boolean}

doc/api/worker_threads.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ This value is unique for each [`Worker`][] instance inside a single process.
724724
## `worker.threadName`
725725
726726
<!-- YAML
727-
added: REPLACEME
727+
added: v24.6.0
728728
-->
729729
730730
* {string|null}
@@ -1775,7 +1775,7 @@ JavaScript code.
17751775

17761776
<!-- YAML
17771777
added:
1778-
- REPLACEME
1778+
- v24.6.0
17791779
-->
17801780

17811781
* Returns: {Promise}
@@ -2029,7 +2029,7 @@ This value is unique for each `Worker` instance inside a single process.
20292029
### `worker.threadName`
20302030

20312031
<!-- YAML
2032-
added: REPLACEME
2032+
added: v24.6.0
20332033
-->
20342034

20352035
* {string|null}

doc/changelogs/CHANGELOG_V24.md

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

0 commit comments

Comments
 (0)