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 3ac5b49 commit e49cf7a
Show file tree
Hide file tree
Showing 7 changed files with 255 additions and 9 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 @@ -476,7 +476,7 @@ added:
- v12.19.0
changes:
- version:
- REPLACEME
- v22.9.0
pr-url: https://github.com/nodejs/node/pull/54209
description: The flag is no longer experimental.
-->
Expand Down Expand Up @@ -1769,7 +1769,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 @@ -3715,7 +3715,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
description: Documentation-only deprecation.
-->
Expand All @@ -3730,7 +3730,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
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 @@ -1856,7 +1856,7 @@ argument.
<!-- YAML
added: v0.11.13
changes:
- version: REPLACEME
- version: v22.9.0
pr-url: https://github.com/nodejs/node/pull/54790
description: The `allowPartialTrustChain` option has been added.
- version:
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.

0 comments on commit e49cf7a

Please sign in to comment.