Skip to content

Commit b92ff4e

Browse files
committed
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 47821ec commit b92ff4e

File tree

8 files changed

+119
-13
lines changed

8 files changed

+119
-13
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
@@ -4404,7 +4404,7 @@ import { opendir } from 'node:fs/promises';
44044404
44054405
<!-- YAML
44064406
changes:
4407-
- version: REPLACEME
4407+
- version: v25.7.0
44084408
pr-url: https://github.com/nodejs/node/pull/61632
44094409
description: Documentation-only deprecation.
44104410
-->
@@ -4419,7 +4419,7 @@ type of the readable half of the constructed readable-writable pair, use the
44194419
44204420
<!-- YAML
44214421
changes:
4422-
- version: REPLACEME
4422+
- version: v25.7.0
44234423
pr-url: https://github.com/nodejs/node/pull/61713
44244424
description: Documentation-only deprecation.
44254425
-->

doc/api/http2.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2793,10 +2793,10 @@ Throws `ERR_INVALID_ARG_TYPE` for invalid `settings` argument.
27932793
<!-- YAML
27942794
added: v8.4.0
27952795
changes:
2796-
- version: REPLACEME
2796+
- version: v25.7.0
27972797
pr-url: https://github.com/nodejs/node/pull/59917
27982798
description: Added the `strictSingleValueFields` option.
2799-
- version: REPLACEME
2799+
- version: v25.7.0
28002800
pr-url: https://github.com/nodejs/node/pull/61713
28012801
description: Added `http1Options` option. The `Http1IncomingMessage`
28022802
and `Http1ServerResponse` options are now deprecated.
@@ -3016,10 +3016,10 @@ server.listen(8000);
30163016
<!-- YAML
30173017
added: v8.4.0
30183018
changes:
3019-
- version: REPLACEME
3019+
- version: v25.7.0
30203020
pr-url: https://github.com/nodejs/node/pull/59917
30213021
description: Added the `strictSingleValueFields` option.
3022-
- version: REPLACEME
3022+
- version: v25.7.0
30233023
pr-url: https://github.com/nodejs/node/pull/61713
30243024
description: Added `http1Options` option.
30253025
- 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
@@ -3399,7 +3399,7 @@ duplex.once('readable', () => console.log('readable', duplex.read()));
33993399
<!-- YAML
34003400
added: v17.0.0
34013401
changes:
3402-
- version: REPLACEME
3402+
- version: v25.7.0
34033403
pr-url: https://github.com/nodejs/node/pull/61632
34043404
description: Added the 'readableType' option to specify the ReadableStream
34053405
type. The 'type' option is deprecated.

doc/api/test.md

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

33533353
<!-- YAML
3354-
added: REPLACEME
3354+
added: v25.7.0
33553355
-->
33563356

33573357
* `data` {Object}

doc/changelogs/CHANGELOG_V25.md

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

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 25
26-
#define NODE_MINOR_VERSION 6
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 7
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)