comunica / jQuery-Widget.js

🖼 A jQuery widget to query heterogeneous interfaces using Comunica SPARQL
http://query.linkeddatafragments.org/
MIT License
18 stars 35 forks source link

Update Node.js to v18 #113

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Type Update Change
node stage major 16.14.2 -> 18.0.0

Release Notes

nodejs/node ### [`v18.0.0`](https://togithub.com/nodejs/node/releases/v18.0.0) [Compare Source](https://togithub.com/nodejs/node/compare/v17.9.0...v18.0.0) Node.js 18 is here! Highlights include the update of the V8 JavaScript engine to 10.1, global fetch enabled by default, and a core test runner module. Initially, Node.js 18 will replace Node.js 17 as our ‘Current’ release line. As per the release schedule, Node.js 18 will be the ‘Current’ release for the next 6 months and then promoted to Long-term Support (LTS) in October 2022. Once promoted to long-term support the release will be designated the codename ‘Hydrogen’. Node.js 18 will be supported until April 2025. ##### Notable Changes ##### Deprecations and Removals - **(SEMVER-MAJOR)** **fs**: runtime deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#​42607](https://togithub.com/nodejs/node/pull/42607) - **(SEMVER-MAJOR)** **dns**: remove `dns.lookup` and `dnsPromises.lookup` options type coercion (Antoine du Hamel) [#​41431](https://togithub.com/nodejs/node/pull/41431) - **(SEMVER-MAJOR)** **process**: runtime deprecate multipleResolves (Benjamin Gruenbaum) [#​41896](https://togithub.com/nodejs/node/pull/41896) - **(SEMVER-MAJOR)** **stream**: remove thenable support (Robert Nagy) [#​40773](https://togithub.com/nodejs/node/pull/40773) - **(SEMVER-MAJOR)** **tls**: move tls.parseCertString to end-of-life (Tobias Nießen) [#​41479](https://togithub.com/nodejs/node/pull/41479) ##### fetch (experimental) An experimental fetch API is available on the global scope by default. The implementation is based upon [undici](https://undici.nodejs.org/#/), an HTTP/1.1 client written for Node.js by contributors to the project. ```mjs const res = await fetch('https://nodejs.org/api/documentation.json'); if (res.ok) { const data = await res.json(); console.log(data); } ``` Through this addition, the following globals are made available: `fetch`, `FormData`, `Headers`, `Request`, `Response`. Disable this API with the `--no-experimental-fetch` command-line flag. Contributed by Michaël Zasso in [#​41811](https://togithub.com/nodejs/node/pull/41811). ##### HTTP Timeouts `server.headersTimeout` which limits the amount of time the parser will wait to receive the complete HTTP headers is now set to `60000` (60 seconds) by default. `server.requestTimeout` which sets the timeout value in milliseconds for receiving the entire request from the client is now set to `300000` (5 minutes) by default. If these timeouts expire, the server responds with status 408 without forwarding the request to the request listener and then closes the connection. Both timeouts must be set to a non-zero value to protect against potential Denial-of-Service attacks in case the server is deployed without a reverse proxy in front. Contributed by Paolo Insogna in [#​41263](https://togithub.com/nodejs/node/pull/41263). ##### Test Runner module (experimental) The `node:test` module facilitates the creation of JavaScript tests that report results in TAP format. To access it: `import test from 'node:test';` This module is only available under the `node:` scheme. The following is an example implementation of a parent test with two subtests: ```js test('top level test', async (t) => { await t.test('subtest 1', (t) => { assert.strictEqual(1, 1); }); await t.test('subtest 2', (t) => { assert.strictEqual(2, 2); }); }); ``` Read more in . Contributed by Colin Ihrig in [#​42325](https://togithub.com/nodejs/node/pull/42325). ##### Toolchain and Compiler Upgrades - Prebuilt binaries for Linux are now built on Red Hat Enterprise Linux (RHEL) 8 and are compatible with Linux distributions based on glibc 2.28 or later, for example, Debian 10, RHEL 8, Ubuntu 20.04. - Prebuilt binaries for macOS now require macOS 10.15 or later. - For AIX the minimum supported architecture has been raised from Power 7 to Power 8. Prebuilt binaries for 32-bit Windows will initially not be available due to issues building the V8 dependency in Node.js. We hope to restore 32-bit Windows binaries for Node.js 18 with a future V8 update. Node.js does not support running on operating systems that are no longer supported by their vendor. For operating systems where their vendor has planned to end support earlier than April 2025, such as Windows 8.1 (January 2023) and Windows Server 2012 R2 (October 2023), support for Node.js 18 will end at the earlier date. Full details about the supported toolchains and compilers are documented in the Node.js [BUILDING.md](https://togithub.com/nodejs/node/blob/v18.x/BUILDING.md#supported-platforms) file. Contributed by Richard Lau in [#​42292](https://togithub.com/nodejs/node/pull/42292), [#​42604](https://togithub.com/nodejs/node/pull/42604) and [#​42659](https://togithub.com/nodejs/node/pull/42659),and Michaël Zasso in [#​42105](https://togithub.com/nodejs/node/pull/42105) and [#​42666](https://togithub.com/nodejs/node/pull/42666). ##### V8 10.1 The V8 engine is updated to version 10.1, which is part of Chromium 101. Compared to the version included in Node.js 17.9.0, the following new features are included: - The [`findLast` and `findLastIndex` array methods](https://v8.dev/features/finding-in-arrays). - Improvements to the [`Intl.Locale` API](https://v8.dev/blog/v8-release-99#intl.locale-extensions). - The [`Intl.supportedValuesOf` function](https://v8.dev/blog/v8-release-99#intl-enumeration). - Improved performance of [class fields](https://bugs.chromium.org/p/v8/issues/detail?id=9888) and [private class methods](https://bugs.chromium.org/p/v8/issues/detail?id=10793) (the initialization of them is now as fast as ordinary property stores). The data format returned by the serialization API (`v8.serialize(value)`) has changed, and cannot be deserialized by earlier versions of Node.js. On the other hand, it is still possible to deserialize the previous format, as the API is backwards-compatible. Contributed by Michaël Zasso in [#​42657](https://togithub.com/nodejs/node/pull/42657). ##### Web Streams API (experimental) Node.js now exposes the experimental implementation of the [Web Streams API](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) on the global scope. This means the following APIs are now globally available: - `ReadableStream`, `ReadableStreamDefaultReader`, `ReadableStreamBYOBReader`, `ReadableStreamBYOBRequest`, `ReadableByteStreamController`, `ReadableStreamDefaultController`, `TransformStream`, `TransformStreamDefaultController`, `WritableStream`, `WritableStreamDefaultWriter`, `WritableStreamDefaultController`, `ByteLengthQueuingStrategy`, `CountQueuingStrategy`, `TextEncoderStream`, `TextDecoderStream`, `CompressionStream`, `DecompressionStream`. Contributed James Snell in [#​39062](https://togithub.com/nodejs/node/pull/39062), and Antoine du Hamel in [#​42225](https://togithub.com/nodejs/node/pull/42225). ##### Other Notable Changes - **(SEMVER-MAJOR)** **buffer**: expose Blob as a global (James M Snell) [#​41270](https://togithub.com/nodejs/node/pull/41270) - **(SEMVER-MAJOR)** **child_process**: improve argument validation (Rich Trott) [#​41305](https://togithub.com/nodejs/node/pull/41305) - **doc**: add RafaelGSS to collaborators (RafaelGSS) [#​42718](https://togithub.com/nodejs/node/pull/42718) - **(SEMVER-MAJOR)** **http**: make TCP noDelay enabled by default (Paolo Insogna) [#​42163](https://togithub.com/nodejs/node/pull/42163) - **(SEMVER-MAJOR)** **net**: make `server.address()` return an integer for `family` (Antoine du Hamel) [#​41431](https://togithub.com/nodejs/node/pull/41431) - **(SEMVER-MAJOR)** **worker**: expose BroadcastChannel as a global (James M Snell) [#​41271](https://togithub.com/nodejs/node/pull/41271) - **(SEMVER-MAJOR)** **worker**: graduate BroadcastChannel to supported (James M Snell) [#​41271](https://togithub.com/nodejs/node/pull/41271) ##### Semver-Major Commits - \[[`dab8ab2837`](https://togithub.com/nodejs/node/commit/dab8ab2837)] - **(SEMVER-MAJOR)** **assert,util**: compare RegExp.lastIndex while using deep equal checks (Ruben Bridgewater) [#​41020](https://togithub.com/nodejs/node/pull/41020) - \[[`cff14bcaef`](https://togithub.com/nodejs/node/commit/cff14bcaef)] - **(SEMVER-MAJOR)** **buffer**: refactor `byteLength` to remove outdated optimizations (Rongjian Zhang) [#​38545](https://togithub.com/nodejs/node/pull/38545) - \[[`cea76dbf33`](https://togithub.com/nodejs/node/commit/cea76dbf33)] - **(SEMVER-MAJOR)** **buffer**: expose Blob as a global (James M Snell) [#​41270](https://togithub.com/nodejs/node/pull/41270) - \[[`99c18f4786`](https://togithub.com/nodejs/node/commit/99c18f4786)] - **(SEMVER-MAJOR)** **buffer**: graduate Blob from experimental (James M Snell) [#​41270](https://togithub.com/nodejs/node/pull/41270) - \[[`35d72bf4ec`](https://togithub.com/nodejs/node/commit/35d72bf4ec)] - **(SEMVER-MAJOR)** **build**: make x86 Windows support temporarily experimental (Michaël Zasso) [#​42666](https://togithub.com/nodejs/node/pull/42666) - \[[`1134d8faf8`](https://togithub.com/nodejs/node/commit/1134d8faf8)] - **(SEMVER-MAJOR)** **build**: bump macOS deployment target to 10.15 (Richard Lau) [#​42292](https://togithub.com/nodejs/node/pull/42292) - \[[`27eb91d378`](https://togithub.com/nodejs/node/commit/27eb91d378)] - **(SEMVER-MAJOR)** **build**: downgrade Windows 8.1 and server 2012 R2 to experimental (Michaël Zasso) [#​42105](https://togithub.com/nodejs/node/pull/42105) - \[[`26c973d4b3`](https://togithub.com/nodejs/node/commit/26c973d4b3)] - **(SEMVER-MAJOR)** **child_process**: improve argument validation (Rich Trott) [#​41305](https://togithub.com/nodejs/node/pull/41305) - \[[`38007df999`](https://togithub.com/nodejs/node/commit/38007df999)] - **(SEMVER-MAJOR)** **cluster**: make `kill` to be just `process.kill` (Bar Admoni) [#​34312](https://togithub.com/nodejs/node/pull/34312) - \[[`aed18dfe59`](https://togithub.com/nodejs/node/commit/aed18dfe59)] - **(SEMVER-MAJOR)** **crypto**: cleanup validation (Mohammed Keyvanzadeh) [#​39841](https://togithub.com/nodejs/node/pull/39841) - \[[`e1fb6ae02f`](https://togithub.com/nodejs/node/commit/e1fb6ae02f)] - **(SEMVER-MAJOR)** **crypto**: prettify othername in PrintGeneralName (Tobias Nießen) [#​42123](https://togithub.com/nodejs/node/pull/42123) - \[[`36fb79030e`](https://togithub.com/nodejs/node/commit/36fb79030e)] - **(SEMVER-MAJOR)** **crypto**: fix X509Certificate toLegacyObject (Tobias Nießen) [#​42124](https://togithub.com/nodejs/node/pull/42124) - \[[`563b2ed000`](https://togithub.com/nodejs/node/commit/563b2ed000)] - **(SEMVER-MAJOR)** **crypto**: use RFC2253 format in PrintGeneralName (Tobias Nießen) [#​42002](https://togithub.com/nodejs/node/pull/42002) - \[[`18365d8ee6`](https://togithub.com/nodejs/node/commit/18365d8ee6)] - **(SEMVER-MAJOR)** **crypto**: change default check(Host|Email) behavior (Tobias Nießen) [#​41600](https://togithub.com/nodejs/node/pull/41600) - \[[`58f3fdcccd`](https://togithub.com/nodejs/node/commit/58f3fdcccd)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick semver-major commits from 10.2 (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`fd4f80ce54`](https://togithub.com/nodejs/node/commit/fd4f80ce54)] - **(SEMVER-MAJOR)** **deps**: update V8 to 10.1.124.6 (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`974ab4060f`](https://togithub.com/nodejs/node/commit/974ab4060f)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.8.177.9 (Michaël Zasso) [#​41610](https://togithub.com/nodejs/node/pull/41610) - \[[`270253c4e2`](https://togithub.com/nodejs/node/commit/270253c4e2)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.7.106.18 (Michaël Zasso) [#​40907](https://togithub.com/nodejs/node/pull/40907) - \[[`08773e3c04`](https://togithub.com/nodejs/node/commit/08773e3c04)] - **(SEMVER-MAJOR)** **dns**: remove `dns.lookup` and `dnsPromises.lookup` options type coercion (Antoine du Hamel) [#​41431](https://togithub.com/nodejs/node/pull/41431) - \[[`3671cc0432`](https://togithub.com/nodejs/node/commit/3671cc0432)] - **(SEMVER-MAJOR)** **doc**: update minimum glibc requirements for Linux (Richard Lau) [#​42659](https://togithub.com/nodejs/node/pull/42659) - \[[`646e057680`](https://togithub.com/nodejs/node/commit/646e057680)] - **(SEMVER-MAJOR)** **doc**: update AIX minimum supported arch (Richard Lau) [#​42604](https://togithub.com/nodejs/node/pull/42604) - \[[`0bac5478eb`](https://togithub.com/nodejs/node/commit/0bac5478eb)] - **(SEMVER-MAJOR)** **fs**: runtime deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#​42607](https://togithub.com/nodejs/node/pull/42607) - \[[`3caa2c1a00`](https://togithub.com/nodejs/node/commit/3caa2c1a00)] - **(SEMVER-MAJOR)** **http**: refactor headersTimeout and requestTimeout logic (Paolo Insogna) [#​41263](https://togithub.com/nodejs/node/pull/41263) - \[[`eacd45656a`](https://togithub.com/nodejs/node/commit/eacd45656a)] - **(SEMVER-MAJOR)** **http**: make TCP noDelay enabled by default (Paolo Insogna) [#​42163](https://togithub.com/nodejs/node/pull/42163) - \[[`4944ad0b9e`](https://togithub.com/nodejs/node/commit/4944ad0b9e)] - **(SEMVER-MAJOR)** **lib**: enable fetch by default (Michaël Zasso) [#​41811](https://togithub.com/nodejs/node/pull/41811) - \[[`8c4b8b201a`](https://togithub.com/nodejs/node/commit/8c4b8b201a)] - **(SEMVER-MAJOR)** **lib**: replace validator and error (Mohammed Keyvanzadeh) [#​41678](https://togithub.com/nodejs/node/pull/41678) - \[[`3c4ee5267a`](https://togithub.com/nodejs/node/commit/3c4ee5267a)] - **(SEMVER-MAJOR)** **module,repl**: support 'node:'-only core modules (Colin Ihrig) [#​42325](https://togithub.com/nodejs/node/pull/42325) - \[[`3a26db9697`](https://togithub.com/nodejs/node/commit/3a26db9697)] - **(SEMVER-MAJOR)** **net**: make `server.address()` return an integer for `family` (Antoine du Hamel) [#​41431](https://togithub.com/nodejs/node/pull/41431) - \[[`e6a7300a10`](https://togithub.com/nodejs/node/commit/e6a7300a10)] - **(SEMVER-MAJOR)** **process**: disallow some uses of Object.defineProperty() on process.env (Himself65) [#​28006](https://togithub.com/nodejs/node/pull/28006) - \[[`60b8e79599`](https://togithub.com/nodejs/node/commit/60b8e79599)] - **(SEMVER-MAJOR)** **process**: runtime deprecate multipleResolves (Benjamin Gruenbaum) [#​41896](https://togithub.com/nodejs/node/pull/41896) - \[[`d36b60e69a`](https://togithub.com/nodejs/node/commit/d36b60e69a)] - **(SEMVER-MAJOR)** **readline**: fix question still called after closed (Xuguang Mei) [#​42464](https://togithub.com/nodejs/node/pull/42464) - \[[`58e645de63`](https://togithub.com/nodejs/node/commit/58e645de63)] - **(SEMVER-MAJOR)** **stream**: remove thenable support (Robert Nagy) [#​40773](https://togithub.com/nodejs/node/pull/40773) - \[[`560cbc5849`](https://togithub.com/nodejs/node/commit/560cbc5849)] - **(SEMVER-MAJOR)** **stream**: expose web streams globals, remove runtime experimental warning (Antoine du Hamel) [#​42225](https://togithub.com/nodejs/node/pull/42225) - \[[`9fb7ac3bbd`](https://togithub.com/nodejs/node/commit/9fb7ac3bbd)] - **(SEMVER-MAJOR)** **stream**: need to cleanup event listeners if last stream is readable (Xuguang Mei) [#​41954](https://togithub.com/nodejs/node/pull/41954) - \[[`ceaa299958`](https://togithub.com/nodejs/node/commit/ceaa299958)] - **(SEMVER-MAJOR)** **stream**: revert revert `map` spec compliance (Benjamin Gruenbaum) [#​41933](https://togithub.com/nodejs/node/pull/41933) - \[[`fe7ca085a7`](https://togithub.com/nodejs/node/commit/fe7ca085a7)] - **(SEMVER-MAJOR)** **stream**: throw invalid arg type from End Of Stream (Jithil P Ponnan) [#​41766](https://togithub.com/nodejs/node/pull/41766) - \[[`48e784043d`](https://togithub.com/nodejs/node/commit/48e784043d)] - **(SEMVER-MAJOR)** **stream**: don't emit finish after destroy (Robert Nagy) [#​40852](https://togithub.com/nodejs/node/pull/40852) - \[[`f2170253b6`](https://togithub.com/nodejs/node/commit/f2170253b6)] - **(SEMVER-MAJOR)** **stream**: add errored and closed props (Robert Nagy) [#​40696](https://togithub.com/nodejs/node/pull/40696) - \[[`432d1b50e0`](https://togithub.com/nodejs/node/commit/432d1b50e0)] - **(SEMVER-MAJOR)** **test**: add initial test module (Colin Ihrig) [#​42325](https://togithub.com/nodejs/node/pull/42325) - \[[`92567283f4`](https://togithub.com/nodejs/node/commit/92567283f4)] - **(SEMVER-MAJOR)** **timers**: refactor internal classes to ES2015 syntax (Rabbit) [#​37408](https://togithub.com/nodejs/node/pull/37408) - \[[`65910c0d6c`](https://togithub.com/nodejs/node/commit/65910c0d6c)] - **(SEMVER-MAJOR)** **tls**: represent registeredID numerically always (Tobias Nießen) [#​41561](https://togithub.com/nodejs/node/pull/41561) - \[[`807c7e14f4`](https://togithub.com/nodejs/node/commit/807c7e14f4)] - **(SEMVER-MAJOR)** **tls**: move tls.parseCertString to end-of-life (Tobias Nießen) [#​41479](https://togithub.com/nodejs/node/pull/41479) - \[[`f524306077`](https://togithub.com/nodejs/node/commit/f524306077)] - **(SEMVER-MAJOR)** **url**: throw on NULL in IPv6 hostname (Rich Trott) [#​42313](https://togithub.com/nodejs/node/pull/42313) - \[[`0187bc5cdc`](https://togithub.com/nodejs/node/commit/0187bc5cdc)] - **(SEMVER-MAJOR)** **v8**: make v8.writeHeapSnapshot() error codes consistent (Darshan Sen) [#​42577](https://togithub.com/nodejs/node/pull/42577) - \[[`74b9baa426`](https://togithub.com/nodejs/node/commit/74b9baa426)] - **(SEMVER-MAJOR)** **v8**: make writeHeapSnapshot throw if fopen fails (Antonio Román) [#​41373](https://togithub.com/nodejs/node/pull/41373) - \[[`ce4d3adf50`](https://togithub.com/nodejs/node/commit/ce4d3adf50)] - **(SEMVER-MAJOR)** **worker**: expose BroadcastChannel as a global (James M Snell) [#​41271](https://togithub.com/nodejs/node/pull/41271) - \[[`6486a304d3`](https://togithub.com/nodejs/node/commit/6486a304d3)] - **(SEMVER-MAJOR)** **worker**: graduate BroadcastChannel to supported (James M Snell) [#​41271](https://togithub.com/nodejs/node/pull/41271) ##### Semver-Minor Commits - \[[`415726b8c4`](https://togithub.com/nodejs/node/commit/415726b8c4)] - **(SEMVER-MINOR)** **stream**: add writableAborted (Robert Nagy) [#​40802](https://togithub.com/nodejs/node/pull/40802) - \[[`54819f08e0`](https://togithub.com/nodejs/node/commit/54819f08e0)] - **(SEMVER-MINOR)** **test_runner**: support 'only' tests (Colin Ihrig) [#​42514](https://togithub.com/nodejs/node/pull/42514) ##### Semver-Patch Commits - \[[`7533d08b94`](https://togithub.com/nodejs/node/commit/7533d08b94)] - **buffer**: fix `atob` input validation (Austin Kelleher) [#​42662](https://togithub.com/nodejs/node/pull/42662) - \[[`96673bcb96`](https://togithub.com/nodejs/node/commit/96673bcb96)] - **build**: run clang-format on CI (Darshan Sen) [#​42681](https://togithub.com/nodejs/node/pull/42681) - \[[`d5462e4558`](https://togithub.com/nodejs/node/commit/d5462e4558)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`aa52873887`](https://togithub.com/nodejs/node/commit/aa52873887)] - **build**: add configure option --v8-enable-short-builtin-calls (daomingq) [#​42109](https://togithub.com/nodejs/node/pull/42109) - \[[`7ee8a7a463`](https://togithub.com/nodejs/node/commit/7ee8a7a463)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​41610](https://togithub.com/nodejs/node/pull/41610) - \[[`a189dee52a`](https://togithub.com/nodejs/node/commit/a189dee52a)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​40907](https://togithub.com/nodejs/node/pull/40907) - \[[`e8697cfe38`](https://togithub.com/nodejs/node/commit/e8697cfe38)] - **crypto**: improve prime size argument validation (Tobias Nießen) [#​42234](https://togithub.com/nodejs/node/pull/42234) - \[[`a9c0689786`](https://togithub.com/nodejs/node/commit/a9c0689786)] - **crypto**: fix return type prob reported by coverity (Michael Dawson) [#​42135](https://togithub.com/nodejs/node/pull/42135) - \[[`e938515b41`](https://togithub.com/nodejs/node/commit/e938515b41)] - **deps**: patch V8 to 10.1.124.8 (Michaël Zasso) [#​42730](https://togithub.com/nodejs/node/pull/42730) - \[[`eba7d2db7f`](https://togithub.com/nodejs/node/commit/eba7d2db7f)] - **deps**: V8: cherry-pick [`ad21d21`](https://togithub.com/nodejs/node/commit/ad21d212fc14) (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`004137e269`](https://togithub.com/nodejs/node/commit/004137e269)] - **deps**: V8: cherry-pick [`4c29cf1`](https://togithub.com/nodejs/node/commit/4c29cf1b7885) (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`a052c03033`](https://togithub.com/nodejs/node/commit/a052c03033)] - **deps**: V8: cherry-pick [`ca2a787`](https://togithub.com/nodejs/node/commit/ca2a787a0b49) (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`01cea9a8d8`](https://togithub.com/nodejs/node/commit/01cea9a8d8)] - **deps**: V8: cherry-pick [`a2cae21`](https://togithub.com/nodejs/node/commit/a2cae2180a7a) (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`d9d26b08ef`](https://togithub.com/nodejs/node/commit/d9d26b08ef)] - **deps**: V8: cherry-pick [`87ce4f5`](https://togithub.com/nodejs/node/commit/87ce4f5d98a5) (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`64a6328505`](https://togithub.com/nodejs/node/commit/64a6328505)] - **deps**: make V8 compilable with older glibc (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`fde59217b9`](https://togithub.com/nodejs/node/commit/fde59217b9)] - **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`cdcc82cced`](https://togithub.com/nodejs/node/commit/cdcc82cced)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#​40907](https://togithub.com/nodejs/node/pull/40907) - \[[`2f51e121da`](https://togithub.com/nodejs/node/commit/2f51e121da)] - **deps**: update Acorn to v8.7.0 (Michaël Zasso) [#​42667](https://togithub.com/nodejs/node/pull/42667) - \[[`6d4b01774b`](https://togithub.com/nodejs/node/commit/6d4b01774b)] - **deps**: update ICU to 71.1 (Michaël Zasso) [#​42655](https://togithub.com/nodejs/node/pull/42655) - \[[`2d84620f86`](https://togithub.com/nodejs/node/commit/2d84620f86)] - **deps**: upgrade npm to 8.6.0 (npm team) [#​42550](https://togithub.com/nodejs/node/pull/42550) - \[[`c7ac11fa25`](https://togithub.com/nodejs/node/commit/c7ac11fa25)] - **deps**: update undici to 5.0.0 (Node.js GitHub Bot) [#​42583](https://togithub.com/nodejs/node/pull/42583) - \[[`468fffdf66`](https://togithub.com/nodejs/node/commit/468fffdf66)] - **deps**: V8: cherry-pick [`50d5fb7`](https://togithub.com/nodejs/node/commit/50d5fb7a457c) (Michaël Zasso) [#​41610](https://togithub.com/nodejs/node/pull/41610) - \[[`48708be57b`](https://togithub.com/nodejs/node/commit/48708be57b)] - **deps**: V8: cherry-pick [`79a9d2e`](https://togithub.com/nodejs/node/commit/79a9d2eb3477) (Michaël Zasso) [#​41610](https://togithub.com/nodejs/node/pull/41610) - \[[`3c8782f70e`](https://togithub.com/nodejs/node/commit/3c8782f70e)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#​40907](https://togithub.com/nodejs/node/pull/40907) - \[[`9318408c49`](https://togithub.com/nodejs/node/commit/9318408c49)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#​40907](https://togithub.com/nodejs/node/pull/40907) - \[[`e23e345b6c`](https://togithub.com/nodejs/node/commit/e23e345b6c)] - **deps**: V8: cherry-pick [`80bbbb1`](https://togithub.com/nodejs/node/commit/80bbbb143c24) (Michaël Zasso) [#​40907](https://togithub.com/nodejs/node/pull/40907) - \[[`696ce7df26`](https://togithub.com/nodejs/node/commit/696ce7df26)] - **deps**: V8: cherry-pick [`1cc12b2`](https://togithub.com/nodejs/node/commit/1cc12b278e22) (Michaël Zasso) [#​40907](https://togithub.com/nodejs/node/pull/40907) - \[[`aa88e5e4b9`](https://togithub.com/nodejs/node/commit/aa88e5e4b9)] - **doc**: revise data imports and node: imports sections (Rich Trott) [#​42734](https://togithub.com/nodejs/node/pull/42734) - \[[`a058cefe29`](https://togithub.com/nodejs/node/commit/a058cefe29)] - **doc**: fix ESM JSON/data URL import example (Rich Trott) [#​42728](https://togithub.com/nodejs/node/pull/42728) - \[[`e61b62b9d4`](https://togithub.com/nodejs/node/commit/e61b62b9d4)] - **doc**: improve doc for http.ServerResponse inheritance (Luigi Pinca) [#​42693](https://togithub.com/nodejs/node/pull/42693) - \[[`6669b3857f`](https://togithub.com/nodejs/node/commit/6669b3857f)] - **doc**: add RafaelGSS to collaborators (RafaelGSS) [#​42718](https://togithub.com/nodejs/node/pull/42718) - \[[`f825341bab`](https://togithub.com/nodejs/node/commit/f825341bab)] - **doc**: add NodeEdKeyGenParams to CryptoKey.algorithm (Tobias Nießen) [#​42629](https://togithub.com/nodejs/node/pull/42629) - \[[`d4d78361f2`](https://togithub.com/nodejs/node/commit/d4d78361f2)] - **doc**: fix the example for embedders (Momtchil Momtchev) [#​42671](https://togithub.com/nodejs/node/pull/42671) - \[[`6706be1cdb`](https://togithub.com/nodejs/node/commit/6706be1cdb)] - **doc**: change AES-GCM IV recommendation in WebCrypto (Tobias Nießen) [#​42611](https://togithub.com/nodejs/node/pull/42611) - \[[`4508c8caa4`](https://togithub.com/nodejs/node/commit/4508c8caa4)] - **doc**: fix `added:` info for some methods (Luigi Pinca) [#​42661](https://togithub.com/nodejs/node/pull/42661) - \[[`951dbc045a`](https://togithub.com/nodejs/node/commit/951dbc045a)] - **doc**: remove unneeded new in Buffer example (Niklas Mischkulnig) [#​42682](https://togithub.com/nodejs/node/pull/42682) - \[[`65e838071b`](https://togithub.com/nodejs/node/commit/65e838071b)] - **doc**: mark worker.id as integer in cluster docs (Tobias Nießen) [#​42684](https://togithub.com/nodejs/node/pull/42684) - \[[`a82713cbb6`](https://togithub.com/nodejs/node/commit/a82713cbb6)] - **doc**: recommend `fh.createWriteStream` for fsPromises methods (Antoine du Hamel) [#​42653](https://togithub.com/nodejs/node/pull/42653) - \[[`13ad8d4e09`](https://togithub.com/nodejs/node/commit/13ad8d4e09)] - **doc**: fix outgoingMessage.removeHeader() signature (Luigi Pinca) [#​42652](https://togithub.com/nodejs/node/pull/42652) - \[[`a0461255c0`](https://togithub.com/nodejs/node/commit/a0461255c0)] - **doc**: mark tlsSocket.authorized as boolean property (Tobias Nießen) [#​42647](https://togithub.com/nodejs/node/pull/42647) - \[[`3ac7f86c2b`](https://togithub.com/nodejs/node/commit/3ac7f86c2b)] - **doc**: add missing punctuation in Web Streams doc (Tobias Nießen) [#​42672](https://togithub.com/nodejs/node/pull/42672) - \[[`b98386c977`](https://togithub.com/nodejs/node/commit/b98386c977)] - **doc**: add missing article in session ticket section (Tobias Nießen) [#​42632](https://togithub.com/nodejs/node/pull/42632) - \[[`a113468383`](https://togithub.com/nodejs/node/commit/a113468383)] - **doc**: link to dynamic import function (Tobias Nießen) [#​42634](https://togithub.com/nodejs/node/pull/42634) - \[[`dfc2dc8b65`](https://togithub.com/nodejs/node/commit/dfc2dc8b65)] - **doc**: add note about header values encoding (Shogun) [#​42624](https://togithub.com/nodejs/node/pull/42624) - \[[`ec5a359ffd`](https://togithub.com/nodejs/node/commit/ec5a359ffd)] - **doc**: add missing word in rootCertificates section (Tobias Nießen) [#​42633](https://togithub.com/nodejs/node/pull/42633) - \[[`c08a361f70`](https://togithub.com/nodejs/node/commit/c08a361f70)] - **doc**: add history entries for DEP0162 on `fs.md` (Antoine du Hamel) [#​42608](https://togithub.com/nodejs/node/pull/42608) - \[[`4fade6acb4`](https://togithub.com/nodejs/node/commit/4fade6acb4)] - **doc**: fix brackets position (Livia Medeiros) [#​42649](https://togithub.com/nodejs/node/pull/42649) - \[[`8055c7ba5d`](https://togithub.com/nodejs/node/commit/8055c7ba5d)] - **doc**: copyedit corepack.md (Rich Trott) [#​42620](https://togithub.com/nodejs/node/pull/42620) - \[[`85a65c3260`](https://togithub.com/nodejs/node/commit/85a65c3260)] - **doc**: delete chakra tt from diagnostic tooling support tiers (Tony Gorez) [#​42627](https://togithub.com/nodejs/node/pull/42627) - \[[`63bb6dcf0f`](https://togithub.com/nodejs/node/commit/63bb6dcf0f)] - **doc**: align links in table to top (nikoladev) [#​41396](https://togithub.com/nodejs/node/pull/41396) - \[[`28d8614add`](https://togithub.com/nodejs/node/commit/28d8614add)] - **http**: document that ClientRequest inherits from OutgoingMessage (K.C.Ashish Kumar) [#​42642](https://togithub.com/nodejs/node/pull/42642) - \[[`c37fdacb34`](https://togithub.com/nodejs/node/commit/c37fdacb34)] - **lib**: use class fields in observe.js (Joyee Cheung) [#​42361](https://togithub.com/nodejs/node/pull/42361) - \[[`ea0668a27e`](https://togithub.com/nodejs/node/commit/ea0668a27e)] - **lib**: use class fields in Event and EventTarget (Joyee Cheung) [#​42361](https://togithub.com/nodejs/node/pull/42361) - \[[`eb7b89c829`](https://togithub.com/nodejs/node/commit/eb7b89c829)] - **lib**: update class fields TODO in abort_controller.js (Joyee Cheung) [#​42361](https://togithub.com/nodejs/node/pull/42361) - \[[`d835b1f1c1`](https://togithub.com/nodejs/node/commit/d835b1f1c1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​42677](https://togithub.com/nodejs/node/pull/42677) - \[[`29492496e8`](https://togithub.com/nodejs/node/commit/29492496e8)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​42599](https://togithub.com/nodejs/node/pull/42599) - \[[`93c4dc5e5a`](https://togithub.com/nodejs/node/commit/93c4dc5e5a)] - **module**: ensure 'node:'-only modules can access node_modules (Colin Ihrig) [#​42430](https://togithub.com/nodejs/node/pull/42430) - \[[`3a26db9697`](https://togithub.com/nodejs/node/commit/3a26db9697)] - **net**: make `server.address()` return an integer for `family` (Antoine du Hamel) [#​41431](https://togithub.com/nodejs/node/pull/41431) - \[[`44fdf953ba`](https://togithub.com/nodejs/node/commit/44fdf953ba)] - **node-api,src**: fix module registration in MSVC C++ (Vladimir Morozov) [#​42459](https://togithub.com/nodejs/node/pull/42459) - \[[`3026ca0bf2`](https://togithub.com/nodejs/node/commit/3026ca0bf2)] - **src**: fix coverity report (Michael Dawson) [#​42663](https://togithub.com/nodejs/node/pull/42663) - \[[`01fd048c6e`](https://togithub.com/nodejs/node/commit/01fd048c6e)] - **src**: update NODE_MODULE_VERSION to 108 (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`75a71dc7ae`](https://togithub.com/nodejs/node/commit/75a71dc7ae)] - **src**: fix alphabetically sorted binding list (Tobias Nießen) [#​42687](https://togithub.com/nodejs/node/pull/42687) - \[[`457567f72c`](https://togithub.com/nodejs/node/commit/457567f72c)] - **src**: include crypto in the bootstrap snapshot (Joyee Cheung) [#​42203](https://togithub.com/nodejs/node/pull/42203) - \[[`aa7dc808f5`](https://togithub.com/nodejs/node/commit/aa7dc808f5)] - **src**: update ImportModuleDynamically (Camillo Bruni) [#​41610](https://togithub.com/nodejs/node/pull/41610) - \[[`fa0439e66c`](https://togithub.com/nodejs/node/commit/fa0439e66c)] - **src**: update NODE_MODULE_VERSION to 105 (Michaël Zasso) [#​41610](https://togithub.com/nodejs/node/pull/41610) - \[[`6ec1664dc8`](https://togithub.com/nodejs/node/commit/6ec1664dc8)] - **src**: update NODE_MODULE_VERSION to 104 (Michaël Zasso) [#​40907](https://togithub.com/nodejs/node/pull/40907) - \[[`a706342368`](https://togithub.com/nodejs/node/commit/a706342368)] - **src**: add kNoBrowserGlobals flag for Environment (Cheng Zhao) [#​40532](https://togithub.com/nodejs/node/pull/40532) - \[[`0c57a37dd0`](https://togithub.com/nodejs/node/commit/0c57a37dd0)] - **src,crypto**: remove uses of AllocatedBuffer from crypto_tls.cc (Darshan Sen) [#​42589](https://togithub.com/nodejs/node/pull/42589) - \[[`be01185844`](https://togithub.com/nodejs/node/commit/be01185844)] - **src,inspector**: fix empty MaybeLocal crash (Darshan Sen) [#​42409](https://togithub.com/nodejs/node/pull/42409) - \[[`340b770d3f`](https://togithub.com/nodejs/node/commit/340b770d3f)] - **stream**: unify writableErrored and readableErrored (Robert Nagy) [#​40799](https://togithub.com/nodejs/node/pull/40799) - \[[`19064bec34`](https://togithub.com/nodejs/node/commit/19064bec34)] - **test**: delete test/pummel/test-repl-empty-maybelocal-crash.js (Darshan Sen) [#​42720](https://togithub.com/nodejs/node/pull/42720) - \[[`9d6af7d1fe`](https://togithub.com/nodejs/node/commit/9d6af7d1fe)] - **test**: improve `internal/url.js` coverage (Yoshiki Kurihara) [#​42650](https://togithub.com/nodejs/node/pull/42650) - \[[`d49df5ca8d`](https://togithub.com/nodejs/node/commit/d49df5ca8d)] - **test**: adapt message tests for V8 10.2 (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`c6b4e9604f`](https://togithub.com/nodejs/node/commit/c6b4e9604f)] - **test**: adapt test-worker-debug for V8 10.0 (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`0854fce8bc`](https://togithub.com/nodejs/node/commit/0854fce8bc)] - **test**: adapt test-v8-serdes for V8 9.9 (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`73d53fe9f5`](https://togithub.com/nodejs/node/commit/73d53fe9f5)] - **test**: only skip slow tests on Raspberry Pi devices (Richard Lau) [#​42645](https://togithub.com/nodejs/node/pull/42645) - \[[`db7fa9f4b7`](https://togithub.com/nodejs/node/commit/db7fa9f4b7)] - **test**: allow numeric string for lookupService test (Daeyeon Jeong) [#​42596](https://togithub.com/nodejs/node/pull/42596) - \[[`0525a147b2`](https://togithub.com/nodejs/node/commit/0525a147b2)] - **test**: remove an unnecessary `undefined` in wpt (Khaidi Chu) [#​41470](https://togithub.com/nodejs/node/pull/41470) - \[[`bb762c5bd0`](https://togithub.com/nodejs/node/commit/bb762c5bd0)] - **test**: simplify test-http-write-callbacks.js (Tobias Nießen) [#​42628](https://togithub.com/nodejs/node/pull/42628) - \[[`1600869eb7`](https://togithub.com/nodejs/node/commit/1600869eb7)] - **test**: fix comments in test files (Daeyeon Jeong) [#​42536](https://togithub.com/nodejs/node/pull/42536) - \[[`82181bb9b8`](https://togithub.com/nodejs/node/commit/82181bb9b8)] - **test**: fix failure in test/sequential/test-heapdump.js (Darshan Sen) [#​41772](https://togithub.com/nodejs/node/pull/41772) - \[[`ba5b5acaf1`](https://togithub.com/nodejs/node/commit/ba5b5acaf1)] - **test**: improve ` worker_threads ` coverage (Erick Wendel) [#​41818](https://togithub.com/nodejs/node/pull/41818) - \[[`f076c36335`](https://togithub.com/nodejs/node/commit/f076c36335)] - **tools**: update clang-format 1.6.0 to 1.7.0 (Rich Trott) [#​42724](https://togithub.com/nodejs/node/pull/42724) - \[[`45162bf9e7`](https://togithub.com/nodejs/node/commit/45162bf9e7)] - **tools**: update clang-format from 1.2.3 to 1.6.0 (Rich Trott) [#​42685](https://togithub.com/nodejs/node/pull/42685) - \[[`40bc08089d`](https://togithub.com/nodejs/node/commit/40bc08089d)] - **tools**: update V8 gypfiles for 10.1 (Michaël Zasso) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`09513cd1a3`](https://togithub.com/nodejs/node/commit/09513cd1a3)] - **tools**: update eslint to 8.13.0 (Node.js GitHub Bot) [#​42678](https://togithub.com/nodejs/node/pull/42678) - \[[`b99bb57416`](https://togithub.com/nodejs/node/commit/b99bb57416)] - **tools**: update gyp-next to v0.12.1 (Michaël Zasso) [#​42625](https://togithub.com/nodejs/node/pull/42625) - \[[`2468db1f53`](https://togithub.com/nodejs/node/commit/2468db1f53)] - **tools**: update lint-md-dependencies to [@​rollup/plugin-commonjs](https://togithub.com/rollup/plugin-commonjs)[@​21](https://togithub.com/21).0.3 (Node.js GitHub Bot) [#​42584](https://togithub.com/nodejs/node/pull/42584) - \[[`8a3f28a05c`](https://togithub.com/nodejs/node/commit/8a3f28a05c)] - **tools**: add v8-embedder-state-scope.h to distributed headers (Michaël Zasso) [#​41610](https://togithub.com/nodejs/node/pull/41610) - \[[`30c4e1d952`](https://togithub.com/nodejs/node/commit/30c4e1d952)] - **tools**: update V8 gypfiles for 9.8 (Michaël Zasso) [#​41610](https://togithub.com/nodejs/node/pull/41610) - \[[`1ad44094a2`](https://togithub.com/nodejs/node/commit/1ad44094a2)] - **tools**: update V8 gypfiles for 9.7 (Michaël Zasso) [#​40907](https://togithub.com/nodejs/node/pull/40907) - \[[`86b77f7d0f`](https://togithub.com/nodejs/node/commit/86b77f7d0f)] - **tools,doc**: use V8::DisposePlatform (Michaël Zasso) [#​41610](https://togithub.com/nodejs/node/pull/41610) - \[[`62e62757b3`](https://togithub.com/nodejs/node/commit/62e62757b3)] - **tools,test**: fix V8 initialization order (Camillo Bruni) [#​42657](https://togithub.com/nodejs/node/pull/42657) - \[[`0187bc5cdc`](https://togithub.com/nodejs/node/commit/0187bc5cdc)] - **v8**: make v8.writeHeapSnapshot() error codes consistent (Darshan Sen) [#​42577](https://togithub.com/nodejs/node/pull/42577) - \[[`74b9baa426`](https://togithub.com/nodejs/node/commit/74b9baa426)] - **v8**: make writeHeapSnapshot throw if fopen fails (Antonio Román) [#​41373](https://togithub.com/nodejs/node/pull/41373) ### [`v17.9.0`](https://togithub.com/nodejs/node/releases/v17.9.0) [Compare Source](https://togithub.com/nodejs/node/compare/v17.8.0...v17.9.0) ##### Notable Changes - \[[`7124f91cbf`](https://togithub.com/nodejs/node/commit/7124f91cbf)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#​42427](https://togithub.com/nodejs/node/pull/42427) - \[[`30dc6dd3fb`](https://togithub.com/nodejs/node/commit/30dc6dd3fb)] - **deps**: update undici to 4.16.0 (Node.js GitHub Bot) [#​42414](https://togithub.com/nodejs/node/pull/42414) - \[[`f0fc2744a5`](https://togithub.com/nodejs/node/commit/f0fc2744a5)] - **doc**: add [@​meixg](https://togithub.com/meixg) to collaborators (Xuguang Mei) [#​42576](https://togithub.com/nodejs/node/pull/42576) ##### Commits - \[[`bb71433334`](https://togithub.com/nodejs/node/commit/bb71433334)] - **async_hooks**: remove destroyed symbol on Promises (Gerhard Stöbich) [#​42402](https://togithub.com/nodejs/node/pull/42402) - \[[`b48a6cb3f9`](https://togithub.com/nodejs/node/commit/b48a6cb3f9)] - **bootstrap**: reset process.\_exit and process.exitCode in pre-execution (Joyee Cheung) [#​42466](https://togithub.com/nodejs/node/pull/42466) - \[[`b89f038537`](https://togithub.com/nodejs/node/commit/b89f038537)] - **bootstrap**: run inspector and event loop in snapshot builder (Joyee Cheung) [#​42466](https://togithub.com/nodejs/node/pull/42466) - \[[`177558600e`](https://togithub.com/nodejs/node/commit/177558600e)] - **bootstrap**: make I/O streams work with user-land snapshot (Joyee Cheung) [#​42466](https://togithub.com/nodejs/node/pull/42466) - \[[`e3683cb34d`](https://togithub.com/nodejs/node/commit/e3683cb34d)] - **bootstrap**: refresh options in pre-execution (Joyee Cheung) [#​42466](https://togithub.com/nodejs/node/pull/42466) - \[[`d302d2f0d2`](https://togithub.com/nodejs/node/commit/d302d2f0d2)] - **bootstrap**: use SnapshotData to pass snapshot data around (Joyee Cheung) [#​42360](https://togithub.com/nodejs/node/pull/42360) - \[[`eb3dfc00f0`](https://togithub.com/nodejs/node/commit/eb3dfc00f0)] - **buffer**: improve Blob constructor error message when passing a string (Xuguang Mei) [#​42338](https://togithub.com/nodejs/node/pull/42338) - \[[`f45d5537c1`](https://togithub.com/nodejs/node/commit/f45d5537c1)] - **buffer**: fix `atob` input validation (Antoine du Hamel) [#​42539](https://togithub.com/nodejs/node/pull/42539) - \[[`fb6a5ba8d7`](https://togithub.com/nodejs/node/commit/fb6a5ba8d7)] - **build**: remove precompiled header and debug information for host builds (Niyas Sait) [#​42538](https://togithub.com/nodejs/node/pull/42538) - \[[`1f7d2e800c`](https://togithub.com/nodejs/node/commit/1f7d2e800c)] - **build**: windows/arm64 native compilation support (Niyas Sait) [#​42408](https://togithub.com/nodejs/node/pull/42408) - \[[`d9a1d7866c`](https://togithub.com/nodejs/node/commit/d9a1d7866c)] - **build**: consolidate JS and md linting GitHub Actions (Rich Trott) [#​42572](https://togithub.com/nodejs/node/pull/42572) - \[[`ecb5be845d`](https://togithub.com/nodejs/node/commit/ecb5be845d)] - **build**: set stale action back to running nightly (Michael Dawson) [#​42549](https://togithub.com/nodejs/node/pull/42549) - \[[`f9fb7f6d96`](https://togithub.com/nodejs/node/commit/f9fb7f6d96)] - **build**: add --node-snapshot-main configure option (Joyee Cheung) [#​42466](https://togithub.com/nodejs/node/pull/42466) - \[[`c6808f088b`](https://togithub.com/nodejs/node/commit/c6808f088b)] - **build**: bump actions/checkout (Eliaz Bobadilla) [#​42460](https://togithub.com/nodejs/node/pull/42460) - \[[`9a54acb7c6`](https://togithub.com/nodejs/node/commit/9a54acb7c6)] - **child_process**: add env contents types in JSDoc (Rich Trott) [#​42494](https://togithub.com/nodejs/node/pull/42494) - \[[`a2f07380ea`](https://togithub.com/nodejs/node/commit/a2f07380ea)] - **crypto**: do not add undefined hash in webcrypto normalizeAlgorithm (Filip Skokan) [#​42559](https://togithub.com/nodejs/node/pull/42559) - \[[`9b4bd7d031`](https://togithub.com/nodejs/node/commit/9b4bd7d031)] - **crypto**: cleanup webcrypto jwk code (Filip Skokan) [#​42562](https://togithub.com/nodejs/node/pull/42562) - \[[`541a1328b0`](https://togithub.com/nodejs/node/commit/541a1328b0)] - **crypto**: fix webcrypto derive key lengths (Filip Skokan) [#​42542](https://togithub.com/nodejs/node/pull/42542) - \[[`7124f91cbf`](https://togithub.com/nodejs/node/commit/7124f91cbf)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#​42427](https://togithub.com/nodejs/node/pull/42427) - \[[`30dc6dd3fb`](https://togithub.com/nodejs/node/commit/30dc6dd3fb)] - **deps**: update undici to 4.16.0 (Node.js GitHub Bot) [#​42414](https://togithub.com/nodejs/node/pull/42414) - \[[`6e56924274`](https://togithub.com/nodejs/node/commit/6e56924274)] - **doc**: simplify Http2Stream encoding text (Rich Trott) [#​42597](https://togithub.com/nodejs/node/pull/42597) - \[[`261672b1da`](https://togithub.com/nodejs/node/commit/261672b1da)] - **doc**: remove obsolete stream API selection text (Rich Trott) [#​42586](https://togithub.com/nodejs/node/pull/42586) - \[[`beffed1880`](https://togithub.com/nodejs/node/commit/beffed1880)] - **doc**: remove faulty justification for 128-bit AES (Tobias Nießen) [#​42578](https://togithub.com/nodejs/node/pull/42578) - \[[`71f4a39086`](https://togithub.com/nodejs/node/commit/71f4a39086)] - **doc**: fix documentation of `FileHandle.prototype.appendFile` (Antoine du Hamel) [#​42588](https://togithub.com/nodejs/node/pull/42588) - \[[`c83ea22f7c`](https://togithub.com/nodejs/node/commit/c83ea22f7c)] - **doc**: change "OCSP Request" to "OCSP request" (Tobias Nießen) [#​42582](https://togithub.com/nodejs/node/pull/42582) - \[[`71ab0dea35`](https://togithub.com/nodejs/node/commit/71ab0dea35)] - **doc**: aes webcrypto unwrap is not a node-specific extensions (Filip Skokan) [#​42561](https://togithub.com/nodejs/node/pull/42561) - \[[`1c614184da`](https://togithub.com/nodejs/node/commit/1c614184da)] - **doc**: simplify recommendations in process.md (Rich Trott) [#​42556](https://togithub.com/nodejs/node/pull/42556) - \[[`c036800ddc`](https://togithub.com/nodejs/node/commit/c036800ddc)] - **doc**: clarify recommendations in stream.md (Rich Trott) [#​42555](https://togithub.com/nodejs/node/pull/42555) - \[[`dcf0abf8c7`](https://togithub.com/nodejs/node/commit/dcf0abf8c7)] - **doc**: simplify recommendation in webcrypto.md (Rich Trott) [#​42554](https://togithub.com/nodejs/node/pull/42554) - \[[`8333fa063b`](https://togithub.com/nodejs/node/commit/8333fa063b)] - **doc**: update DEP0102 text (Rich Trott) [#​42553](https://togithub.com/nodejs/node/pull/42553) - \[[`8b08bff682`](https://togithub.com/nodejs/node/commit/8b08bff682)] - **doc**: remove util.promisify() content in readline.md (Rich Trott) [#​42552](https://togithub.com/nodejs/node/pull/42552) - \[[`94492424ba`](https://togithub.com/nodejs/node/commit/94492424ba)] - **doc**: add introduction sentence for CJS (Antoine du Hamel) [#​42491](https://togithub.com/nodejs/node/pull/42491) - \[[`f0fc2744a5`](https://togithub.com/nodejs/node/commit/f0fc2744a5)] - **doc**: add [@​meixg](https://togithub.com/meixg) to collaborators (Xuguang Mei) [#​42576](https://togithub.com/nodejs/node/pull/42576) - \[[`d935fef594`](https://togithub.com/nodejs/node/commit/d935fef594)] - **doc**: consolidate CI sections (Rich Trott) [#​42534](https://togithub.com/nodejs/node/pull/42534) - \[[`fd45df314b`](https://togithub.com/nodejs/node/commit/fd45df314b)] - **doc**: document breaking change in `http.IncomingMessage` `'close'` event (Paolo Insogna) [#​42521](https://togithub.com/nodejs/node/pull/42521) - \[[`53584fa750`](https://togithub.com/nodejs/node/commit/53584fa750)] - **doc**: remove extraneous comma (Rich Trott) [#​42548](https://togithub.com/nodejs/node/pull/42548) - \[[`b819af6509`](https://togithub.com/nodejs/node/commit/b819af6509)] - **doc**: guide towards x509.fingerprint256 (Tobias Nießen) [#​42516](https://togithub.com/nodejs/node/pull/42516) - \[[`f2355e41ed`](https://togithub.com/nodejs/node/commit/f2355e41ed)] - **doc**: fix internal link in collaborator-guide.md (Daeyeon Jeong) [#​42551](https://togithub.com/nodejs/node/pull/42551) - \[[`ffc6776996`](https://togithub.com/nodejs/node/commit/ffc6776996)] - **doc**: add suggestion for OpenSSL only sec releases (Michael Dawson) [#​42456](https://togithub.com/nodejs/node/pull/42456) - \[[`1454c0297d`](https://togithub.com/nodejs/node/commit/1454c0297d)] - **doc**: fix comment text in async_hooks example (Rich Trott) [#​42499](https://togithub.com/nodejs/node/pull/42499) - \[[`b9ab9867f4`](https://togithub.com/nodejs/node/commit/b9ab9867f4)] - **doc**: add `stability` class to legacy status description (Daniel Roe) [#​42525](https://togithub.com/nodejs/node/pull/42525) - \[[`6c13988d53`](https://togithub.com/nodejs/node/commit/6c13988d53)] - **doc**: suggest checkHost in checkServerIdentity docs (Tobias Nießen) [#​42495](https://togithub.com/nodejs/node/pull/42495) - \[[`28665a9dd6`](https://togithub.com/nodejs/node/commit/28665a9dd6)] - **doc**: update security release onboarding (Joe Sepi) [#​42333](https://togithub.com/nodejs/node/pull/42333) - \[[`d335addf0c`](https://togithub.com/nodejs/node/commit/d335addf0c)] - **doc**: fix question promise API example (Xuguang Mei) [#​42465](https://togithub.com/nodejs/node/pull/42465) - \[[`7cf9febcb4`](https://togithub.com/nodejs/node/commit/7cf9febcb4)] - **doc**: remove comma splice in events.md (Rich Trott) [#​42484](https://togithub.com/nodejs/node/pull/42484) - \[[`3c3684d9f1`](https://togithub.com/nodejs/node/commit/3c3684d9f1)] - **doc**: clarify napi_finalize behavior (Alba Mendez) [#​42461](https://togithub.com/nodejs/node/pull/42461) - \[[`334cc1936b`](https://togithub.com/nodejs/node/commit/334cc1936b)] - **doc**: expand history for conditional exports changes in v12 (Greg Poole) [#​42339](https://togithub.com/nodejs/node/pull/42339) - \[[`fb146f9eaf`](https://togithub.com/nodejs/node/commit/fb146f9eaf)] - **doc**: change comma-splice to two sentences (Rich Trott) [#​42455](https://togithub.com/nodejs/node/pull/42455) - \[[`ce4b823946`](https://togithub.com/nodejs/node/commit/ce4b823946)] - **doc**: add link to section (Rich Trott) [#​42428](https://togithub.com/nodejs/node/pull/42428) - \[[`5869275479`](https://togithub.com/nodejs/node/commit/5869275479)] - **doc**: fix typo in async_context.md (Anupama Codippily) [#​42444](https://togithub.com/nodejs/node/pull/42444) - \[[`48bd9fa2c7`](https://togithub.com/nodejs/node/commit/48bd9fa2c7)] - **doc**: add `trace_gc` to diagnostic tooling support document (Tony Gorez) [#​42346](https://togithub.com/nodejs/node/pull/42346) - \[[`00f693b6b1`](https://togithub.com/nodejs/node/commit/00f693b6b1)] - **doc**: make header smaller and dropdown click-driven when JS is on (Paolo Insogna) [#​42165](https://togithub.com/nodejs/node/pull/42165) - \[[`abbb23620a`](https://togithub.com/nodejs/node/commit/abbb23620a)] - **doc**: standardize typography for \_semantic versioning\_ (Rich Trott) [#​42401](https://togithub.com/nodejs/node/pull/42401) - \[[`e763e575c6`](https://togithub.com/nodejs/node/commit/e763e575c6)] - **doc**: unify import order in CCM example (Tobias Nießen) [#​42394](https://togithub.com/nodejs/node/pull/42394) - \[[`10d638a735`](https://togithub.com/nodejs/node/commit/10d638a735)] - **doc**: update property name (Rich Trott) [#​42398](https://togithub.com/nodejs/node/pull/42398) - \[[`5589a448b7`](https://togithub.com/nodejs/node/commit/5589a448b7)] - **doc,test**: clarify ChaCha20-Poly1305 usage (Tobias Nießen) [#​42323](https://togithub.com/nodejs/node/pull/42323) - \[[`902776e674`](https://togithub.com/nodejs/node/commit/902776e674)] - **esm**: emit experimental warnings in common place (Jacob Smith) [#​42314](https://togithub.com/nodejs/node/pull/42314) - \[[`8009cb0a78`](https://togithub.com/nodejs/node/commit/8009cb0a78)] - **fs**: fix write methods param validation and docs (Livia Medeiros) [#​42631](https://togithub.com/nodejs/node/pull/42631) - \[[`a9dc3a92d9`](https://togithub.com/nodejs/node/commit/a9dc3a92d9)] - **lib**: prepare files for no-var lint rule (Rich Trott) [#​42573](https://togithub.com/nodejs/node/pull/42573) - \[[`3306fee824`](https://togithub.com/nodejs/node/commit/3306fee824)] - **lib**: source maps filter null prefix (Fabian Cook) [#​42522](https://togithub.com/nodejs/node/pull/42522) - \[[`3bac969655`](https://togithub.com/nodejs/node/commit/3bac969655)] - **lib**: improve the coverage of the validator (mawaregetsuka) [#​42443](https://togithub.com/nodejs/node/pull/42443) - \[[`b74de21cc3`](https://togithub.com/nodejs/node/commit/b74de21cc3)] - **lib**: update JSDoc for linting (Rich Trott) [#​42489](https://togithub.com/nodejs/node/pull/42489) - \[[`7766bf954f`](https://togithub.com/nodejs/node/commit/7766bf954f)] - **meta**: update .mailmap and AUTHORS (Rich Trott) [#​42602](https://togithub.com/nodejs/node/pull/42602) - \[[`93ffc5535a`](https://togithub.com/nodejs/node/commit/93ffc5535a)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​42500](https://togithub.com/nodejs/node/pull/42500) - \[[`256509056d`](https://togithub.com/nodejs/node/commit/256509056d)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​42585](https://togithub.com/nodejs/node/pull/42585) - \[[`41c2a32390`](https://togithub.com/nodejs/node/commit/41c2a32390)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​42488](https://togithub.com/nodejs/node/pull/42488) - \[[`b71a8107c0`](https://togithub.com/nodejs/node/commit/b71a8107c0)] - **net,dns**: trace tcp connection and dns by perf_hooks (theanarkh) [#​42390](https://togithub.com/nodejs/node/pull/42390) - \[[`f9f3b6e45d`](https://togithub.com/nodejs/node/commit/f9f3b6e45d)] - **node-api**: format Node-API related code (Vladimir Morozov) [#​42396](https://togithub.com/nodejs/node/pull/42396) - \[[`0bd9d9e24f`](https://togithub.com/nodejs/node/commit/0bd9d9e24f)] - **os**: avoid unnecessary usage of var (Mohammed Keyvanzadeh) [#​42563](https://togithub.com/nodejs/node/pull/42563) - \[[`e798e26dfd`](https://togithub.com/nodejs/node/commit/e798e26dfd)] - **src**: add proper mutexes for accessing FIPS state (Anna Henningsen) [#​42278](https://togithub.com/nodejs/node/pull/42278) - \[[`a1fe0d2222`](https://togithub.com/nodejs/node/commit/a1fe0d2222)] - **src**: fix typo in InspectorIoDelegate constructor (Kohei Ueno) [#​42520](https://togithub.com/nodejs/node/pull/42520) - \[[`0c54f3637b`](https://togithub.com/nodejs/node/commit/0c54f3637b)] - **src**: remove unnecessary static qualifier in crypto_dh.cc (Darshan Sen) [#​42492](https://togithub.com/nodejs/node/pull/42492) - \[[`2e6a66d7d7`](https://togithub.com/nodejs/node/commit/2e6a66d7d7)] - **src**: address 3 useless call coverity warnings (Michael Dawson) [#​42426](https://togithub.com/nodejs/node/pull/42426) - \[[`ce9d840079`](https://togithub.com/nodejs/node/commit/ce9d840079)] - **src**: properly report exceptions from AddressToJS() (Darshan Sen) [#​42054](https://togithub.com/nodejs/node/pull/42054) - \[[`c6a558c61b`](https://togithub.com/nodejs/node/commit/c6a558c61b)] - **src**: suppress false coverity warning (Michael Dawson) [#​42284](https://togithub.com/nodejs/node/pull/42284) - \[[`878148c266`](https://togithub.com/nodejs/node/commit/878148c266)] - **src**: refactor IsSupportedAuthenticatedMode (Tobias Nießen) [#​42368](https://togithub.com/nodejs/node/pull/42368) - \[[`970483ffd3`](https://togithub.com/nodejs/node/commit/970483ffd3)] - **src,crypto**: handle empty maybe correctly in crypto_dh.cc (Darshan Sen) [#​42492](https://togithub.com/nodejs/node/pull/42492) - \[[`a348f8ac1a`](https://togithub.com/nodejs/node/commit/a348f8ac1a)] - **src,crypto**: remove uses of AllocatedBuffer from crypto_dh.cc (Darshan Sen) [#​42492](https://togithub.com/nodejs/node/pull/42492) - \[[`fb25ba435c`](https://togithub.com/nodejs/node/commit/fb25ba435c)] - **test**: improve lib/internal/readline/promises.js coverage (MURAKAMI Masahiko) [#​42420](https://togithub.com/nodejs/node/pull/42420) - \[[`4cbb1ea910`](https://togithub.com/nodejs/node/commit/4cbb1ea910)] - **test**: remove hack for `atob` and `btoa` WPT tests (Antoine du Hamel) [#​42540](https://togithub.com/nodejs/node/pull/42540) - \[[`f41a4780d5`](https://togithub.com/nodejs/node/commit/f41a4780d5)] - **test**: pass data into napi_create_external (Joyee Cheung) [#​42532](https://togithub.com/nodejs/node/pull/42532) - \[[`90554572b5`](https://togithub.com/nodejs/node/commit/90554572b5)] - **test**: improve `FileHandle.prototype.write` coverage (Antoine du Hamel) [#​42541](https://togithub.com/nodejs/node/pull/42541) - \[[`797994e4c0`](https://togithub.com/nodejs/node/commit/797994e4c0)] - **test**: add test for exception handlings in debugger (Kohei Ueno) [#​42327](https://togithub.com/nodejs/node/pull/42327) - \[[`8c9b5e9a36`](https://togithub.com/nodejs/node/commit/8c9b5e9a36)] - **test**: fix typo in common/wpt.js (Ikko Ashimine) [#​42567](https://togithub.com/nodejs/node/pull/42567) - \[[`2f682091cd`](https://togithub.com/nodejs/node/commit/2f682091cd)] - **test**: fix typos in test/parallel (Daeyeon Jeong) [#​42502](https://togithub.com/nodejs/node/pull/42502) - \[[`52d1c8d6d9`](https://togithub.com/nodejs/node/commit/52d1c8d6d9)] - **test**: add trace-gc flag test (Tony Gorez) [#​42471](https://togithub.com/nodejs/node/pull/42471) - \[[`19c933c79a`](https://togithub.com/nodejs/node/commit/19c933c79a)] - **test,fs**: add fs.rm() tests for .git directories (Darshan Sen) [#​42410](https://togithub.com/nodejs/node/pull/42410) - \[[`d64c4fb94d`](https://togithub.com/nodejs/node/commit/d64c4fb94d)] - **tools**: enable no-var ESLint rule for lib (Rich Trott) [#​42573](https://togithub.com/nodejs/node/pull/42573) - \[[`a9f2636d12`](https://togithub.com/nodejs/node/commit/a9f2636d12)] - **tools**: fixed bug causing JSON format to be broken (mawaregetsuka) [#​41565](https://togithub.com/nodejs/node/pull/41565) - \[[`bff9cae16a`](https://togithub.com/nodejs/node/commit/bff9cae16a)] - **tools**: update GHA actions version (Antoine du Hamel) [#​42498](https://togithub.com/nodejs/node/pull/42498) - \[[`c6bfb225cd`](https://togithub.com/nodejs/node/commit/c6bfb225cd)] - **tools**: update eslint to 8.12.0 (Node.js GitHub Bot) [#​42489](https://togithub.com/nodejs/node/pull/42489) - \[[`464e57ffc7`](https://togithub.com/nodejs/node/commit/464e57ffc7)] - **tools**: update lint-md-dependencies to vfile-reporter@7.0.4 (Node.js GitHub Bot) [#​42487](https://togithub.com/nodejs/node/pull/42487) - \[[`13dd8e73df`](https://togithub.com/nodejs/node/commit/13dd8e73df)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#​42416](https://togithub.com/nodejs/node/pull/42416) - \[[`3a1b0e5b87`](https://togithub.com/nodejs/node/commit/3a1b0e5b87)] - **tools**: bump cpplint to 1.6.0 (Rich Trott) [#​42416](https://togithub.com/nodejs/node/pull/42416) - \[[`9344a06d9c`](https://togithub.com/nodejs/node/commit/9344a06d9c)] - **tools**: fix skip PR if CI is still running (Xuguang Mei) [#​42377](https://togithub.com/nodejs/node/pull/42377) ### [`v17.8.0`](https://togithub.com/nodejs/node/releases/v17.8.0) [Compare Source](https://togithub.com/nodejs/node/compare/v17.7.2...v17.8.0) ##### Notable Changes - \[[`3bd0078457`](https://togithub.com/nodejs/node/commit/3bd0078457)] - **doc**: add [@​ShogunPanda](https://togithub.

Configuration

📅 Schedule: "before 7am every weekday" in timezone Europe/Brussels.

🚦 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 WhiteSource Renovate. View repository job log here.