Skip to content

Commit 36be7da

Browse files
committed
2026-07-22, Version 26.6.0 (Current)
Notable changes: 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 1e92117 commit 36be7da

8 files changed

Lines changed: 148 additions & 12 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.0">26.5.0</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.0">26.5.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V26.md#26.4.0">26.4.0</a><br/>
4647
<a href="doc/changelogs/CHANGELOG_V26.md#26.3.1">26.3.1</a><br/>
4748
<a href="doc/changelogs/CHANGELOG_V26.md#26.3.0">26.3.0</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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2919,7 +2919,7 @@ certificates are specified per-identity in the [`sessionOptions.sni`][] map.
29192919
#### `sessionOptions.certificateCompression`
29202920

29212921
<!-- YAML
2922-
added: REPLACEME
2922+
added: v26.6.0
29232923
-->
29242924

29252925
* 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/changelogs/CHANGELOG_V26.md

Lines changed: 135 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 1
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)