From 6859857503238b241118af293a2ad05364da8878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Arboleda?= Date: Thu, 2 Mar 2023 22:08:41 -0500 Subject: [PATCH] 2023-03-07, Version 18.15.0 'Hydrogen' (LTS) Notable Changes: buffer: * add isAscii method (Yagiz Nizipli) https://github.com/nodejs/node/pull/46046 fs: * add statfs() functions (Colin Ihrig) https://github.com/nodejs/node/pull/46358 src,lib: * add constrainedMemory API for process (theanarkh) https://github.com/nodejs/node/pull/46218 v8: * support gc profile (theanarkh) https://github.com/nodejs/node/pull/46255 vm: * expose cachedDataRejected for vm.compileFunction (Anna Henningsen) https://github.com/nodejs/node/pull/46320 PR-URL: https://github.com/nodejs/node/pull/46920 --- CHANGELOG.md | 3 +- doc/api/buffer.md | 2 +- doc/api/fs.md | 22 ++++----- doc/api/http.md | 2 +- doc/api/process.md | 2 +- doc/api/v8.md | 8 ++-- doc/api/vm.md | 2 +- doc/changelogs/CHANGELOG_V18.md | 83 +++++++++++++++++++++++++++++++++ src/node_version.h | 6 +-- 9 files changed, 107 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5a237ca0fa58c..9cfe09a722b1c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,7 +33,8 @@ release. -18.14.2
+18.15.0
+18.14.2
18.14.1
18.14.0
18.13.0
diff --git a/doc/api/buffer.md b/doc/api/buffer.md index 87d8cbf42bd9bf..bb608c852cf3d2 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -5129,7 +5129,7 @@ and binary data should be performed using `Buffer.from(str, 'base64')` and ### `buffer.isAscii(input)` * input {Buffer | ArrayBuffer | TypedArray} The input to validate. diff --git a/doc/api/fs.md b/doc/api/fs.md index c6436b3ce10a19..4486e7eb4364ad 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1528,7 +1528,7 @@ changes: ### `fsPromises.statfs(path[, options])` * `path` {string|Buffer|URL} @@ -4098,7 +4098,7 @@ Stats { ### `fs.statfs(path[, options], callback)` * `path` {string|Buffer|URL} @@ -5858,7 +5858,7 @@ Retrieves the {fs.Stats} for the path. ### `fs.statfsSync(path[, options])` * `path` {string|Buffer|URL} @@ -6961,7 +6961,7 @@ of 0.12, `ctime` is not "creation time", and on Unix systems, it never was. ### Class: `fs.StatFs` Provides information about a mounted file system. @@ -6999,7 +6999,7 @@ StatFs { #### `statfs.bavail` * {number|bigint} @@ -7009,7 +7009,7 @@ Free blocks available to unprivileged users. #### `statfs.bfree` * {number|bigint} @@ -7019,7 +7019,7 @@ Free blocks in file system. #### `statfs.blocks` * {number|bigint} @@ -7029,7 +7029,7 @@ Total data blocks in file system. #### `statfs.bsize` * {number|bigint} @@ -7039,7 +7039,7 @@ Optimal transfer block size. #### `statfs.ffree` * {number|bigint} @@ -7049,7 +7049,7 @@ Free file nodes in file system. #### `statfs.files` * {number|bigint} @@ -7059,7 +7059,7 @@ Total file nodes in file system. #### `statfs.type` * {number|bigint} diff --git a/doc/api/http.md b/doc/api/http.md index 4a3675d83bd7c3..40434891318c2b 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -2953,7 +2953,7 @@ headers with the same name. ### `outgoingMessage.setHeaders(headers)` * `headers` {Headers|Map} diff --git a/doc/api/process.md b/doc/api/process.md index 5b6ae09eda95b1..3b1197b810eb92 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1110,7 +1110,7 @@ over the IPC channel using `process.send()`. ## `process.constrainedMemory()` > Stability: 1 - Experimental diff --git a/doc/api/v8.md b/doc/api/v8.md index b08a203ed3596a..b9f5fda7117c88 100644 --- a/doc/api/v8.md +++ b/doc/api/v8.md @@ -1024,7 +1024,7 @@ Returns true if the Node.js instance is run to build a snapshot. ## Class: `v8.GCProfiler` This API collects GC data in current thread. @@ -1032,7 +1032,7 @@ This API collects GC data in current thread. ### `new v8.GCProfiler()` Create a new instance of the `v8.GCProfiler` class. @@ -1040,7 +1040,7 @@ Create a new instance of the `v8.GCProfiler` class. ### `profiler.start()` Start collecting GC data. @@ -1048,7 +1048,7 @@ Start collecting GC data. ### `profiler.stop()` Stop collecting GC data and return an object.The content of object diff --git a/doc/api/vm.md b/doc/api/vm.md index 481aded758150b..ba45063e1c72c0 100644 --- a/doc/api/vm.md +++ b/doc/api/vm.md @@ -963,7 +963,7 @@ const vm = require('node:vm'); added: v10.10.0 changes: - version: - - REPLACEME + - v18.15.0 pr-url: https://github.com/nodejs/node/pull/46320 description: The return value now includes `cachedDataRejected` with the same semantics as the `vm.Script` version diff --git a/doc/changelogs/CHANGELOG_V18.md b/doc/changelogs/CHANGELOG_V18.md index f8e8bb529bf5c1..564fc32b26bdc9 100644 --- a/doc/changelogs/CHANGELOG_V18.md +++ b/doc/changelogs/CHANGELOG_V18.md @@ -9,6 +9,7 @@ +18.15.0
18.14.2
18.14.1
18.14.0
@@ -54,6 +55,88 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2023-03-07, Version 18.15.0 'Hydrogen' (LTS), @juanarbol + +### Notable Changes + +* \[[`78cb167534`](https://github.com/nodejs/node/commit/78cb167534)] - **(SEMVER-MINOR)** **fs**: add statfs() functions (Colin Ihrig) [#46358](https://github.com/nodejs/node/pull/46358) +* \[[`b8da3dc24b`](https://github.com/nodejs/node/commit/b8da3dc24b)] - **(SEMVER-MINOR)** **vm**: expose cachedDataRejected for vm.compileFunction (Anna Henningsen) [#46320](https://github.com/nodejs/node/pull/46320) +* \[[`95d1f5953f`](https://github.com/nodejs/node/commit/95d1f5953f)] - **(SEMVER-MINOR)** **v8**: support gc profile (theanarkh) [#46255](https://github.com/nodejs/node/pull/46255) +* \[[`3075588364`](https://github.com/nodejs/node/commit/3075588364)] - **(SEMVER-MINOR)** **src,lib**: add constrainedMemory API for process (theanarkh) [#46218](https://github.com/nodejs/node/pull/46218) +* \[[`3cf17699ba`](https://github.com/nodejs/node/commit/3cf17699ba)] - **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli) [#46046](https://github.com/nodejs/node/pull/46046) + +### Commits + +* \[[`37148c43c2`](https://github.com/nodejs/node/commit/37148c43c2)] - **benchmark**: add trailing commas (Antoine du Hamel) [#46370](https://github.com/nodejs/node/pull/46370) +* \[[`375f2b8255`](https://github.com/nodejs/node/commit/375f2b8255)] - **benchmark**: remove buffer benchmarks redundancy (Brian White) [#45735](https://github.com/nodejs/node/pull/45735) +* \[[`bd16dc452a`](https://github.com/nodejs/node/commit/bd16dc452a)] - **benchmark**: introduce benchmark combination filtering (Brian White) [#45735](https://github.com/nodejs/node/pull/45735) +* \[[`3cf17699ba`](https://github.com/nodejs/node/commit/3cf17699ba)] - **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli) [#46046](https://github.com/nodejs/node/pull/46046) +* \[[`0a8e0a777d`](https://github.com/nodejs/node/commit/0a8e0a777d)] - **build**: export more OpenSSL symbols on Windows (Mohamed Akram) [#45486](https://github.com/nodejs/node/pull/45486) +* \[[`b4ea389775`](https://github.com/nodejs/node/commit/b4ea389775)] - **build**: fix MSVC 2022 Release compilation (Vladimir Morozov (REDMOND)) [#46228](https://github.com/nodejs/node/pull/46228) +* \[[`3769f68ae2`](https://github.com/nodejs/node/commit/3769f68ae2)] - **crypto**: include `hmac.h` in `crypto_util.h` (Adam Langley) [#46279](https://github.com/nodejs/node/pull/46279) +* \[[`373211e9d8`](https://github.com/nodejs/node/commit/373211e9d8)] - **crypto**: avoid hang when no algorithm available (Richard Lau) [#46237](https://github.com/nodejs/node/pull/46237) +* \[[`9bf352df7c`](https://github.com/nodejs/node/commit/9bf352df7c)] - **deps**: update acorn to 8.8.2 (Node.js GitHub Bot) [#46363](https://github.com/nodejs/node/pull/46363) +* \[[`6521f5589a`](https://github.com/nodejs/node/commit/6521f5589a)] - **deps**: update to uvwasi 0.0.15 (Colin Ihrig) [#46253](https://github.com/nodejs/node/pull/46253) +* \[[`eeba7cc450`](https://github.com/nodejs/node/commit/eeba7cc450)] - **deps**: V8: cherry-pick bf0bd4868dde (Michaël Zasso) [#45908](https://github.com/nodejs/node/pull/45908) +* \[[`795f9d85e2`](https://github.com/nodejs/node/commit/795f9d85e2)] - **deps**: V8: cherry-pick c875e86df1d7 (#2) (sepehrst) [#46501](https://github.com/nodejs/node/pull/46501) +* \[[`9434396e36`](https://github.com/nodejs/node/commit/9434396e36)] - **doc**: correct the `sed` command for macOS in release process docs (Juan José) [#46397](https://github.com/nodejs/node/pull/46397) +* \[[`a0caca0f3d`](https://github.com/nodejs/node/commit/a0caca0f3d)] - **doc**: pass string to `textEncoder.encode` as input (Deokjin Kim) [#46421](https://github.com/nodejs/node/pull/46421) +* \[[`c35a7c2a5e`](https://github.com/nodejs/node/commit/c35a7c2a5e)] - **doc**: add tip for session.post function (theanarkh) [#46354](https://github.com/nodejs/node/pull/46354) +* \[[`d8cb9d3baa`](https://github.com/nodejs/node/commit/d8cb9d3baa)] - **doc**: add documentation for socket.destroySoon() (Luigi Pinca) [#46337](https://github.com/nodejs/node/pull/46337) +* \[[`3b0c244036`](https://github.com/nodejs/node/commit/3b0c244036)] - **doc**: fix commit message using test instead of deps (Tony Gorez) [#46313](https://github.com/nodejs/node/pull/46313) +* \[[`b716226415`](https://github.com/nodejs/node/commit/b716226415)] - **doc**: add v8 fast api contribution guidelines (Yagiz Nizipli) [#46199](https://github.com/nodejs/node/pull/46199) +* \[[`1047ca2452`](https://github.com/nodejs/node/commit/1047ca2452)] - **doc**: fix small typo error (0xflotus) [#46186](https://github.com/nodejs/node/pull/46186) +* \[[`b714903d0f`](https://github.com/nodejs/node/commit/b714903d0f)] - **doc**: mark some parameters as optional in webstreams (Deokjin Kim) [#46269](https://github.com/nodejs/node/pull/46269) +* \[[`20e2ef154d`](https://github.com/nodejs/node/commit/20e2ef154d)] - **doc**: update output of example in `events.getEventListeners` (Deokjin Kim) [#46268](https://github.com/nodejs/node/pull/46268) +* \[[`cf7f3cbd57`](https://github.com/nodejs/node/commit/cf7f3cbd57)] - **esm**: delete preload mock test (Geoffrey Booth) [#46402](https://github.com/nodejs/node/pull/46402) +* \[[`78cb167534`](https://github.com/nodejs/node/commit/78cb167534)] - **(SEMVER-MINOR)** **fs**: add statfs() functions (Colin Ihrig) [#46358](https://github.com/nodejs/node/pull/46358) +* \[[`ba7190039a`](https://github.com/nodejs/node/commit/ba7190039a)] - **http**: res.setHeaders first implementation (Marco Ippolito) [#46109](https://github.com/nodejs/node/pull/46109) +* \[[`87173d3a3e`](https://github.com/nodejs/node/commit/87173d3a3e)] - **inspector**: allow opening inspector when `NODE_V8_COVERAGE` is set (Moshe Atlow) [#46113](https://github.com/nodejs/node/pull/46113) +* \[[`c0407d1dd9`](https://github.com/nodejs/node/commit/c0407d1dd9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#46399](https://github.com/nodejs/node/pull/46399) +* \[[`c20b7f37c0`](https://github.com/nodejs/node/commit/c20b7f37c0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#46303](https://github.com/nodejs/node/pull/46303) +* \[[`3c9bd2797d`](https://github.com/nodejs/node/commit/3c9bd2797d)] - **meta**: add .mailmap entry (Rich Trott) [#46303](https://github.com/nodejs/node/pull/46303) +* \[[`d9ac47b2b6`](https://github.com/nodejs/node/commit/d9ac47b2b6)] - **meta**: move evanlucas to emeritus (Evan Lucas) [#46274](https://github.com/nodejs/node/pull/46274) +* \[[`80ff382aa4`](https://github.com/nodejs/node/commit/80ff382aa4)] - **readline**: fix detection of carriage return (Antoine du Hamel) [#46306](https://github.com/nodejs/node/pull/46306) +* \[[`40cb0a5669`](https://github.com/nodejs/node/commit/40cb0a5669)] - **src**: stop tracing agent before shutting down libuv (Santiago Gimeno) [#46380](https://github.com/nodejs/node/pull/46380) +* \[[`ba2c4a6420`](https://github.com/nodejs/node/commit/ba2c4a6420)] - **src**: get rid of fp arithmetic in ParseIPv4Host (Tobias Nießen) [#46326](https://github.com/nodejs/node/pull/46326) +* \[[`88614c5851`](https://github.com/nodejs/node/commit/88614c5851)] - **src**: use UNREACHABLE instead of CHECK(falsy) (Tobias Nießen) [#46317](https://github.com/nodejs/node/pull/46317) +* \[[`5ebd2969ec`](https://github.com/nodejs/node/commit/5ebd2969ec)] - **src**: add support for ETW stack walking (José Dapena Paz) [#46203](https://github.com/nodejs/node/pull/46203) +* \[[`8d90f5ce87`](https://github.com/nodejs/node/commit/8d90f5ce87)] - **src**: refactor EndsInANumber in node\_url.cc and adds IsIPv4NumberValid (Miguel Teixeira) [#46227](https://github.com/nodejs/node/pull/46227) +* \[[`1efb1f341e`](https://github.com/nodejs/node/commit/1efb1f341e)] - **src**: fix c++ exception on bad command line arg (Ben Noordhuis) [#46290](https://github.com/nodejs/node/pull/46290) +* \[[`595b17faa0`](https://github.com/nodejs/node/commit/595b17faa0)] - **src**: remove unreachable UNREACHABLE (Tobias Nießen) [#46281](https://github.com/nodejs/node/pull/46281) +* \[[`b7bdf1d01c`](https://github.com/nodejs/node/commit/b7bdf1d01c)] - **src**: replace custom ASCII validation with simdutf one (Anna Henningsen) [#46271](https://github.com/nodejs/node/pull/46271) +* \[[`9cd0a1d58c`](https://github.com/nodejs/node/commit/9cd0a1d58c)] - **src**: replace unreachable code with static\_assert (Tobias Nießen) [#46250](https://github.com/nodejs/node/pull/46250) +* \[[`95c391211c`](https://github.com/nodejs/node/commit/95c391211c)] - **src**: use explicit C++17 fallthrough (Tobias Nießen) [#46251](https://github.com/nodejs/node/pull/46251) +* \[[`7f0b553ca0`](https://github.com/nodejs/node/commit/7f0b553ca0)] - **src**: use CreateEnvironment instead of inlining its code where possible (Anna Henningsen) [#45886](https://github.com/nodejs/node/pull/45886) +* \[[`3075588364`](https://github.com/nodejs/node/commit/3075588364)] - **(SEMVER-MINOR)** **src,lib**: add constrainedMemory API for process (theanarkh) [#46218](https://github.com/nodejs/node/pull/46218) +* \[[`5290766ec0`](https://github.com/nodejs/node/commit/5290766ec0)] - **stream**: remove brandchecks from stream duplexify (Debadree Chatterjee) [#46315](https://github.com/nodejs/node/pull/46315) +* \[[`1b922ef543`](https://github.com/nodejs/node/commit/1b922ef543)] - **stream**: fix readable stream as async iterator function (Erick Wendel) [#46147](https://github.com/nodejs/node/pull/46147) +* \[[`208799447a`](https://github.com/nodejs/node/commit/208799447a)] - **test**: add trailing commas in `test/node-api` (Antoine du Hamel) [#46384](https://github.com/nodejs/node/pull/46384) +* \[[`cdc2c39ba9`](https://github.com/nodejs/node/commit/cdc2c39ba9)] - **test**: add trailing commas in `test/message` (Antoine du Hamel) [#46372](https://github.com/nodejs/node/pull/46372) +* \[[`0710e5e9bd`](https://github.com/nodejs/node/commit/0710e5e9bd)] - **test**: add trailing commas in `test/pseudo-tty` (Antoine du Hamel) [#46371](https://github.com/nodejs/node/pull/46371) +* \[[`3170b32ecb`](https://github.com/nodejs/node/commit/3170b32ecb)] - **test**: set common.bits to 64 for loong64 (Shi Pujin) [#45383](https://github.com/nodejs/node/pull/45383) +* \[[`2ff230a8b8`](https://github.com/nodejs/node/commit/2ff230a8b8)] - **test**: s390x zlib test case fixes (Adam Majer) [#46367](https://github.com/nodejs/node/pull/46367) +* \[[`31fdd93aa0`](https://github.com/nodejs/node/commit/31fdd93aa0)] - **test**: fix logInTimeout is not function (theanarkh) [#46348](https://github.com/nodejs/node/pull/46348) +* \[[`07932d2447`](https://github.com/nodejs/node/commit/07932d2447)] - **test**: avoid trying to call sysctl directly (Adam Majer) [#46366](https://github.com/nodejs/node/pull/46366) +* \[[`c5fedac052`](https://github.com/nodejs/node/commit/c5fedac052)] - **test**: avoid left behind child processes (Richard Lau) [#46276](https://github.com/nodejs/node/pull/46276) +* \[[`c8ca4e052f`](https://github.com/nodejs/node/commit/c8ca4e052f)] - **test**: add failing test for readline with carriage return (Alec Mev) [#46075](https://github.com/nodejs/node/pull/46075) +* \[[`3a59a73f7a`](https://github.com/nodejs/node/commit/3a59a73f7a)] - **test**: reduce `fs-write-optional-params` flakiness (LiviaMedeiros) [#46238](https://github.com/nodejs/node/pull/46238) +* \[[`c899cd63e1`](https://github.com/nodejs/node/commit/c899cd63e1)] - **test,crypto**: add CFRG curve vectors to wrap/unwrap tests (Filip Skokan) [#46406](https://github.com/nodejs/node/pull/46406) +* \[[`393fe1097e`](https://github.com/nodejs/node/commit/393fe1097e)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#46267](https://github.com/nodejs/node/pull/46267) +* \[[`ab492ea404`](https://github.com/nodejs/node/commit/ab492ea404)] - **test\_runner**: update comment to comply with eslint no-fallthrough rule (Antoine du Hamel) [#46258](https://github.com/nodejs/node/pull/46258) +* \[[`3045292949`](https://github.com/nodejs/node/commit/3045292949)] - **tools**: update eslint to 8.33.0 (Node.js GitHub Bot) [#46400](https://github.com/nodejs/node/pull/46400) +* \[[`9c53e0469a`](https://github.com/nodejs/node/commit/9c53e0469a)] - **tools**: update doc to unist-util-select\@4.0.3 unist-util-visit\@4.1.2 (Node.js GitHub Bot) [#46364](https://github.com/nodejs/node/pull/46364) +* \[[`b319b3ceb5`](https://github.com/nodejs/node/commit/b319b3ceb5)] - **tools**: update lint-md-dependencies to rollup\@3.12.0 (Node.js GitHub Bot) [#46398](https://github.com/nodejs/node/pull/46398) +* \[[`e4756a8e64`](https://github.com/nodejs/node/commit/e4756a8e64)] - **tools**: require more trailing commas (Antoine du Hamel) [#46346](https://github.com/nodejs/node/pull/46346) +* \[[`2e8ffa5f37`](https://github.com/nodejs/node/commit/2e8ffa5f37)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#46302](https://github.com/nodejs/node/pull/46302) +* \[[`56709e87aa`](https://github.com/nodejs/node/commit/56709e87aa)] - **tools**: allow icutrim.py to run on python2 (Michael Dawson) [#46263](https://github.com/nodejs/node/pull/46263) +* \[[`6d424006c4`](https://github.com/nodejs/node/commit/6d424006c4)] - **tools**: update eslint to 8.32.0 (Node.js GitHub Bot) [#46258](https://github.com/nodejs/node/pull/46258) +* \[[`c4a39fae70`](https://github.com/nodejs/node/commit/c4a39fae70)] - **url**: refactor to use more primordials (Antoine du Hamel) [#45966](https://github.com/nodejs/node/pull/45966) +* \[[`95d1f5953f`](https://github.com/nodejs/node/commit/95d1f5953f)] - **(SEMVER-MINOR)** **v8**: support gc profile (theanarkh) [#46255](https://github.com/nodejs/node/pull/46255) +* \[[`b8da3dc24b`](https://github.com/nodejs/node/commit/b8da3dc24b)] - **(SEMVER-MINOR)** **vm**: expose cachedDataRejected for vm.compileFunction (Anna Henningsen) [#46320](https://github.com/nodejs/node/pull/46320) + ## 2023-02-21, Version 18.14.2 'Hydrogen' (LTS), @MylesBorins diff --git a/src/node_version.h b/src/node_version.h index 77cb921a673ad7..ee035efadf1234 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 18 -#define NODE_MINOR_VERSION 14 -#define NODE_PATCH_VERSION 3 +#define NODE_MINOR_VERSION 15 +#define NODE_PATCH_VERSION 0 #define NODE_VERSION_IS_LTS 1 #define NODE_VERSION_LTS_CODENAME "Hydrogen" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)