Skip to content

Commit 7427866

Browse files
aduh95ruyadorno
authored andcommitted
2026-02-24, Version 25.7.0 (Current)
Notable changes: http2: * (SEMVER-MINOR) add http1Options for HTTP/1 fallback configuration (Amol Yadav) #61713 sea: * (SEMVER-MINOR) support ESM entry point in SEA (Joyee Cheung) #61813 sqlite: * mark as release candidate (Matteo Collina) #61262 stream: * (SEMVER-MINOR) rename `Duplex.toWeb()` type option to `readableType` (René) #61632 test_runner: * (SEMVER-MINOR) show interrupted test on SIGINT (Matteo Collina) #61676 PR-URL: #61922
1 parent 001d5d4 commit 7427866

File tree

7 files changed

+117
-10
lines changed

7 files changed

+117
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ release.
4141
</tr>
4242
<tr>
4343
<td valign="top">
44-
<b><a href="doc/changelogs/CHANGELOG_V25.md#25.6.1">25.6.1</a></b><br/>
44+
<b><a href="doc/changelogs/CHANGELOG_V25.md#25.7.0">25.7.0</a></b><br/>
45+
<a href="doc/changelogs/CHANGELOG_V25.md#25.6.1">25.6.1</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V25.md#25.6.0">25.6.0</a><br/>
4647
<a href="doc/changelogs/CHANGELOG_V25.md#25.5.0">25.5.0</a><br/>
4748
<a href="doc/changelogs/CHANGELOG_V25.md#25.4.0">25.4.0</a><br/>

doc/api/deprecations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4421,7 +4421,7 @@ import { opendir } from 'node:fs/promises';
44214421
44224422
<!-- YAML
44234423
changes:
4424-
- version: REPLACEME
4424+
- version: v25.7.0
44254425
pr-url: https://github.com/nodejs/node/pull/61632
44264426
description: Documentation-only deprecation.
44274427
-->
@@ -4436,7 +4436,7 @@ type of the readable half of the constructed readable-writable pair, use the
44364436
44374437
<!-- YAML
44384438
changes:
4439-
- version: REPLACEME
4439+
- version: v25.7.0
44404440
pr-url: https://github.com/nodejs/node/pull/61713
44414441
description: Documentation-only deprecation.
44424442
-->

doc/api/http2.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2796,10 +2796,10 @@ Throws `ERR_INVALID_ARG_TYPE` for invalid `settings` argument.
27962796
<!-- YAML
27972797
added: v8.4.0
27982798
changes:
2799-
- version: REPLACEME
2799+
- version: v25.7.0
28002800
pr-url: https://github.com/nodejs/node/pull/59917
28012801
description: Added the `strictSingleValueFields` option.
2802-
- version: REPLACEME
2802+
- version: v25.7.0
28032803
pr-url: https://github.com/nodejs/node/pull/61713
28042804
description: Added `http1Options` option. The `Http1IncomingMessage`
28052805
and `Http1ServerResponse` options are now deprecated.
@@ -3019,10 +3019,10 @@ server.listen(8000);
30193019
<!-- YAML
30203020
added: v8.4.0
30213021
changes:
3022-
- version: REPLACEME
3022+
- version: v25.7.0
30233023
pr-url: https://github.com/nodejs/node/pull/59917
30243024
description: Added the `strictSingleValueFields` option.
3025-
- version: REPLACEME
3025+
- version: v25.7.0
30263026
pr-url: https://github.com/nodejs/node/pull/61713
30273027
description: Added `http1Options` option.
30283028
- version:

doc/api/sqlite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- YAML
66
added: v22.5.0
77
changes:
8-
- version: REPLACEME
8+
- version: v25.7.0
99
pr-url: https://github.com/nodejs/node/pull/61262
1010
description: SQLite is now a release candidate.
1111
- version:

doc/api/stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3401,7 +3401,7 @@ duplex.once('readable', () => console.log('readable', duplex.read()));
34013401
<!-- YAML
34023402
added: v17.0.0
34033403
changes:
3404-
- version: REPLACEME
3404+
- version: v25.7.0
34053405
pr-url: https://github.com/nodejs/node/pull/61632
34063406
description: Added the 'readableType' option to specify the ReadableStream
34073407
type. The 'type' option is deprecated.

doc/api/test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3354,7 +3354,7 @@ The corresponding execution ordered event is `'test:complete'`.
33543354
### Event: `'test:interrupted'`
33553355

33563356
<!-- YAML
3357-
added: REPLACEME
3357+
added: v25.7.0
33583358
-->
33593359

33603360
* `data` {Object}

doc/changelogs/CHANGELOG_V25.md

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

0 commit comments

Comments
 (0)