Skip to content

Commit 6edaf75

Browse files
committed
2026-08-03, Version 26.6.0 (Current)
Notable changes: doc: * add MikeMcC399 as collaborator (Mike McCready) #64656 ffi: * (SEMVER-MINOR) add `getCurrentEventLoop` (Paolo Insogna) #64323 test_runner: * (SEMVER-MINOR) add `context.log()` and `test:log` event (Moshe Atlow) #64389 * (SEMVER-MINOR) report `entryFile` in `TestStream` events (Moshe Atlow) #64309 PR-URL: #64655
1 parent df5b1e1 commit 6edaf75

9 files changed

Lines changed: 180 additions & 15 deletions

File tree

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_V26.md#26.5.1">26.5.1</a></b><br/>
44+
<b><a href="doc/changelogs/CHANGELOG_V26.md#26.6.0">26.6.0</a></b><br/>
45+
<a href="doc/changelogs/CHANGELOG_V26.md#26.5.1">26.5.1</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V26.md#26.5.0">26.5.0</a><br/>
4647
<a href="doc/changelogs/CHANGELOG_V26.md#26.4.0">26.4.0</a><br/>
4748
<a href="doc/changelogs/CHANGELOG_V26.md#26.3.1">26.3.1</a><br/>

doc/api/debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ debug>
236236
added:
237237
- v26.1.0
238238
changes:
239-
- version: REPLACEME
239+
- version: v26.6.0
240240
pr-url: https://github.com/nodejs/node/pull/64328
241241
description: Add per-probe `--cond <expr>` option to only record a hit when the
242242
condition is truthy at the probe location.

doc/api/ffi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ Using stale pointers can cause memory corruption or process crashes.
718718
## `ffi.getCurrentEventLoop()`
719719

720720
<!-- YAML
721-
added: REPLACEME
721+
added: v26.6.0
722722
-->
723723

724724
* Returns: {bigint}

doc/api/http2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ registered as a listener on the `'timeout'` event.
723723
<!-- YAML
724724
added: v8.4.0
725725
changes:
726-
- version: REPLACEME
726+
- version: v26.6.0
727727
pr-url: https://github.com/nodejs/node/pull/64427
728728
description: Calling `destroy` no longer throws and instead destroys the
729729
`Http2Session`.

doc/api/quic.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,7 @@ what this endpoint advertises to the peer as its own maximum.
14261426
### `session.servername`
14271427

14281428
<!-- YAML
1429-
added: REPLACEME
1429+
added: v26.6.0
14301430
-->
14311431

14321432
* Type: {string|boolean|null}
@@ -1439,7 +1439,7 @@ had no SNI.
14391439
### `session.alpnProtocol`
14401440

14411441
<!-- YAML
1442-
added: REPLACEME
1442+
added: v26.6.0
14431443
-->
14441444

14451445
* Type: {string|null}
@@ -2946,7 +2946,7 @@ certificates are specified per-identity in the [`sessionOptions.sni`][] map.
29462946
#### `sessionOptions.certificateCompression`
29472947

29482948
<!-- YAML
2949-
added: REPLACEME
2949+
added: v26.6.0
29502950
-->
29512951

29522952
* Type: {string\[]} One or more of `'zlib'`, `'brotli'`, or `'zstd'`, in

doc/api/test.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3438,7 +3438,7 @@ added:
34383438
- v18.9.0
34393439
- v16.19.0
34403440
changes:
3441-
- version: REPLACEME
3441+
- version: v26.6.0
34423442
pr-url: https://github.com/nodejs/node/pull/64309
34433443
description: Added `entryFile` to events forwarded from child processes
34443444
when tests run with process isolation.
@@ -3750,7 +3750,7 @@ since the parent runner only knows about file-level tests. When using
37503750
### Event: `'test:log'`
37513751

37523752
<!-- YAML
3753-
added: REPLACEME
3753+
added: v26.6.0
37543754
-->
37553755

37563756
* `data` {Object}
@@ -4305,7 +4305,7 @@ test('top level test', (t) => {
43054305
### `context.log(message[, data])`
43064306

43074307
<!-- YAML
4308-
added: REPLACEME
4308+
added: v26.6.0
43094309
-->
43104310

43114311
* `message` {string} Message to be reported.
@@ -4809,7 +4809,7 @@ test.describe('my suite', (suite) => {
48094809
### `context.log(message[, data])`
48104810

48114811
<!-- YAML
4812-
added: REPLACEME
4812+
added: v26.6.0
48134813
-->
48144814

48154815
* `message` {string} Message to be reported.

doc/api/webcrypto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2251,7 +2251,7 @@ added: v25.9.0
22512251
<!-- YAML
22522252
added: v25.9.0
22532253
changes:
2254-
- version: REPLACEME
2254+
- version: v26.6.0
22552255
pr-url: https://github.com/nodejs/node/pull/64557
22562256
description: Limit customization to 512 bytes.
22572257
-->

doc/changelogs/CHANGELOG_V26.md

Lines changed: 164 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 26
26-
#define NODE_MINOR_VERSION 5
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 6
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)