Skip to content

Commit 6d02b36

Browse files
committed
2026-06-01, Version 26.3.0 (Current)
Notable changes: buffer: * (SEMVER-MINOR) increase `Buffer.poolSize` default to 64 KiB (Matteo Collina) #63597 crypto: * update root certificates to NSS 3.123.1 (Node.js GitHub Bot) #63527 doc: * downgrade macOS x64 support to Tier 2 (Antoine du Hamel) #63055 http: * (SEMVER-MINOR) add `httpValidation` option to configure header value validation (RajeshKumar11) #61597 inspector: * (SEMVER-MINOR) expose precise coverage start to JS runtime (sangwook) #63079 lib,permission: * (SEMVER-MINOR) add `permission.drop` (Rafael Gonzaga) #62672 PR-URL: #63664
1 parent 5f96180 commit 6d02b36

8 files changed

Lines changed: 190 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ release.
4242
</tr>
4343
<tr>
4444
<td valign="top">
45-
<b><a href="doc/changelogs/CHANGELOG_V26.md#26.2.0">26.2.0</a></b><br/>
45+
<b><a href="doc/changelogs/CHANGELOG_V26.md#26.3.0">26.3.0</a></b><br/>
46+
<a href="doc/changelogs/CHANGELOG_V26.md#26.2.0">26.2.0</a><br/>
4647
<a href="doc/changelogs/CHANGELOG_V26.md#26.1.0">26.1.0</a><br/>
4748
<a href="doc/changelogs/CHANGELOG_V26.md#26.0.0">26.0.0</a><br/>
4849
</td>

doc/api/buffer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1514,7 +1514,7 @@ console.log(Buffer.isEncoding(''));
15141514
<!-- YAML
15151515
added: v0.11.3
15161516
changes:
1517-
- version: REPLACEME
1517+
- version: v26.3.0
15181518
pr-url: https://github.com/nodejs/node/pull/63597
15191519
description: Default raised from 8192 to 65536.
15201520
-->

doc/api/debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ added:
237237
- v26.1.0
238238
- v24.16.0
239239
changes:
240-
- version: REPLACEME
240+
- version: v26.3.0
241241
pr-url: https://github.com/nodejs/node/pull/63437
242242
description: Add `probe_failure` terminal `error` event for inspector-side mid-session
243243
failures, and `error.details` for additional context on per-hit and terminal errors.

doc/api/http.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3680,7 +3680,7 @@ Found'`.
36803680
<!-- YAML
36813681
added: v0.1.13
36823682
changes:
3683-
- version: REPLACEME
3683+
- version: v26.3.0
36843684
pr-url: https://github.com/nodejs/node/pull/61597
36853685
description: The `httpValidation` option is supported now.
36863686
- version:
@@ -4005,7 +4005,7 @@ This can be overridden for servers and client requests by passing the
40054005
<!-- YAML
40064006
added: v0.3.6
40074007
changes:
4008-
- version: REPLACEME
4008+
- version: v26.3.0
40094009
pr-url: https://github.com/nodejs/node/pull/61597
40104010
description: The `httpValidation` option is supported now.
40114011
- version:

doc/api/process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3171,7 +3171,7 @@ process.permission.has('fs.read');
31713171
### `process.permission.drop(scope[, reference])`
31723172
31733173
<!-- YAML
3174-
added: REPLACEME
3174+
added: v26.3.0
31753175
-->
31763176
31773177
> Stability: 1.1 - Active Development

doc/api/quic.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ A `QuicSession` represents the local side of a QUIC connection.
926926
### `session.applicationOptions`
927927

928928
<!-- YAML
929-
added: REPLACEME
929+
added: v26.3.0
930930
-->
931931

932932
* Type: {quic.ApplicationOptions}
@@ -1047,7 +1047,7 @@ True if `session.destroy()` has been called. Read only.
10471047
### `session.localTransportParams`
10481048

10491049
<!-- YAML
1050-
added: REPLACEME
1050+
added: v26.3.0
10511051
-->
10521052

10531053
* Type: {quic.TransportParams|null}
@@ -1351,7 +1351,7 @@ The local and remote socket addresses associated with the session. Read only.
13511351
### `session.remoteTransportParams`
13521352

13531353
<!-- YAML
1354-
added: REPLACEME
1354+
added: v26.3.0
13551355
-->
13561356

13571357
* Type: {quic.TransportParams|null|undefined}
@@ -2319,7 +2319,7 @@ added: v23.8.0
23192319
### `streamStats.bytesAccumulated`
23202320

23212321
<!-- YAML
2322-
added: REPLACEME
2322+
added: v26.3.0
23232323
-->
23242324

23252325
* Type: {bigint}
@@ -2381,7 +2381,7 @@ added: v23.8.0
23812381
### `streamStats.maxBytesAccumulated`
23822382

23832383
<!-- YAML
2384-
added: REPLACEME
2384+
added: v26.3.0
23852385
-->
23862386

23872387
* Type: {bigint}
@@ -2437,7 +2437,7 @@ added: v23.8.0
24372437
### type: `ApplicationOptions`
24382438

24392439
<!-- YAML
2440-
added: REPLACEME
2440+
added: v26.3.0
24412441
-->
24422442

24432443
* Type: {Object}
@@ -2603,7 +2603,7 @@ When `true`, indicates that the endpoint should bind only to IPv6 addresses.
26032603
#### `endpointOptions.reusePort`
26042604

26052605
<!-- YAML
2606-
added: REPLACEME
2606+
added: v26.3.0
26072607
-->
26082608

26092609
* Type: {boolean}
@@ -3128,7 +3128,7 @@ to complete before timing out.
31283128
#### `sessionOptions.initialRtt`
31293129

31303130
<!-- YAML
3131-
added: REPLACEME
3131+
added: v26.3.0
31323132
-->
31333133

31343134
* Type: {bigint|number}
@@ -3365,7 +3365,7 @@ creating a session. The negotiated values can be observed via the
33653365
#### `transportParams.initialSCID`
33663366

33673367
<!-- YAML
3368-
added: REPLACEME
3368+
added: v26.3.0
33693369
-->
33703370

33713371
* Type: {string}
@@ -3378,7 +3378,7 @@ available in the `session.localTransportParams` and
33783378
#### `transportParams.originalDCID`
33793379

33803380
<!-- YAML
3381-
added: REPLACEME
3381+
added: v26.3.0
33823382
-->
33833383

33843384
* Type: {string}
@@ -3504,7 +3504,7 @@ a datagram that can be _sent_ is determined by the peer's
35043504
#### `transportParams.retrySCID`
35053505

35063506
<!-- YAML
3507-
added: REPLACEME
3507+
added: v26.3.0
35083508
-->
35093509

35103510
* Type: {string}

doc/api/test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3437,7 +3437,7 @@ added:
34373437
- v18.9.0
34383438
- v16.19.0
34393439
changes:
3440-
- version: REPLACEME
3440+
- version: v26.3.0
34413441
pr-url: https://github.com/nodejs/node/pull/63435
34423442
description: Added `parentId` to test events that carry a `testId`.
34433443
- version:

doc/changelogs/CHANGELOG_V26.md

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

0 commit comments

Comments
 (0)