hedgedoc / container

HedgeDoc container image resources
https://docs.hedgedoc.org/setup/docker/
196 stars 52 forks source link

Update Node.js to v19 #368

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
node final major 16.17.1-bullseye-slim -> 19.0.0-bullseye-slim

Release Notes

nodejs/node ### [`v19.0.0`](https://togithub.com/nodejs/node/releases/tag/v19.0.0) [Compare Source](https://togithub.com/nodejs/node/compare/v18.11.0...v19.0.0) Node.js 19 is here! Highlights include the update of the V8 JavaScript engine to 10.7, HTTP(s)/1.1 KeepAlive enabled by default, and ESM Resolution adjustments. Node.js 19 will replace Node.js 18 as our ‘Current’ release line when Node.js 18 enters long-term support (LTS) later this month. As per the release schedule, Node.js 19 will be ‘Current' release for the next 6 months, until April 2023. ##### Notable Changes ##### Deprecations and Removals - \[[`7dd2f41c73`](https://togithub.com/nodejs/node/commit/7dd2f41c73)] - **(SEMVER-MAJOR)** **module**: runtime deprecate exports double slash maps (Guy Bedford) [#​44495](https://togithub.com/nodejs/node/pull/44495) - \[[`ada2d053ae`](https://togithub.com/nodejs/node/commit/ada2d053ae)] - **(SEMVER-MAJOR)** **process**: runtime deprecate coercion to integer in `process.exit()` (Daeyeon Jeong) [#​44711](https://togithub.com/nodejs/node/pull/44711) ##### HTTP(S)/1.1 KeepAlive by default Starting with this release, Node.js sets `keepAlive` to true by default. This means that any outgoing HTTP(s) connection will automatically use HTTP 1.1 Keep-Alive. The default waiting window is 5 seconds. Enable keep-alive will deliver better throughput as connections are reused by default. Additionally, the agent is now able to parse the response `Keep-Alive` which the servers might send. This header instructs the client on how much to stay connected. On the other side, the Node.js HTTP server will now automatically disconnect idle clients (which are using HTTP Keep-Alive to reuse the connection) when `close()` is invoked). Node.js HTTP(S)/1.1 requests may experience a better throughput/performance by default. Contributed by Paolo Insogna in [#​43522](https://togithub.com/nodejs/node/pull/43522) ##### DTrace/SystemTap/ETW Support were removed The main reason is the lack of resources from the Node.js team. The complexity to keep the support up-to-date has proved not worth it without a clear plan to support those tools. Hence, [an issue was raised](https://togithub.com/nodejs/node/issues/44550) in the Node.js repository to assess better support, for `DTrace` in specific. Contributed by Ben Noordhuis in [#​43651](https://togithub.com/nodejs/node/pull/43651) and [#​43652](https://togithub.com/nodejs/node/pull/43652) ##### V8 10.7 The V8 engine is updated to version 10.7, which is part of Chromium 107. This version include a new feature to the JavaScript API: `Intl.NumberFormat`. `Intl.NumberFormat` v3 API is a new [TC39 ECMA402 stage 3 proposal](https://togithub.com/tc39/proposal-intl-numberformat-v3) extend the pre-existing `Intl.NumberFormat`. The V8 update was a contribution by Michaël Zasso in [#​44741](https://togithub.com/nodejs/node/pull/44741). ##### llhttp 8.1.0 llhttp has been updated to version 8.1.0. Collectively, this version brings many updates to the llhttp API, introducing new callbacks and allow all callback to be pausable. Contributed by Paolo Insogna in [#​44967](https://togithub.com/nodejs/node/pull/44967) ##### Other Notable Changes - \[[`46a3afb579`](https://togithub.com/nodejs/node/commit/46a3afb579)] - **doc**: graduate webcrypto to stable (Filip Skokan) [#​44897](https://togithub.com/nodejs/node/pull/44897) - \[[`f594cc85b7`](https://togithub.com/nodejs/node/commit/f594cc85b7)] - **esm**: remove specifier resolution flag (Geoffrey Booth) [#​44859](https://togithub.com/nodejs/node/pull/44859) ##### Semver-Major Commits - \[[`53f73d1cfe`](https://togithub.com/nodejs/node/commit/53f73d1cfe)] - **(SEMVER-MAJOR)** **build**: enable V8's trap handler on Windows (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`06aaf8a1c4`](https://togithub.com/nodejs/node/commit/06aaf8a1c4)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`aa3a572e6b`](https://togithub.com/nodejs/node/commit/aa3a572e6b)] - **(SEMVER-MAJOR)** **build**: remove dtrace & etw support (Ben Noordhuis) [#​43652](https://togithub.com/nodejs/node/pull/43652) - \[[`38f1e2793c`](https://togithub.com/nodejs/node/commit/38f1e2793c)] - **(SEMVER-MAJOR)** **build**: remove systemtap support (Ben Noordhuis) [#​43651](https://togithub.com/nodejs/node/pull/43651) - \[[`2849283c4c`](https://togithub.com/nodejs/node/commit/2849283c4c)] - **(SEMVER-MAJOR)** **crypto**: remove non-standard `webcrypto.Crypto.prototype.CryptoKey` (Antoine du Hamel) [#​42083](https://togithub.com/nodejs/node/pull/42083) - \[[`a1653ac715`](https://togithub.com/nodejs/node/commit/a1653ac715)] - **(SEMVER-MAJOR)** **crypto**: do not allow to call setFips from the worker thread (Sergey Petushkov) [#​43624](https://togithub.com/nodejs/node/pull/43624) - \[[`fd36a8dadb`](https://togithub.com/nodejs/node/commit/fd36a8dadb)] - **(SEMVER-MAJOR)** **deps**: update llhttp to 8.1.0 (Paolo Insogna) [#​44967](https://togithub.com/nodejs/node/pull/44967) - \[[`89ecdddaab`](https://togithub.com/nodejs/node/commit/89ecdddaab)] - **(SEMVER-MAJOR)** **deps**: bump minimum ICU version to 71 (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`66fe446efd`](https://togithub.com/nodejs/node/commit/66fe446efd)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`0cccb6f`](https://togithub.com/nodejs/node/commit/0cccb6f27d78) (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`88ed027d57`](https://togithub.com/nodejs/node/commit/88ed027d57)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`7ddb839`](https://togithub.com/nodejs/node/commit/7ddb8399f9f1) (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`26c651c34e`](https://togithub.com/nodejs/node/commit/26c651c34e)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`1b3a4f0`](https://togithub.com/nodejs/node/commit/1b3a4f0c34a1) (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`c8ff2dfd11`](https://togithub.com/nodejs/node/commit/c8ff2dfd11)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`b161a08`](https://togithub.com/nodejs/node/commit/b161a0823165) (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`7a8fa2d517`](https://togithub.com/nodejs/node/commit/7a8fa2d517)] - **(SEMVER-MAJOR)** **deps**: fix V8 build on Windows with MSVC (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`83b0aaa800`](https://togithub.com/nodejs/node/commit/83b0aaa800)] - **(SEMVER-MAJOR)** **deps**: fix V8 build on SmartOS (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`7a952e8ea5`](https://togithub.com/nodejs/node/commit/7a952e8ea5)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`6bd756d7c6`](https://togithub.com/nodejs/node/commit/6bd756d7c6)] - **(SEMVER-MAJOR)** **deps**: update V8 to 10.7.193.13 (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`03fb789fb9`](https://togithub.com/nodejs/node/commit/03fb789fb9)] - **(SEMVER-MAJOR)** **events**: add null check for the signal of EventTarget (Masashi Hirano) [#​43153](https://togithub.com/nodejs/node/pull/43153) - \[[`a4fa526ddc`](https://togithub.com/nodejs/node/commit/a4fa526ddc)] - **(SEMVER-MAJOR)** **fs**: add directory autodetection to fsPromises.symlink() (Livia Medeiros) [#​42894](https://togithub.com/nodejs/node/pull/42894) - \[[`bb4891d8d4`](https://togithub.com/nodejs/node/commit/bb4891d8d4)] - **(SEMVER-MAJOR)** **fs**: add validateBuffer to improve error (Hirotaka Tagawa / wafuwafu13) [#​44769](https://togithub.com/nodejs/node/pull/44769) - \[[`950a4411fa`](https://togithub.com/nodejs/node/commit/950a4411fa)] - **(SEMVER-MAJOR)** **fs**: remove coercion to string in writing methods (Livia Medeiros) [#​42796](https://togithub.com/nodejs/node/pull/42796) - \[[`41a6d82968`](https://togithub.com/nodejs/node/commit/41a6d82968)] - **(SEMVER-MAJOR)** **fs**: harden fs.readSync(buffer, options) typecheck (LiviaMedeiros) [#​42772](https://togithub.com/nodejs/node/pull/42772) - \[[`2275faac2b`](https://togithub.com/nodejs/node/commit/2275faac2b)] - **(SEMVER-MAJOR)** **fs**: harden fs.read(params, callback) typecheck (LiviaMedeiros) [#​42772](https://togithub.com/nodejs/node/pull/42772) - \[[`29953a0b88`](https://togithub.com/nodejs/node/commit/29953a0b88)] - **(SEMVER-MAJOR)** **fs**: harden filehandle.read(params) typecheck (LiviaMedeiros) [#​42772](https://togithub.com/nodejs/node/pull/42772) - \[[`4267b92604`](https://togithub.com/nodejs/node/commit/4267b92604)] - **(SEMVER-MAJOR)** **http**: use Keep-Alive by default in global agents (Paolo Insogna) [#​43522](https://togithub.com/nodejs/node/pull/43522) - \[[`0324529e0f`](https://togithub.com/nodejs/node/commit/0324529e0f)] - **(SEMVER-MAJOR)** **inspector**: introduce inspector/promises API (Erick Wendel) [#​44250](https://togithub.com/nodejs/node/pull/44250) - \[[`80270994d6`](https://togithub.com/nodejs/node/commit/80270994d6)] - **(SEMVER-MAJOR)** **lib**: enable global CustomEvent by default (Daeyeon Jeong) [#​44860](https://togithub.com/nodejs/node/pull/44860) - \[[`f529f73bd7`](https://togithub.com/nodejs/node/commit/f529f73bd7)] - **(SEMVER-MAJOR)** **lib**: brand check event handler property receivers (Chengzhong Wu) [#​44483](https://togithub.com/nodejs/node/pull/44483) - \[[`6de2673a9f`](https://togithub.com/nodejs/node/commit/6de2673a9f)] - **(SEMVER-MAJOR)** **lib**: enable global WebCrypto by default (Antoine du Hamel) [#​42083](https://togithub.com/nodejs/node/pull/42083) - \[[`73ba8830d5`](https://togithub.com/nodejs/node/commit/73ba8830d5)] - **(SEMVER-MAJOR)** **lib**: use private field in AbortController (Joyee Cheung) [#​43820](https://togithub.com/nodejs/node/pull/43820) - \[[`7dd2f41c73`](https://togithub.com/nodejs/node/commit/7dd2f41c73)] - **(SEMVER-MAJOR)** **module**: runtime deprecate exports double slash maps (Guy Bedford) [#​44495](https://togithub.com/nodejs/node/pull/44495) - \[[`22c39b1ddd`](https://togithub.com/nodejs/node/commit/22c39b1ddd)] - **(SEMVER-MAJOR)** **path**: the dot will be added(path.format) if it is not specified in `ext` (theanarkh) [#​44349](https://togithub.com/nodejs/node/pull/44349) - \[[`587367d107`](https://togithub.com/nodejs/node/commit/587367d107)] - **(SEMVER-MAJOR)** **perf_hooks**: expose webperf global scope interfaces (Chengzhong Wu) [#​44483](https://togithub.com/nodejs/node/pull/44483) - \[[`364c0e196c`](https://togithub.com/nodejs/node/commit/364c0e196c)] - **(SEMVER-MAJOR)** **perf_hooks**: fix webperf idlharness (Chengzhong Wu) [#​44483](https://togithub.com/nodejs/node/pull/44483) - \[[`ada2d053ae`](https://togithub.com/nodejs/node/commit/ada2d053ae)] - **(SEMVER-MAJOR)** **process**: runtime deprecate coercion to integer in `process.exit()` (Daeyeon Jeong) [#​44711](https://togithub.com/nodejs/node/pull/44711) - \[[`e0ab8dd637`](https://togithub.com/nodejs/node/commit/e0ab8dd637)] - **(SEMVER-MAJOR)** **process**: make process.config read only (Sergey Petushkov) [#​43627](https://togithub.com/nodejs/node/pull/43627) - \[[`481a959adb`](https://togithub.com/nodejs/node/commit/481a959adb)] - **(SEMVER-MAJOR)** **readline**: remove `question` method from `InterfaceConstructor` (Antoine du Hamel) [#​44606](https://togithub.com/nodejs/node/pull/44606) - \[[`c9602ce212`](https://togithub.com/nodejs/node/commit/c9602ce212)] - **(SEMVER-MAJOR)** **src**: use new v8::OOMErrorCallback API (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`19a70c11e4`](https://togithub.com/nodejs/node/commit/19a70c11e4)] - **(SEMVER-MAJOR)** **src**: override CreateJob instead of PostJob (Clemens Backes) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`fd52c62bee`](https://togithub.com/nodejs/node/commit/fd52c62bee)] - **(SEMVER-MAJOR)** **src**: use V8\_ENABLE_SANDBOX macro (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`c10988db44`](https://togithub.com/nodejs/node/commit/c10988db44)] - **(SEMVER-MAJOR)** **src**: use non-deprecated V8 inspector API (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`3efe901dd6`](https://togithub.com/nodejs/node/commit/3efe901dd6)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 111 (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`77e585657f`](https://togithub.com/nodejs/node/commit/77e585657f)] - **(SEMVER-MAJOR)** **src**: turn embedder api overload into default argument (Alena Khineika) [#​43629](https://togithub.com/nodejs/node/pull/43629) - \[[`dabda03ea9`](https://togithub.com/nodejs/node/commit/dabda03ea9)] - **(SEMVER-MAJOR)** **src**: per-environment time origin value (Chengzhong Wu) [#​43781](https://togithub.com/nodejs/node/pull/43781) - \[[`2e49b99cc2`](https://togithub.com/nodejs/node/commit/2e49b99cc2)] - **(SEMVER-MAJOR)** **src,test**: disable freezing V8 flags on initialization (Clemens Backes) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`2b32985c62`](https://togithub.com/nodejs/node/commit/2b32985c62)] - **(SEMVER-MAJOR)** **stream**: use null for the error argument (Luigi Pinca) [#​44312](https://togithub.com/nodejs/node/pull/44312) - \[[`36805e8524`](https://togithub.com/nodejs/node/commit/36805e8524)] - **(SEMVER-MAJOR)** **test**: adapt test-repl for V8 update (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`96ef25793d`](https://togithub.com/nodejs/node/commit/96ef25793d)] - **(SEMVER-MAJOR)** **test**: adapt test-repl-pretty-\*stack to V8 changes (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`71c193e581`](https://togithub.com/nodejs/node/commit/71c193e581)] - **(SEMVER-MAJOR)** **test**: adapt to new JSON SyntaxError messages (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`b5f1564880`](https://togithub.com/nodejs/node/commit/b5f1564880)] - **(SEMVER-MAJOR)** **test**: rename always-opt flag to always-turbofan (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`1acf0339dd`](https://togithub.com/nodejs/node/commit/1acf0339dd)] - **(SEMVER-MAJOR)** **test**: fix test-hash-seed for new V8 versions (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) - \[[`57ff476c33`](https://togithub.com/nodejs/node/commit/57ff476c33)] - **(SEMVER-MAJOR)** **test**: remove duplicate test (Luigi Pinca) [#​44051](https://togithub.com/nodejs/node/pull/44051) - \[[`77def91bf9`](https://togithub.com/nodejs/node/commit/77def91bf9)] - **(SEMVER-MAJOR)** **tls,http2**: send fatal alert on ALPN mismatch (Tobias Nießen) [#​44031](https://togithub.com/nodejs/node/pull/44031) - \[[`4860ad99b9`](https://togithub.com/nodejs/node/commit/4860ad99b9)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 10.7 (Michaël Zasso) [#​44741](https://togithub.com/nodejs/node/pull/44741) ##### Semver-Minor Commits - \[[`af0921d877`](https://togithub.com/nodejs/node/commit/af0921d877)] - **(SEMVER-MINOR)** **esm**: add `--import` flag (Moshe Atlow) [#​43942](https://togithub.com/nodejs/node/pull/43942) - \[[`0633e9a0b5`](https://togithub.com/nodejs/node/commit/0633e9a0b5)] - **(SEMVER-MINOR)** **lib**: add diagnostics channel for process and worker (theanarkh) [#​44045](https://togithub.com/nodejs/node/pull/44045) - \[[`ca5be26b31`](https://togithub.com/nodejs/node/commit/ca5be26b31)] - **(SEMVER-MINOR)** **src**: add support for externally shared js builtins (Michael Dawson) [#​44376](https://togithub.com/nodejs/node/pull/44376) - \[[`e86a638305`](https://togithub.com/nodejs/node/commit/e86a638305)] - **(SEMVER-MINOR)** **src**: add initial shadow realm support (Chengzhong Wu) [#​42869](https://togithub.com/nodejs/node/pull/42869) - \[[`71ca6d7d6a`](https://togithub.com/nodejs/node/commit/71ca6d7d6a)] - **(SEMVER-MINOR)** **util**: add `maxArrayLength` option to Set and Map (Kohei Ueno) [#​43576](https://togithub.com/nodejs/node/pull/43576) ##### Semver-Patch Commits - \[[`78508028e3`](https://togithub.com/nodejs/node/commit/78508028e3)] - **bootstrap**: generate bootstrapper arguments in BuiltinLoader (Joyee Cheung) [#​44488](https://togithub.com/nodejs/node/pull/44488) - \[[`5291096ca2`](https://togithub.com/nodejs/node/commit/5291096ca2)] - **bootstrap**: check more metadata when loading the snapshot (Joyee Cheung) [#​44132](https://togithub.com/nodejs/node/pull/44132) - \[[`d0f73d383d`](https://togithub.com/nodejs/node/commit/d0f73d383d)] - **build**: go faster, drop -fno-omit-frame-pointer (Ben Noordhuis) [#​44452](https://togithub.com/nodejs/node/pull/44452) - \[[`214354fc9f`](https://togithub.com/nodejs/node/commit/214354fc9f)] - **crypto**: fix webcrypto HMAC "get key length" in deriveKey and generateKey (Filip Skokan) [#​44917](https://togithub.com/nodejs/node/pull/44917) - \[[`40a0757b21`](https://togithub.com/nodejs/node/commit/40a0757b21)] - **crypto**: remove webcrypto HKDF and PBKDF2 default-applied lengths (Filip Skokan) [#​44945](https://togithub.com/nodejs/node/pull/44945) - \[[`eeec3eb16a`](https://togithub.com/nodejs/node/commit/eeec3eb16a)] - **crypto**: simplify webcrypto ECDH deriveBits (Filip Skokan) [#​44946](https://togithub.com/nodejs/node/pull/44946) - \[[`0be1c57281`](https://togithub.com/nodejs/node/commit/0be1c57281)] - **deps**: V8: cherry-pick [`c2792e5`](https://togithub.com/nodejs/node/commit/c2792e58035f) (Jiawen Geng) [#​44961](https://togithub.com/nodejs/node/pull/44961) - \[[`488474618c`](https://togithub.com/nodejs/node/commit/488474618c)] - **deps**: V8: cherry-pick [`c3dffe6`](https://togithub.com/nodejs/node/commit/c3dffe6e2bda) (Michaël Zasso) [#​44958](https://togithub.com/nodejs/node/pull/44958) - \[[`34ba631a0b`](https://togithub.com/nodejs/node/commit/34ba631a0b)] - **deps**: V8: cherry-pick [`e7f0f26`](https://togithub.com/nodejs/node/commit/e7f0f26f5ef3) (Michaël Zasso) [#​44958](https://togithub.com/nodejs/node/pull/44958) - \[[`690a837f4f`](https://togithub.com/nodejs/node/commit/690a837f4f)] - **deps**: V8: cherry-pick [`3d59a3c`](https://togithub.com/nodejs/node/commit/3d59a3c2c164) (Michaël Zasso) [#​44958](https://togithub.com/nodejs/node/pull/44958) - \[[`bab8b3aad6`](https://togithub.com/nodejs/node/commit/bab8b3aad6)] - **deps**: V8: cherry-pick [`8b87039`](https://togithub.com/nodejs/node/commit/8b8703953616) (Michaël Zasso) [#​44958](https://togithub.com/nodejs/node/pull/44958) - \[[`37e5152245`](https://togithub.com/nodejs/node/commit/37e5152245)] - **doc**: add notable changes to latest v18.x release changelog (Danielle Adams) [#​44996](https://togithub.com/nodejs/node/pull/44996) - \[[`19a909902a`](https://togithub.com/nodejs/node/commit/19a909902a)] - **doc**: deprecate url.parse() (Rich Trott) [#​44919](https://togithub.com/nodejs/node/pull/44919) - \[[`6686d9000b`](https://togithub.com/nodejs/node/commit/6686d9000b)] - **doc**: fix backticks in fs API docs (Livia Medeiros) [#​44962](https://togithub.com/nodejs/node/pull/44962) - \[[`46a3afb579`](https://togithub.com/nodejs/node/commit/46a3afb579)] - **doc**: graduate webcrypto to stable (Filip Skokan) [#​44897](https://togithub.com/nodejs/node/pull/44897) - \[[`6e3c55cc35`](https://togithub.com/nodejs/node/commit/6e3c55cc35)] - **doc**: fix v16.17.1 security release changelog (Ruy Adorno) [#​44759](https://togithub.com/nodejs/node/pull/44759) - \[[`77cb88b91c`](https://togithub.com/nodejs/node/commit/77cb88b91c)] - **doc**: mark `--import` as experimental (Moshe Atlow) [#​44067](https://togithub.com/nodejs/node/pull/44067) - \[[`46dcfb3c7b`](https://togithub.com/nodejs/node/commit/46dcfb3c7b)] - **doc,crypto**: update webcrypto docs for global access (Filip Skokan) [#​44723](https://togithub.com/nodejs/node/pull/44723) - \[[`f594cc85b7`](https://togithub.com/nodejs/node/commit/f594cc85b7)] - **esm**: remove specifier resolution flag (Geoffrey Booth) [#​44859](https://togithub.com/nodejs/node/pull/44859) - \[[`3c040348fe`](https://togithub.com/nodejs/node/commit/3c040348fe)] - ***Revert*** "**esm**: convert `resolve` hook to synchronous" (Jacob Smith) [#​43526](https://togithub.com/nodejs/node/pull/43526) - \[[`90b634a5a5`](https://togithub.com/nodejs/node/commit/90b634a5a5)] - **esm**: convert `resolve` hook to synchronous (Jacob Smith) [#​43363](https://togithub.com/nodejs/node/pull/43363) - \[[`7c06eab1dc`](https://togithub.com/nodejs/node/commit/7c06eab1dc)] - ***Revert*** "**http**: do not leak error listeners" (Luigi Pinca) [#​44921](https://togithub.com/nodejs/node/pull/44921) - \[[`464d1c1558`](https://togithub.com/nodejs/node/commit/464d1c1558)] - **lib**: reset `RegExp` statics before running user code (Antoine du Hamel) [#​43741](https://togithub.com/nodejs/node/pull/43741) - \[[`15f10515e3`](https://togithub.com/nodejs/node/commit/15f10515e3)] - **module**: fix segment deprecation for imports field (Guy Bedford) [#​44883](https://togithub.com/nodejs/node/pull/44883) - \[[`7cdf745fdd`](https://togithub.com/nodejs/node/commit/7cdf745fdd)] - **perf_hooks**: convert maxSize to IDL value in setResourceTimingBufferSize (Chengzhong Wu) [#​44902](https://togithub.com/nodejs/node/pull/44902) - \[[`be525d7d04`](https://togithub.com/nodejs/node/commit/be525d7d04)] - **src**: consolidate exit codes in the code base (Joyee Cheung) [#​44746](https://togithub.com/nodejs/node/pull/44746) - \[[`d5ce285c8b`](https://togithub.com/nodejs/node/commit/d5ce285c8b)] - **src**: refactor BaseObject methods (Joyee Cheung) [#​44796](https://togithub.com/nodejs/node/pull/44796) - \[[`717465433c`](https://togithub.com/nodejs/node/commit/717465433c)] - **src**: create BaseObject with node::Realm (Chengzhong Wu) [#​44348](https://togithub.com/nodejs/node/pull/44348) - \[[`45f2258f74`](https://togithub.com/nodejs/node/commit/45f2258f74)] - **src**: restore IS_RELEASE to 0 (Bryan English) [#​44758](https://togithub.com/nodejs/node/pull/44758) - \[[`1f54fc25cb`](https://togithub.com/nodejs/node/commit/1f54fc25cb)] - **src**: use automatic memory mgmt in SecretKeyGen (Tobias Nießen) [#​44479](https://togithub.com/nodejs/node/pull/44479) - \[[`7371d335ac`](https://togithub.com/nodejs/node/commit/7371d335ac)] - **src**: use V8 entropy source if RAND_bytes() != 1 (Tobias Nießen) [#​44493](https://togithub.com/nodejs/node/pull/44493) - \[[`81d9cdb8cd`](https://togithub.com/nodejs/node/commit/81d9cdb8cd)] - **src**: introduce node::Realm (Chengzhong Wu) [#​44179](https://togithub.com/nodejs/node/pull/44179) - \[[`ad41c919df`](https://togithub.com/nodejs/node/commit/ad41c919df)] - **src**: remove v8abbr.h (Tobias Nießen) [#​44402](https://togithub.com/nodejs/node/pull/44402) - \[[`fddc701d3c`](https://togithub.com/nodejs/node/commit/fddc701d3c)] - **src**: support diagnostics channel in the snapshot (Joyee Cheung) [#​44193](https://togithub.com/nodejs/node/pull/44193) - \[[`d70aab663c`](https://togithub.com/nodejs/node/commit/d70aab663c)] - **src**: support WeakReference in snapshot (Joyee Cheung) [#​44193](https://togithub.com/nodejs/node/pull/44193) - \[[`4ca398a617`](https://togithub.com/nodejs/node/commit/4ca398a617)] - **src**: iterate over base objects to prepare for snapshot (Joyee Cheung) [#​44192](https://togithub.com/nodejs/node/pull/44192) - \[[`8b0e5b19bd`](https://togithub.com/nodejs/node/commit/8b0e5b19bd)] - **src**: fix cppgc incompatibility in v8 (Shelley Vohr) [#​43521](https://togithub.com/nodejs/node/pull/43521) - \[[`3fdf6cfad9`](https://togithub.com/nodejs/node/commit/3fdf6cfad9)] - **stream**: fix `size` function returned from QueuingStrategies (Daeyeon Jeong) [#​44867](https://togithub.com/nodejs/node/pull/44867) - \[[`331088f4a4`](https://togithub.com/nodejs/node/commit/331088f4a4)] - ***Revert*** "**tools**: refactor `tools/license2rtf` to ESM" (Richard Lau) [#​43214](https://togithub.com/nodejs/node/pull/43214) - \[[`30cb1bf8b8`](https://togithub.com/nodejs/node/commit/30cb1bf8b8)] - **tools**: refactor `tools/license2rtf` to ESM (Feng Yu) [#​43101](https://togithub.com/nodejs/node/pull/43101) - \[[`a3ff4bfc66`](https://togithub.com/nodejs/node/commit/a3ff4bfc66)] - **url**: revert "validate ipv4 part length" (Antoine du Hamel) [#​42940](https://togithub.com/nodejs/node/pull/42940) - \[[`87d0d7a069`](https://togithub.com/nodejs/node/commit/87d0d7a069)] - **url**: validate ipv4 part length (Yagiz Nizipli) [#​42915](https://togithub.com/nodejs/node/pull/42915) - \[[`5b1bcf82f1`](https://togithub.com/nodejs/node/commit/5b1bcf82f1)] - **vm**: make ContextifyContext a BaseObject (Joyee Cheung) [#​44796](https://togithub.com/nodejs/node/pull/44796) ### [`v18.11.0`](https://togithub.com/nodejs/node/releases/tag/v18.11.0) [Compare Source](https://togithub.com/nodejs/node/compare/v18.10.0...v18.11.0) ##### Notable changes ##### 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](https://togithub.com/nodejs/node/pull/44366) ##### Other notable changes - **fs**: - (SEMVER-MINOR) add `FileHandle.prototype.readLines` (Antoine du Hamel) [#​42590](https://togithub.com/nodejs/node/pull/42590) - **http**: - (SEMVER-MINOR) add writeEarlyHints function to ServerResponse (Wing) [#​44180](https://togithub.com/nodejs/node/pull/44180) - **http2**: - (SEMVER-MINOR) make early hints generic (Yagiz Nizipli) [#​44820](https://togithub.com/nodejs/node/pull/44820) - **lib**: - (SEMVER-MINOR) refactor transferable AbortSignal (flakey5) [#​44048](https://togithub.com/nodejs/node/pull/44048) - **src**: - (SEMVER-MINOR) add detailed embedder process initialization API (Anna Henningsen) [#​44121](https://togithub.com/nodejs/node/pull/44121) - **util**: - (SEMVER-MINOR) add default value option to parsearg (Manuel Spigolon) [#​44631](https://togithub.com/nodejs/node/pull/44631) ##### Commits - \[[`27b4b782ce`](https://togithub.com/nodejs/node/commit/27b4b782ce)] - **benchmark**: add vm context global proxy benchmark (Joyee Cheung) [#​44796](https://togithub.com/nodejs/node/pull/44796) - \[[`4e82521af1`](https://togithub.com/nodejs/node/commit/4e82521af1)] - **bootstrap**: update comments in bootstrap/node.js (Joyee Cheung) [#​44726](https://togithub.com/nodejs/node/pull/44726) - \[[`725be0ea50`](https://togithub.com/nodejs/node/commit/725be0ea50)] - **buffer**: initialize TextDecoder once on blob.text() (Yagiz Nizipli) [#​44787](https://togithub.com/nodejs/node/pull/44787) - \[[`653c3b1f62`](https://togithub.com/nodejs/node/commit/653c3b1f62)] - **buffer,lib**: update atob to align wpt's base64.json (Khaidi Chu) [#​43901](https://togithub.com/nodejs/node/pull/43901) - \[[`37808b3355`](https://togithub.com/nodejs/node/commit/37808b3355)] - **build**: convert V8 test JSON to JUnit XML (Keyhan Vakil) [#​44049](https://togithub.com/nodejs/node/pull/44049) - \[[`f92871a52b`](https://togithub.com/nodejs/node/commit/f92871a52b)] - **build**: update timezone-update.yml (Alex) [#​44717](https://togithub.com/nodejs/node/pull/44717) - \[[`f85d3471ee`](https://togithub.com/nodejs/node/commit/f85d3471ee)] - **child_process**: remove lookup of undefined property (Colin Ihrig) [#​44766](https://togithub.com/nodejs/node/pull/44766) - \[[`2f5f41c315`](https://togithub.com/nodejs/node/commit/2f5f41c315)] - **(SEMVER-MINOR)** **cli**: add `--watch` (Moshe Atlow) [#​44366](https://togithub.com/nodejs/node/pull/44366) - \[[`7fb9cc70f3`](https://togithub.com/nodejs/node/commit/7fb9cc70f3)] - **cluster**: use inspector utils (Moshe Atlow) [#​44592](https://togithub.com/nodejs/node/pull/44592) - \[[`99a2c16040`](https://togithub.com/nodejs/node/commit/99a2c16040)] - **crypto**: add causes to applicable webcrypto's OperationError (Filip Skokan) [#​44890](https://togithub.com/nodejs/node/pull/44890) - \[[`e0fbba0939`](https://togithub.com/nodejs/node/commit/e0fbba0939)] - **crypto**: use EVP_PKEY_CTX_set_dsa_paramgen_q_bits when available (David Benjamin) [#​44561](https://togithub.com/nodejs/node/pull/44561) - \[[`a90386b0a1`](https://togithub.com/nodejs/node/commit/a90386b0a1)] - **deps**: update undici to 5.11.0 (Node.js GitHub Bot) [#​44929](https://togithub.com/nodejs/node/pull/44929) - \[[`aa68d40fbf`](https://togithub.com/nodejs/node/commit/aa68d40fbf)] - **deps**: update corepack to 0.14.2 (Node.js GitHub Bot) [#​44775](https://togithub.com/nodejs/node/pull/44775) - \[[`c892f35815`](https://togithub.com/nodejs/node/commit/c892f35815)] - **deps**: V8: fix debug build (Ben Noordhuis) [#​44392](https://togithub.com/nodejs/node/pull/44392) - \[[`91514393dc`](https://togithub.com/nodejs/node/commit/91514393dc)] - **dns**: support dns module in the snapshot (Joyee Cheung) [#​44633](https://togithub.com/nodejs/node/pull/44633) - \[[`ce3cb29319`](https://togithub.com/nodejs/node/commit/ce3cb29319)] - **doc**: add fsPromises.readFile() example (Tierney Cyren) [#​40237](https://togithub.com/nodejs/node/pull/40237) - \[[`97df9b84a2`](https://togithub.com/nodejs/node/commit/97df9b84a2)] - **doc**: improve building doc for Android (BuShe Pie) [#​44888](https://togithub.com/nodejs/node/pull/44888) - \[[`8c69da893b`](https://togithub.com/nodejs/node/commit/8c69da893b)] - **doc**: mention `corepack prepare` supports tag or range (Michael Rienstra) [#​44646](https://togithub.com/nodejs/node/pull/44646) - \[[`842bc64833`](https://togithub.com/nodejs/node/commit/842bc64833)] - **doc**: remove Legacy status from querystring (Rich Trott) [#​44912](https://togithub.com/nodejs/node/pull/44912) - \[[`ddb5402f5f`](https://togithub.com/nodejs/node/commit/ddb5402f5f)] - **doc**: fix label name in collaborator guide (Rich Trott) [#​44920](https://togithub.com/nodejs/node/pull/44920) - \[[`d08b024a3d`](https://togithub.com/nodejs/node/commit/d08b024a3d)] - **doc**: fix typo in Node.js 12 changelog (Lorand Horvath) [#​42880](https://togithub.com/nodejs/node/pull/42880) - \[[`b6b9c427c5`](https://togithub.com/nodejs/node/commit/b6b9c427c5)] - **doc**: move release keys we don't use anymore in README (Rich Trott) [#​44899](https://togithub.com/nodejs/node/pull/44899) - \[[`e92b074b32`](https://togithub.com/nodejs/node/commit/e92b074b32)] - **doc**: fix grammar in dns docs ([#​44850](https://togithub.com/nodejs/node/issues/44850)) (Colin Ihrig) [#​44850](https://togithub.com/nodejs/node/pull/44850) - \[[`780144c339`](https://togithub.com/nodejs/node/commit/780144c339)] - **doc**: remove unnecessary leading commas (Colin Ihrig) [#​44854](https://togithub.com/nodejs/node/pull/44854) - \[[`6ae9bc8fbc`](https://togithub.com/nodejs/node/commit/6ae9bc8fbc)] - **doc**: add extra step for reporter pre-approval (Rafael Gonzaga) [#​44806](https://togithub.com/nodejs/node/pull/44806) - \[[`ccf31d8bca`](https://togithub.com/nodejs/node/commit/ccf31d8bca)] - **doc**: add anchor link for --preserve-symlinks (Kohei Ueno) [#​44858](https://togithub.com/nodejs/node/pull/44858) - \[[`7c5c19ee54`](https://togithub.com/nodejs/node/commit/7c5c19ee54)] - **doc**: update node prefix require.cache example (Simone Busoli) [#​44724](https://togithub.com/nodejs/node/pull/44724) - \[[`2a5bce6318`](https://togithub.com/nodejs/node/commit/2a5bce6318)] - **doc**: include last security release date (Vladimir de Turckheim) [#​44794](https://togithub.com/nodejs/node/pull/44794) - \[[`4efaf4265c`](https://togithub.com/nodejs/node/commit/4efaf4265c)] - **doc**: remove "currently" and comma splice from child_process.md (Rich Trott) [#​44789](https://togithub.com/nodejs/node/pull/44789) - \[[`3627616b40`](https://togithub.com/nodejs/node/commit/3627616b40)] - **doc,crypto**: mark experimental algorithms more visually (Filip Skokan) [#​44892](https://togithub.com/nodejs/node/pull/44892) - \[[`3c653cf23a`](https://togithub.com/nodejs/node/commit/3c653cf23a)] - **doc,crypto**: add missing CFRG curve algorithms to supported lists (Filip Skokan) [#​44876](https://togithub.com/nodejs/node/pull/44876) - \[[`70f55020d3`](https://togithub.com/nodejs/node/commit/70f55020d3)] - **doc,crypto**: add null length to crypto.subtle.deriveBits (Filip Skokan) [#​44876](https://togithub.com/nodejs/node/pull/44876) - \[[`910fbd0ece`](https://togithub.com/nodejs/node/commit/910fbd0ece)] - **esm**: fix duplicated test (Geoffrey Booth) [#​44779](https://togithub.com/nodejs/node/pull/44779) - \[[`bc00f3bde1`](https://togithub.com/nodejs/node/commit/bc00f3bde1)] - **fs**: fix opts.filter issue in cp async (Tho) [#​44922](https://togithub.com/nodejs/node/pull/44922) - \[[`11d1c23fa0`](https://togithub.com/nodejs/node/commit/11d1c23fa0)] - **(SEMVER-MINOR)** **fs**: add `FileHandle.prototype.readLines` (Antoine du Hamel) [#​42590](https://togithub.com/nodejs/node/pull/42590) - \[[`67fb76519a`](https://togithub.com/nodejs/node/commit/67fb76519a)] - **fs**: improve promise based readFile performance for big files (Ruben Bridgewater) [#​44295](https://togithub.com/nodejs/node/pull/44295) - \[[`dc6379bdc2`](https://togithub.com/nodejs/node/commit/dc6379bdc2)] - **fs**: don't hard code name in validatePosition() (Colin Ihrig) [#​44767](https://togithub.com/nodejs/node/pull/44767) - \[[`eb19b1e97c`](https://togithub.com/nodejs/node/commit/eb19b1e97c)] - **http**: be more aggressive to reply 400, 408 and 431 (ywave620) [#​44818](https://togithub.com/nodejs/node/pull/44818) - \[[`4c869c8d9e`](https://togithub.com/nodejs/node/commit/4c869c8d9e)] - **(SEMVER-MINOR)** **http**: add writeEarlyHints function to ServerResponse (Wing) [#​44180](https://togithub.com/nodejs/node/pull/44180) - \[[`9c7e66478c`](https://togithub.com/nodejs/node/commit/9c7e66478c)] - **(SEMVER-MINOR)** **http2**: make early hints generic (Yagiz Nizipli) [#​44820](https://togithub.com/nodejs/node/pull/44820) - \[[`3f20e5b15c`](https://togithub.com/nodejs/node/commit/3f20e5b15c)] - **(SEMVER-MINOR)** **lib**: refactor transferable AbortSignal (flakey5) [#​44048](https://togithub.com/nodejs/node/pull/44048) - \[[`ada7d82b16`](https://togithub.com/nodejs/node/commit/ada7d82b16)] - **lib**: require JSDoc in internal validators code (Rich Trott) [#​44896](https://togithub.com/nodejs/node/pull/44896) - \[[`67eaa303af`](https://togithub.com/nodejs/node/commit/67eaa303af)] - **lib**: add cause to DOMException (flakey5) [#​44703](https://togithub.com/nodejs/node/pull/44703) - \[[`0db86ee98e`](https://togithub.com/nodejs/node/commit/0db86ee98e)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​44930](https://togithub.com/nodejs/node/pull/44930) - \[[`2efe4d985b`](https://togithub.com/nodejs/node/commit/2efe4d985b)] - **meta**: label test.js and test.md with test_runner label (Moshe Atlow) [#​44863](https://togithub.com/nodejs/node/pull/44863) - \[[`fd9feb3a6c`](https://togithub.com/nodejs/node/commit/fd9feb3a6c)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​44857](https://togithub.com/nodejs/node/pull/44857) - \[[`a854bb39c9`](https://togithub.com/nodejs/node/commit/a854bb39c9)] - **node-api**: create reference only when needed (Gerhard Stöbich) [#​44827](https://togithub.com/nodejs/node/pull/44827) - \[[`fd5c26b8db`](https://togithub.com/nodejs/node/commit/fd5c26b8db)] - **path**: change basename() argument from ext to suffix (Rich Trott) [#​44774](https://togithub.com/nodejs/node/pull/44774) - \[[`803fbfb168`](https://togithub.com/nodejs/node/commit/803fbfb168)] - **process**: fix uid/gid validation to avoid crash (Tobias Nießen) [#​44910](https://togithub.com/nodejs/node/pull/44910) - \[[`9f2dd48fc3`](https://togithub.com/nodejs/node/commit/9f2dd48fc3)] - **src**: remove uid_t/gid_t casts (Tobias Nießen) [#​44914](https://togithub.com/nodejs/node/pull/44914) - \[[`3abb607f3a`](https://togithub.com/nodejs/node/commit/3abb607f3a)] - **src**: remove UncheckedMalloc(0) workaround (Tobias Nießen) [#​44543](https://togithub.com/nodejs/node/pull/44543) - \[[`0606f9298f`](https://togithub.com/nodejs/node/commit/0606f9298f)] - **src**: deduplicate setting RSA OAEP label (Tobias Nießen) [#​44849](https://togithub.com/nodejs/node/pull/44849) - \[[`daf3152f7e`](https://togithub.com/nodejs/node/commit/daf3152f7e)] - **src**: implement GetDetachedness() in MemoryRetainerNode (Joyee Cheung) [#​44803](https://togithub.com/nodejs/node/pull/44803) - \[[`7ca77dd4ef`](https://togithub.com/nodejs/node/commit/7ca77dd4ef)] - **src**: avoid X509\_free in loops in crypto_x509.cc (Tobias Nießen) [#​44855](https://togithub.com/nodejs/node/pull/44855) - \[[`781ad96227`](https://togithub.com/nodejs/node/commit/781ad96227)] - **src**: use OnScopeLeave instead of multiple free() (Tobias Nießen) [#​44852](https://togithub.com/nodejs/node/pull/44852) - \[[`b27b336a7a`](https://togithub.com/nodejs/node/commit/b27b336a7a)] - **src**: remove ParseIP() in cares_wrap.cc (Tobias Nießen) [#​44771](https://togithub.com/nodejs/node/pull/44771) - \[[`f99f5d3c01`](https://togithub.com/nodejs/node/commit/f99f5d3c01)] - **(SEMVER-MINOR)** **src**: add detailed embedder process initialization API (Anna Henningsen) [#​44121](https://togithub.com/nodejs/node/pull/44121) - \[[`281fd7a09a`](https://togithub.com/nodejs/node/commit/281fd7a09a)] - **src,stream**: improve DoWrite() and Write() (ywave620) [#​44434](https://togithub.com/nodejs/node/pull/44434) - \[[`a33cc22bf7`](https://togithub.com/nodejs/node/commit/a33cc22bf7)] - **src,worker**: fix race of WorkerHeapSnapshotTaker (ywave620) [#​44745](https://togithub.com/nodejs/node/pull/44745) - \[[`f300f197da`](https://togithub.com/nodejs/node/commit/f300f197da)] - **stream**: handle enqueuing chunks when a pending BYOB pull request exists (Daeyeon Jeong) [#​44770](https://togithub.com/nodejs/node/pull/44770) - \[[`9ac029ea11`](https://togithub.com/nodejs/node/commit/9ac029ea11)] - **test**: bump memory limit for abort fatal error (Danielle Adams) [#​44984](https://togithub.com/nodejs/node/pull/44984) - \[[`b9b671f25f`](https://togithub.com/nodejs/node/commit/b9b671f25f)] - **test**: debug watch mode inspect (Moshe Atlow) [#​44861](https://togithub.com/nodejs/node/pull/44861) - \[[`2308b71d09`](https://togithub.com/nodejs/node/commit/2308b71d09)] - **test**: don't clobber RegExp.$\_ on startup (Ben Noordhuis) [#​44864](https://togithub.com/nodejs/node/pull/44864) - \[[`fe91bebb67`](https://togithub.com/nodejs/node/commit/fe91bebb67)] - **test**: loosen test for negative timestamps in `test-fs-stat-date` (Livia Medeiros) [#​44707](https://togithub.com/nodejs/node/pull/44707) - \[[`a080608552`](https://togithub.com/nodejs/node/commit/a080608552)] - **test**: check `--test` is disallowed in NODE_OPTIONS (Kohei Ueno) [#​44846](https://togithub.com/nodejs/node/pull/44846) - \[[`dc2af265d7`](https://togithub.com/nodejs/node/commit/dc2af265d7)] - **test**: improve lib/internal/source_map/source_map.js coverage (MURAKAMI Masahiko) [#​42771](https://togithub.com/nodejs/node/pull/42771) - \[[`60a05d6dea`](https://togithub.com/nodejs/node/commit/60a05d6dea)] - **test**: skip some binding tests on IBMi PASE (Richard Lau) [#​44810](https://togithub.com/nodejs/node/pull/44810) - \[[`8dacedaa3d`](https://togithub.com/nodejs/node/commit/8dacedaa3d)] - **test**: remove unused variable in addon test (Joyee Cheung) [#​44809](https://togithub.com/nodejs/node/pull/44809) - \[[`c54cee1c3f`](https://togithub.com/nodejs/node/commit/c54cee1c3f)] - **test**: check server status in test-tls-psk-client (Richard Lau) [#​44824](https://togithub.com/nodejs/node/pull/44824) - \[[`ee3c6a4dc5`](https://togithub.com/nodejs/node/commit/ee3c6a4dc5)] - **test**: use async/await in test-debugger-exceptions (pete3249) [#​44690](https://togithub.com/nodejs/node/pull/44690) - \[[`9f14625fe5`](https://togithub.com/nodejs/node/commit/9f14625fe5)] - **test**: use async/await in test-debugger-help (Chandana) [#​44686](https://togithub.com/nodejs/node/pull/44686) - \[[`8033ad846b`](https://togithub.com/nodejs/node/commit/8033ad846b)] - **test**: update test-debugger-scripts to use await/async (mmeenapriya) [#​44692](https://togithub.com/nodejs/node/pull/44692) - \[[`f4f08be384`](https://togithub.com/nodejs/node/commit/f4f08be384)] - **test**: use await in test-debugger-invalid-json (Anjana Krishnakumar Vellore) [#​44689](https://togithub.com/nodejs/node/pull/44689) - \[[`d2f36169f3`](https://togithub.com/nodejs/node/commit/d2f36169f3)] - **test**: use async/await in test-debugger-random-port-with-inspect-port (Monu-Chaudhary) [#​44695](https://togithub.com/nodejs/node/pull/44695) - \[[`ddf029725b`](https://togithub.com/nodejs/node/commit/ddf029725b)] - **test**: use async/await in test-debugger-heap-profiler (Brinda Ashar) [#​44693](https://togithub.com/nodejs/node/pull/44693) - \[[`117f068250`](https://togithub.com/nodejs/node/commit/117f068250)] - **test**: use async/await in test-debugger-auto-resume (samyuktaprabhu) [#​44675](https://togithub.com/nodejs/node/pull/44675) - \[[`143c428cae`](https://togithub.com/nodejs/node/commit/143c428cae)] - **test**: migrated from Promise chains to Async/Await (Rathi N Das) [#​44674](https://togithub.com/nodejs/node/pull/44674) - \[[`e609a3309c`](https://togithub.com/nodejs/node/commit/e609a3309c)] - **test**: change promises to async/await in test-debugger-backtrace.js (Juliet Zhang) [#​44677](https://togithub.com/nodejs/node/pull/44677) - \[[`eeabd23ca6`](https://togithub.com/nodejs/node/commit/eeabd23ca6)] - **test**: use async/await in test-debugger-sb-before-load (Hope Olaidé) [#​44697](https://togithub.com/nodejs/node/pull/44697) - \[[`5c63d1464e`](https://togithub.com/nodejs/node/commit/5c63d1464e)] - **test**: add extra tests for basename with ext option (Connor Burton) [#​44772](https://togithub.com/nodejs/node/pull/44772) - \[[`f8b2d7a059`](https://togithub.com/nodejs/node/commit/f8b2d7a059)] - **test**: refactor to async/await (Divya Mohan) [#​44694](https://togithub.com/nodejs/node/pull/44694) - \[[`9864bde9ab`](https://togithub.com/nodejs/node/commit/9864bde9ab)] - **test**: modify test-debugger-custom-port.js to use async-await (Priya Shastri) [#​44680](https://togithub.com/nodejs/node/pull/44680) - \[[`af30823881`](https://togithub.com/nodejs/node/commit/af30823881)] - **test**: upgrade all 1024 bit RSA keys to 2048 bits (Momtchil Momtchev) [#​44498](https://togithub.com/nodejs/node/pull/44498) - \[[`0fb669e31f`](https://togithub.com/nodejs/node/commit/0fb669e31f)] - **test**: update test-debugger-breakpoint-exists.js to use async/await (Archana Kamath) [#​44682](https://togithub.com/nodejs/node/pull/44682) - \[[`cca253503e`](https://togithub.com/nodejs/node/commit/cca253503e)] - **test**: use async/await in test-debugger-preserve-breaks (poorvitusam) [#​44696](https://togithub.com/nodejs/node/pull/44696) - \[[`0b2e8b1681`](https://togithub.com/nodejs/node/commit/0b2e8b1681)] - **test**: use async/await in test-debugger-profile (surbhirjain) [#​44684](https://togithub.com/nodejs/node/pull/44684) - \[[`4db72a65cf`](https://togithub.com/nodejs/node/commit/4db72a65cf)] - **test**: change the promises to async/await in test-debugger-exec-scope.js (Ankita Khiratkar) [#​44685](https://togithub.com/nodejs/node/pull/44685) - \[[`56c9c98963`](https://togithub.com/nodejs/node/commit/56c9c98963)] - **test**: fix test-runner-inspect (Moshe Atlow) [#​44620](https://togithub.com/nodejs/node/pull/44620) - \[[`36227ed862`](https://togithub.com/nodejs/node/commit/36227ed862)] - **test**: fix watch mode test flake (Moshe Atlow) [#​44739](https://togithub.com/nodejs/node/pull/44739) - \[[`3abd71a0ea`](https://togithub.com/nodejs/node/commit/3abd71a0ea)] - **test**: deflake watch mode tests (Moshe Atlow) [#​44621](https://togithub.com/nodejs/node/pull/44621) - \[[`0c9f38f2be`](https://togithub.com/nodejs/node/commit/0c9f38f2be)] - **test**: split watch mode inspector tests to sequential (Moshe Atlow) [#​44551](https://togithub.com/nodejs/node/pull/44551) - \[[`d762a34128`](https://togithub.com/nodejs/node/commit/d762a34128)] - **test_runner**: add --test-name-pattern CLI flag (Colin Ihrig) - \[[`c7ece464a1`](https://togithub.com/nodejs/node/commit/c7ece464a1)] - **test_runner**: remove runtime experimental warning (Colin Ihrig) [#​44844](https://togithub.com/nodejs/node/pull/44844) - \[[`3c1e9d41c8`](https://togithub.com/nodejs/node/commit/3c1e9d41c8)] - **test_runner**: support using `--inspect` with `--test` (Moshe Atlow) [#​44520](https://togithub.com/nodejs/node/pull/44520) - \[[`4bdef48732`](https://togithub.com/nodejs/node/commit/4bdef48732)] - **tools**: remove faulty early termination logic from update-timezone.mjs (Darshan Sen) [#​44870](https://togithub.com/nodejs/node/pull/44870) - \[[`19d8574996`](https://togithub.com/nodejs/node/commit/19d8574996)] - **tools**: fix timezone update tool (Darshan Sen) [#​44870](https://togithub.com/nodejs/node/pull/44870) - \[[`ad8b8ae7d3`](https://togithub.com/nodejs/node/commit/ad8b8ae7d3)] - **tools**: update eslint to 8.25.0 (Node.js GitHub Bot) [#​44931](https://togithub.com/nodejs/node/pull/44931) - \[[`fd99b17a4d`](https://togithub.com/nodejs/node/commit/fd99b17a4d)] - **tools**: make `utils.SearchFiles` deterministic (Bruno Pitrus) [#​44496](https://togithub.com/nodejs/node/pull/44496) - \[[`131adece37`](https://togithub.com/nodejs/node/commit/131adece37)] - **tools**: fix typo in tools/update-authors.mjs (Darshan Sen) [#​44780](https://togithub.com/nodejs/node/pull/44780) - \[[`ab22777e65`](https://togithub.com/nodejs/node/commit/ab22777e65)] - **tools**: refactor deprecated format in no-unescaped-regexp-dot (Madhuri) [#​44763](https://togithub.com/nodejs/node/pull/44763) - \[[`3ad0fae89d`](https://togithub.com/nodejs/node/commit/3ad0fae89d)] - **tools**: update eslint-check.js to object style (andiemontoyeah) [#​44706](https://togithub.com/nodejs/node/pull/44706) - \[[`e9d572a9bd`](https://togithub.com/nodejs/node/commit/e9d572a9bd)] - **tools**: update eslint to 8.24.0 (Node.js GitHub Bot) [#​44778](https://togithub.com/nodejs/node/pull/44778) - \[[`984b0b4a6c`](https://togithub.com/nodejs/node/commit/984b0b4a6c)] - **tools**: update lint-md-dependencies to rollup@2.79.1 (Node.js GitHub Bot) [#​44776](https://togithub.com/nodejs/node/pull/44776) - \[[`db5aeed702`](https://togithub.com/nodejs/node/commit/db5aeed702)] - **(SEMVER-MINOR)** **util**: add default value option to parsearg (Manuel Spigolon) [#​44631](https://togithub.com/nodejs/node/pull/44631) - \[[`576ccdf125`](https://togithub.com/nodejs/node/commit/576ccdf125)] - **util**: increase robustness with primordials (Jordan Harband) [#​41212](https://togithub.com/nodejs/node/pull/41212) ### [`v18.10.0`](https://togithub.com/nodejs/node/releases/tag/v18.10.0) [Compare Source](https://togithub.com/nodejs/node/compare/v18.9.1...v18.10.0) ##### Notable changes - **doc**: - (SEMVER-MINOR) deprecate modp1, modp2, and modp5 groups (Tobias Nießen) [#​44588](https://togithub.com/nodejs/node/pull/44588) - add legendecas to TSC list (Michael Dawson) [#​44662](https://togithub.com/nodejs/node/pull/44662) - move `policy` docs to the `permissions` scope (Rafael Gonzaga) [#​44222](https://togithub.com/nodejs/node/pull/44222) - **gyp**: - libnode for ios app embedding (chexiongsheng) [#​44210](https://togithub.com/nodejs/node/pull/44210) - **http**: - (SEMVER-MINOR) throw error on content-length mismatch (sidwebworks) [#​44588](https://togithub.com/nodejs/node/pull/44378) - **stream**: - (SEMVER-MINOR) add `ReadableByteStream.tee()` (Daeyeon Jeong) [#​44505](https://togithub.com/nodejs/node/pull/44505) ##### Commits - \[[`f497368679`](https://togithub.com/nodejs/node/commit/f497368679)] - **benchmark**: fix startup benchmark (Evan Lucas) [#​44727](https://togithub.com/nodejs/node/pull/44727) - \[[`0c9a94684e`](https://togithub.com/nodejs/node/commit/0c9a94684e)] - **benchmark**: add stream destroy benchmark (SindreXie) [#​44533](https://togithub.com/nodejs/node/pull/44533) - \[[`9c5c1459a8`](https://togithub.com/nodejs/node/commit/9c5c1459a8)] - **bootstrap**: clean up inspector console methods during serialization (Joyee Cheung) [#​44279](https://togithub.com/nodejs/node/pull/44279) - \[[`19f67dba8a`](https://togithub.com/nodejs/node/commit/19f67dba8a)] - **bootstrap**: remove unused global parameter in per-context scripts (Joyee Cheung) [#​44472](https://togithub.com/nodejs/node/pull/44472) - \[[`9da11426f6`](https://togithub.com/nodejs/node/commit/9da11426f6)] - **build**: remove redundant entry in crypto (Jiawen Geng) [#​44604](https://togithub.com/nodejs/node/pull/44604) - \[[`70898b4e67`](https://togithub.com/nodejs/node/commit/70898b4e67)] - **build**: rewritten the Android build system (BuShe Pie) [#​44207](https://togithub.com/nodejs/node/pull/44207) - \[[`a733f7faac`](https://togithub.com/nodejs/node/commit/a733f7faac)] - ***Revert*** "**build**: go faster, drop -fno-omit-frame-pointer" (Ben Noordhuis) [#​44566](https://togithub.com/nodejs/node/pull/44566) - \[[`1315a83333`](https://togithub.com/nodejs/node/commit/1315a83333)] - **build**: fix bad upstream merge (Stephen Gallagher) [#​44642](https://togithub.com/nodejs/node/pull/44642) - \[[`993bd9b134`](https://togithub.com/nodejs/node/commit/993bd9b134)] - **crypto**: restrict PBKDF2 args to signed int (Tobias Nießen) [#​44575](https://togithub.com/nodejs/node/pull/44575) - \[[`ca5fb67b4e`](https://togithub.com/nodejs/node/commit/ca5fb67b4e)] - **deps**: update to ngtcp2 0.8.1 and nghttp3 0.7.0 (Tobias Nießen) [#​44622](https://togithub.com/nodejs/node/pull/44622) - \[[`8da1d6ebc4`](https://togithub.com/nodejs/node/commit/8da1d6ebc4)] - **deps**: update corepack to 0.14.1 (Node.js GitHub Bot) [#​44704](https://togithub.com/nodejs/node/pull/44704) - \[[`d36c4a3088`](https://togithub.com/nodejs/node/commit/d36c4a3088)] - **deps**: update ngtcp2 update instructions (Tobias Nießen) [#​44619](https://togithub.com/nodejs/node/pull/44619) - \[[`7129106aa0`](https://togithub.com/nodejs/node/commit/7129106aa0)] - **deps**: upgrade npm to 8.19.2 (npm team) [#​44632](https://togithub.com/nodejs/node/pull/44632) - \[[`3cc8f4bb56`](https://togithub.com/nodejs/node/commit/3cc8f4bb56)] - **deps**: update to uvwasi 0.0.13 (Colin Ihrig) [#​44524](https://togithub.com/nodejs/node/pull/44524) - \[[`4686579d4b`](https://togithub.com/nodejs/node/commit/4686579d4b)] - **dns**: remove unnecessary parameter from validateOneOf (Yagiz Nizipli) [#​44635](https://togithub.com/nodejs/node/pull/44635) - \[[`729dd95f1f`](https://togithub.com/nodejs/node/commit/729dd95f1f)] - **dns**: refactor default resolver (Joyee Cheung) [#​44541](https://togithub.com/nodejs/node/pull/44541) - \[[`6dc038262a`](https://togithub.com/nodejs/node/commit/6dc038262a)] - **doc**: mention git node backport (RafaelGSS) [#​44764](https://togithub.com/nodejs/node/pull/44764) - \[[`fd971f5176`](https://togithub.com/nodejs/node/commit/fd971f5176)] - **doc**: ensure to revert node_version changes (Rafael Gonzaga) [#​44760](https://togithub.com/nodejs/node/pull/44760) - \[[`f274b08f8e`](https://togithub.com/nodejs/node/commit/f274b08f8e)] - **doc**: fix description for `napi_get_cb_info()` in `n-api.md` (Daeyeon Jeong) [#​44761](https://togithub.com/nodejs/node/pull/44761) - \[[`2502f2353d`](https://togithub.com/nodejs/node/commit/2502f2353d)] - **doc**: update the deprecation for exit code to clarify its scope (Daeyeon Jeong) [#​44714](https://togithub.com/nodejs/node/pull/44714) - \[[`064543d0ae`](https://togithub.com/nodejs/node/commit/064543d0ae)] - **doc**: update guidance for adding new modules (Michael Dawson) [#​44576](https://togithub.com/nodejs/node/pull/44576) - \[[`33a2f17534`](https://togithub.com/nodejs/node/commit/33a2f17534)] - **doc**: add registry number for Electron 22 (Keeley Hammond) [#​44748](https://togithub.com/nodejs/node/pull/44748) - \[[`10a0d75c26`](https://togithub.com/nodejs/node/commit/10a0d75c26)] - **doc**: include code examples for webstreams consumers (Lucas Santos) [#​44387](https://togithub.com/nodejs/node/pull/44387) - \[[`4dbe4a010c`](https://togithub.com/nodejs/node/commit/4dbe4a010c)] - **doc**: mention where to push security commits (RafaelGSS) [#​44691](https://togithub.com/nodejs/node/pull/44691) - \[[`82cb8151ad`](https://togithub.com/nodejs/node/commit/82cb8151ad)] - **doc**: remove extra space on threadpool usage (Connor Burton) [#​44734](https://togithub.com/nodejs/node/pull/44734) - \[[`6ef9af2748`](https://togithub.com/nodejs/node/commit/6ef9af2748)] - **doc**: make legacy banner slightly less bright (Rich Trott) [#​44665](https://togithub.com/nodejs/node/pull/44665) - \[[`b209c83e66`](https://togithub.com/nodejs/node/commit/b209c83e66)] - **doc**: improve building doc for Windows Powershell (Brian Muenzenmeyer) [#​44625](https://togithub.com/nodejs/node/pull/44625) - \[[`05b17e9250`](https://togithub.com/nodejs/node/commit/05b17e9250)] - **doc**: maintain only one list of MODP groups (Tobias Nießen) [#​44644](https://togithub.com/nodejs/node/pull/44644) - \[[`ec1cbdb69b`](https://togithub.com/nodejs/node/commit/ec1cbdb69b)] - **doc**: add legendecas to TSC list (Michael Dawson) [#​44662](https://togithub.com/nodejs/node/pull/44662) - \[[`9341fb4446`](https://togithub.com/nodejs/node/commit/9341fb4446)] - **doc**: remove comma in README.md (Taha-Chaudhry) [#​44599](https://togithub.com/nodejs/node/pull/44599) - \[[`3dabb44dda`](https://togithub.com/nodejs/node/commit/3dabb44dda)] - **doc**: use serial comma in report docs (Daeyeon Jeong) [#​44608](https://togithub.com/nodejs/node/pull/44608) - \[[`226d90a95a`](https://togithub.com/nodejs/node/commit/226d90a95a)] - **doc**: use serial comma in stream docs (Daeyeon Jeong) [#​44609](https://togithub.com/nodejs/node/pull/44609) - \[[`3f710fa636`](https://togithub.com/nodejs/node/commit/3f710fa636)] - **doc**: remove empty line in YAML block (Claudio Wunder) [#​44617](https://togithub.com/nodejs/node/pull/44617) - \[[`4ad1b0abc3`](https://togithub.com/nodejs/node/commit/4ad1b0abc3)] - **(SEMVER-MINOR)** **doc**: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) [#​44588](https://togithub.com/nodejs/node/pull/44588) - \[[`2d92610525`](https://togithub.com/nodejs/node/commit/2d92610525)] - **doc**: remove old OpenSSL ENGINE constants (Tobias Nießen) [#​44589](https://togithub.com/nodejs/node/pull/44589) - \[[`03705639c4`](https://togithub.com/nodejs/node/commit/03705639c4)] - **doc**: fix heading levels for test runner hooks (Fabian Meyer) [#​44603](https://togithub.com/nodejs/node/pull/44603) - \[[`6c557346a7`](https://togithub.com/nodejs/node/commit/6c557346a7)] - **doc**: fix errors in http.md (Luigi Pinca) [#​44587](https://togithub.com/nodejs/node/pull/44587) - \[[`48d944b71c`](https://togithub.com/nodejs/node/commit/48d944b71c)] - **doc**: fix vm.Script createCachedData example (Chengzhong Wu) [#​44487](https://togithub.com/nodejs/node/pull/44487) - \[[`2813323120`](https://togithub.com/nodejs/node/commit/2813323120)] - **doc**: mention how to get commit release (Rafael Gonzaga) [#​44572](https://togithub.com/nodejs/node/pull/44572) - \[[`ea7b44d474`](https://togithub.com/nodejs/node/commit/ea7b44d474)] - **doc**: fix link in `process.md` (Antoine du Hamel) [#​44594](https://togithub.com/nodejs/node/pull/44594) - \[[`39b65d2fb7`](https://togithub.com/nodejs/node/commit/39b65d2fb7)] - **doc**: do not use weak MODP group in example (Tobias Nießen) [#​44585](https://togithub.com/nodejs/node/pull/44585) - \[[`f5549afd90`](https://togithub.com/nodejs/node/commit/f5549afd90)] - **doc**: remove ebpf from supported tooling list (Rafael Gonzaga) [#​44549](https://togithub.com/nodejs/node/pull/44549) - \[[`a3360b1f4f`](https://togithub.com/nodejs/node/commit/a3360b1f4f)] - **doc**: emphasize that createCipher is never secure (Tobias Nießen) [#​44538](https://togithub.com/nodejs/node/pull/44538) - \[[`4e6f7862ba`](https://togithub.com/nodejs/node/commit/4e6f7862ba)] - **doc**: document attribute Script.cachedDataRejected (Chengzhong Wu) [#​44451](https://togithub.com/nodejs/node/pull/44451) - \[[`01e584ecab`](https://togithub.com/nodejs/node/commit/01e584ecab)] - **doc**: move policy docs to the permissions scope (Rafael Gonzaga) [#​44222](https://togithub.com/nodejs/node/pull/44222) - \[[`57dac53c22`](https://togithub.com/nodejs/node/commit/57dac53c22)] - **doc,crypto**: cleanup removed pbkdf2 behaviours (Filip Skokan) [#​44733](https://togithub.com/nodejs/node/pull/44733) - \[[`c209bd6fb9`](https://togithub.com/nodejs/node/commit/c209bd6fb9)] - **doc,inspector**: document changes of inspector.close (Chengzhong Wu) [#​44628](https://togithub.com/nodejs/node/pull/44628) - \[[`9b3b7d6978`](https://togithub.com/nodejs/node/commit/9b3b7d6978)]

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] commented 2 years ago

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will ignore this upgrade and you will not receive PRs for any future 19.x releases. However, if you upgrade to 19.x manually then Renovate will reenable minor and patch updates automatically.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.