Skip to content

Commit 57f2493

Browse files
committed
2022-09-05, Version v18.9.0 (Current)
Notable changes: * cli: * (SEMVER-MINOR) add `--watch` (Moshe Atlow) #44366 * doc: * add daeyeon to collaborators (Daeyeon Jeong) #44355 * lib: * (SEMVER-MINOR) add diagnostics channel for process and worker (theanarkh) #44045 * os: * (SEMVER-MINOR) add machine method (theanarkh) #44416 * report: * (SEMVER-MINOR) expose report public native apis (Chengzhong Wu) #44255 * src: * (SEMVER-MINOR) expose environment RequestInterrupt api (Chengzhong Wu) #44362 * vm: * include vm context in the embedded snapshot (Joyee Cheung) #44252 PR-URL: #44521
1 parent 05d6087 commit 57f2493

File tree

7 files changed

+134
-11
lines changed

7 files changed

+134
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.8.0">18.8.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.9.0">18.9.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V18.md#18.8.0">18.8.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V18.md#18.7.0">18.7.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V18.md#18.6.0">18.6.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V18.md#18.5.0">18.5.0</a><br/>

doc/api/cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,7 @@ will be chosen.
15321532
### `--watch`
15331533

15341534
<!-- YAML
1535-
added: REPLACEME
1535+
added: v18.9.0
15361536
-->
15371537

15381538
> Stability: 1 - Experimental
@@ -1554,7 +1554,7 @@ $ node --watch index.js
15541554
### `--watch-path`
15551555

15561556
<!-- YAML
1557-
added: REPLACEME
1557+
added: v18.9.0
15581558
-->
15591559

15601560
> Stability: 1 - Experimental

doc/api/diagnostics_channel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ Emitted when a new UDP socket is created.
453453
#### Process
454454

455455
<!-- YAML
456-
added: REPLACEME
456+
added: v18.9.0
457457
-->
458458

459459
`child_process`
@@ -465,7 +465,7 @@ Emitted when a new process is created.
465465
#### Worker Thread
466466

467467
<!-- YAML
468-
added: REPLACEME
468+
added: v18.9.0
469469
-->
470470

471471
`worker_threads`

doc/api/os.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ available, `GetVersionExW()` will be used. See
455455
## `os.machine()`
456456

457457
<!-- YAML
458-
added: REPLACEME
458+
added: v18.9.0
459459
-->
460460

461461
* Returns {string}

doc/api/test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ internally.
319319
## `run([options])`
320320

321321
<!-- YAML
322-
added: REPLACEME
322+
added: v18.9.0
323323
-->
324324

325325
* `options` {Object} Configuration options for running tests. The following
@@ -592,7 +592,7 @@ describe('tests', async () => {
592592
## Class: `TapStream`
593593

594594
<!-- YAML
595-
added: REPLACEME
595+
added: v18.9.0
596596
-->
597597

598598
* Extends {ReadableStream}

doc/changelogs/CHANGELOG_V18.md

Lines changed: 122 additions & 0 deletions
Large diffs are not rendered by default.

src/node_version.h

Lines changed: 3 additions & 3 deletions
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 8
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 9
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)