From 18f0262dadf677dd1f6a894326c4f2255063b6f1 Mon Sep 17 00:00:00 2001 From: Danielle Adams Date: Tue, 11 Oct 2022 10:37:32 -0400 Subject: [PATCH] 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 https://github.com/nodejs/node/pull/44366 Other notable changes: * fs: * (SEMVER-MINOR) add `FileHandle.prototype.readLines` (Antoine du Hamel) https://github.com/nodejs/node/pull/42590 * http: * (SEMVER-MINOR) add writeEarlyHints function to ServerResponse (Wing) https://github.com/nodejs/node/pull/44180 * http2: * (SEMVER-MINOR) make early hints generic (Yagiz Nizipli) https://github.com/nodejs/node/pull/44820 * lib: * (SEMVER-MINOR) refactor transferable AbortSignal (flakey5) https://github.com/nodejs/node/pull/44048 * src: * (SEMVER-MINOR) add detailed embedder process initialization API (Anna Henningsen) https://github.com/nodejs/node/pull/44121 * util: * (SEMVER-MINOR) add default value option to parsearg (Manuel Spigolon) https://github.com/nodejs/node/pull/44631 PR-URL: https://github.com/nodejs/node/pull/44968 --- CHANGELOG.md | 3 +- doc/api/cli.md | 6 +- doc/api/fs.md | 2 +- doc/api/http.md | 4 +- doc/api/http2.md | 2 +- doc/api/util.md | 2 +- doc/changelogs/CHANGELOG_V18.md | 134 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 8 files changed, 147 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e06afe72bdbfe9..07bb58b54081d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,8 @@ release. -18.10.0
+18.11.0
+18.10.0
18.9.1
18.9.0
18.8.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index 4b4a766854a338..7b17162c22ebe9 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -1190,7 +1190,7 @@ on [running tests from the command line][] for more details. ### `--test-name-pattern` A regular expression that configures the test runner to only execute tests @@ -1542,7 +1542,7 @@ will be chosen. ### `--watch` > Stability: 1 - Experimental @@ -1564,7 +1564,7 @@ $ node --watch index.js ### `--watch-path` > Stability: 1 - Experimental diff --git a/doc/api/fs.md b/doc/api/fs.md index e0ea18eb11c12c..e98126541514a0 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -518,7 +518,7 @@ of the file. #### `filehandle.readLines([options])` * `options` {Object} diff --git a/doc/api/http.md b/doc/api/http.md index e57c188925bb09..9144f8aec7f3bf 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -2128,9 +2128,9 @@ the request body should be sent. See the [`'checkContinue'`][] event on ### `response.writeEarlyHints(hints[, callback])` diff --git a/doc/api/http2.md b/doc/api/http2.md index b6e985733eef01..0964c91e4e0f60 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -3994,7 +3994,7 @@ should be sent. See the [`'checkContinue'`][] event on `Http2Server` and ### `response.writeEarlyHints(links)` * `links` {string|Array} diff --git a/doc/api/util.md b/doc/api/util.md index d0e134f935d2e1..95ff324a5e8a72 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -1025,7 +1025,7 @@ equality.