Skip to content

Commit bdf069b

Browse files
committed
2022-09-28, Version 18.10.0 (Current)
Notable changes: doc: * (SEMVER-MINOR) deprecate modp1, modp2, and modp5 groups (Tobias Nießen) <#44588> gyp: * libnode for ios app embedding (chexiongsheng) <#44210> http: * (SEMVER-MINOR) throw error on content-length mismatch (sidwebworks) (<#44378>) stream: * (SEMVER-MINOR) add `ReadableByteStream.tee()` (Daeyeon Jeong) (<#44505>) PR-URL: #44799
1 parent 6dc0382 commit bdf069b

File tree

7 files changed

+141
-14
lines changed

7 files changed

+141
-14
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.9.1">18.9.1</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.10.0">18.10.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V18.md#18.9.1">18.9.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V18.md#18.9.0">18.9.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V18.md#18.8.0">18.8.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V18.md#18.7.0">18.7.0</a><br/>

doc/api/deprecations.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2889,7 +2889,7 @@ Prefer [`message.socket`][] over [`message.connection`][].
28892889

28902890
<!-- YAML
28912891
changes:
2892-
- version: REPLACEME
2892+
- version: v18.10.0
28932893
pr-url: https://github.com/nodejs/node/pull/43627
28942894
description: End-of-Life.
28952895
- version: v16.0.0
@@ -3131,7 +3131,7 @@ resources and not the actual references.
31313131

31323132
<!-- YAML
31333133
changes:
3134-
- version: REPLACEME
3134+
- version: v18.10.0
31353135
pr-url: https://github.com/nodejs/node/pull/42796
31363136
description: End-of-Life.
31373137
- version: v18.0.0
@@ -3175,7 +3175,7 @@ thing instead.
31753175

31763176
<!-- YAML
31773177
changes:
3178-
- version: REPLACEME
3178+
- version: v18.10.0
31793179
pr-url: https://github.com/nodejs/node/pull/44714
31803180
description: Documentation-only deprecation of `process.exitCode` integer
31813181
coercion.
@@ -3210,10 +3210,10 @@ The [`--trace-atomics-wait`][] flag is deprecated.
32103210

32113211
<!-- YAML
32123212
changes:
3213-
- version: REPLACEME
3213+
- version: v18.10.0
32143214
pr-url: https://github.com/nodejs/node/pull/44495
32153215
description: Runtime deprecation.
3216-
- version: REPLACEME
3216+
- version: v18.10.0
32173217
pr-url: https://github.com/nodejs/node/pull/44477
32183218
description: Documentation-only deprecation
32193219
with `--pending-deprecation` support.
@@ -3230,7 +3230,7 @@ starting or ending in a slash.
32303230

32313231
<!-- YAML
32323232
changes:
3233-
- version: REPLACEME
3233+
- version: v18.10.0
32343234
pr-url: https://github.com/nodejs/node/pull/44588
32353235
description: Documentation-only deprecation.
32363236
-->

doc/api/inspector.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const inspector = require('node:inspector');
2020
<!-- YAML
2121
added: v9.0.0
2222
changes:
23-
- version: REPLACEME
23+
- version: v18.10.0
2424
pr-url: https://github.com/nodejs/node/pull/44489
2525
description: The API is exposed in the worker threads.
2626
-->

doc/api/v8.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ if (isMainThread) {
359359
## `v8.setHeapSnapshotNearHeapLimit(limit)`
360360

361361
<!-- YAML
362-
added: REPLACEME
362+
added: v18.10.0
363363
-->
364364

365365
> Stability: 1 - Experimental

doc/api/webstreams.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ is active.
300300
<!-- YAML
301301
added: v16.5.0
302302
changes:
303-
- version: REPLACEME
303+
- version: v18.10.0
304304
pr-url: https://github.com/nodejs/node/pull/44505
305305
description: Support teeing a readable byte stream.
306306
-->
@@ -652,7 +652,7 @@ Signals an error that causes the {ReadableStream} to error and close.
652652
<!-- YAML
653653
added: v16.5.0
654654
changes:
655-
- version: REPLACEME
655+
- version: v18.10.0
656656
pr-url: https://github.com/nodejs/node/pull/44702
657657
description: Support handling a BYOB pull request from a released reader.
658658
-->

doc/changelogs/CHANGELOG_V18.md

+126
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 18
26-
#define NODE_MINOR_VERSION 9
27-
#define NODE_PATCH_VERSION 2
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)