Skip to content

Commit

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

lib:
  * (SEMVER-MINOR) add util.getCallSite() API (Rafael Gonzaga) #54380
repl:
  * doc-deprecate instantiating `node:repl` classes without `new` (Aviv Keller) #54842
src:
  * create handle scope in FastInternalModuleStat (Joyee Cheung) #54384
stream:
  * (SEMVER-MINOR) relocate the status checking code in the onwritecomplete (YoonSoo_Shin) #54032
tls:
  * (SEMVER-MINOR) add `allowPartialTrustChain` flag (Anna Henningsen) #54790
v8:
  * Revert "v8: enable maglev on supported architectures (Joyee Cheung) #54384

PR-URL: #54966
  • Loading branch information
RafaelGSS committed Sep 17, 2024
1 parent 93116dd commit 4631be0
Show file tree
Hide file tree
Showing 8 changed files with 258 additions and 12 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.8.0">22.8.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.9.0">22.9.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.8.0">22.8.0</a><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/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ added:
- v12.19.0
changes:
- version:
- REPLACEME
- v22.9.0
pr-url: https://github.com/nodejs/node/pull/54209

Check warning on line 478 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: The flag is no longer experimental.
-->
Expand Down Expand Up @@ -1773,7 +1773,7 @@ Node.js which is `nodejs_conf` and is default when this option is not used.
### `--env-file-if-exists=config`

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

Behavior is the same as [`--env-file`][], but an error is not thrown if the file
Expand Down
4 changes: 2 additions & 2 deletions doc/api/deprecations.md
Original file line number Diff line number Diff line change
Expand Up @@ -3659,7 +3659,7 @@ and [`crypto.setEngine()`][] all depend on this functionality from OpenSSL.

<!-- YAML
changes:
- version: REPLACEME
- version: v22.9.0
pr-url: https://github.com/nodejs/node/pull/54708

Check warning on line 3663 in doc/api/deprecations.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Documentation-only deprecation.
-->
Expand All @@ -3674,7 +3674,7 @@ It is recommended to use the `new` qualifier instead. This applies to all Zlib c

<!-- YAML
changes:
- version: REPLACEME
- version: v22.9.0
pr-url: https://github.com/nodejs/node/pull/54842

Check warning on line 3678 in doc/api/deprecations.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Documentation-only deprecation.
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/n-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3106,7 +3106,7 @@ creation methods.
#### `node_api_create_property_key_latin1`

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -3172,7 +3172,7 @@ The JavaScript `string` type is described in
#### `node_api_create_property_key_utf8`

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

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,7 @@ argument.
<!-- YAML
added: v0.11.13
changes:
- version: REPLACEME
- version: v22.9.0
pr-url: https://github.com/nodejs/node/pull/54790

Check warning on line 1858 in doc/api/tls.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 `allowPartialTrustChain` option has been added.
- version: v22.4.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 @@ -369,7 +369,7 @@ util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 });
> Stability: 1.1 - Active development
<!-- YAML
added: REPLACEME
added: v22.9.0
-->

* `frames` {number} Number of frames returned in the stacktrace.
Expand Down
245 changes: 245 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 8
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 9
#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 4631be0

Please sign in to comment.