Skip to content

Commit 488a3f2

Browse files
committed
2024-05-02, Version 22.1.0 (Current)
Notable changes: buffer: * improve `base64` and `base64url` performance (Yagiz Nizipli) #52428 dns: * (SEMVER-MINOR) add order option and support ipv6first (Paolo Insogna) #52492 events,doc: * mark CustomEvent as stable (Daeyeon Jeong) #52618 lib, url: * (SEMVER-MINOR) add a `windows` option to path parsing (Aviv Keller) #52509 module: * (SEMVER-MINOR) implement NODE_COMPILE_CACHE for automatic on-disk code caching (Joyee Cheung) #52535 net: * (SEMVER-MINOR) add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) #52474 src: * (SEMVER-MINOR) add `string_view` overload to snapshot FromBlob (Anna Henningsen) #52595 src,permission: * throw async errors on async APIs (Rafael Gonzaga) #52730 test_runner: * (SEMVER-MINOR) add --test-skip-pattern cli option (Aviv Keller) #52529 url: * (SEMVER-MINOR) implement parse method for safer URL parsing (Ali Hassan) #52280 PR-URL: #52768
1 parent 6e98eee commit 488a3f2

File tree

7 files changed

+195
-17
lines changed

7 files changed

+195
-17
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.0.0">22.0.0</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.1.0">22.1.0</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V22.md#22.0.0">22.0.0</a><br/>
4243
</td>
4344
<td valign="top">
4445
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.7.3">21.7.3</a></b><br/>

doc/api/cli.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ added:
594594
- v16.4.0
595595
- v14.18.0
596596
changes:
597-
- version: REPLACEME
597+
- version: v22.1.0
598598
pr-url: https://github.com/nodejs/node/pull/52492
599599
description: The `ipv6first` is supported now.
600600
- version: v17.0.0
@@ -1338,7 +1338,7 @@ This option is a no-op. It is kept for compatibility.
13381338
### `--network-family-autoselection-attempt-timeout`
13391339

13401340
<!-- YAML
1341-
added: REPLACEME
1341+
added: v22.1.0
13421342
-->
13431343

13441344
Sets the default value for the network family autoselection attempt timeout.
@@ -2059,7 +2059,7 @@ node --test --test-shard=3/3
20592059

20602060
<!-- YAML
20612061
added:
2062-
- REPLACEME
2062+
- v22.1.0
20632063
-->
20642064

20652065
A regular expression that configures the test runner to skip tests
@@ -2521,7 +2521,7 @@ environment variable is arbitrary.
25212521
### `NODE_COMPILE_CACHE=dir`
25222522

25232523
<!-- YAML
2524-
added: REPLACEME
2524+
added: v22.1.0
25252525
-->
25262526

25272527
> Stability: 1.1 - Active Development

doc/api/dns.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ section if a custom port is used.
179179
<!-- YAML
180180
added: v0.1.90
181181
changes:
182-
- version: REPLACEME
182+
- version: v22.1.0
183183
pr-url: https://github.com/nodejs/node/pull/52492
184184
description: The `verbatim` option is now deprecated in favor of the new `order` option.
185185
- version: v18.4.0
@@ -787,7 +787,7 @@ added:
787787
- v16.4.0
788788
- v14.18.0
789789
changes:
790-
- version: REPLACEME
790+
- version: v22.1.0
791791
pr-url: https://github.com/nodejs/node/pull/52492
792792
description: The `ipv6first` value is supported now.
793793
- version: v17.0.0
@@ -816,7 +816,7 @@ added:
816816
- v20.1.0
817817
- v18.17.0
818818
changes:
819-
- version: REPLACEME
819+
- version: v22.1.0
820820
pr-url: https://github.com/nodejs/node/pull/52492
821821
description: The `ipv6first` value is supported now.
822822
-->
@@ -971,7 +971,7 @@ section if a custom port is used.
971971
<!-- YAML
972972
added: v10.6.0
973973
changes:
974-
- version: REPLACEME
974+
- version: v22.1.0
975975
pr-url: https://github.com/nodejs/node/pull/52492
976976
description: The `verbatim` option is now deprecated in favor of the new `order` option.
977977
-->
@@ -1383,7 +1383,7 @@ added:
13831383
- v16.4.0
13841384
- v14.18.0
13851385
changes:
1386-
- version: REPLACEME
1386+
- version: v22.1.0
13871387
pr-url: https://github.com/nodejs/node/pull/52492
13881388
description: The `ipv6first` value is supported now.
13891389
- version: v17.0.0

doc/api/events.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2427,7 +2427,7 @@ added:
24272427
- v18.7.0
24282428
- v16.17.0
24292429
changes:
2430-
- version: REPLACEME
2430+
- version: v22.1.0
24312431
pr-url: https://github.com/nodejs/node/pull/52618
24322432
description: CustomEvent is now stable.
24332433
-->
@@ -2446,7 +2446,7 @@ added:
24462446
- v18.7.0
24472447
- v16.17.0
24482448
changes:
2449-
- version: REPLACEME
2449+
- version: v22.1.0
24502450
pr-url: https://github.com/nodejs/node/pull/52618
24512451
description: CustomEvent is now stable.
24522452
-->

doc/api/url.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ console.log(url.domainToUnicode('xn--iñvalid.com'));
11561156
<!-- YAML
11571157
added: v10.12.0
11581158
changes:
1159-
- version: REPLACEME
1159+
- version: v22.1.0
11601160
pr-url: https://github.com/nodejs/node/pull/52509
11611161
description: The `options` argument can now be used to
11621162
determine how to parse the `path` argument.
@@ -1266,7 +1266,7 @@ console.log(url.format(myURL, { fragment: false, unicode: true, auth: false }));
12661266
<!-- YAML
12671267
added: v10.12.0
12681268
changes:
1269-
- version: REPLACEME
1269+
- version: v22.1.0
12701270
pr-url: https://github.com/nodejs/node/pull/52509
12711271
description: The `options` argument can now be used to
12721272
determine how to return the `path` value.

0 commit comments

Comments
 (0)