Skip to content

Commit a7a672c

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 7cdf745 commit a7a672c

File tree

7 files changed

+146
-11
lines changed

7 files changed

+146
-11
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
@@ -1217,7 +1217,7 @@ on [running tests from the command line][] for more details.
12171217
### `--test-name-pattern`
12181218

12191219
<!-- YAML
1220-
added: REPLACEME
1220+
added: v18.11.0
12211221
-->
12221222

12231223
A regular expression that configures the test runner to only execute tests
@@ -1573,7 +1573,7 @@ will be chosen.
15731573
### `--watch`
15741574

15751575
<!-- YAML
1576-
added: REPLACEME
1576+
added: v18.11.0
15771577
-->
15781578

15791579
> Stability: 1 - Experimental
@@ -1595,7 +1595,7 @@ $ node --watch index.js
15951595
### `--watch-path`
15961596

15971597
<!-- YAML
1598-
added: REPLACEME
1598+
added: v18.11.0
15991599
-->
16001600

16011601
> Stability: 1 - Experimental

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ of the file.
520520
#### `filehandle.readLines([options])`
521521
522522
<!-- YAML
523-
added: REPLACEME
523+
added: v18.11.0
524524
-->
525525
526526
* `options` {Object}

doc/api/http.md

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

21432143
<!-- YAML
2144-
added: REPLACEME
2144+
added: v18.11.0
21452145
changes:
2146-
- version: REPLACEME
2146+
- version: v18.11.0
21472147
pr-url: https://github.com/nodejs/node/pull/44820
21482148
description: Allow passing hints as an object.
21492149
-->

doc/api/http2.md

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

40104010
<!-- YAML
4011-
added: REPLACEME
4011+
added: v18.11.0
40124012
-->
40134013

40144014
* `links` {string|Array}

doc/api/util.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@ added:
10311031
- v18.3.0
10321032
- v16.17.0
10331033
changes:
1034-
- version: REPLACEME
1034+
- version: v18.11.0
10351035
pr-url: https://github.com/nodejs/node/pull/44631
10361036
description: Add support for default values in input `config`.
10371037
- version:
@@ -1606,7 +1606,7 @@ Unicode "replacement character" U+FFFD.
16061606
## `util.transferableAbortController()`
16071607
16081608
<!-- YAML
1609-
added: REPLACEME
1609+
added: v18.11.0
16101610
-->
16111611
16121612
> Stability: 1 - Experimental
@@ -1617,7 +1617,7 @@ as transferable and can be used with `structuredClone()` or `postMessage()`.
16171617
## `util.transferableAbortSignal(signal)`
16181618
16191619
<!-- YAML
1620-
added: REPLACEME
1620+
added: v18.11.0
16211621
-->
16221622
16231623
> Stability: 1 - Experimental

doc/changelogs/CHANGELOG_V18.md

+134
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)