Skip to content

Commit

Permalink
2024-08-06, Version 22.6.0 (Current)
Browse files Browse the repository at this point in the history
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
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
  • Loading branch information
RafaelGSS committed Aug 5, 2024
1 parent e685ecd commit b096e41
Show file tree
Hide file tree
Showing 9 changed files with 189 additions and 16 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.0">22.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.1">22.4.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.0">22.4.0</a><br/>
Expand Down
6 changes: 3 additions & 3 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ export USERNAME="nodejs" # will result in `nodejs` as the value.
<!-- YAML
added: v0.5.2
changes:
- version: REPLACEME
- version: v22.6.0
pr-url: https://github.com/nodejs/node/pull/53725

Check warning on line 862 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Eval now supports experimental type-stripping.
- version: v5.11.0
Expand Down Expand Up @@ -992,7 +992,7 @@ Specify the `module` containing exported [module customization hooks][].

<!-- YAML
added:
- REPLACEME
- v22.6.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -1061,7 +1061,7 @@ Enable the experimental [`node:sqlite`][] module.
### `--experimental-strip-types`

<!-- YAML
added: REPLACEME
added: v22.6.0
-->

> Stability: 1.0 - Early development
Expand Down
2 changes: 1 addition & 1 deletion doc/api/errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -4004,7 +4004,7 @@ An error occurred trying to allocate memory. This should never happen.
#### `ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING`

<!-- YAML
added: REPLACEME
added: v22.6.0
-->

Type stripping is not supported for files descendent of a `node_modules` directory.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/inspector.md
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ inspector.Network.requestWillBeSent({

<!-- YAML
added:
- REPLACEME
- v22.6.0
-->

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

<!-- YAML
added:
- REPLACEME
- v22.6.0
-->

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

<!-- YAML
added:
- REPLACEME
- v22.6.0
-->

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -2681,7 +2681,7 @@ further errors except from `_destroy()` may be emitted as `'error'`.
#### `stream.duplexPair([options])`

<!-- YAML
added: REPLACEME
added: v22.6.0
-->

* `options` {Object} A value to pass to both [`Duplex`][] constructors,
Expand Down
6 changes: 3 additions & 3 deletions doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -1239,7 +1239,7 @@ added:
- v18.9.0
- v16.19.0
changes:
- version: REPLACEME
- version: v22.6.0
pr-url: https://github.com/nodejs/node/pull/53866

Check warning on line 1243 in doc/api/test.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Added the `globPatterns` option.
- version: v22.0.0
Expand Down Expand Up @@ -3203,7 +3203,7 @@ test('top level test', (t) => {
### `context.filePath`

<!-- YAML
added: REPLACEME
added: v22.6.0
-->

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

<!-- YAML
added: REPLACEME
added: v22.6.0
-->

The absolute path of the test file that created the current suite. If a test
Expand Down
2 changes: 1 addition & 1 deletion doc/api/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To use TypeScript with full support for all TypeScript features, including
## Type stripping

<!-- YAML
added: REPLACEME
added: v22.6.0
-->

> Stability: 1.0 - Early development
Expand Down
172 changes: 172 additions & 0 deletions doc/changelogs/CHANGELOG_V22.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 22
#define NODE_MINOR_VERSION 5
#define NODE_PATCH_VERSION 2
#define NODE_MINOR_VERSION 6
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit b096e41

Please sign in to comment.