Skip to content

Commit fba8e6a

Browse files
nodejs-github-botaduh95
authored andcommitted
2025-08-28, Version 22.19.0 'Jod' (LTS)
Notable changes: cli: * (SEMVER-MINOR) add NODE_USE_SYSTEM_CA=1 (Joyee Cheung) #59276 * (SEMVER-MINOR) support `${pid}` placeholder in --cpu-prof-name (Haram Jeong) #59072 crypto: * (SEMVER-MINOR) add tls.setDefaultCACertificates() (Joyee Cheung) #58822 dns: * (SEMVER-MINOR) support max timeout (theanarkh) #58440 doc: * update the instruction on how to verify releases (Antoine du Hamel) #59113 esm: * (SEMVER-MINOR) unflag --experimental-wasm-modules (Guy Bedford) #57038 http: * (SEMVER-MINOR) add server.keepAliveTimeoutBuffer option (Haram Jeong) #59243 lib: * docs deprecate _http_* (Sebastian Beltran) #59293 net: * (SEMVER-MINOR) update net.blocklist to allow file save and file management (alphaleadership) #58087 process: * (SEMVER-MINOR) add threadCpuUsage (Paolo Insogna) #56467 zlib: * (SEMVER-MINOR) add dictionary support to zstdCompress and zstdDecompress (lluisemper) #59240 PR-URL: #59641
1 parent bfcba89 commit fba8e6a

File tree

13 files changed

+197
-14
lines changed

13 files changed

+197
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ release.
5252
<a href="doc/changelogs/CHANGELOG_V24.md#24.0.0">24.0.0</a><br/>
5353
</td>
5454
<td valign="top">
55-
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.18.0">22.18.0</a></b><br/>
55+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.19.0">22.19.0</a></b><br/>
56+
<a href="doc/changelogs/CHANGELOG_V22.md#22.18.0">22.18.0</a><br/>
5657
<a href="doc/changelogs/CHANGELOG_V22.md#22.17.1">22.17.1</a><br/>
5758
<a href="doc/changelogs/CHANGELOG_V22.md#22.17.0">22.17.0</a><br/>
5859
<a href="doc/changelogs/CHANGELOG_V22.md#22.16.0">22.16.0</a><br/>

doc/api/assert.md

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

222222
<!-- YAML
223-
added: v24.6.0
223+
added:
224+
- v24.6.0
225+
- v22.19.0
224226
-->
225227

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

doc/api/cli.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1077,6 +1077,7 @@ Previously gated the entire `import.meta.resolve` feature.
10771077
<!-- YAML
10781078
added:
10791079
- v24.5.0
1080+
- v22.19.0
10801081
-->
10811082

10821083
> Stability: 1.1 - Active Development
@@ -3714,7 +3715,9 @@ When both are set, `--use-env-proxy` takes precedence.
37143715
### `NODE_USE_SYSTEM_CA=1`
37153716

37163717
<!-- YAML
3717-
added: v24.6.0
3718+
added:
3719+
- v24.6.0
3720+
- v22.19.0
37183721
-->
37193722

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

doc/api/deprecations.md

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

40874087
<!-- YAML
40884088
changes:
4089-
- version: v24.6.0
4089+
- version:
4090+
- v24.6.0
4091+
- v22.19.0
40904092
pr-url: https://github.com/nodejs/node/pull/59293
40914093
description: Documentation-only deprecation.
40924094
-->

doc/api/esm.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,9 @@ imported from the same path.
708708
709709
<!-- YAML
710710
changes:
711-
- version: v24.5.0
711+
- version:
712+
- v24.5.0
713+
- v22.19.0
712714
pr-url: https://github.com/nodejs/node/pull/57038
713715
description: Wasm modules no longer require the `--experimental-wasm-modules` flag.
714716
-->
@@ -759,7 +761,9 @@ const instance = await WebAssembly.instantiate(dynamicLibrary, importObject);
759761
> Stability: 1.2 - Release candidate
760762
761763
<!-- YAML
762-
added: v24.5.0
764+
added:
765+
- v24.5.0
766+
- v22.19.0
763767
-->
764768
765769
When importing WebAssembly modules, the
@@ -832,7 +836,9 @@ would provide the exports interface for the instantiation of `library.wasm`.
832836
### Reserved Wasm Namespaces
833837
834838
<!-- YAML
835-
added: v24.5.0
839+
added:
840+
- v24.5.0
841+
- v22.19.0
836842
-->
837843
838844
When importing WebAssembly module instances, they cannot use import module

doc/api/http.md

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

19741974
<!-- YAML
1975-
added: v24.6.0
1975+
added:
1976+
- v24.6.0
1977+
- v22.19.0
19761978
-->
19771979

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

doc/api/inspector.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,7 @@ This event indicates that a WebSocket connection has been closed.
649649
<!-- YAML
650650
added:
651651
- v24.5.0
652+
- v22.19.0
652653
-->
653654

654655
> Stability: 1.1 - Active Development

doc/api/net.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,9 @@ added:
186186
> Stability: 1 - Experimental
187187
188188
<!-- YAML
189-
added: v24.5.0
189+
added:
190+
- v24.5.0
191+
- v22.19.0
190192
-->
191193

192194
```js
@@ -208,7 +210,9 @@ blockList.fromJSON(JSON.stringify(data));
208210
> Stability: 1 - Experimental
209211
210212
<!-- YAML
211-
added: v24.5.0
213+
added:
214+
- v24.5.0
215+
- v22.19.0
212216
-->
213217

214218
* Returns Blocklist.rules

doc/api/process.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4209,7 +4209,9 @@ Thrown:
42094209
## `process.threadCpuUsage([previousValue])`
42104210
42114211
<!-- YAML
4212-
added: v23.9.0
4212+
added:
4213+
- v23.9.0
4214+
- v22.19.0
42134215
-->
42144216
42154217
* `previousValue` {Object} A previous return value from calling

doc/api/tls.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2263,7 +2263,9 @@ The server can be tested by connecting to it using the example client from
22632263
## `tls.setDefaultCACertificates(certs)`
22642264

22652265
<!-- YAML
2266-
added: v24.5.0
2266+
added:
2267+
- v24.5.0
2268+
- v22.19.0
22672269
-->
22682270

22692271
* `certs` {string\[]|ArrayBufferView\[]} An array of CA certificates in PEM format.

0 commit comments

Comments
 (0)