Skip to content

Commit 5c55e08

Browse files
committed
2024-10-14, Version 22.10.0 (Current)
Notable changes: crypto: * (SEMVER-MINOR) add `KeyObject.prototype.toCryptoKey` (Filip Skokan) #55262 * (SEMVER-MINOR) add Date fields for `validTo` and `validFrom` (Andrew Moon) #54159 doc: * add abmusse to collaborators (Abdirahim Musse) #55086 http2: * (SEMVER-MINOR) expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) #54875 lib: * (SEMVER-MINOR) propagate aborted state to dependent signals before firing events (jazelly) #54826 module: * (SEMVER-MINOR) support loading entrypoint as url (RedYetiDev) #54933 * (SEMVER-MINOR) implement the `"module-sync"` exports condition (Joyee Cheung) #54648 * (SEMVER-MINOR) implement `flushCompileCache()` (Joyee Cheung) #54971 * (SEMVER-MINOR) throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) #54971 * (SEMVER-MINOR) write compile cache to temporary file and then rename it (Joyee Cheung) #54971 src: * mark node `--run` as stable (Yagiz Nizipli) #53763 test_runner: * (SEMVER-MINOR) support custom arguments in `run()` (Aviv Keller) #55126 * (SEMVER-MINOR) add `'test:summary'` event (Colin Ihrig) #54851 * (SEMVER-MINOR) add support for coverage via `run()` (Chemi Atlow) #53937 worker: * (SEMVER-MINOR) add `markAsUncloneable` api (Jason Zhang) #55234 PR-URL: #55343
1 parent 3273707 commit 5c55e08

11 files changed

+353
-16
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.9.0">22.9.0</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.10.0">22.10.0</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V22.md#22.9.0">22.9.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V22.md#22.8.0">22.8.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V22.md#22.7.0">22.7.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ of `--enable-source-maps`.
799799

800800
<!-- YAML
801801
added:
802-
- REPLACEME
802+
- v22.10.0
803803
-->
804804

805805
> Stability: 1 - Experimental

doc/api/crypto.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2137,7 +2137,7 @@ property is `undefined` for asymmetric keys.
21372137
### `keyObject.toCryptoKey(algorithm, extractable, keyUsages)`
21382138

21392139
<!-- YAML
2140-
added: REPLACEME
2140+
added: v22.10.0
21412141
-->
21422142

21432143
<!--lint disable maximum-line-length remark-lint-->
@@ -2884,7 +2884,7 @@ The date/time from which this certificate is valid.
28842884
### `x509.validFromDate`
28852885

28862886
<!-- YAML
2887-
added: REPLACEME
2887+
added: v22.10.0
28882888
-->
28892889

28902890
* Type: {Date}
@@ -2904,7 +2904,7 @@ The date/time until which this certificate is valid.
29042904
### `x509.validToDate`
29052905

29062906
<!-- YAML
2907-
added: REPLACEME
2907+
added: v22.10.0
29082908
-->
29092909

29102910
* Type: {Date}

doc/api/errors.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2441,7 +2441,7 @@ object.
24412441
### `ERR_QUIC_CONNECTION_FAILED`
24422442

24432443
<!-- YAML
2444-
added: REPLACEME
2444+
added: v22.10.0
24452445
-->
24462446

24472447
> Stability: 1 - Experimental
@@ -2453,7 +2453,7 @@ Establishing a QUIC connection failed.
24532453
### `ERR_QUIC_ENDPOINT_CLOSED`
24542454

24552455
<!-- YAML
2456-
added: REPLACEME
2456+
added: v22.10.0
24572457
-->
24582458

24592459
> Stability: 1 - Experimental
@@ -2465,7 +2465,7 @@ A QUIC Endpoint closed with an error.
24652465
### `ERR_QUIC_OPEN_STREAM_FAILED`
24662466

24672467
<!-- YAML
2468-
added: REPLACEME
2468+
added: v22.10.0
24692469
-->
24702470

24712471
> Stability: 1 - Experimental

doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2767,7 +2767,7 @@ Throws `ERR_INVALID_ARG_TYPE` for invalid `settings` argument.
27672767
added: v8.4.0
27682768
changes:
27692769
- version:
2770-
- REPLACEME
2770+
- v22.10.0
27712771
pr-url: https://github.com/nodejs/node/pull/54875
27722772
description: Added `streamResetBurst` and `streamResetRate`.
27732773
- version:

doc/api/module.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ should be fetched.
11091109
11101110
<!-- YAML
11111111
added:
1112-
- REPLACEME
1112+
- v22.10.0
11131113
-->
11141114
11151115
> Stability: 1.1 - Active Development

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1971,7 +1971,7 @@ A boolean value that is `true` if the current Node.js build includes support for
19711971
## `process.features.typescript`
19721972
19731973
<!-- YAML
1974-
added: REPLACEME
1974+
added: v22.10.0
19751975
-->
19761976
19771977
> Stability: 1.0 - Early development

doc/api/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ added:
12581258
- v18.9.0
12591259
- v16.19.0
12601260
changes:
1261-
- version: REPLACEME
1261+
- version: v22.10.0
12621262
pr-url: https://github.com/nodejs/node/pull/53937
12631263
description: Added coverage options.
12641264
- version: v22.8.0

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ There is no equivalent to this API in browsers.
197197
## `worker.markAsUncloneable(object)`
198198

199199
<!-- YAML
200-
added: REPLACEME
200+
added: v22.10.0
201201
-->
202202

203203
* `object` {any} Any arbitrary JavaScript value.

doc/changelogs/CHANGELOG_V22.md

+336
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 22
26-
#define NODE_MINOR_VERSION 9
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 10
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)