Skip to content

Commit e49cf7a

Browse files
committed
2024-09-17, Version 22.9.0 (Current)
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
1 parent 3ac5b49 commit e49cf7a

File tree

7 files changed

+255
-9
lines changed

7 files changed

+255
-9
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.8.0">22.8.0</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.9.0">22.9.0</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V22.md#22.8.0">22.8.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V22.md#22.7.0">22.7.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ added:
476476
- v12.19.0
477477
changes:
478478
- version:
479-
- REPLACEME
479+
- v22.9.0
480480
pr-url: https://github.com/nodejs/node/pull/54209
481481
description: The flag is no longer experimental.
482482
-->
@@ -1769,7 +1769,7 @@ Node.js which is `nodejs_conf` and is default when this option is not used.
17691769
### `--env-file-if-exists=config`
17701770

17711771
<!-- YAML
1772-
added: REPLACEME
1772+
added: v22.9.0
17731773
-->
17741774

17751775
Behavior is the same as [`--env-file`][], but an error is not thrown if the file

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3715,7 +3715,7 @@ and [`crypto.setEngine()`][] all depend on this functionality from OpenSSL.
37153715

37163716
<!-- YAML
37173717
changes:
3718-
- version: REPLACEME
3718+
- version: v22.9.0
37193719
pr-url: https://github.com/nodejs/node/pull/54708
37203720
description: Documentation-only deprecation.
37213721
-->
@@ -3730,7 +3730,7 @@ It is recommended to use the `new` qualifier instead. This applies to all Zlib c
37303730

37313731
<!-- YAML
37323732
changes:
3733-
- version: REPLACEME
3733+
- version: v22.9.0
37343734
pr-url: https://github.com/nodejs/node/pull/54842
37353735
description: Documentation-only deprecation.
37363736
-->

doc/api/n-api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3106,7 +3106,7 @@ creation methods.
31063106
#### `node_api_create_property_key_latin1`
31073107

31083108
<!-- YAML
3109-
added: REPLACEME
3109+
added: v22.9.0
31103110
-->
31113111

31123112
> Stability: 1 - Experimental
@@ -3172,7 +3172,7 @@ The JavaScript `string` type is described in
31723172
#### `node_api_create_property_key_utf8`
31733173

31743174
<!-- YAML
3175-
added: REPLACEME
3175+
added: v22.9.0
31763176
-->
31773177

31783178
> Stability: 1 - Experimental

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1856,7 +1856,7 @@ argument.
18561856
<!-- YAML
18571857
added: v0.11.13
18581858
changes:
1859-
- version: REPLACEME
1859+
- version: v22.9.0
18601860
pr-url: https://github.com/nodejs/node/pull/54790
18611861
description: The `allowPartialTrustChain` option has been added.
18621862
- version:

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 });
369369
> Stability: 1.1 - Active development
370370
371371
<!-- YAML
372-
added: REPLACEME
372+
added: v22.9.0
373373
-->
374374

375375
* `frames` {number} Number of frames returned in the stacktrace.

doc/changelogs/CHANGELOG_V22.md

+245
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)