Skip to content

Commit 18f0262

Browse files
committed
2022-10-13, Version 18.11.0 (Current)
watch mode (experimental): Running in 'watch' mode using `node --watch` restarts the process when an imported file is changed. Contributed by Moshe Atlow in #44366 Other notable changes: * fs: * (SEMVER-MINOR) add `FileHandle.prototype.readLines` (Antoine du Hamel) #42590 * http: * (SEMVER-MINOR) add writeEarlyHints function to ServerResponse (Wing) #44180 * http2: * (SEMVER-MINOR) make early hints generic (Yagiz Nizipli) #44820 * lib: * (SEMVER-MINOR) refactor transferable AbortSignal (flakey5) #44048 * src: * (SEMVER-MINOR) add detailed embedder process initialization API (Anna Henningsen) #44121 * util: * (SEMVER-MINOR) add default value option to parsearg (Manuel Spigolon) #44631 PR-URL: #44968
1 parent 9ac029e commit 18f0262

File tree

8 files changed

+147
-12
lines changed

8 files changed

+147
-12
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.10.0">18.10.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.11.0">18.11.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V18.md#18.10.0">18.10.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V18.md#18.9.1">18.9.1</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V18.md#18.9.0">18.9.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V18.md#18.8.0">18.8.0</a><br/>

doc/api/cli.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1190,7 +1190,7 @@ on [running tests from the command line][] for more details.
11901190
### `--test-name-pattern`
11911191

11921192
<!-- YAML
1193-
added: REPLACEME
1193+
added: v18.11.0
11941194
-->
11951195

11961196
A regular expression that configures the test runner to only execute tests
@@ -1542,7 +1542,7 @@ will be chosen.
15421542
### `--watch`
15431543

15441544
<!-- YAML
1545-
added: REPLACEME
1545+
added: v18.11.0
15461546
-->
15471547

15481548
> Stability: 1 - Experimental
@@ -1564,7 +1564,7 @@ $ node --watch index.js
15641564
### `--watch-path`
15651565

15661566
<!-- YAML
1567-
added: REPLACEME
1567+
added: v18.11.0
15681568
-->
15691569

15701570
> Stability: 1 - Experimental

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ of the file.
518518
#### `filehandle.readLines([options])`
519519
520520
<!-- YAML
521-
added: REPLACEME
521+
added: v18.11.0
522522
-->
523523
524524
* `options` {Object}

doc/api/http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2128,9 +2128,9 @@ the request body should be sent. See the [`'checkContinue'`][] event on
21282128
### `response.writeEarlyHints(hints[, callback])`
21292129

21302130
<!-- YAML
2131-
added: REPLACEME
2131+
added: v18.11.0
21322132
changes:
2133-
- version: REPLACEME
2133+
- version: v18.11.0
21342134
pr-url: https://github.com/nodejs/node/pull/44820
21352135
description: Allow passing hints as an object.
21362136
-->

doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3994,7 +3994,7 @@ should be sent. See the [`'checkContinue'`][] event on `Http2Server` and
39943994
### `response.writeEarlyHints(links)`
39953995

39963996
<!-- YAML
3997-
added: REPLACEME
3997+
added: v18.11.0
39983998
-->
39993999

40004000
* `links` {string|Array}

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ equality.
10251025
<!-- YAML
10261026
added: v18.3.0
10271027
changes:
1028-
- version: REPLACEME
1028+
- version: v18.11.0
10291029
pr-url: https://github.com/nodejs/node/pull/44631
10301030
description: Add support for default values in input `config`.
10311031
- version:

doc/changelogs/CHANGELOG_V18.md

+134
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 10
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 11
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)