Skip to content

Commit

Permalink
2022-09-05, Version v18.9.0 (Current)
Browse files Browse the repository at this point in the history
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: TBD
  • Loading branch information
RafaelGSS committed Sep 5, 2022
1 parent 05d6087 commit 1a54f28
Show file tree
Hide file tree
Showing 7 changed files with 134 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -35,7 +35,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.8.0">18.8.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.9.0">18.9.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.8.0">18.8.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.7.0">18.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.6.0">18.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.5.0">18.5.0</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Expand Up @@ -1532,7 +1532,7 @@ will be chosen.
### `--watch`

<!-- YAML
added: REPLACEME
added: v18.9.0
-->

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

<!-- YAML
added: REPLACEME
added: v18.9.0
-->

> Stability: 1 - Experimental
Expand Down
4 changes: 2 additions & 2 deletions doc/api/diagnostics_channel.md
Expand Up @@ -453,7 +453,7 @@ Emitted when a new UDP socket is created.
#### Process

<!-- YAML
added: REPLACEME
added: v18.9.0
-->

`child_process`
Expand All @@ -465,7 +465,7 @@ Emitted when a new process is created.
#### Worker Thread

<!-- YAML
added: REPLACEME
added: v18.9.0
-->

`worker_threads`
Expand Down
2 changes: 1 addition & 1 deletion doc/api/os.md
Expand Up @@ -455,7 +455,7 @@ available, `GetVersionExW()` will be used. See
## `os.machine()`

<!-- YAML
added: REPLACEME
added: v18.9.0
-->

* Returns {string}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/test.md
Expand Up @@ -319,7 +319,7 @@ internally.
## `run([options])`

<!-- YAML
added: REPLACEME
added: v18.9.0
-->

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

<!-- YAML
added: REPLACEME
added: v18.9.0
-->

* Extends {ReadableStream}
Expand Down
122 changes: 122 additions & 0 deletions doc/changelogs/CHANGELOG_V18.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 18
#define NODE_MINOR_VERSION 8
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 9
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 1a54f28

Please sign in to comment.