Skip to content

Commit d77f596

Browse files
committed
2024-07-31, Version 22.6.0 (Current)
Notable changes: deps: * (SEMVER-MINOR) V8: backport 7857eb34db42 (Stephen Belanger) #53997 http: * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) #54054 inspector: * (SEMVER-MINOR) add initial support for network inspection (Kohei Ueno) #53593 lib,src: * drop --experimental-network-imports (Rafael Gonzaga) #53822 meta: * add jake to collaborators (jakecastelli) #54004 module: * (SEMVER-MINOR) add --experimental-strip-types (Marco Ippolito) #53725 * (SEMVER-MINOR) unflag detect-module (Geoffrey Booth) #53619 stream: * (SEMVER-MINOR) expose DuplexPair API (Austin Wright) #34111 test_runner: * (SEMVER-MINOR) fix support watch with run(), add globPatterns option (Matteo Collina) #53866 * (SEMVER-MINOR) refactor snapshots to get file from context (Colin Ihrig) #53853 * (SEMVER-MINOR) add context.filePath (Colin Ihrig) #53853 PR-URL: #54123
1 parent 9b20410 commit d77f596

10 files changed

+158
-18
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ release.
3838
</tr>
3939
<tr>
4040
<td valign="top">
41-
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.0">22.5.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.1">22.4.1</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.0">22.4.0</a><br/>

doc/api/cli.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ export USERNAME="nodejs" # will result in `nodejs` as the value.
858858
<!-- YAML
859859
added: v0.5.2
860860
changes:
861-
- version: REPLACEME
861+
- version: v22.6.0
862862
pr-url: https://github.com/nodejs/node/pull/53725
863863
description: Eval now supports experimental type-stripping.
864864
- version: v5.11.0
@@ -959,7 +959,7 @@ Specify the `module` containing exported [module customization hooks][].
959959

960960
<!-- YAML
961961
added:
962-
- REPLACEME
962+
- v22.6.0
963963
-->
964964

965965
> Stability: 1 - Experimental
@@ -1028,7 +1028,7 @@ Enable the experimental [`node:sqlite`][] module.
10281028
### `--experimental-strip-types`
10291029

10301030
<!-- YAML
1031-
added: REPLACEME
1031+
added: v22.6.0
10321032
-->
10331033

10341034
> Stability: 1.0 - Early development
@@ -1562,7 +1562,7 @@ added:
15621562
- v20.10.0
15631563
changes:
15641564
- version:
1565-
- REPLACEME
1565+
- v22.6.0
15661566
pr-url: https://github.com/nodejs/node/pull/53619
15671567
description: Syntax detection is enabled by default.
15681568
-->

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4004,7 +4004,7 @@ An error occurred trying to allocate memory. This should never happen.
40044004
#### `ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING`
40054005

40064006
<!-- YAML
4007-
added: REPLACEME
4007+
added: v22.6.0
40084008
-->
40094009

40104010
Type stripping is not supported for files descendent of a `node_modules` directory.

doc/api/inspector.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ inspector.Network.requestWillBeSent({
513513

514514
<!-- YAML
515515
added:
516-
- REPLACEME
516+
- v22.6.0
517517
-->
518518

519519
> Stability: 1 - Experimental
@@ -529,7 +529,7 @@ the application is about to send an HTTP request.
529529

530530
<!-- YAML
531531
added:
532-
- REPLACEME
532+
- v22.6.0
533533
-->
534534

535535
> Stability: 1 - Experimental
@@ -545,7 +545,7 @@ HTTP response is available.
545545

546546
<!-- YAML
547547
added:
548-
- REPLACEME
548+
- v22.6.0
549549
-->
550550

551551
> Stability: 1 - Experimental

doc/api/packages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ added:
123123
- v20.10.0
124124
changes:
125125
- version:
126-
- REPLACEME
126+
- v22.6.0
127127
pr-url: https://github.com/nodejs/node/pull/53619
128128
description: Syntax detection is enabled by default.
129129
-->

doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2681,7 +2681,7 @@ further errors except from `_destroy()` may be emitted as `'error'`.
26812681
#### `stream.duplexPair([options])`
26822682

26832683
<!-- YAML
2684-
added: REPLACEME
2684+
added: v22.6.0
26852685
-->
26862686

26872687
* `options` {Object} A value to pass to both [`Duplex`][] constructors,

doc/api/test.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ added:
12391239
- v18.9.0
12401240
- v16.19.0
12411241
changes:
1242-
- version: REPLACEME
1242+
- version: v22.6.0
12431243
pr-url: https://github.com/nodejs/node/pull/53866
12441244
description: Added the `globPatterns` option.
12451245
- version: v22.0.0
@@ -3203,7 +3203,7 @@ test('top level test', (t) => {
32033203
### `context.filePath`
32043204

32053205
<!-- YAML
3206-
added: REPLACEME
3206+
added: v22.6.0
32073207
-->
32083208

32093209
The absolute path of the test file that created the current test. If a test file
@@ -3446,7 +3446,7 @@ exposed as part of the API.
34463446
### `context.filePath`
34473447

34483448
<!-- YAML
3449-
added: REPLACEME
3449+
added: v22.6.0
34503450
-->
34513451

34523452
The absolute path of the test file that created the current suite. If a test

doc/api/typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To use TypeScript with full support for all TypeScript features, including
3838
## Type stripping
3939

4040
<!-- YAML
41-
added: REPLACEME
41+
added: v22.6.0
4242
-->
4343

4444
> Stability: 1.0 - Early development

doc/changelogs/CHANGELOG_V22.md

+139
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 22
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)