Skip to content

Commit

Permalink
2024-09-03, Version 22.8.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

net:
  * (SEMVER-MINOR) exclude ipv6 loopback addresses from server.listen (Giovanni Bucci) #54264
src:
  * (SEMVER-MINOR) add JS APIs for compile cache and NODE_DISABLE_COMPILE_CACHE (Joyee Cheung) #54501
src,lib:
  * (SEMVER-MINOR) add performance.uvMetricsInfo (Rafael Gonzaga) #54413
test_runner:
  * (SEMVER-MINOR) add support for coverage thresholds (Aviv Keller) #54429
  * (SEMVER-MINOR) support running tests in process (Colin Ihrig) #53927
  * (SEMVER-MINOR) defer inheriting hooks until run() (Colin Ihrig) #53927
vm:
  * (SEMVER-MINOR) introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY (Joyee Cheung) #54394

PR-URL: #54560
  • Loading branch information
RafaelGSS committed Sep 3, 2024
1 parent 6f0cf35 commit 78ee90e
Show file tree
Hide file tree
Showing 9 changed files with 166 additions and 19 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.7.0">22.7.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.8.0">22.8.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.7.0">22.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a><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/>
Expand Down
10 changes: 5 additions & 5 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@ report is not generated. See the documentation on
### `--experimental-test-isolation=mode`

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

> Stability: 1.0 - Early development
Expand Down Expand Up @@ -2221,7 +2221,7 @@ is ignored and concurrency is one. Otherwise, concurrency defaults to
### `--test-coverage-branches=threshold`

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -2249,7 +2249,7 @@ files must meet **both** criteria to be included in the coverage report.
### `--test-coverage-functions=threshold`

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -2277,7 +2277,7 @@ files must meet **both** criteria to be included in the coverage report.
### `--test-coverage-lines=threshold`

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -2894,7 +2894,7 @@ When set, colors will not be used in the REPL.
### `NODE_DISABLE_COMPILE_CACHE=1`

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

> Stability: 1.1 - Active Development
Expand Down
8 changes: 4 additions & 4 deletions doc/api/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const siblingModule = require('./sibling-module');
### `module.constants.compileCacheStatus`
<!-- YAML
added: REPLACEME
added: v22.8.0
-->
> Stability: 1.1 - Active Development
Expand Down Expand Up @@ -120,7 +120,7 @@ The following constants are returned as the `status` field in the object returne
### `module.enableCompileCache([cacheDir])`
<!-- YAML
added: REPLACEME
added: v22.8.0
-->
> Stability: 1.1 - Active Development
Expand Down Expand Up @@ -165,7 +165,7 @@ be inheritend into the child workers. The directory can be obtained either from
<!-- YAML
added: v22.1.0
changes:
- version: REPLACEME
- version: v22.8.0
pr-url: https://github.com/nodejs/node/pull/54501

Check warning on line 169 in doc/api/module.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: add initial JavaScript APIs for runtime access.
-->
Expand Down Expand Up @@ -202,7 +202,7 @@ separately if the same base directory is used to persist the cache, so they can
### `module.getCompileCacheDir()`
<!-- YAML
added: REPLACEME
added: v22.8.0
-->
> Stability: 1.1 - Active Development
Expand Down
2 changes: 1 addition & 1 deletion doc/api/perf_hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ initialized.
### `performanceNodeTiming.uvMetricsInfo`

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

* Returns: {Object}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ added:
- v18.9.0
- v16.19.0
changes:
- version: REPLACEME
- version: v22.8.0
pr-url: https://github.com/nodejs/node/pull/53927

Check warning on line 1252 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 `isolation` option.
- version: v22.6.0
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Original file line number Diff line number Diff line change
Expand Up @@ -1809,7 +1809,7 @@ added:
- v21.7.0
- v20.12.0
changes:
- version: REPLACEME
- version: v22.8.0
pr-url: https://github.com/nodejs/node/pull/54389

Check warning on line 1813 in doc/api/util.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Respect isTTY and environment variables
such as NO_COLORS, NODE_DISABLE_COLORS, and FORCE_COLOR.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/vm.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ overhead.
<!-- YAML
added: v0.3.1
changes:
- version: REPLACEME
- version: v22.8.0
pr-url: https://github.com/nodejs/node/pull/54394

Check warning on line 233 in doc/api/vm.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: The `contextObject` argument now accepts `vm.constants.DONT_CONTEXTIFY`.
- version: v14.6.0
Expand Down Expand Up @@ -1090,7 +1090,7 @@ For detailed information, see
added: v0.3.1
changes:
- version:
- REPLACEME
- v22.8.0
pr-url: https://github.com/nodejs/node/pull/54394

Check warning on line 1094 in doc/api/vm.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: The `contextObject` argument now accepts `vm.constants.DONT_CONTEXTIFY`.
- version:
Expand Down Expand Up @@ -1362,7 +1362,7 @@ console.log(contextObject);
added: v0.3.1
changes:
- version:
- REPLACEME
- v22.8.0
pr-url: https://github.com/nodejs/node/pull/54394

Check warning on line 1366 in doc/api/vm.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: The `contextObject` argument now accepts `vm.constants.DONT_CONTEXTIFY`.
- version:
Expand Down
146 changes: 146 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 7
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 8
#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 78ee90e

Please sign in to comment.