-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build(deps): bump follow-redirects from 1.15.5 to 1.15.6 in /subgraph in the npm_and_yarn group across 1 directory #33
Conversation
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fix: deploy, subgraph, gha
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fix: subgraph cmd
* legacy, cleaup tasks * update readme titlt * remove cast from makefile
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [node](https://togithub.com/nodejs/node) | stage | minor | `20.11.1-bookworm` -> `20.12.0-bookworm` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/nodejs/node/badge)](https://securityscorecards.dev/viewer/?uri=github.com/nodejs/node) | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v20.12.0`](https://togithub.com/nodejs/node/releases/tag/v20.12.0): 2024-03-26, Version 20.12.0 'Iron' (LTS), @​richardlau [Compare Source](https://togithub.com/nodejs/node/compare/v20.11.1...v20.12.0) ##### Notable Changes ##### crypto: implement crypto.hash() This patch introduces a helper crypto.hash() that computes a digest from the input at one shot. This can be 1.2-2x faster than the object-based createHash() for smaller inputs (<= 5MB) that are readily available (not streamed) and incur less memory overhead since no intermediate objects will be created. ```js const crypto = require('node:crypto'); // Hashing a string and return the result as a hex-encoded string. const string = 'Node.js'; // 10b3493287f831e81a438811a1ffba01f8cec4b7 console.log(crypto.hash('sha1', string)); ``` Contributed by Joyee Cheung in [#​51044](https://togithub.com/nodejs/node/pull/51044). ##### Loading and parsing environment variables - `process.loadEnvFile(path)`: - Use this function to load the `.env` file. If no path is specified, it automatically loads the .env file in the current directory. Example: `process.loadEnvFile()`. - Load a specific .env file by specifying its path. Example: `process.loadEnvFile('./development.env')`. - `util.parseEnv(content)`: - Use this function to parse an existing string containing environment variable assignments. - Example usage: `require('node:util').parseEnv('HELLO=world')`. Contributed by Yagiz Nizipli in [#​51476](https://togithub.com/nodejs/node/pull/51476). ##### New connection attempt events Three new events were added in the `net.createConnection` flow: - `connectionAttempt`: Emitted when a new connection attempt is established. In case of Happy Eyeballs, this might emitted multiple times. - `connectionAttemptFailed`: Emitted when a connection attempt failed. In case of Happy Eyeballs, this might emitted multiple times. - `connectionAttemptTimeout`: Emitted when a connection attempt timed out. In case of Happy Eyeballs, this will not be emitted for the last attempt. This is not emitted at all if Happy Eyeballs is not used. Additionally, a previous bug has been fixed where a new connection attempt could have been started after a previous one failed and after the connection was destroyed by the user. This led to a failed assertion. Contributed by Paolo Insogna in [#​51045](https://togithub.com/nodejs/node/pull/51045). ##### Permission Model changes Node.js 20.12.0 comes with several fixes for the experimental permission model and two new semver-minor commits. We're adding a new flag `--allow-addons` to enable addon usage when using the Permission Model. ```console $ node --experimental-permission --allow-addons ``` Contributed by Rafael Gonzaga in [#​51183](https://togithub.com/nodejs/node/pull/51183) And relative paths are now supported through the `--allow-fs-*` flags. Therefore, with this release one can use: ```console $ node --experimental-permission --allow-fs-read=./index.js ``` To give only read access to the entrypoint of the application. Contributed by Rafael Gonzaga and Carlos Espa in [#​50758](https://togithub.com/nodejs/node/pull/50758). ##### sea: support embedding assets Users can now include assets by adding a key-path dictionary to the configuration as the `assets` field. At build time, Node.js would read the assets from the specified paths and bundle them into the preparation blob. In the generated executable, users can retrieve the assets using the `sea.getAsset()` and `sea.getAssetAsBlob()` API. ```json { "main": "/path/to/bundled/script.js", "output": "/path/to/write/the/generated/blob.blob", "assets": { "a.jpg": "/path/to/a.jpg", "b.txt": "/path/to/b.txt" } } ``` The single-executable application can access the assets as follows: ```cjs const { getAsset } = require('node:sea'); // Returns a copy of the data in an ArrayBuffer const image = getAsset('a.jpg'); // Returns a string decoded from the asset as UTF8. const text = getAsset('b.txt', 'utf8'); // Returns a Blob containing the asset without copying. const blob = getAssetAsBlob('a.jpg'); ``` Contributed by Joyee Cheung in [#​50960](https://togithub.com/nodejs/node/pull/50960). ##### Support configurable snapshot through `--build-snapshot-config` flag We are adding a new flag `--build-snapshot-config` to configure snapshots through a custom JSON configuration file. ```console $ node --build-snapshot-config=/path/to/myconfig.json ``` When using this flag, additional script files provided on the command line will not be executed and instead be interpreted as regular command line arguments. These changes were contributed by Joyee Cheung and Anna Henningsen in [#​50453](https://togithub.com/nodejs/node/pull/50453) ##### Text Styling - `util.styleText(format, text)`: This function returns a formatted text considering the `format` passed. A new API has been created to format text based on `util.inspect.colors`, enabling you to style text in different colors (such as red, blue, ...) and emphasis (italic, bold, ...). ```cjs const { styleText } = require('node:util'); const errorMessage = styleText('red', 'Error! Error!'); console.log(errorMessage); ``` Contributed by Rafael Gonzaga in [#​51850](https://togithub.com/nodejs/node/pull/51850). ##### vm: support using the default loader to handle dynamic import() This patch adds support for using `vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER` as the `importModuleDynamically` option in all vm APIs that take this option except `vm.SourceTextModule`. This allows users to have a shortcut to support dynamic `import()` in the compiled code without missing the compilation cache if they don't need customization of the loading process. We emit an experimental warning when the `import()` is actually handled by the default loader through this option instead of requiring `--experimental-vm-modules`. ```js const { Script, constants } = require('node:vm'); const { resolve } = require('node:path'); const { writeFileSync } = require('node:fs'); // Write test.js and test.txt to the directory where the current script // being run is located. writeFileSync(resolve(__dirname, 'test.mjs'), 'export const filename = "./test.json";'); writeFileSync(resolve(__dirname, 'test.json'), '{"hello": "world"}'); // Compile a script that loads test.mjs and then test.json // as if the script is placed in the same directory. const script = new Script( `(async function() { const { filename } = await import('./test.mjs'); return import(filename, { with: { type: 'json' } }) })();`, { filename: resolve(__dirname, 'test-with-default.js'), importModuleDynamically: constants.USE_MAIN_CONTEXT_DEFAULT_LOADER, }); // { default: { hello: 'world' } } script.runInThisContext().then(console.log); ``` Contributed by Joyee Cheung in [#​51244](https://togithub.com/nodejs/node/pull/51244). ##### Root certificates updated to NSS 3.98 Certificates added: - Telekom Security TLS ECC Root 2020 - Telekom Security TLS RSA Root 2023 Certificates removed: - Security Communication Root CA ##### Updated dependencies - acorn updated to 8.11.3. - ada updated to 2.7.6. - base64 updated to 0.5.2. - brotli updated to 1.1.0. - c-ares updated to 1.27.0. - corepack updated to 0.25.2. - ICU updated to 74.2. Includes CLDR 44.1 and Unicode 15.1. - nghttp2 updated to 1.60.0. - npm updated to 10.5.0. Fixes a regression in signals not being passed onto child processes. - simdutf8 updated to 4.0.8. - Timezone updated to 2024a. - zlib updated to 1.3.0.1-motley-40e35a7. ##### Other notable changes - \[[`4f49e9d000`](https://togithub.com/nodejs/node/commit/4f49e9d000)] - **(SEMVER-MINOR)** **build**: build opt to set local location of headers (Michael Dawson) [#​51525](https://togithub.com/nodejs/node/pull/51525) - \[[`ccdb01187b`](https://togithub.com/nodejs/node/commit/ccdb01187b)] - **doc**: add zcbenz to collaborators (Cheng Zhao) [#​51812](https://togithub.com/nodejs/node/pull/51812) - \[[`481af53aea`](https://togithub.com/nodejs/node/commit/481af53aea)] - **doc**: add lemire to collaborators (Daniel Lemire) [#​51572](https://togithub.com/nodejs/node/pull/51572) - \[[`5ba4d96525`](https://togithub.com/nodejs/node/commit/5ba4d96525)] - **(SEMVER-MINOR)** **http2**: add h2 compat support for appendHeader (Tim Perry) [#​51412](https://togithub.com/nodejs/node/pull/51412) - \[[`0861498e8b`](https://togithub.com/nodejs/node/commit/0861498e8b)] - **(SEMVER-MINOR)** **http2**: add server handshake utility (snek) [#​51172](https://togithub.com/nodejs/node/pull/51172) - \[[`6b08d006ee`](https://togithub.com/nodejs/node/commit/6b08d006ee)] - **(SEMVER-MINOR)** **http2**: receive customsettings (Marten Richter) [#​51323](https://togithub.com/nodejs/node/pull/51323) - \[[`7894989bf0`](https://togithub.com/nodejs/node/commit/7894989bf0)] - **(SEMVER-MINOR)** **lib**: move encodingsMap to internal/util (Joyee Cheung) [#​51044](https://togithub.com/nodejs/node/pull/51044) - \[[`a58c98ea85`](https://togithub.com/nodejs/node/commit/a58c98ea85)] - **(SEMVER-MINOR)** **src**: print string content better in BlobDeserializer (Joyee Cheung) [#​50960](https://togithub.com/nodejs/node/pull/50960) - \[[`c3c0a3ee5c`](https://togithub.com/nodejs/node/commit/c3c0a3ee5c)] - **(SEMVER-MINOR)** **src**: support multi-line values for .env file (IlyasShabi) [#​51289](https://togithub.com/nodejs/node/pull/51289) - \[[`2a921966c6`](https://togithub.com/nodejs/node/commit/2a921966c6)] - **(SEMVER-MINOR)** **src**: do not coerce dotenv paths (Tobias Nießen) [#​51425](https://togithub.com/nodejs/node/pull/51425) - \[[`0dee86f295`](https://togithub.com/nodejs/node/commit/0dee86f295)] - **(SEMVER-MINOR)** **src**: support configurable snapshot (Joyee Cheung) [#​50453](https://togithub.com/nodejs/node/pull/50453) - \[[`ade6614067`](https://togithub.com/nodejs/node/commit/ade6614067)] - **(SEMVER-MINOR)** **stream**: add support for `deflate-raw` format to webstreams compression (Damian Krzeminski) [#​50097](https://togithub.com/nodejs/node/pull/50097) - \[[`fe922f05e4`](https://togithub.com/nodejs/node/commit/fe922f05e4)] - **(SEMVER-MINOR)** **timers**: export timers.promises (Marco Ippolito) [#​51246](https://togithub.com/nodejs/node/pull/51246) ##### Commits - \[[`cbda4e9fc5`](https://togithub.com/nodejs/node/commit/cbda4e9fc5)] - **assert,crypto**: make KeyObject and CryptoKey testable for equality (Filip Skokan) [#​50897](https://togithub.com/nodejs/node/pull/50897) - \[[`92fca59647`](https://togithub.com/nodejs/node/commit/92fca59647)] - **async_hooks,inspector**: implement inspector api without async_wrap (Gabriel Bota) [#​51501](https://togithub.com/nodejs/node/pull/51501) - \[[`029ca982dc`](https://togithub.com/nodejs/node/commit/029ca982dc)] - **benchmark**: update iterations of benchmark/async_hooks/async-local- (Lei Shi) [#​51420](https://togithub.com/nodejs/node/pull/51420) - \[[`350e9fee8d`](https://togithub.com/nodejs/node/commit/350e9fee8d)] - **benchmark**: update iterations of benchmark/domain/domain-fn-args.js (Lei Shi) [#​51408](https://togithub.com/nodejs/node/pull/51408) - \[[`40fda97deb`](https://togithub.com/nodejs/node/commit/40fda97deb)] - **benchmark**: update iterations of assert/deepequal-typedarrays.js (Lei Shi) [#​51419](https://togithub.com/nodejs/node/pull/51419) - \[[`1b2e3b7049`](https://togithub.com/nodejs/node/commit/1b2e3b7049)] - **benchmark**: update iterations of benchmark/assert/deepequal-map.js (Lei Shi) [#​51416](https://togithub.com/nodejs/node/pull/51416) - \[[`7639259203`](https://togithub.com/nodejs/node/commit/7639259203)] - **benchmark**: rename startup.js to startup-core.js (Joyee Cheung) [#​51669](https://togithub.com/nodejs/node/pull/51669) - \[[`4be33b5577`](https://togithub.com/nodejs/node/commit/4be33b5577)] - **benchmark**: remove dependency on unshipped tools (Adam Majer) [#​51146](https://togithub.com/nodejs/node/pull/51146) - \[[`bd03a154a9`](https://togithub.com/nodejs/node/commit/bd03a154a9)] - **benchmark**: update iterations in benchmark/perf_hooks (Lei Shi) [#​50869](https://togithub.com/nodejs/node/pull/50869) - \[[`19b943b909`](https://togithub.com/nodejs/node/commit/19b943b909)] - **benchmark**: update iterations in benchmark/crypto/aes-gcm-throughput.js (Lei Shi) [#​50929](https://togithub.com/nodejs/node/pull/50929) - \[[`278c990dea`](https://togithub.com/nodejs/node/commit/278c990dea)] - **benchmark**: update iteration and size in benchmark/crypto/randomBytes.js (Lei Shi) [#​50868](https://togithub.com/nodejs/node/pull/50868) - \[[`443d4fcff3`](https://togithub.com/nodejs/node/commit/443d4fcff3)] - **benchmark**: add undici websocket benchmark (Chenyu Yang) [#​50586](https://togithub.com/nodejs/node/pull/50586) - \[[`3ab6143380`](https://togithub.com/nodejs/node/commit/3ab6143380)] - **benchmark**: add create-hash benchmark (Joyee Cheung) [#​51026](https://togithub.com/nodejs/node/pull/51026) - \[[`6a8ff09332`](https://togithub.com/nodejs/node/commit/6a8ff09332)] - **benchmark**: update interations and len in benchmark/util/text-decoder.js (Lei Shi) [#​50938](https://togithub.com/nodejs/node/pull/50938) - \[[`22b53bc1fa`](https://togithub.com/nodejs/node/commit/22b53bc1fa)] - **benchmark**: update iterations of benchmark/util/type-check.js (Lei Shi) [#​50937](https://togithub.com/nodejs/node/pull/50937) - \[[`f56bda5109`](https://togithub.com/nodejs/node/commit/f56bda5109)] - **benchmark**: update iterations in benchmark/util/normalize-encoding.js (Lei Shi) [#​50934](https://togithub.com/nodejs/node/pull/50934) - \[[`4fc83e1ce3`](https://togithub.com/nodejs/node/commit/4fc83e1ce3)] - **benchmark**: update iterations in benchmark/util/inspect-array.js (Lei Shi) [#​50933](https://togithub.com/nodejs/node/pull/50933) - \[[`0edddcfc19`](https://togithub.com/nodejs/node/commit/0edddcfc19)] - **benchmark**: update iterations in benchmark/util/format.js (Lei Shi) [#​50932](https://togithub.com/nodejs/node/pull/50932) - \[[`f109961fd1`](https://togithub.com/nodejs/node/commit/f109961fd1)] - **benchmark**: update iterations in benchmark/crypto/hkdf.js (Lei Shi) [#​50866](https://togithub.com/nodejs/node/pull/50866) - \[[`1e923f11f2`](https://togithub.com/nodejs/node/commit/1e923f11f2)] - **benchmark**: update iterations in benchmark/crypto/get-ciphers.js (Lei Shi) [#​50863](https://togithub.com/nodejs/node/pull/50863) - \[[`f13643da06`](https://togithub.com/nodejs/node/commit/f13643da06)] - **benchmark**: update number of iterations for `util.inspect` (kylo5aby) [#​50651](https://togithub.com/nodejs/node/pull/50651) - \[[`03b19cbd2a`](https://togithub.com/nodejs/node/commit/03b19cbd2a)] - **bootstrap**: improve snapshot unsupported builtin warnings (Joyee Cheung) [#​50944](https://togithub.com/nodejs/node/pull/50944) - \[[`51ea5b60a9`](https://togithub.com/nodejs/node/commit/51ea5b60a9)] - **build**: fix arm64 host cross-compilation in GN (Cheng Zhao) [#​51903](https://togithub.com/nodejs/node/pull/51903) - \[[`9f5547afa2`](https://togithub.com/nodejs/node/commit/9f5547afa2)] - ***Revert*** "**build**: workaround for node-core-utils" (Richard Lau) [#​51975](https://togithub.com/nodejs/node/pull/51975) - \[[`58255e73ae`](https://togithub.com/nodejs/node/commit/58255e73ae)] - **build**: respect the `NODE` env variable in `Makefile` (Antoine du Hamel) [#​51743](https://togithub.com/nodejs/node/pull/51743) - \[[`0a7419bf0b`](https://togithub.com/nodejs/node/commit/0a7419bf0b)] - ***Revert*** "**build**: fix warning in cares under GN build" (Luigi Pinca) [#​51865](https://togithub.com/nodejs/node/pull/51865) - \[[`4118174b85`](https://togithub.com/nodejs/node/commit/4118174b85)] - **build**: remove `librt` libs link for Android compatibility (BuShe Pie) [#​51632](https://togithub.com/nodejs/node/pull/51632) - \[[`012da16b85`](https://togithub.com/nodejs/node/commit/012da16b85)] - **build**: do not rely on gn_helpers in GN build (Cheng Zhao) [#​51439](https://togithub.com/nodejs/node/pull/51439) - \[[`93fcf52990`](https://togithub.com/nodejs/node/commit/93fcf52990)] - **build**: fix warning in cares under GN build (Cheng Zhao) [#​51687](https://togithub.com/nodejs/node/pull/51687) - \[[`2176495455`](https://togithub.com/nodejs/node/commit/2176495455)] - **build**: fix building js2c with GN (Cheng Zhao) [#​51818](https://togithub.com/nodejs/node/pull/51818) - \[[`d6e702f885`](https://togithub.com/nodejs/node/commit/d6e702f885)] - **build**: encode non-ASCII Latin1 characters as one byte in JS2C (Joyee Cheung) [#​51605](https://togithub.com/nodejs/node/pull/51605) - \[[`4f49e9d000`](https://togithub.com/nodejs/node/commit/4f49e9d000)] - **(SEMVER-MINOR)** **build**: build opt to set local location of headers (Michael Dawson) [#​51525](https://togithub.com/nodejs/node/pull/51525) - \[[`8e84aad0ef`](https://togithub.com/nodejs/node/commit/8e84aad0ef)] - **build**: use macOS m1 machines for testing (Yagiz Nizipli) [#​51620](https://togithub.com/nodejs/node/pull/51620) - \[[`5fce1a17e2`](https://togithub.com/nodejs/node/commit/5fce1a17e2)] - **build**: check before removing %config% link (liudonghua) [#​51437](https://togithub.com/nodejs/node/pull/51437) - \[[`46d6dce1a8`](https://togithub.com/nodejs/node/commit/46d6dce1a8)] - **build**: increase parallel executions in github (Yagiz Nizipli) [#​51554](https://togithub.com/nodejs/node/pull/51554) - \[[`8b3ead1f3e`](https://togithub.com/nodejs/node/commit/8b3ead1f3e)] - **build**: remove copyright header in node.gni (Cheng Zhao) [#​51535](https://togithub.com/nodejs/node/pull/51535) - \[[`d8b86ad363`](https://togithub.com/nodejs/node/commit/d8b86ad363)] - **build**: update GN build files for ngtcp2 (Cheng Zhao) [#​51313](https://togithub.com/nodejs/node/pull/51313) - \[[`ba0ffddd2d`](https://togithub.com/nodejs/node/commit/ba0ffddd2d)] - **build**: fix for VScode "Reopen in Container" (Serg Kryvonos) [#​51271](https://togithub.com/nodejs/node/pull/51271) - \[[`8b97e2e0a7`](https://togithub.com/nodejs/node/commit/8b97e2e0a7)] - **build**: add `-flax-vector-conversions` to V8 build (Michaël Zasso) [#​51257](https://togithub.com/nodejs/node/pull/51257) - \[[`bd528c7dc0`](https://togithub.com/nodejs/node/commit/bd528c7dc0)] - **build**: fix warnings from uv for gn build (Cheng Zhao) [#​51069](https://togithub.com/nodejs/node/pull/51069) - \[[`ffe467b062`](https://togithub.com/nodejs/node/commit/ffe467b062)] - **build,tools**: make addons tests work with GN (Cheng Zhao) [#​50737](https://togithub.com/nodejs/node/pull/50737) - \[[`448d67109a`](https://togithub.com/nodejs/node/commit/448d67109a)] - **(SEMVER-MINOR)** **crypto**: implement crypto.hash() (Joyee Cheung) [#​51044](https://togithub.com/nodejs/node/pull/51044) - \[[`48959dd2b4`](https://togithub.com/nodejs/node/commit/48959dd2b4)] - **crypto**: update root certificates to NSS 3.98 (Node.js GitHub Bot) [#​51794](https://togithub.com/nodejs/node/pull/51794) - \[[`68e8b2c492`](https://togithub.com/nodejs/node/commit/68e8b2c492)] - **crypto**: use EVP_MD_fetch and cache EVP_MD for hashes (Joyee Cheung) [#​51034](https://togithub.com/nodejs/node/pull/51034) - \[[`adb5d69621`](https://togithub.com/nodejs/node/commit/adb5d69621)] - **crypto**: update CryptoKey symbol properties (Filip Skokan) [#​50897](https://togithub.com/nodejs/node/pull/50897) - \[[`df0213fd3d`](https://togithub.com/nodejs/node/commit/df0213fd3d)] - **deps**: update nghttp2 to 1.60.0 (Node.js GitHub Bot) [#​51948](https://togithub.com/nodejs/node/pull/51948) - \[[`208dd887a5`](https://togithub.com/nodejs/node/commit/208dd887a5)] - **deps**: upgrade npm to 10.5.0 (npm team) [#​51913](https://togithub.com/nodejs/node/pull/51913) - \[[`587e70e1ee`](https://togithub.com/nodejs/node/commit/587e70e1ee)] - **deps**: update corepack to 0.25.2 (Node.js GitHub Bot) [#​51810](https://togithub.com/nodejs/node/pull/51810) - \[[`38343c4857`](https://togithub.com/nodejs/node/commit/38343c4857)] - **deps**: update c-ares to 1.27.0 (Node.js GitHub Bot) [#​51846](https://togithub.com/nodejs/node/pull/51846) - \[[`c9974f621c`](https://togithub.com/nodejs/node/commit/c9974f621c)] - **deps**: update c-ares to 1.26.0 (Node.js GitHub Bot) [#​51582](https://togithub.com/nodejs/node/pull/51582) - \[[`0aa18e1a1c`](https://togithub.com/nodejs/node/commit/0aa18e1a1c)] - **deps**: update googletest to [`6a59382`](https://togithub.com/nodejs/node/commit/6a59382) (Node.js GitHub Bot) [#​51580](https://togithub.com/nodejs/node/pull/51580) - \[[`f871bc6ddc`](https://togithub.com/nodejs/node/commit/f871bc6ddc)] - **deps**: update nghttp2 to 1.59.0 (Node.js GitHub Bot) [#​51581](https://togithub.com/nodejs/node/pull/51581) - \[[`94f8ee8717`](https://togithub.com/nodejs/node/commit/94f8ee8717)] - **deps**: update corepack to 0.24.1 (Node.js GitHub Bot) [#​51459](https://togithub.com/nodejs/node/pull/51459) - \[[`c23ce06e6b`](https://togithub.com/nodejs/node/commit/c23ce06e6b)] - **deps**: update ada to 2.7.6 (Node.js GitHub Bot) [#​51542](https://togithub.com/nodejs/node/pull/51542) - \[[`372ce69de1`](https://togithub.com/nodejs/node/commit/372ce69de1)] - **deps**: update ada to 2.7.5 (Node.js GitHub Bot) [#​51542](https://togithub.com/nodejs/node/pull/51542) - \[[`133719b2c9`](https://togithub.com/nodejs/node/commit/133719b2c9)] - **deps**: update googletest to [`7c07a86`](https://togithub.com/nodejs/node/commit/7c07a86) (Node.js GitHub Bot) [#​51458](https://togithub.com/nodejs/node/pull/51458) - \[[`35675aa07f`](https://togithub.com/nodejs/node/commit/35675aa07f)] - **deps**: update acorn-walk to 8.3.2 (Node.js GitHub Bot) [#​51457](https://togithub.com/nodejs/node/pull/51457) - \[[`ca73f55a22`](https://togithub.com/nodejs/node/commit/ca73f55a22)] - **deps**: update base64 to 0.5.2 (Node.js GitHub Bot) [#​51455](https://togithub.com/nodejs/node/pull/51455) - \[[`c9dad18191`](https://togithub.com/nodejs/node/commit/c9dad18191)] - **deps**: compile c-ares with C11 support (Michaël Zasso) [#​51410](https://togithub.com/nodejs/node/pull/51410) - \[[`a727fa73ee`](https://togithub.com/nodejs/node/commit/a727fa73ee)] - **deps**: upgrade npm to 10.3.0 (npm team) [#​51431](https://togithub.com/nodejs/node/pull/51431) - \[[`834bbfd039`](https://togithub.com/nodejs/node/commit/834bbfd039)] - **deps**: update c-ares to 1.25.0 (Node.js GitHub Bot) [#​51385](https://togithub.com/nodejs/node/pull/51385) - \[[`4c8fa3e7c2`](https://togithub.com/nodejs/node/commit/4c8fa3e7c2)] - **deps**: update uvwasi to 0.0.20 and fixup tests (Michael Dawson) [#​51355](https://togithub.com/nodejs/node/pull/51355) - \[[`bd183ef2af`](https://togithub.com/nodejs/node/commit/bd183ef2af)] - **deps**: add nghttp3/\*\*/.deps to .gitignore (Luigi Pinca) [#​51400](https://togithub.com/nodejs/node/pull/51400) - \[[`1d8169995c`](https://togithub.com/nodejs/node/commit/1d8169995c)] - **deps**: update corepack to 0.24.0 (Node.js GitHub Bot) [#​51318](https://togithub.com/nodejs/node/pull/51318) - \[[`4dfbbb8789`](https://togithub.com/nodejs/node/commit/4dfbbb8789)] - **deps**: update acorn to 8.11.3 (Node.js GitHub Bot) [#​51317](https://togithub.com/nodejs/node/pull/51317) - \[[`7d60877fa3`](https://togithub.com/nodejs/node/commit/7d60877fa3)] - **deps**: update brotli to 1.1.0 (Node.js GitHub Bot) [#​50804](https://togithub.com/nodejs/node/pull/50804) - \[[`1b99a3f0af`](https://togithub.com/nodejs/node/commit/1b99a3f0af)] - **deps**: update zlib to 1.3.0.1-motley-40e35a7 (Node.js GitHub Bot) [#​51274](https://togithub.com/nodejs/node/pull/51274) - \[[`2270285839`](https://togithub.com/nodejs/node/commit/2270285839)] - **deps**: update simdutf to 4.0.8 (Node.js GitHub Bot) [#​51000](https://togithub.com/nodejs/node/pull/51000) - \[[`61d1535d84`](https://togithub.com/nodejs/node/commit/61d1535d84)] - **deps**: V8: cherry-pick [`de611e6`](https://togithub.com/nodejs/node/commit/de611e69ad51) (Keyhan Vakil) [#​51200](https://togithub.com/nodejs/node/pull/51200) - \[[`04323fd595`](https://togithub.com/nodejs/node/commit/04323fd595)] - **deps**: update googletest to [`530d5c8`](https://togithub.com/nodejs/node/commit/530d5c8) (Node.js GitHub Bot) [#​51191](https://togithub.com/nodejs/node/pull/51191) - \[[`454b4f8d7e`](https://togithub.com/nodejs/node/commit/454b4f8d7e)] - **deps**: update acorn-walk to 8.3.1 (Node.js GitHub Bot) [#​50457](https://togithub.com/nodejs/node/pull/50457) - \[[`cc693eb908`](https://togithub.com/nodejs/node/commit/cc693eb908)] - **deps**: update acorn-walk to 8.3.0 (Node.js GitHub Bot) [#​50457](https://togithub.com/nodejs/node/pull/50457) - \[[`09519c6655`](https://togithub.com/nodejs/node/commit/09519c6655)] - **deps**: update zlib to 1.3.0.1-motley-dd5fc13 (Node.js GitHub Bot) [#​51105](https://togithub.com/nodejs/node/pull/51105) - \[[`a2f39e9168`](https://togithub.com/nodejs/node/commit/a2f39e9168)] - **deps**: V8: cherry-pick [`0fd478b`](https://togithub.com/nodejs/node/commit/0fd478bcdabd) (Joyee Cheung) [#​50572](https://togithub.com/nodejs/node/pull/50572) - \[[`1aaf156ea7`](https://togithub.com/nodejs/node/commit/1aaf156ea7)] - **deps**: update zlib to 1.3-22124f5 (Node.js GitHub Bot) [#​50910](https://togithub.com/nodejs/node/pull/50910) - \[[`3f4e254047`](https://togithub.com/nodejs/node/commit/3f4e254047)] - **deps**: update googletest to [`76bb2af`](https://togithub.com/nodejs/node/commit/76bb2af) (Node.js GitHub Bot) [#​50555](https://togithub.com/nodejs/node/pull/50555) - \[[`702684c008`](https://togithub.com/nodejs/node/commit/702684c008)] - **deps**: update googletest to [`b10fad3`](https://togithub.com/nodejs/node/commit/b10fad3) (Node.js GitHub Bot) [#​50555](https://togithub.com/nodejs/node/pull/50555) - \[[`4ee7f29657`](https://togithub.com/nodejs/node/commit/4ee7f29657)] - **deps**: update timezone to 2024a (Michaël Zasso) [#​51723](https://togithub.com/nodejs/node/pull/51723) - \[[`452d74c8b6`](https://togithub.com/nodejs/node/commit/452d74c8b6)] - **deps**: update icu to 74.2 (Michaël Zasso) [#​51723](https://togithub.com/nodejs/node/pull/51723) - \[[`e6fc5a5ee1`](https://togithub.com/nodejs/node/commit/e6fc5a5ee1)] - **deps**: update timezone to 2023d (Node.js GitHub Bot) [#​51461](https://togithub.com/nodejs/node/pull/51461) - \[[`4ee0f8306b`](https://togithub.com/nodejs/node/commit/4ee0f8306b)] - **deps**: update icu to 74.1 (Node.js GitHub Bot) [#​50515](https://togithub.com/nodejs/node/pull/50515) - \[[`cb49f31480`](https://togithub.com/nodejs/node/commit/cb49f31480)] - **deps**: cherry-pick [libuv/libuv@`d09441c`](https://togithub.com/libuv/libuv/commit/d09441c) (Richard Lau) [#​51976](https://togithub.com/nodejs/node/pull/51976) - \[[`ea50540c5e`](https://togithub.com/nodejs/node/commit/ea50540c5e)] - ***Revert*** "**deps**: V8: cherry-pick [`13192d6`](https://togithub.com/nodejs/node/commit/13192d6e10fa)" (kxxt) [#​51495](https://togithub.com/nodejs/node/pull/51495) - \[[`6fd1617ab4`](https://togithub.com/nodejs/node/commit/6fd1617ab4)] - **doc**: add policy for distribution (Geoffrey Booth) [#​51918](https://togithub.com/nodejs/node/pull/51918) - \[[`fc0b389006`](https://togithub.com/nodejs/node/commit/fc0b389006)] - **doc**: fix actual result of example is different in events (Deokjin Kim) [#​51925](https://togithub.com/nodejs/node/pull/51925) - \[[`93d6d66339`](https://togithub.com/nodejs/node/commit/93d6d66339)] - **doc**: clarify Corepack threat model (Antoine du Hamel) [#​51917](https://togithub.com/nodejs/node/pull/51917) - \[[`276d1d1d65`](https://togithub.com/nodejs/node/commit/276d1d1d65)] - **doc**: add stability index to crypto.hash() (Joyee Cheung) [#​51978](https://togithub.com/nodejs/node/pull/51978) - \[[`473af948b5`](https://togithub.com/nodejs/node/commit/473af948b5)] - **doc**: remove redundant backquote which breaks sentence (JounQin) [#​51904](https://togithub.com/nodejs/node/pull/51904) - \[[`b52b249b05`](https://togithub.com/nodejs/node/commit/b52b249b05)] - **doc**: update node-api/node-addon-api team link to sharing project news (Ulises Gascón) [#​51877](https://togithub.com/nodejs/node/pull/51877) - \[[`a74c373ea4`](https://togithub.com/nodejs/node/commit/a74c373ea4)] - **doc**: add website team to sharing project news (Ulises Gascón) [#​49002](https://togithub.com/nodejs/node/pull/49002) - \[[`b7ce547d41`](https://togithub.com/nodejs/node/commit/b7ce547d41)] - **doc**: update guide link for Event Loop (Shrujal Shah) [#​51874](https://togithub.com/nodejs/node/pull/51874) - \[[`3dfee7ee33`](https://togithub.com/nodejs/node/commit/3dfee7ee33)] - **doc**: change `ExperimentalWarnings` to `ExperimentalWarning` (Ameet Kaustav) [#​51741](https://togithub.com/nodejs/node/pull/51741) - \[[`740d0679e7`](https://togithub.com/nodejs/node/commit/740d0679e7)] - **doc**: add Paolo to TSC members (Michael Dawson) [#​51825](https://togithub.com/nodejs/node/pull/51825) - \[[`3240a2f349`](https://togithub.com/nodejs/node/commit/3240a2f349)] - **doc**: reserve 123 for Electron 30 (Keeley Hammond) [#​51803](https://togithub.com/nodejs/node/pull/51803) - \[[`597e3db0f9`](https://togithub.com/nodejs/node/commit/597e3db0f9)] - **doc**: add mention to GPG_TTY (Rafael Gonzaga) [#​51806](https://togithub.com/nodejs/node/pull/51806) - \[[`ccdb01187b`](https://togithub.com/nodejs/node/commit/ccdb01187b)] - **doc**: add zcbenz to collaborators (Cheng Zhao) [#​51812](https://togithub.com/nodejs/node/pull/51812) - \[[`3a3de00437`](https://togithub.com/nodejs/node/commit/3a3de00437)] - **doc**: add entry to stewards (Rafael Gonzaga) [#​51760](https://togithub.com/nodejs/node/pull/51760) - \[[`06b882d2fa`](https://togithub.com/nodejs/node/commit/06b882d2fa)] - **doc**: update technical priorities for 2023 (Jean Burellier) [#​47523](https://togithub.com/nodejs/node/pull/47523) - \[[`9a68b47fe1`](https://togithub.com/nodejs/node/commit/9a68b47fe1)] - **doc**: mark isWebAssemblyCompiledModule eol (Marco Ippolito) [#​51442](https://togithub.com/nodejs/node/pull/51442) - \[[`8016628710`](https://togithub.com/nodejs/node/commit/8016628710)] - **doc**: fix `globals.md` introduction (Antoine du Hamel) [#​51742](https://togithub.com/nodejs/node/pull/51742) - \[[`9ddbe4523f`](https://togithub.com/nodejs/node/commit/9ddbe4523f)] - **doc**: updates for better json generating (Dmitry Semigradsky) [#​51592](https://togithub.com/nodejs/node/pull/51592) - \[[`140cf26d47`](https://togithub.com/nodejs/node/commit/140cf26d47)] - **doc**: document the GN build (Cheng Zhao) [#​51676](https://togithub.com/nodejs/node/pull/51676) - \[[`ecfb3f18b3`](https://togithub.com/nodejs/node/commit/ecfb3f18b3)] - **doc**: fix uncaught exception example (Gabriel Schulhof) [#​51638](https://togithub.com/nodejs/node/pull/51638) - \[[`b3157a08bf`](https://togithub.com/nodejs/node/commit/b3157a08bf)] - **doc**: clarify execution of `after` hook on test suite completion (Ognjen Jevremović) [#​51523](https://togithub.com/nodejs/node/pull/51523) - \[[`1dae1873d9`](https://togithub.com/nodejs/node/commit/1dae1873d9)] - **doc**: fix `dns.lookup` and `dnsPromises.lookup` description (Duncan Chiu) [#​51517](https://togithub.com/nodejs/node/pull/51517) - \[[`50df052087`](https://togithub.com/nodejs/node/commit/50df052087)] - **doc**: note that path.normalize deviates from POSIX (Tobias Nießen) [#​51513](https://togithub.com/nodejs/node/pull/51513) - \[[`481af53aea`](https://togithub.com/nodejs/node/commit/481af53aea)] - **doc**: add lemire to collaborators (Daniel Lemire) [#​51572](https://togithub.com/nodejs/node/pull/51572) - \[[`dec0d5d19a`](https://togithub.com/nodejs/node/commit/dec0d5d19a)] - **doc**: fix historical experimental fetch flag (Kenrick) [#​51506](https://togithub.com/nodejs/node/pull/51506) - \[[`96c480b1a1`](https://togithub.com/nodejs/node/commit/96c480b1a1)] - **doc**: fix type of connectionAttempt parameter (Rafael Gonzaga) [#​51490](https://togithub.com/nodejs/node/pull/51490) - \[[`76968ab112`](https://togithub.com/nodejs/node/commit/76968ab112)] - **doc**: remove reference to resolved child_process v8 issue (Ian Kerins) [#​51467](https://togithub.com/nodejs/node/pull/51467) - \[[`bdd3a2a9fd`](https://togithub.com/nodejs/node/commit/bdd3a2a9fd)] - **doc**: update typos (Aranđel Šarenac) [#​51475](https://togithub.com/nodejs/node/pull/51475) - \[[`3532f5587c`](https://togithub.com/nodejs/node/commit/3532f5587c)] - **doc**: add notes on inspector breakpoints (Chengzhong Wu) [#​51417](https://togithub.com/nodejs/node/pull/51417) - \[[`0dffb9f049`](https://togithub.com/nodejs/node/commit/0dffb9f049)] - **doc**: add links in `offboarding.md` (Antoine du Hamel) [#​51440](https://togithub.com/nodejs/node/pull/51440) - \[[`58d2442f0f`](https://togithub.com/nodejs/node/commit/58d2442f0f)] - **doc**: fix spelling mistake (u9g) [#​51454](https://togithub.com/nodejs/node/pull/51454) - \[[`a09f440dbd`](https://togithub.com/nodejs/node/commit/a09f440dbd)] - **doc**: add check for security reverts (Michael Dawson) [#​51376](https://togithub.com/nodejs/node/pull/51376) - \[[`401837bfc4`](https://togithub.com/nodejs/node/commit/401837bfc4)] - **doc**: fix some policy scope typos (Tim Kuijsten) [#​51234](https://togithub.com/nodejs/node/pull/51234) - \[[`f301f829ba`](https://togithub.com/nodejs/node/commit/f301f829ba)] - **doc**: improve subtests documentation (Marco Ippolito) [#​51379](https://togithub.com/nodejs/node/pull/51379) - \[[`1e40f552fd`](https://togithub.com/nodejs/node/commit/1e40f552fd)] - **doc**: add missing word in `child_process.md` (Joseph Joy) [#​50370](https://togithub.com/nodejs/node/pull/50370) - \[[`42b4f0f5ab`](https://togithub.com/nodejs/node/commit/42b4f0f5ab)] - **doc**: fixup alignment of warning subsection (James M Snell) [#​51374](https://togithub.com/nodejs/node/pull/51374) - \[[`b5bc597871`](https://togithub.com/nodejs/node/commit/b5bc597871)] - **doc**: the GN files should use Node's license (Cheng Zhao) [#​50694](https://togithub.com/nodejs/node/pull/50694) - \[[`01a41041d6`](https://togithub.com/nodejs/node/commit/01a41041d6)] - **doc**: improve localWindowSize event descriptions (Davy Landman) [#​51071](https://togithub.com/nodejs/node/pull/51071) - \[[`63aa27df10`](https://togithub.com/nodejs/node/commit/63aa27df10)] - **doc**: mark `--jitless` as experimental (Antoine du Hamel) [#​51247](https://togithub.com/nodejs/node/pull/51247) - \[[`c8233912e9`](https://togithub.com/nodejs/node/commit/c8233912e9)] - **doc**: run license-builder (github-actions\[bot]) [#​51199](https://togithub.com/nodejs/node/pull/51199) - \[[`9e360df521`](https://togithub.com/nodejs/node/commit/9e360df521)] - **doc**: fix limitations and known issues in pm (Rafael Gonzaga) [#​51184](https://togithub.com/nodejs/node/pull/51184) - \[[`52d8222d32`](https://togithub.com/nodejs/node/commit/52d8222d32)] - **doc**: mention node:wasi in the Threat Model (Rafael Gonzaga) [#​51211](https://togithub.com/nodejs/node/pull/51211) - \[[`cb3270e4c8`](https://togithub.com/nodejs/node/commit/cb3270e4c8)] - **doc**: remove ambiguous 'considered' (Rich Trott) [#​51207](https://togithub.com/nodejs/node/pull/51207) - \[[`979e183e0c`](https://togithub.com/nodejs/node/commit/979e183e0c)] - **doc**: set exit code in custom test runner example (Matteo Collina) [#​51056](https://togithub.com/nodejs/node/pull/51056) - \[[`eaadebb1f4`](https://togithub.com/nodejs/node/commit/eaadebb1f4)] - **doc**: remove version from `maintaining-dependencies.md` (Antoine du Hamel) [#​51195](https://togithub.com/nodejs/node/pull/51195) - \[[`256db6e056`](https://togithub.com/nodejs/node/commit/256db6e056)] - **doc**: mention native addons are restricted in pm (Rafael Gonzaga) [#​51185](https://togithub.com/nodejs/node/pull/51185) - \[[`2a61602ab2`](https://togithub.com/nodejs/node/commit/2a61602ab2)] - **doc**: correct note on behavior of stats.isDirectory (Nick Reilingh) [#​50946](https://togithub.com/nodejs/node/pull/50946) - \[[`184b8bea5b`](https://togithub.com/nodejs/node/commit/184b8bea5b)] - **doc**: fix `TestsStream` parent class (Jungku Lee) [#​51181](https://togithub.com/nodejs/node/pull/51181) - \[[`c61597ffe4`](https://togithub.com/nodejs/node/commit/c61597ffe4)] - **(SEMVER-MINOR)** **doc**: add documentation for --build-snapshot-config (Anna Henningsen) [#​50453](https://togithub.com/nodejs/node/pull/50453) - \[[`b88170d602`](https://togithub.com/nodejs/node/commit/b88170d602)] - **doc**: run license-builder (github-actions\[bot]) [#​51111](https://togithub.com/nodejs/node/pull/51111) - \[[`f2b4626ab8`](https://togithub.com/nodejs/node/commit/f2b4626ab8)] - **doc**: deprecate hash constructor (Marco Ippolito) [#​51077](https://togithub.com/nodejs/node/pull/51077) - \[[`6c241550cd`](https://togithub.com/nodejs/node/commit/6c241550cd)] - **doc**: add note regarding `--experimental-detect-module` (Shubherthi Mitra) [#​51089](https://togithub.com/nodejs/node/pull/51089) - \[[`8ee30ea900`](https://togithub.com/nodejs/node/commit/8ee30ea900)] - **doc**: correct tracingChannel.traceCallback() (Gerhard Stöbich) [#​51068](https://togithub.com/nodejs/node/pull/51068) - \[[`1cd27b6eff`](https://togithub.com/nodejs/node/commit/1cd27b6eff)] - **doc**: use length argument in pbkdf2Key (Tobias Nießen) [#​51066](https://togithub.com/nodejs/node/pull/51066) - \[[`09ad974537`](https://togithub.com/nodejs/node/commit/09ad974537)] - **doc**: add deprecation notice to `dirent.path` (Antoine du Hamel) [#​51059](https://togithub.com/nodejs/node/pull/51059) - \[[`1113e58f87`](https://togithub.com/nodejs/node/commit/1113e58f87)] - **doc**: deprecate `dirent.path` (Antoine du Hamel) [#​51020](https://togithub.com/nodejs/node/pull/51020) - \[[`37979d750e`](https://togithub.com/nodejs/node/commit/37979d750e)] - **doc**: add additional details about `--input-type` (Shubham Pandey) [#​50796](https://togithub.com/nodejs/node/pull/50796) - \[[`3ff00e1e79`](https://togithub.com/nodejs/node/commit/3ff00e1e79)] - **doc**: add procedure when CVEs don't get published (Rafael Gonzaga) [#​50945](https://togithub.com/nodejs/node/pull/50945) - \[[`0930be6bd5`](https://togithub.com/nodejs/node/commit/0930be6bd5)] - **doc**: fix some errors in esm resolution algorithms (Christopher Jeffrey (JJ)) [#​50898](https://togithub.com/nodejs/node/pull/50898) - \[[`ddc7964b03`](https://togithub.com/nodejs/node/commit/ddc7964b03)] - **doc**: reserve 121 for Electron 29 (Shelley Vohr) [#​50957](https://togithub.com/nodejs/node/pull/50957) - \[[`625fd69b76`](https://togithub.com/nodejs/node/commit/625fd69b76)] - **doc**: run license-builder (github-actions\[bot]) [#​50926](https://togithub.com/nodejs/node/pull/50926) - \[[`f18269607a`](https://togithub.com/nodejs/node/commit/f18269607a)] - **doc**: document non-node_modules-only runtime deprecation (Joyee Cheung) [#​50748](https://togithub.com/nodejs/node/pull/50748) - \[[`5f8e7a0fdb`](https://togithub.com/nodejs/node/commit/5f8e7a0fdb)] - **doc**: add doc for Unix abstract socket (theanarkh) [#​50904](https://togithub.com/nodejs/node/pull/50904) - \[[`e0598787e0`](https://togithub.com/nodejs/node/commit/e0598787e0)] - **doc**: remove flicker on page load on dark theme (Dima Demakov) [#​50942](https://togithub.com/nodejs/node/pull/50942) - \[[`2a7047d933`](https://togithub.com/nodejs/node/commit/2a7047d933)] - **doc,crypto**: further clarify RSA_PKCS1\_PADDING support (Tobias Nießen) [#​51799](https://togithub.com/nodejs/node/pull/51799) - \[[`31c4ba4dfd`](https://togithub.com/nodejs/node/commit/31c4ba4dfd)] - **doc,crypto**: add changelog and note about disabled RSA_PKCS1\_PADDING (Filip Skokan) [#​51782](https://togithub.com/nodejs/node/pull/51782) - \[[`90da41548f`](https://togithub.com/nodejs/node/commit/90da41548f)] - **doc,module**: clarify hook chain execution sequence (Jacob Smith) [#​51884](https://togithub.com/nodejs/node/pull/51884) - \[[`bb7d7f3d1c`](https://togithub.com/nodejs/node/commit/bb7d7f3d1c)] - **errors**: fix stacktrace of SystemError (uzlopak) [#​49956](https://togithub.com/nodejs/node/pull/49956) - \[[`db7459b57b`](https://togithub.com/nodejs/node/commit/db7459b57b)] - **errors**: improve hideStackFrames (Aras Abbasi) [#​49990](https://togithub.com/nodejs/node/pull/49990) - \[[`a6b3569121`](https://togithub.com/nodejs/node/commit/a6b3569121)] - **esm**: improve error when calling `import.meta.resolve` from `data:` URL (Antoine du Hamel) [#​49516](https://togithub.com/nodejs/node/pull/49516) - \[[`38f4000905`](https://togithub.com/nodejs/node/commit/38f4000905)] - **esm**: fix hint on invalid module specifier (Antoine du Hamel) [#​51223](https://togithub.com/nodejs/node/pull/51223) - \[[`e39e37bbd5`](https://togithub.com/nodejs/node/commit/e39e37bbd5)] - **esm**: fix hook name in error message (Bruce MacNaughton) [#​50466](https://togithub.com/nodejs/node/pull/50466) - \[[`d9b5cd533c`](https://togithub.com/nodejs/node/commit/d9b5cd533c)] - **events**: no stopPropagation call in cancelBubble (mert.altin) [#​50405](https://togithub.com/nodejs/node/pull/50405) - \[[`287a02c4b2`](https://togithub.com/nodejs/node/commit/287a02c4b2)] - **fs**: load rimraf lazily in fs/promises (Joyee Cheung) [#​51617](https://togithub.com/nodejs/node/pull/51617) - \[[`bbd1351ef0`](https://togithub.com/nodejs/node/commit/bbd1351ef0)] - **fs**: remove race condition for recursive watch on Linux (Matteo Collina) [#​51406](https://togithub.com/nodejs/node/pull/51406) - \[[`1b7ccec5a7`](https://togithub.com/nodejs/node/commit/1b7ccec5a7)] - **fs**: update jsdoc for `filehandle.createWriteStream` and `appendFile` (Jungku Lee) [#​51494](https://togithub.com/nodejs/node/pull/51494) - \[[`25056f5024`](https://togithub.com/nodejs/node/commit/25056f5024)] - **fs**: fix fs.promises.realpath for long paths on Windows (翠 / green) [#​51032](https://togithub.com/nodejs/node/pull/51032) - \[[`a8fd01a5a2`](https://togithub.com/nodejs/node/commit/a8fd01a5a2)] - **fs**: make offset, position & length args in fh.read() optional (Pulkit Gupta) [#​51087](https://togithub.com/nodejs/node/pull/51087) - \[[`721557c6d8`](https://togithub.com/nodejs/node/commit/721557c6d8)] - **fs**: add missing jsdoc parameters to `readSync` (Yagiz Nizipli) [#​51225](https://togithub.com/nodejs/node/pull/51225) - \[[`3ce9aacfcd`](https://togithub.com/nodejs/node/commit/3ce9aacfcd)] - **fs**: remove `internalModuleReadJSON` binding (Yagiz Nizipli) [#​51224](https://togithub.com/nodejs/node/pull/51224) - \[[`65df2c6787`](https://togithub.com/nodejs/node/commit/65df2c6787)] - **fs**: improve mkdtemp performance for buffer prefix (Yagiz Nizipli) [#​51078](https://togithub.com/nodejs/node/pull/51078) - \[[`6705b48012`](https://togithub.com/nodejs/node/commit/6705b48012)] - **fs**: validate fd synchronously on c++ (Yagiz Nizipli) [#​51027](https://togithub.com/nodejs/node/pull/51027) - \[[`afd5d67f89`](https://togithub.com/nodejs/node/commit/afd5d67f89)] - **fs**: throw fchownSync error from c++ (Yagiz Nizipli) [#​51075](https://togithub.com/nodejs/node/pull/51075) - \[[`bac982bce5`](https://togithub.com/nodejs/node/commit/bac982bce5)] - **fs**: update params in jsdoc for createReadStream and createWriteStream (Jungku Lee) [#​51063](https://togithub.com/nodejs/node/pull/51063) - \[[`6764f0c9a8`](https://togithub.com/nodejs/node/commit/6764f0c9a8)] - **fs**: improve error performance of readvSync (IlyasShabi) [#​50100](https://togithub.com/nodejs/node/pull/50100) - \[[`0225fce776`](https://togithub.com/nodejs/node/commit/0225fce776)] - **(SEMVER-MINOR)** **fs**: introduce `dirent.parentPath` (Antoine du Hamel) [#​50976](https://togithub.com/nodejs/node/pull/50976) - \[[`4adea6c405`](https://togithub.com/nodejs/node/commit/4adea6c405)] - **fs,test**: add URL to string to fs.watch (Rafael Gonzaga) [#​51346](https://togithub.com/nodejs/node/pull/51346) - \[[`6bf148e12b`](https://togithub.com/nodejs/node/commit/6bf148e12b)] - **http**: fix `close` return value mismatch between doc and implementation (kylo5aby) [#​51797](https://togithub.com/nodejs/node/pull/51797) - \[[`66318602d0`](https://togithub.com/nodejs/node/commit/66318602d0)] - **http**: split set-cookie when using setHeaders (Marco Ippolito) [#​51649](https://togithub.com/nodejs/node/pull/51649) - \[[`f7b53d05bd`](https://togithub.com/nodejs/node/commit/f7b53d05bd)] - **http**: remove misleading warning (Luigi Pinca) [#​51204](https://togithub.com/nodejs/node/pull/51204) - \[[`9062d30600`](https://togithub.com/nodejs/node/commit/9062d30600)] - **http**: do not override user-provided options object (KuthorX) [#​33633](https://togithub.com/nodejs/node/pull/33633) - \[[`4e38dee4ee`](https://togithub.com/nodejs/node/commit/4e38dee4ee)] - **http**: handle multi-value content-disposition header (Arsalan Ahmad) [#​50977](https://togithub.com/nodejs/node/pull/50977) - \[[`b560bfbb84`](https://togithub.com/nodejs/node/commit/b560bfbb84)] - **http2**: close idle connections when allowHTTP1 is true (xsbchen) [#​51569](https://togithub.com/nodejs/node/pull/51569) - \[[`5ba4d96525`](https://togithub.com/nodejs/node/commit/5ba4d96525)] - **(SEMVER-MINOR)** **http2**: add h2 compat support for appendHeader (Tim Perry) [#​51412](https://togithub.com/nodejs/node/pull/51412) - \[[`0861498e8b`](https://togithub.com/nodejs/node/commit/0861498e8b)] - **(SEMVER-MINOR)** **http2**: add server handshake utility (snek) [#​51172](https://togithub.com/nodejs/node/pull/51172) - \[[`6b08d006ee`](https://togithub.com/nodejs/node/commit/6b08d006ee)] - **(SEMVER-MINOR)** **http2**: receive customsettings (Marten Richter) [#​51323](https://togithub.com/nodejs/node/pull/51323) - \[[`23414a6120`](https://togithub.com/nodejs/node/commit/23414a6120)] - **http2**: addtl http/2 settings (Marten Richter) [#​49025](https://togithub.com/nodejs/node/pull/49025) - \[[`3fe59ba224`](https://togithub.com/nodejs/node/commit/3fe59ba224)] - **inspector**: add NodeRuntime.waitingForDebugger event (mary marchini) [#​51560](https://togithub.com/nodejs/node/pull/51560) - \[[`44f05e0d30`](https://togithub.com/nodejs/node/commit/44f05e0d30)] - **lib**: make sure close net server (theanarkh) [#​51929](https://togithub.com/nodejs/node/pull/51929) - \[[`3be5ff9c45`](https://togithub.com/nodejs/node/commit/3be5ff9c45)] - **lib**: return directly if udp socket close before lookup (theanarkh) [#​51914](https://togithub.com/nodejs/node/pull/51914) - \[[`dcbf88f4c7`](https://togithub.com/nodejs/node/commit/dcbf88f4c7)] - **lib**: account for cwd access from snapshot serialization cb (Anna Henningsen) [#​51901](https://togithub.com/nodejs/node/pull/51901) - \[[`da8fa484f8`](https://togithub.com/nodejs/node/commit/da8fa484f8)] - **lib**: fix http client socket path (theanarkh) [#​51900](https://togithub.com/nodejs/node/pull/51900) - \[[`55011d2c71`](https://togithub.com/nodejs/node/commit/55011d2c71)] - **lib**: only build the ESM facade for builtins when they are needed (Joyee Cheung) [#​51669](https://togithub.com/nodejs/node/pull/51669) - \[[`7894989bf0`](https://togithub.com/nodejs/node/commit/7894989bf0)] - **(SEMVER-MINOR)** **lib**: move encodingsMap to internal/util (Joyee Cheung) [#​51044](https://togithub.com/nodejs/node/pull/51044) - \[[`9082cc557d`](https://togithub.com/nodejs/node/commit/9082cc557d)] - **lib**: do not access process.noDeprecation at build time (Joyee Cheung) [#​51447](https://togithub.com/nodejs/node/pull/51447) - \[[`6679e6b616`](https://togithub.com/nodejs/node/commit/6679e6b616)] - **lib**: add assertion for user ESM execution (Joyee Cheung) [#​51748](https://togithub.com/nodejs/node/pull/51748) - \[[`d6e8d03afc`](https://togithub.com/nodejs/node/commit/d6e8d03afc)] - **lib**: create global console properties at snapshot build time (Joyee Cheung) [#​51700](https://togithub.com/nodejs/node/pull/51700) - \[[`bd2a3c10ae`](https://togithub.com/nodejs/node/commit/bd2a3c10ae)] - **lib**: define FormData and fetch etc. in the built-in snapshot (Joyee Cheung) [#​51598](https://togithub.com/nodejs/node/pull/51598) - \[[`da79876ef0`](https://togithub.com/nodejs/node/commit/da79876ef0)] - **lib**: allow checking the test result from afterEach (Tim Stableford) [#​51485](https://togithub.com/nodejs/node/pull/51485) - \[[`bff7e3cf7a`](https://togithub.com/nodejs/node/commit/bff7e3cf7a)] - **lib**: remove unnecessary refreshHrtimeBuffer() (Joyee Cheung) [#​51446](https://togithub.com/nodejs/node/pull/51446) - \[[`562947e012`](https://togithub.com/nodejs/node/commit/562947e012)] - **lib**: fix use of `--frozen-intrinsics` with `--jitless` (Antoine du Hamel) [#​51248](https://togithub.com/nodejs/node/pull/51248) - \[[`7b83ef749e`](https://togithub.com/nodejs/node/commit/7b83ef749e)] - **lib**: move function declaration outside of loop (Sanjaiyan Parthipan) [#​51242](https://togithub.com/nodejs/node/pull/51242) - \[[`0a85b0fd9d`](https://togithub.com/nodejs/node/commit/0a85b0fd9d)] - **lib**: reduce overhead of `SafePromiseAllSettledReturnVoid` calls (Antoine du Hamel) [#​51243](https://togithub.com/nodejs/node/pull/51243) - \[[`f4d7f0498e`](https://togithub.com/nodejs/node/commit/f4d7f0498e)] - **lib**: expose default prepareStackTrace (Chengzhong Wu) [#​50827](https://togithub.com/nodejs/node/pull/50827) - \[[`5c7a9c8d4a`](https://togithub.com/nodejs/node/commit/5c7a9c8d4a)] - **lib**: don't parse windows drive letters as schemes (华) [#​50580](https://togithub.com/nodejs/node/pull/50580) - \[[`9da6384f5a`](https://togithub.com/nodejs/node/commit/9da6384f5a)] - **lib**: refactor to use validateFunction in diagnostics_channel (Deokjin Kim) [#​50955](https://togithub.com/nodejs/node/pull/50955) - \[[`be3205ae24`](https://togithub.com/nodejs/node/commit/be3205ae24)] - **lib**: streamline process.binding() handling (Joyee Cheung) [#​50773](https://togithub.com/nodejs/node/pull/50773) - \[[`f4987eb91e`](https://togithub.com/nodejs/node/commit/f4987eb91e)] - **lib,permission**: handle buffer on fs.symlink (Rafael Gonzaga) [#​51212](https://togithub.com/nodejs/node/pull/51212) - \[[`861e040b40`](https://togithub.com/nodejs/node/commit/861e040b40)] - **lib,src**: extract sourceMappingURL from module (unbyte) [#​51690](https://togithub.com/nodejs/node/pull/51690) - \[[`8a082754e0`](https://togithub.com/nodejs/node/commit/8a082754e0)] - **lib,src**: replace toUSVString with `toWellFormed()` (Yagiz Nizipli) [#​47342](https://togithub.com/nodejs/node/pull/47342) - \[[`3badc1139c`](https://togithub.com/nodejs/node/commit/3badc1139c)] - **(SEMVER-MINOR)** **lib,src,permission**: port path.resolve to C++ (Rafael Gonzaga) [#​50758](https://togithub.com/nodejs/node/pull/50758) - \[[`4b3cc3ce18`](https://togithub.com/nodejs/node/commit/4b3cc3ce18)] - **loader**: speed up line length calc used by moduleProvider (Mudit) [#​50969](https://togithub.com/nodejs/node/pull/50969) - \[[`960d67c51f`](https://togithub.com/nodejs/node/commit/960d67c51f)] - **meta**: bump github/codeql-action from 3.23.2 to 3.24.6 (dependabot\[bot]) [#​51942](https://togithub.com/nodejs/node/pull/51942) - \[[`1783b93af2`](https://togithub.com/nodejs/node/commit/1783b93af2)] - **meta**: bump actions/upload-artifact from 4.3.0 to 4.3.1 (dependabot\[bot]) [#​51941](https://togithub.com/nodejs/node/pull/51941) - \[[`1db603db2f`](https://togithub.com/nodejs/node/commit/1db603db2f)] - **meta**: bump codecov/codecov-action from 4.0.1 to 4.1.0 (dependabot\[bot]) [#​51940](https://togithub.com/nodejs/node/pull/51940) - \[[`2ddec64d5a`](https://togithub.com/nodejs/node/commit/2ddec64d5a)] - **meta**: bump actions/cache from 4.0.0 to 4.0.1 (dependabot\[bot]) [#​51939](https://togithub.com/nodejs/node/pull/51939) - \[[`92490421be`](https://togithub.com/nodejs/node/commit/92490421be)] - **meta**: bump actions/download-artifact from 4.1.1 to 4.1.3 (dependabot\[bot]) [#​51938](https://togithub.com/nodejs/node/pull/51938) - \[[`f3fa2b72b8`](https://togithub.com/nodejs/node/commit/f3fa2b72b8)] - **meta**: bump actions/setup-node from 4.0.1 to 4.0.2 (dependabot\[bot]) [#​51937](https://togithub.com/nodejs/node/pull/51937) - \[[`a62b042e83`](https://togithub.com/nodejs/node/commit/a62b042e83)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​51726](https://togithub.com/nodejs/node/pull/51726) - \[[`491f9f9902`](https://togithub.com/nodejs/node/commit/491f9f9902)] - **meta**: bump codecov/codecov-action from 3.1.4 to 4.0.1 (dependabot\[bot]) [#​51648](https://togithub.com/nodejs/node/pull/51648) - \[[`2765077a47`](https://togithub.com/nodejs/node/commit/2765077a47)] - **meta**: bump actions/download-artifact from 4.1.0 to 4.1.1 (dependabot\[bot]) [#​51644](https://togithub.com/nodejs/node/pull/51644) - \[[`152a07b854`](https://togithub.com/nodejs/node/commit/152a07b854)] - **meta**: bump actions/upload-artifact from 4.0.0 to 4.3.0 (dependabot\[bot]) [#​51643](https://togithub.com/nodejs/node/pull/51643) - \[[`53826920fb`](https://togithub.com/nodejs/node/commit/53826920fb)] - **meta**: bump step-security/harden-runner from 2.6.1 to 2.7.0 (dependabot\[bot]) [#​51641](https://togithub.com/nodejs/node/pull/51641) - \[[`3d1dc9b030`](https://togithub.com/nodejs/node/commit/3d1dc9b030)] - **meta**: bump actions/cache from 3.3.2 to 4.0.0 (dependabot\[bot]) [#​51640](https://togithub.com/nodejs/node/pull/51640) - \[[`287bdf6bda`](https://togithub.com/nodejs/node/commit/287bdf6bda)] - **meta**: bump github/codeql-action from 3.22.12 to 3.23.2 (dependabot\[bot]) [#​51639](https://togithub.com/nodejs/node/pull/51639) - \[[`90068fb0f1`](https://togithub.com/nodejs/node/commit/90068fb0f1)] - **meta**: add .mailmap entry for lemire (Daniel Lemire) [#​51600](https://togithub.com/nodejs/node/pull/51600) - \[[`f91786bd70`](https://togithub.com/nodejs/node/commit/f91786bd70)] - **meta**: mark security-wg codeowner for deps folder (Marco Ippolito) [#​51529](https://togithub.com/nodejs/node/pull/51529) - \[[`e51221be8d`](https://togithub.com/nodejs/node/commit/e51221be8d)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​51468](https://togithub.com/nodejs/node/pull/51468) - \[[`4a8a012c6d`](https://togithub.com/nodejs/node/commit/4a8a012c6d)] - **meta**: move RaisinTen to emeritus and remove from strategic initiatives (Darshan Sen) [#​51411](https://togithub.com/nodejs/node/pull/51411) - \[[`e9276bab3f`](https://togithub.com/nodejs/node/commit/e9276bab3f)] - **meta**: add .temp and .lock tags to ignore (Rafael Gonzaga) [#​51343](https://togithub.com/nodejs/node/pull/51343) - \[[`ae6fecbc8d`](https://togithub.com/nodejs/node/commit/ae6fecbc8d)] - **meta**: bump actions/setup-python from 4.7.1 to 5.0.0 (dependabot\[bot]) [#​51335](https://togithub.com/nodejs/node/pull/51335) - \[[`f4be49a618`](https://togithub.com/nodejs/node/commit/f4be49a618)] - **meta**: bump actions/setup-node from 4.0.0 to 4.0.1 (dependabot\[bot]) [#​51334](https://togithub.com/nodejs/node/pull/51334) - \[[`e24aa7ced1`](https://togithub.com/nodejs/node/commit/e24aa7ced1)] - **meta**: bump github/codeql-action from 2.22.8 to 3.22.12 (dependabot\[bot]) [#​51333](https://togithub.com/nodejs/node/pull/51333) - \[[`287c2bcf56`](https://togithub.com/nodejs/node/commit/287c2bcf56)] - **meta**: bump actions/stale from 8.0.0 to 9.0.0 (dependabot\[bot]) [#​51332](https://togithub.com/nodejs/node/pull/51332) - \[[`1cad0dfaff`](https://togithub.com/nodejs/node/commit/1cad0dfaff)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​51329](https://togithub.com/nodejs/node/pull/51329) - \[[`eef64b782e`](https://togithub.com/nodejs/node/commit/eef64b782e)] - **meta**: notify tsc on changes in SECURITY.md (Rafael Gonzaga) [#​51259](https://togithub.com/nodejs/node/pull/51259) - \[[`95a880f728`](https://togithub.com/nodejs/node/commit/95a880f728)] - **meta**: update artifact actions to v4 (Michaël Zasso) [#​51219](https://togithub.com/nodejs/node/pull/51219) - \[[`59805f6879`](https://togithub.com/nodejs/node/commit/59805f6879)] - **meta**: bump step-security/harden-runner from 2.6.0 to 2.6.1 (dependabot\[bot]) [#​50999](https://togithub.com/nodejs/node/pull/50999) - \[[`d74e0b97c3`](https://togithub.com/nodejs/node/commit/d74e0b97c3)] - **meta**: bump github/codeql-action from 2.22.5 to 2.22.8 (dependabot\[bot]) [#​50998](https://togithub.com/nodejs/node/pull/50998) - \[[`91cd9183d1`](https://togithub.com/nodejs/node/commit/91cd9183d1)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​50931](https://togithub.com/nodejs/node/pull/50931) - \[[`c621491aba`](https://togithub.com/nodejs/node/commit/c621491aba)] - **module**: fix crash when built-in module export a `default` key (Antoine du Hamel) [#​51481](https://togithub.com/nodejs/node/pull/51481) - \[[`43a8d3e984`](https://togithub.com/nodejs/node/commit/43a8d3e984)] - * </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.69.0` -> `0.69.1`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.69.0/0.69.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.69.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.69.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.69.0/0.69.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.69.0/0.69.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [node](https://togithub.com/nodejs/node) | stage | patch | `20.12.0-bookworm` -> `20.12.1-bookworm` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/nodejs/node/badge)](https://securityscorecards.dev/viewer/?uri=github.com/nodejs/node) | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v20.12.1`](https://togithub.com/nodejs/node/releases/tag/v20.12.1): 2024-04-03, Version 20.12.1 'Iron' (LTS), @​RafaelGSS [Compare Source](https://togithub.com/nodejs/node/compare/v20.12.0...v20.12.1) This is a security release ##### Notable Changes - CVE-2024-27983 - Assertion failed in node::http2::Http2Session::~Http2Session() leads to HTTP/2 server crash- (High) - CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation - (Medium) - llhttp version 9.2.1 - undici version 5.28.4 ##### Commits - \[[`bd8f10a257`](https://togithub.com/nodejs/node/commit/bd8f10a257)] - **deps**: update undici to v5.28.4 (Matteo Collina) [nodejs-private/node-private#576](https://togithub.com/nodejs-private/node-private/pull/576) - \[[`5e34540a96`](https://togithub.com/nodejs/node/commit/5e34540a96)] - **http**: do not allow OBS fold in headers by default (Paolo Insogna) [nodejs-private/node-private#557](https://togithub.com/nodejs-private/node-private/pull/557) - \[[`ba1ae6d188`](https://togithub.com/nodejs/node/commit/ba1ae6d188)] - **src**: ensure to close stream when destroying session (Anna Henningsen) [nodejs-private/node-private#561](https://togithub.com/nodejs-private/node-private/pull/561) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.69.1` -> `0.69.2`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.69.1/0.69.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.69.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.69.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.69.1/0.69.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.69.1/0.69.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [node](https://togithub.com/nodejs/node) | stage | patch | `20.12.1-bookworm` -> `20.12.2-bookworm` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/nodejs/node/badge)](https://securityscorecards.dev/viewer/?uri=github.com/nodejs/node) | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v20.12.2`](https://togithub.com/nodejs/node/releases/tag/v20.12.2): 2024-04-10, Version 20.12.2 'Iron' (LTS), @​RafaelGSS [Compare Source](https://togithub.com/nodejs/node/compare/v20.12.1...v20.12.2) This is a security release. ##### Notable Changes - CVE-2024-27980 - Command injection via args parameter of `child_process.spawn` without shell option enabled on Windows ##### Commits - \[[`69ffc6d50d`](https://togithub.com/nodejs/node/commit/69ffc6d50d)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#563](https://togithub.com/nodejs-private/node-private/pull/563) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-ts | [`0.34.0` -> `0.35.0`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-ts/0.34.0/0.35.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-ts/0.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-ts/0.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-ts/0.34.0/0.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-ts/0.34.0/0.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMwMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.69.2` -> `0.70.0`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.69.2/0.70.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.69.2/0.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.69.2/0.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMwMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-ts | [`0.35.0` -> `0.35.1`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-ts/0.35.0/0.35.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-ts/0.35.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-ts/0.35.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-ts/0.35.0/0.35.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-ts/0.35.0/0.35.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.70.0` -> `0.71.0`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.70.0/0.71.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.71.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.71.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.70.0/0.71.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.70.0/0.71.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.71.0` -> `0.71.1`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.71.0/0.71.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.71.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.71.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.71.0/0.71.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.71.0/0.71.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMzEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [node](https://togithub.com/nodejs/node) | stage | minor | `20.12.2-bookworm` -> `20.13.0-bookworm` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/nodejs/node/badge)](https://securityscorecards.dev/viewer/?uri=github.com/nodejs/node) | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v20.13.0`](https://togithub.com/nodejs/node/releases/tag/v20.13.0): 2024-05-07, Version 20.13.0 'Iron' (LTS), @​marco-ippolito [Compare Source](https://togithub.com/nodejs/node/compare/v20.12.2...v20.13.0) #### 2024-05-07, Version 20.13.0 'Iron' (LTS), [@​marco-ippolito](https://togithub.com/marco-ippolito) ##### buffer: improve `base64` and `base64url` performance The performance of the `base64` and `base64url` encoding and decoding functions has been improved significantly. Contributed by Yagiz Nizipli in [#​52428](https://togithub.com/nodejs/node/pull/52428) ##### crypto: deprecate implicitly shortened GCM tags This release, introduces a doc-only deprecation of using GCM authentication tags that are shorter than the cipher's block size, unless the user specified the `authTagLength` option. Contributed by Tobias Nießen in [#​52345](https://togithub.com/nodejs/node/pull/52345) ##### events,doc: mark CustomEvent as stable From this release `CustomEvent` has been marked stable. Contributed by Daeyeon Jeong in [#​52618](https://togithub.com/nodejs/node/pull/52618) ##### fs: add stacktrace to fs/promises Sync functions in fs throwed an error with a stacktrace which is helpful for debugging. But functions in fs/promises throwed an error without a stacktrace. This commit adds stacktraces by calling `Error.captureStacktrace` and re-throwing the error. Contributed by 翠 / green in [#​49849](https://togithub.com/nodejs/node/pull/49849) ##### report: add `--report-exclude-network` option New option `--report-exclude-network`, also available as `report.excludeNetwork`, enables the user to exclude networking interfaces in their diagnostic report. On some systems, this can cause the report to take minutes to generate so this option can be used to optimize that. Contributed by Ethan Arrowood in [#​51645](https://togithub.com/nodejs/node/pull/51645) ##### src: add uv_get_available_memory to report and process From this release it is possible to get the available memory in the system by calling `process.getAvailableMemory()`. Contributed by theanarkh [#​52023](https://togithub.com/nodejs/node/pull/52023) ##### stream: support typed arrays This commit adds support for typed arrays in streams. Contributed by IlyasShabi [#​51866](https://togithub.com/nodejs/node/pull/51866) ##### util: support array of formats in util.styleText It is now possible to pass an array of format strings to `util.styleText` to apply multiple formats to the same text. ```js console.log(util.styleText(['underline', 'italic'], 'My italic underlined message')); ``` Contributed by Marco Ippolito in [#​52040](https://togithub.com/nodejs/node/pull/52040) ##### v8: implement v8.queryObjects() for memory leak regression testing This is similar to the queryObjects() console API provided by the Chromium DevTools console. It can be used to search for objects that have the matching constructor on its prototype chain in the heap after a full garbage collection, which can be useful for memory leak regression tests. To avoid surprising results, users should avoid using this API on constructors whose implementation they don't control, or on constructors that can be invoked by other parties in the application. To avoid accidental leaks, this API does not return raw references to the objects found. By default, it returns the count of the objects found. If options.format is 'summary', it returns an array containing brief string representations for each object. The visibility provided in this API is similar to what the heap snapshot provides, while users can save the cost of serialization and parsing and directly filer the target objects during the search. We have been using this API internally for the test suite, which has been more stable than any other leak regression testing strategies in the CI. With a public implementation we can now use the public API instead. ```js const { queryObjects } = require('node:v8'); class A { foo = 'bar'; } console.log(queryObjects(A)); // 0 let a = new A(); console.log(queryObjects(A)); // 1 // [ "A { foo: 'bar' }" ] console.log(queryObjects(A, { format: 'summary' })); // Release the object. a = null; // Search again. queryObjects() includes a full garbage collection // so a should disappear. console.log(queryObjects(A)); // 0 class B extends A { bar = 'qux'; } // The child class B's prototype has A's prototype on its prototype chain // so the prototype object shows up too. console.log(queryObjects(A, { format: 'summary' })); // [ A {}' ] ``` Contributed by Joyee Cheung in [#​51927](https://togithub.com/nodejs/node/pull/51927) ##### watch: mark as stable From this release Watch Mode is considered stable. When in watch mode, changes in the watched files cause the Node.js process to restart. Contributed by Moshe Atlow in [#​52074](https://togithub.com/nodejs/node/pull/52074) ##### Other Notable Changes - \[[`f8ad30048d`](https://togithub.com/nodejs/node/commit/f8ad30048d)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#​52408](https://togithub.com/nodejs/node/pull/52408) - \[[`3b41da9a56`](https://togithub.com/nodejs/node/commit/3b41da9a56)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#​52138](https://togithub.com/nodejs/node/pull/52138) - \[[`0a08c4a7b3`](https://togithub.com/nodejs/node/commit/0a08c4a7b3)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#​51462](https://togithub.com/nodejs/node/pull/51462) - \[[`f1b7bda4f5`](https://togithub.com/nodejs/node/commit/f1b7bda4f5)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#​51278](https://togithub.com/nodejs/node/pull/51278) - \[[`4acca8ed84`](https://togithub.com/nodejs/node/commit/4acca8ed84)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#​52492](https://togithub.com/nodejs/node/pull/52492) - \[[`cc67720ff9`](https://togithub.com/nodejs/node/commit/cc67720ff9)] - **doc**: update release gpg keyserver (marco-ippolito) [#​52257](https://togithub.com/nodejs/node/pull/52257) - \[[`c2def7df96`](https://togithub.com/nodejs/node/commit/c2def7df96)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#​52257](https://togithub.com/nodejs/node/pull/52257) - \[[`807c89cb26`](https://togithub.com/nodejs/node/commit/807c89cb26)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#​51991](https://togithub.com/nodejs/node/pull/51991) - \[[`5e78a20ef9`](https://togithub.com/nodejs/node/commit/5e78a20ef9)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#​51879](https://togithub.com/nodejs/node/pull/51879) - \[[`722fe64ff7`](https://togithub.com/nodejs/node/commit/722fe64ff7)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#​52509](https://togithub.com/nodejs/node/pull/52509) - \[[`d116fa1568`](https://togithub.com/nodejs/node/commit/d116fa1568)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#​52474](https://togithub.com/nodejs/node/pull/52474) - \[[`6af7b78b0d`](https://togithub.com/nodejs/node/commit/6af7b78b0d)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#​52595](https://togithub.com/nodejs/node/pull/52595) - \[[`b3a11b574b`](https://togithub.com/nodejs/node/commit/b3a11b574b)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#​51539](https://togithub.com/nodejs/node/pull/51539) - \[[`41646d9c9e`](https://togithub.com/nodejs/node/commit/41646d9c9e)] - **(SEMVER-MINOR)** **test_runner**: add suite() (Colin Ihrig) [#​52127](https://togithub.com/nodejs/node/pull/52127) - \[[`fc9ba17f6c`](https://togithub.com/nodejs/node/commit/fc9ba17f6c)] - **(SEMVER-MINOR)** **test_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#​51909](https://togithub.com/nodejs/node/pull/51909) ##### Commits - \[[`6fdd748b21`](https://togithub.com/nodejs/node/commit/6fdd748b21)] - **benchmark**: reduce the buffer size for blob (Debadree Chatterjee) [#​52548](https://togithub.com/nodejs/node/pull/52548) - \[[`2274d0c868`](https://togithub.com/nodejs/node/commit/2274d0c868)] - **benchmark**: inherit stdio/stderr instead of pipe (Ali Hassan) [#​52456](https://togithub.com/nodejs/node/pull/52456) - \[[`0300598315`](https://togithub.com/nodejs/node/commit/0300598315)] - **benchmark**: add ipc support to spawn stdio config (Ali Hassan) [#​52456](https://togithub.com/nodejs/node/pull/52456) - \[[`f8ad30048d`](https://togithub.com/nodejs/node/commit/f8ad30048d)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#​52408](https://togithub.com/nodejs/node/pull/52408) - \[[`7508d48736`](https://togithub.com/nodejs/node/commit/7508d48736)] - **benchmark**: conditionally use spawn with taskset for cpu pinning (Ali Hassan) [#​52253](https://togithub.com/nodejs/node/pull/52253) - \[[`ea8e72e185`](https://togithub.com/nodejs/node/commit/ea8e72e185)] - **benchmark**: add toNamespacedPath bench (Rafael Gonzaga) [#​52236](https://togithub.com/nodejs/node/pull/52236) - \[[`c00715cc1e`](https://togithub.com/nodejs/node/commit/c00715cc1e)] - **benchmark**: add style-text benchmark (Rafael Gonzaga) [#​52004](https://togithub.com/nodejs/node/pull/52004) - \[[`1c1a6935ee`](https://togithub.com/nodejs/node/commit/1c1a6935ee)] - **buffer**: add missing ARG_TYPE(ArrayBuffer) for isUtf8 (Jungku Lee) [#​52477](https://togithub.com/nodejs/node/pull/52477) - \[[`1b2aff7dce`](https://togithub.com/nodejs/node/commit/1b2aff7dce)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#​52428](https://togithub.com/nodejs/node/pull/52428) - \[[`328bded5ab`](https://togithub.com/nodejs/node/commit/328bded5ab)] - **buffer**: improve `btoa` performance (Yagiz Nizipli) [#​52427](https://togithub.com/nodejs/node/pull/52427) - \[[`e67bc34326`](https://togithub.com/nodejs/node/commit/e67bc34326)] - **buffer**: use simdutf for `atob` implementation (Yagiz Nizipli) [#​52381](https://togithub.com/nodejs/node/pull/52381) - \[[`5abddb45d8`](https://togithub.com/nodejs/node/commit/5abddb45d8)] - **build**: fix typo in node.gyp (Michaël Zasso) [#​52719](https://togithub.com/nodejs/node/pull/52719) - \[[`7d1f304f5e`](https://togithub.com/nodejs/node/commit/7d1f304f5e)] - **build**: fix headers install for shared mode on Win (Segev Finer) [#​52442](https://togithub.com/nodejs/node/pull/52442) - \[[`6826bbf267`](https://togithub.com/nodejs/node/commit/6826bbf267)] - **build**: fix arm64 cross-compilation bug on non-arm machines (Mahdi Sharifi) [#​52559](https://togithub.com/nodejs/node/pull/52559) - \[[`6e85bc431a`](https://togithub.com/nodejs/node/commit/6e85bc431a)] - **build**: temporary disable ubsan (Rafael Gonzaga) [#​52560](https://togithub.com/nodejs/node/pull/52560) - \[[`297368a1ed`](https://togithub.com/nodejs/node/commit/297368a1ed)] - **build**: fix arm64 cross-compilation (Michaël Zasso) [#​51256](https://togithub.com/nodejs/node/pull/51256) - \[[`93bddb598f`](https://togithub.com/nodejs/node/commit/93bddb598f)] - **build,tools**: add test-ubsan ci (Rafael Gonzaga) [#​46297](https://togithub.com/nodejs/node/pull/46297) - \[[`20bb16582f`](https://togithub.com/nodejs/node/commit/20bb16582f)] - **build,tools,node-api**: fix building node-api tests for Windows Debug (Vladimir Morozov) [#​52632](https://togithub.com/nodejs/node/pull/52632) - \[[`9af15cfff1`](https://togithub.com/nodejs/node/commit/9af15cfff1)] - **child_process**: use internal addAbortListener (Chemi Atlow) [#​52081](https://togithub.com/nodejs/node/pull/52081) - \[[`a4847c4619`](https://togithub.com/nodejs/node/commit/a4847c4619)] - **crypto**: simplify assertions in Safe\*Print (David Benjamin) [#​49709](https://togithub.com/nodejs/node/pull/49709) - \[[`0ec4d9d734`](https://togithub.com/nodejs/node/commit/0ec4d9d734)] - **crypto**: enable NODE_EXTRA_CA_CERTS with BoringSSL (Shelley Vohr) [#​52217](https://togithub.com/nodejs/node/pull/52217) - \[[`03e05b092c`](https://togithub.com/nodejs/node/commit/03e05b092c)] - **crypto**: deprecate implicitly shortened GCM tags (Tobias Nießen) [#​52345](https://togithub.com/nodejs/node/pull/52345) - \[[`0f784c96ba`](https://togithub.com/nodejs/node/commit/0f784c96ba)] - **crypto**: make timingSafeEqual faster for Uint8Array (Tobias Nießen) [#​52341](https://togithub.com/nodejs/node/pull/52341) - \[[`739958e472`](https://togithub.com/nodejs/node/commit/739958e472)] - **crypto**: reject [`Ed25519`](https://togithub.com/nodejs/node/commit/Ed25519)/Ed448 in Sign/Verify prototypes (Filip Skokan) [#​52340](https://togithub.com/nodejs/node/pull/52340) - \[[`197b61f210`](https://togithub.com/nodejs/node/commit/197b61f210)] - **crypto**: validate RSA-PSS saltLength in subtle.sign and subtle.verify (Filip Skokan) [#​52262](https://togithub.com/nodejs/node/pull/52262) - \[[`a6eede33f3`](https://togithub.com/nodejs/node/commit/a6eede33f3)] - **crypto**: fix `input` validation in `crypto.hash` (Antoine du Hamel) [#​52070](https://togithub.com/nodejs/node/pull/52070) - \[[`bfa4986e5d`](https://togithub.com/nodejs/node/commit/bfa4986e5d)] - **deps**: update corepack to 0.28.0 (Node.js GitHub Bot) [#​52616](https://togithub.com/nodejs/node/pull/52616) - \[[`70546698d7`](https://togithub.com/nodejs/node/commit/70546698d7)] - **deps**: update ada to 2.7.8 (Node.js GitHub Bot) [#​52517](https://togithub.com/nodejs/node/pull/52517) - \[[`a135027f84`](https://togithub.com/nodejs/node/commit/a135027f84)] - **deps**: update icu to 75.1 (Node.js GitHub Bot) [#​52573](https://togithub.com/nodejs/node/pull/52573) - \[[`c96f1043d4`](https://togithub.com/nodejs/node/commit/c96f1043d4)] - **deps**: update undici to 6.13.0 (Node.js GitHub Bot) [#​52493](https://togithub.com/nodejs/node/pull/52493) - \[[`9c330b610b`](https://togithub.com/nodejs/node/commit/9c330b610b)] - **deps**: update zlib to 1.3.0.1-motley-7d77fb7 (Node.js GitHub Bot) [#​52516](https://togithub.com/nodejs/node/pull/52516) - \[[`7e5bbeebab`](https://togithub.com/nodejs/node/commit/7e5bbeebab)] - **deps**: update nghttp2 to 1.61.0 (Node.js GitHub Bot) [#​52395](https://togithub.com/nodejs/node/pull/52395) - \[[`b42a4735d9`](https://togithub.com/nodejs/node/commit/b42a4735d9)] - **deps**: update minimatch to 9.0.4 (Node.js GitHub Bot) [#​52524](https://togithub.com/nodejs/node/pull/52524) - \[[`d34fd21bc2`](https://togithub.com/nodejs/node/commit/d34fd21bc2)] - **deps**: update simdutf to 5.2.4 (Node.js GitHub Bot) [#​52473](https://togithub.com/nodejs/node/pull/52473) - \[[`ecc180f830`](https://togithub.com/nodejs/node/commit/ecc180f830)] - **deps**: upgrade npm to 10.5.2 (npm team) [#​52458](https://togithub.com/nodejs/node/pull/52458) - \[[`606c183344`](https://togithub.com/nodejs/node/commit/606c183344)] - **deps**: update simdutf to 5.2.3 (Yagiz Nizipli) [#​52381](https://togithub.com/nodejs/node/pull/52381) - \[[`0a103e99fe`](https://togithub.com/nodejs/node/commit/0a103e99fe)] - **deps**: upgrade npm to 10.5.1 (npm team) [#​52351](https://togithub.com/nodejs/node/pull/52351) - \[[`cce861e670`](https://togithub.com/nodejs/node/commit/cce861e670)] - **deps**: update c-ares to 1.28.1 (Node.js GitHub Bot) [#​52285](https://togithub.com/nodejs/node/pull/52285) - \[[`5258b547ea`](https://togithub.com/nodejs/node/commit/5258b547ea)] - **deps**: update undici to 6.11.1 (Node.js GitHub Bot) [#​52328](https://togithub.com/nodejs/node/pull/52328) - \[[`923a77c80a`](https://togithub.com/nodejs/node/commit/923a77c80a)] - **deps**: update undici to 6.10.2 (Node.js GitHub Bot) [#​52227](https://togithub.com/nodejs/node/pull/52227) - \[[`bd3c6a231c`](https://togithub.com/nodejs/node/commit/bd3c6a231c)] - **deps**: update zlib to 1.3.0.1-motley-24c07df (Node.js GitHub Bot) [#​52199](https://togithub.com/nodejs/node/pull/52199) - \[[`3b41da9a56`](https://togithub.com/nodejs/node/commit/3b41da9a56)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#​52138](https://togithub.com/nodejs/node/pull/52138) - \[[`d6f9ca385c`](https://togithub.com/nodejs/node/commit/d6f9ca385c)] - **deps**: update zlib to 1.3.0.1-motley-24342f6 (Node.js GitHub Bot) [#​52123](https://togithub.com/nodejs/node/pull/52123) - \[[`f5512897b0`](https://togithub.com/nodejs/node/commit/f5512897b0)] - **deps**: update corepack to 0.26.0 (Node.js GitHub Bot) [#​52027](https://togithub.com/nodejs/node/pull/52027) - \[[`d891275178`](https://togithub.com/nodejs/node/commit/d891275178)] - **deps**: update ada to 2.7.7 (Node.js GitHub Bot) [#​52028](https://togithub.com/nodejs/node/pull/52028) - \[[`18838f2db3`](https://togithub.com/nodejs/node/commit/18838f2db3)] - **deps**: update simdutf to 4.0.9 (Node.js GitHub Bot) [#​51655](https://togithub.com/nodejs/node/pull/51655) - \[[`503c034abc`](https://togithub.com/nodejs/node/commit/503c034abc)] - **deps**: update undici to 6.6.2 (Node.js GitHub Bot) [#​51667](https://togithub.com/nodejs/node/pull/51667) - \[[`256bcba52e`](https://togithub.com/nodejs/node/commit/256bcba52e)] - **deps**: update undici to 6.6.0 (Node.js GitHub Bot) [#​51630](https://togithub.com/nodejs/node/pull/51630) - \[[`7a1e321d95`](https://togithub.com/nodejs/node/commit/7a1e321d95)] - **deps**: update undici to 6.4.0 (Node.js GitHub Bot) [#​51527](https://togithub.com/nodejs/node/pull/51527) - \[[`dde9e08224`](https://togithub.com/nodejs/node/commit/dde9e08224)] - **deps**: update ngtcp2 to 1.1.0 (Node.js GitHub Bot) [#​51319](https://togithub.com/nodejs/node/pull/51319) - \[[`0a08c4a7b3`](https://togithub.com/nodejs/node/commit/0a08c4a7b3)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#​51462](https://togithub.com/nodejs/node/pull/51462) - \[[`f1b7bda4f5`](https://togithub.com/nodejs/node/commit/f1b7bda4f5)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#​51278](https://togithub.com/nodejs/node/pull/51278) - \[[`ecadd638cd`](https://togithub.com/nodejs/node/commit/ecadd638cd)] - **deps**: V8: remove references to non-existent flags (Richard Lau) [#​52256](https://togithub.com/nodejs/node/pull/52256) - \[[`27d364491f`](https://togithub.com/nodejs/node/commit/27d364491f)] - **dgram**: use internal addAbortListener (Chemi Atlow) [#​52081](https://togithub.com/nodejs/node/pull/52081) - \[[`b94d11935a`](https://togithub.com/nodejs/node/commit/b94d11935a)] - **diagnostics_channel**: early-exit tracing channel trace methods (Stephen Belanger) [#​51915](https://togithub.com/nodejs/node/pull/51915) - \[[`4acca8ed84`](https://togithub.com/nodejs/node/commit/4acca8ed84)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#​52492](https://togithub.com/nodejs/node/pull/52492) - \[[`bcc06ac5a9`](https://togithub.com/nodejs/node/commit/bcc06ac5a9)] - **doc**: remove relative limitation to pm (Rafael Gonzaga) [#​52648](https://togithub.com/nodejs/node/pull/52648) - \[[`4d5ef4f7af`](https://togithub.com/nodejs/node/commit/4d5ef4f7af)] - **doc**: fix info string causing duplicated code blocks (Mathieu Leenhardt) [#​52660](https://togithub.com/nodejs/node/pull/52660) - \[[`d5a316f5ea`](https://togithub.com/nodejs/node/commit/d5a316f5ea)] - **doc**: run license-builder (github-actions\[bot]) [#​52631](https://togithub.com/nodejs/node/pull/52631) - \[[`d7434fe411`](https://togithub.com/nodejs/node/commit/d7434fe411)] - **doc**: deprecate --experimental-policy (RafaelGSS) [#​52602](https://togithub.com/nodejs/node/pull/52602) - \[[`02a83d89f7`](https://togithub.com/nodejs/node/commit/02a83d89f7)] - **doc**: add info on contributor spotlight program (Michael Dawson) [#​52598](https://togithub.com/nodejs/node/pull/52598) - \[[`a905eaace1`](https://togithub.com/nodejs/node/commit/a905eaace1)] - **doc**: correct unsafe URL example in http docs (Malte Legenhausen) [#​52555](https://togithub.com/nodejs/node/pull/52555) - \[[`69c21a6522`](https://togithub.com/nodejs/node/commit/69c21a6522)] - **doc**: replace U+00A0 with U+0020 (Luigi Pinca) [#​52590](https://togithub.com/nodejs/node/pull/52590) - \[[`5df34c7d0a`](https://togithub.com/nodejs/node/commit/5df34c7d0a)] - **doc**: sort options alphabetically (Luigi Pinca) [#​52589](https://togithub.com/nodejs/node/pull/52589) - \[[`b49464bc9d`](https://togithub.com/nodejs/node/commit/b49464bc9d)] - **doc**: correct stream.finished changes (KaKa) [#​52551](https://togithub.com/nodejs/node/pull/52551) - \[[`4d051ba89b`](https://togithub.com/nodejs/node/commit/4d051ba89b)] - **doc**: add RedYetiDev to triage team (Aviv Keller) [#​52556](https://togithub.com/nodejs/node/pull/52556) - \[[`4ed55bf16c`](https://togithub.com/nodejs/node/commit/4ed55bf16c)] - **doc**: fix issue detected in markdown lint update (Rich Trott) [#​52566](https://togithub.com/nodejs/node/pull/52566) - \[[`a8bc40fd07`](https://togithub.com/nodejs/node/commit/a8bc40fd07)] - **doc**: update test runner coverage limitations (Moshe Atlow) [#​52515](https://togithub.com/nodejs/node/pull/52515) - \[[`17d5ba9fed`](https://togithub.com/nodejs/node/commit/17d5ba9fed)] - **doc**: add lint-js-fix into BUILDING.md (jakecastelli) [#​52290](https://togithub.com/nodejs/node/pull/52290) - \[[`88adbd0991`](https://togithub.com/nodejs/node/commit/88adbd0991)] - **doc**: remove Internet Explorer mention in BUILDING.md (Rich Trott) [#​52455](https://togithub.com/nodejs/node/pull/52455) - \[[`e8cb29d66d`](https://togithub.com/nodejs/node/commit/e8cb29d66d)] - **doc**: accommodate upcoming stricter .md linting (Rich Trott) [#​52454](https://togithub.com/nodejs/node/pull/52454) - \[[`e2ea984c7b`](https://togithub.com/nodejs/node/commit/e2ea984c7b)] - **doc**: add Rafael to steward list (Rafael Gonzaga) [#​52452](https://togithub.com/nodejs/node/pull/52452) - \[[`93d684097a`](https://togithub.com/nodejs/node/commit/93d684097a)] - **doc**: correct naming convention in C++ style guide (Mohammed Keyvanzadeh) [#​52424](https://togithub.com/nodejs/node/pull/52424) - \[[`b9bdb947ac`](https://togithub.com/nodejs/node/commit/b9bdb947ac)] - **doc**: update `process.execArg` example to be more useful (Jacob Smith) [#​52412](https://togithub.com/nodejs/node/pull/52412) - \[[`f3f67ff84a`](https://togithub.com/nodejs/node/commit/f3f67ff84a)] - **doc**: call out http(s).globalAgent default (mathis-west-1) [#​52392](https://togithub.com/nodejs/node/pull/52392) - \[[`392a0d310e`](https://togithub.com/nodejs/node/commit/392a0d310e)] - **doc**: update the location of `build_with_cmake` (Emmanuel Ferdman) [#​52356](https://togithub.com/nodejs/node/pull/52356) - \[[`3ad62f1cc7`](https://togithub.com/nodejs/node/commit/3ad62f1cc7)] - **doc**: reserve 125 for Electron 31 (Shelley Vohr) [#​52379](https://togithub.com/nodejs/node/pull/52379) - \[[`bfd4c7844b`](https://togithub.com/nodejs/node/commit/bfd4c7844b)] - **doc**: use consistent plural form of "index" (Rich Trott) [#​52373](https://togithub.com/nodejs/node/pull/52373) - \[[`6f31cc8361`](https://togithub.com/nodejs/node/commit/6f31cc8361)] - **doc**: add Rafael to sec release stewards (Rafael Gonzaga) [#​52354](https://togithub.com/nodejs/node/pull/52354) - \[[`c55a3be789`](https://togithub.com/nodejs/node/commit/c55a3be789)] - **doc**: document missing options of events.on (Chemi Atlow) [#​52080](https://togithub.com/nodejs/node/pull/52080) - \[[`1a843f7c6d`](https://togithub.com/nodejs/node/commit/1a843f7c6d)] - **doc**: add missing space (Augustin Mauroy) [#​52360](https://togithub.com/nodejs/node/pull/52360) - \[[`8ee20d8693`](https://togithub.com/nodejs/node/commit/8ee20d8693)] - **doc**: add tips about vcpkg cause build faild on windows (Cong Zhang) [#​52181](https://togithub.com/nodejs/node/pull/52181) - \[[`a86705c113`](https://togithub.com/nodejs/node/commit/a86705c113)] - **doc**: replace "below" with "following" (Rich Trott) [#​52315](https://togithub.com/nodejs/node/pull/52315) - \[[`f3e8d1159a`](https://togithub.com/nodejs/node/commit/f3e8d1159a)] - **doc**: fix email pattern to be wrapped with `<<` instead of single `<` (Raz Luvaton) [#​52284](https://togithub.com/nodejs/node/pull/52284) - \[[`cc67720ff9`](https://togithub.com/nodejs/node/commit/cc67720ff9)] - **doc**: update release gpg keyserver (marco-ippolito) [#​52257](https://togithub.com/nodejs/node/pull/52257) - \[[`c2def7df96`](https://togithub.com/nodejs/node/commit/c2def7df96)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#​52257](https://togithub.com/nodejs/node/pull/52257) - \[[`2509f3be18`](https://togithub.com/nodejs/node/commit/2509f3be18)] - **doc**: fix arrow vertical alignment in HTML version (Akash Yeole) [#​52193](https://togithub.com/nodejs/node/pull/52193) - \[[`2abaea3cdc`](https://togithub.com/nodejs/node/commit/2abaea3cdc)] - **doc**: move TSC members from regular to emeritus (Michael Dawson) [#​52209](https://togithub.com/nodejs/node/pull/52209) - \[[`65618a3d7b`](https://togithub.com/nodejs/node/commit/65618a3d7b)] - **doc**: add section explaining todo tests (Colin Ihrig) [#​52204](https://togithub.com/nodejs/node/pull/52204) - \[[`bf0ed95b04`](https://togithub.com/nodejs/node/commit/bf0ed95b04)] - **doc**: edit `ChildProcess` `'message'` event docs (theanarkh) [#​52154](https://togithub.com/nodejs/node/pull/52154) - \[[`3d67b6b5e8`](https://togithub.com/nodejs/node/commit/3d67b6b5e8)] - **doc**: add mold to speeding up section (Cong Zhang) [#​52179](https://togithub.com/nodejs/node/pull/52179) - \[[`8ba308a838`](https://togithub.com/nodejs/node/commit/8ba308a838)] - **doc**: http event order correction (wh0) [#​51464](https://togithub.com/nodejs/node/pull/51464) - \[[`9771f41069`](https://togithub.com/nodejs/node/commit/9771f41069)] - **doc**: move gabrielschulhof to TSC emeritus (Gabriel Schulhof) [#​52192](https://togithub.com/nodejs/node/pull/52192) - \[[`72bd2b0d62`](https://togithub.com/nodejs/node/commit/72bd2b0d62)] - **doc**: fix `--env-file` docs for valid quotes for defining values (Gabriel Bota) [#​52157](https://togithub.com/nodejs/node/pull/52157) - \[[`4f19203dfb`](https://togithub.com/nodejs/node/commit/4f19203dfb)] - **doc**: clarify what is supported in NODE_OPTIONS (Michael Dawson) [#​52076](https://togithub.com/nodejs/node/pull/52076) - \[[`5bce596838`](https://togithub.com/nodejs/node/commit/5bce596838)] - **doc**: fix typos in maintaining-dependencies.md (RoboSchmied) [#​52160](https://togithub.com/nodejs/node/pull/52160) - \[[`f5241e20cc`](https://togithub.com/nodejs/node/commit/f5241e20cc)] - **doc**: add spec for contains module syntax (Geoffrey Booth) [#​52059](https://togithub.com/nodejs/node/pull/52059) - \[[`bda3cdea86`](https://togithub.com/nodejs/node/commit/bda3cdea86)] - **doc**: optimize the doc about Unix abstract socket (theanarkh) [#​52043](https://togithub.com/nodejs/node/pull/52043) - \[[`8d7d6eff81`](https://togithub.com/nodejs/node/commit/8d7d6eff81)] - **doc**: update pnpm link (Superchupu) [#​52113](https://togithub.com/nodejs/node/pull/52113) - \[[`af7c55f62d`](https://togithub.com/nodejs/node/commit/af7c55f62d)] - **doc**: remove ableist language from crypto (Jamie King) [#​52063](https://togithub.com/nodejs/node/pull/52063) - \[[`f8362b0a5a`](https://togithub.com/nodejs/node/commit/f8362b0a5a)] - **doc**: update collaborator email (Ruy Adorno) [#​52088](https://togithub.com/nodejs/node/pull/52088) - \[[`48cbd5f71e`](https://togithub.com/nodejs/node/commit/48cbd5f71e)] - **doc**: state that removing npm is a non-goal (Geoffrey Booth) [#​51951](https://togithub.com/nodejs/node/pull/51951) - \[[`0ef2708131`](https://togithub.com/nodejs/node/commit/0ef2708131)] - **doc**: mention NodeSource in RafaelGSS steward list (Rafael Gonzaga) [#​52057](https://togithub.com/nodejs/node/pull/52057) - \[[`a6473a89be`](https://togithub.com/nodejs/node/commit/a6473a89be)] - **doc**: remove ArrayBuffer from crypto.hash() data parameter type (fengmk2) [#​52069](https://togithub.com/nodejs/node/pull/52069) - \[[`ae7a11c787`](https://togithub.com/nodejs/node/commit/ae7a11c787)] - **doc**: add some commonly used lables up gront (Michael Dawson) [#​52006](https://togithub.com/nodejs/node/pull/52006) - \[[`01aaddde3c`](https://togithub.com/nodejs/node/commit/01aaddde3c)] - **doc**: document that `const c2 = vm.createContext(c1); c1 === c2` is true (Daniel Kaplan) [#​51960](https://togithub.com/nodejs/node/pull/51960) - \[[`912145fac4`](https://togithub.com/nodejs/node/commit/912145fac4)] - **doc**: clarify what moderation issues are for (Antoine du Hamel) [#​51990](https://togithub.com/nodejs/node/pull/51990) - \[[`807c89cb26`](https://togithub.com/nodejs/node/commit/807c89cb26)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#​51991](https://togithub.com/nodejs/node/pull/51991) - \[[`53ff3e5682`](https://togithub.com/nodejs/node/commit/53ff3e5682)] - **doc**: deprecate hmac public constructor (Marco Ippolito) [#​51881](https://togithub.com/nodejs/node/pull/51881) - \[[`5e78a20ef9`](https://togithub.com/nodejs/node/commit/5e78a20ef9)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#​51879](https://togithub.com/nodejs/node/pull/51879) - \[[`7bfb0b43e6`](https://togithub.com/nodejs/node/commit/7bfb0b43e6)] - **events**: rename high & low watermark for consistency (Chemi Atlow) [#​52080](https://togithub.com/nodejs/node/pull/52080) - \[[`5e6967359b`](https://togithub.com/nodejs/node/commit/5e6967359b)] - **events**: extract addAbortListener for safe internal use (Chemi Atlow) [#​52081](https://togithub.com/nodejs/node/pull/52081) - \[[`6930205272`](https://togithub.com/nodejs/node/commit/6930205272)] - **events**: remove abort listener from signal in `on` (Neal Beeken) [#​51091](https://togithub.com/nodejs/node/pull/51091) - \[[`235ab4f99f`](https://togithub.com/nodejs/node/commit/235ab4f99f)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#​52618](https://togithub.com/nodejs/node/pull/52618) - \[[`ca5b827148`](https://togithub.com/nodejs/node/commit/ca5b827148)] - **fs**: fix read / readSync positional offset types (Ruy Adorno) [#​52603](https://togithub.com/nodejs/node/pull/52603) - \[[`e7d0d804b2`](https://togithub.com/nodejs/node/commit/e7d0d804b2)] - **fs**: fixes recursive fs.watch crash on Linux when deleting files (Matteo Collina) [#​52349](https://togithub.com/nodejs/node/pull/52349) - \[[`c5fd193d6b`](https://togithub.com/nodejs/node/commit/c5fd193d6b)] - **fs**: refactor maybeCallback function (Yagiz Nizipli) [#​52129](https://togithub.com/nodejs/node/pull/52129) - \[[`0a9910c2c1`](https://togithub.com/nodejs/node/commit/0a9910c2c1)] - **fs**: fix edge case in readFileSync utf8 fast path (Richard Lau) [#​52101](https://togithub.com/nodejs/node/pull/52101) - \[[`51d7cd5de8`](https://togithub.com/nodejs/node/commit/51d7cd5de8)] - **fs**: validate fd from cpp on `fchown` (Yagiz Nizipli) [#​52051](https://togithub.com/nodejs/node/pull/52051) - \[[`33ad86c2be`](https://togithub.com/nodejs/node/commit/33ad86c2be)] - **fs**: validate fd from cpp on `close` (Yagiz Nizipli) [#​52051](https://togithub.com/nodejs/node/pull/52051) - \[[`34667c0a7e`](https://togithub.com/nodejs/node/commit/34667c0a7e)] - **fs**: validate file mode from cpp (Yagiz Nizipli) [#​52050](https://togithub.com/nodejs/node/pull/52050) - \[[`c530520be3`](https://togithub.com/nodejs/node/commit/c530520be3)] - **fs**: add stacktrace to fs/promises (翠 / green) [#​49849](https://togithub.com/nodejs/node/pull/49849) - \[[`edecd464b9`](https://togithub.com/nodejs/node/commit/edecd464b9)] - **fs,permission**: make handling of buffers consistent (Tobias Nießen) [#​52348](https://togithub.com/nodejs/node/pull/52348) - \[[`3bcd68337e`](https://togithub.com/nodejs/node/commit/3bcd68337e)] - **http2**: fix excessive CPU usage when using `allowHTTP1=true` (Eugene) [#​52713](https://togithub.com/nodejs/node/pull/52713) - \[[`e01015996a`](https://togithub.com/nodejs/node/commit/e01015996a)] - **http2**: fix h2-over-h2 connection proxying (Tim Perry) [#​52368](https://togithub.com/nodejs/node/pull/52368) - \[[`9f88736860`](https://togithub.com/nodejs/node/commit/9f88736860)] - **http2**: use internal addAbortListener (Chemi Atlow) [#​52081](https://togithub.com/nodejs/node/pull/52081) - \[[`acd7758959`](https://togithub.com/nodejs/node/commit/acd7758959)] - **lib**: use predefined variable instead of bit operation (Deokjin Kim) [#​52580](https://togithub.com/nodejs/node/pull/52580) - \[[`18ae7a46f6`](https://togithub.com/nodejs/node/commit/18ae7a46f6)] - **lib**: refactor lazy loading of undici for fetch method (Victor Chen) [#​52275](https://togithub.com/nodejs/node/pull/52275) - \[[`64c2c2a7ac`](https://togithub.com/nodejs/node/commit/64c2c2a7ac)] - **lib**: replace string prototype usage with alternatives (Aviv Keller) [#​52440](https://togithub.com/nodejs/node/pull/52440) - \[[`ee11b5315c`](https://togithub.com/nodejs/node/commit/ee11b5315c)] - **lib**: .load .save add proper error message when no file passed (Thomas Mauran) [#​52225](https://togithub.com/nodejs/node/pull/52225) - \[[`e5521b537f`](https://togithub.com/nodejs/node/commit/e5521b537f)] - **lib**: fix type error for \_refreshLine (Jackson Tian) [#​52133](https://togithub.com/nodejs/node/pull/52133) - \[[`d5d6e041c8`](https://togithub.com/nodejs/node/commit/d5d6e041c8)] - **lib**: emit listening event once when call listen twice (theanarkh) [#​52119](https://togithub.com/nodejs/node/pull/52119) - \[[`d33fc36784`](https://togithub.com/nodejs/node/commit/d33fc36784)] - **lib**: make sure clear the old timer in http server (theanarkh) [#​52118](https://togithub.com/nodejs/node/pull/52118) - \[[`ea4905c0f5`](https://togithub.com/nodejs/node/commit/ea4905c0f5)] - **lib**: fix listen with handle in cluster worker (theanarkh) [#​52056](https://togithub.com/nodejs/node/pull/52056) - \[[`8fd8130507`](https://togithub.com/nodejs/node/commit/8fd8130507)] - **lib, doc**: rename readme.md to README.md (Aviv Keller) [#​52471](https://togithub.com/nodejs/node/pull/52471) - \[[`722fe64ff7`](https://togithub.com/nodejs/node/commit/722fe64ff7)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#​52509](https://togithub.com/nodejs/node/pull/52509) - \[[`26691e6032`](https://togithub.com/nodejs/node/commit/26691e6032)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​52633](https://togithub.com/nodejs/node/pull/52633) - \[[`befb90dc83`](https://togithub.com/nodejs/node/commit/befb90dc83)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​52457](https://togithub.com/nodejs/node/pull/52457) - \[[`22b7167e72`](https://togithub.com/nodejs/node/commit/22b7167e72)] - **meta**: bump actions/download-artifact from 4.1.3 to 4.1.4 (dependabot\[bot]) [#​52314](https://togithub.com/nodejs/node/pull/52314) - \[[`4dafd3ede2`](https://togithub.com/nodejs/node/commit/4dafd3ede2)] - **meta**: bump rtCamp/action-slack-notify from 2.2.1 to 2.3.0 (dependabot\[bot]) [#​52313](https://togithub.com/nodejs/node/pull/52313) - \[[`2760db7640`](https://togithub.com/nodejs/node/commit/2760db7640)] - **meta**: bump github/codeql-action from 3.24.6 to 3.24.9 (dependabot\[bot]) [#​52312](https://togithub.com/nodejs/node/pull/52312) - \[[`542aaf9ca9`](https://togithub.com/nodejs/node/commit/542aaf9ca9)] - **meta**: bump actions/cache from 4.0.1 to 4.0.2 (dependabot\[bot]) [#​52311](https://togithub.com/nodejs/node/pull/52311) - \[[`df330998d9`](https://togithub.com/nodejs/node/commit/df330998d9)] - **meta**: bump actions/setup-python from 5.0.0 to 5.1.0 (dependabot\[bot]) [#​52310](https://togithub.com/nodejs/node/pull/52310) - \[[`5f40fe0cc2`](https://togithub.com/nodejs/node/commit/5f40fe0cc2)] - **meta**: bump codecov/codecov-action from 4.1.0 to 4.1.1 (dependabot\[bot]) [#​52308](https://togithub.com/nodejs/node/pull/52308) - \[[`481420f25c`](https://togithub.com/nodejs/node/commit/481420f25c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​52300](https://togithub.com/nodejs/node/pull/52300) - \[[`3121949f85`](https://togithub.com/nodejs/node/commit/3121949f85)] - **meta**: pass Codecov upload token to codecov action (Michaël Zasso) [#​51982](https://togithub.com/nodejs/node/pull/51982) - \[[`882a64e639`](https://togithub.com/nodejs/node/commit/882a64e639)] - **module**: fix detect-module not retrying as esm for cjs-only errors (Geoffrey Booth) [#​52024](https://togithub.com/nodejs/node/pull/52024) - \[[`5fcc1d32a8`](https://togithub.com/nodejs/node/commit/5fcc1d32a8)] - **module**: refactor ESM loader initialization and entry point handling (Joyee Cheung) [#​51999](https://togithub.com/nodejs/node/pull/51999) - \[[`d116fa1568`](https://togithub.com/nodejs/node/commit/d116fa1568)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#​52474](https://togithub.com/nodejs/node/pull/52474) - \[[`37abad86ae`](https://togithub.com/nodejs/node/commit/37abad86ae)] - **net**: use internal addAbortListener (Chemi Atlow) [#​52081](https://togithub.com/nodejs/node/pull/52081) - \[[`a920489a1f`](https://togithub.com/nodejs/node/commit/a920489a1f)] - **node-api**: address coverity report (Michael Dawson) [#​52584](https://togithub.com/nodejs/node/pull/52584) - \[[`0a225a4b40`](https://togithub.com/nodejs/node/commit/0a225a4b40)] - **node-api**: copy external type tags when they are set (Niels Martignène) [#​52426](https://togithub.com/nodejs/node/pull/52426) - \[[`f9d95674be`](https://togithub.com/nodejs/node/commit/f9d95674be)] - **node-api**: make tsfn accept napi_finalize once more (Gabriel Schulhof) [#​51801](https://togithub.com/nodejs/node/pull/51801) - \[[`72aabe1139`](https://togithub.com/nodejs/node/commit/72aabe1139)] - **perf_hooks**: reduce overhead of createHistogram (Vinícius Lourenço) [#​50074](https://togithub.com/nodejs/node/pull/50074) - \[[`fb601c3a94`](https://togithub.com/nodejs/node/commit/fb601c3a94)] - **readline**: use internal addAbortListener (Chemi Atlow) [#​52081](https://togithub.com/nodejs/node/pull/52081) - \[[`29f09f05f7`](https://togithub.com/nodejs/node/commit/29f09f05f7)] - **(SEMVER-MINOR)** **report**: add `--report-exclude-network` option (Ethan Arrowood) [#​51645](https://togithub.com/nodejs/node/pull/51645) - \[[`7e6d923f5b`](https://togithub.com/nodejs/node/commit/7e6d923f5b)] - **src**: cast to v8::Value before using v8::EmbedderGraph::V8Node (Joyee Cheung) [#​52638](https://togithub.com/nodejs/node/pull/52638) - \[[`6af7b78b0d`](https://togithub.com/nodejs/node/commit/6af7b78b0d)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#​52595](https://togithub.com/nodejs/node/pull/52595) - \[[`27491e55c1`](https://togithub.com/nodejs/node/commit/27491e55c1)] - **src**: remove regex usage for env file parsing (IlyasShabi) [#​52406](https://togithub.com/nodejs/node/pull/52406) - \[[`b05e639e27`](https://togithub.com/nodejs/node/commit/b05e639e27)] - **src**: fix loadEnvFile ENOENT error (mathis-west-1) [#​52438](https://togithub.com/nodejs/node/pull/52438) - \[[`1b4d2814d1`](https://togithub.com/nodejs/node/commit/1b4d2814d1)] - **src**: update branch name in node_revert.h (Tobias Nießen) [#​52390](https://togithub.com/nodejs/node/pull/52390) - \[[`7e35a169ea`](https://togithub.com/nodejs/node/commit/7e35a169ea)] - **src**: stop using `v8::BackingStore::Reallocate` (Michaël Zasso) [#​52292](https://togithub.com/nodejs/node/pull/52292) - \[[`2449d2606a`](https://togithub.com/nodejs/node/commit/2449d2606a)] - **src**: fix move after use reported by coverity (Michael Dawson) [#​52141](https://togithub.com/nodejs/node/pull/52141) - \[[`b33eff887d`](https://togithub.com/nodejs/node/commit/b33eff887d)] - **(SEMVER-MINOR)** **src**: add C++ ProcessEmitWarningSync() (Joyee Cheung) [#​51977](https://togithub.com/nodejs/node/pull/51977) - \[[`f2c7408927`](https://togithub.com/nodejs/node/commit/f2c7408927)] - **src**: return a number from process.constrainedMemory() constantly (Chengzhong Wu) [#​52039](https://togithub.com/nodejs/node/pull/52039) - \[[`7f575c886b`](https://togithub.com/nodejs/node/commit/7f575c886b)] - **(SEMVER-MINOR)** **src**: add uv_get_available_memory to report and process (theanarkh) [#​52023](https://togithub.com/nodejs/node/pull/52023) - \[[`e161e62313`](https://togithub.com/nodejs/node/commit/e161e62313)] - **src**: use dedicated routine to compile function for builtin CJS loader (Joyee Cheung) [#​52016](https://togithub.com/nodejs/node/pull/52016) - \[[`07322b490f`](https://togithub.com/nodejs/node/commit/07322b490f)] - **src**: fix reading empty string views in Blob\[De]serializer (Joyee Cheung) [#​52000](https://togithub.com/nodejs/node/pull/52000) - \[[`e216192390`](https://togithub.com/nodejs/node/commit/e216192390)] - **src**: refactor out FormatErrorMessage for error formatting (Joyee Cheung) [#​51999](https://togithub.com/nodejs/node/pull/51999) - \[[`b3a11b574b`](https://togithub.com/nodejs/node/commit/b3a11b574b)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#​51539](https://togithub.com/nodejs/node/pull/51539) - \[[`09bd367ef6`](https://togithub.com/nodejs/node/commit/09bd367ef6)] - **stream**: make Duplex inherit destroy from Writable (Luigi Pinca) [#​52318](https://togithub.com/nodejs/node/pull/52318) - \[[`0b853a7576`](https://togithub.com/nodejs/node/commit/0b853a7576)] - **(SEMVER-MINOR)** **stream**: support typed arrays (IlyasShabi) [#​51866](https://togithub.com/nodejs/node/pull/51866) - \[[`f8209ffe45`](https://togithub.com/nodejs/node/commit/f8209ffe45)] - **stream**: add `new` when constructing `ERR_MULTIPLE_CALLBACK` (haze) [#​52110](https://togithub.com/nodejs/node/pull/52110) - \[[`8442457117`](https://togithub.com/nodejs/node/commit/8442457117)] - **stream**: use internal addAbortListener (Chemi Atlow) [#​52081](https://togithub.com/nodejs/node/pull/52081) - \[[`8d20b641a2`](https://togithub.com/nodejs/node/commit/8d20b641a2)] - ***Revert*** "**stream**: fix cloned webstreams not being unref'd" (Matteo Collina) [#​51491](https://togithub.com/nodejs/node/pull/51491) - \[[`a923adffab`](https://togithub.com/nodejs/node/commit/a923adffab)] - **test**: mark `test-error-serdes` as flaky (Antoine du Hamel) [#​52739](https://togithub.com/nodejs/node/pull/52739) - \[[`d4f1803f0b`](https://togithub.com/nodejs/node/commit/d4f1803f0b)] - **test**: mark test as flaky (Michael Dawson) [#​52671](https://togithub.com/nodejs/node/pull/52671) - \[[`1e88e042c2`](https://togithub.com/nodejs/node/commit/1e88e042c2)] - **test**: skip test-fs-watch-recursive-delete.js on IBM i (Abdirahim Musse) [#​52645](https://togithub.com/nodejs/node/pull/52645) - \[[`6da558af8b`](https://togithub.com/nodejs/node/commit/6da558af8b)] - **test**: ensure that all worker servers are ready (Luigi Pinca) [#​52563](https://togithub.com/nodejs/node/pull/52563) - \[[`c871fadb85`](https://togithub.com/nodejs/node/commit/c871fadb85)] - **test**: fix test-tls-ticket-cluster.js (Hüseyin Açacak) [#​52431](https://togithub.com/nodejs/node/pull/52431) - \[[`b6cb74d775`](https://togithub.com/nodejs/node/commit/b6cb74d775)] - **test**: split wasi poll test for windows (Hüseyin Açacak) [#​52538](https://togithub.com/nodejs/node/pull/52538) - \[[`4ad159bb75`](https://togithub.com/nodejs/node/commit/4ad159bb75)] - **test**: write tests for assertIsArray http2 util (Sinan Sonmez (Chaush)) [#​52511](https://togithub.com/nodejs/node/pull/52511) - \[[`1f7a28cbe7`](https://togithub.com/nodejs/node/commit/1f7a28cbe7)] - **test**: fix watch test with require not testing pid (Raz Luvaton) [#​52353](https://togithub.com/nodejs/node/pull/52353) - \[[`5b758b93d5`](https://togithub.com/nodejs/node/commit/5b758b93d5)] - **test**: simplify ASan build checks (Michaël Zasso) [#​52430](https://togithub.com/nodejs/node/pull/52430) - \[[`375c3db5ea`](https://togithub.com/nodejs/node/commit/375c3db5ea)] - **test**: fix Windows compiler warnings in overlapped-checker (Michaël Zasso) [#​52405](https://togithub.com/nodejs/node/pull/52405) - \[[`a1dd92cdee`](https://togithub.com/nodejs/node/commit/a1dd92cdee)] - **test**: add test for skip+todo combinations (Colin Ihrig) [#​52204](https://togithub.com/nodejs/node/pull/52204) - \[[`8a0b721930`](https://togithub.com/nodejs/node/commit/8a0b721930)] - **test**: fix incorrect test fixture (Colin Ihrig) [#​52185](https://togithub.com/nodejs/node/pull/52185) - \[[`dd1f761f3b`](https://togithub.com/nodejs/node/commit/dd1f761f3b)] - **test**: add missing cctest/test_path.cc (Yagiz Nizipli) [#​52148](https://togithub.com/nodejs/node/pull/52148) - \[[`6da446d9e1`](https://togithub.com/nodejs/node/commit/6da446d9e1)] - **test**: add `spawnSyncAndAssert` util (Antoine du Hamel) [#​52132](https://togithub.com/nodejs/node/pull/52132) - \[[`d7bfb4e8d8`](https://togithub.com/nodejs/node/commit/d7bfb4e8d8)] - **test**: reduce flakiness of test-runner-output.mjs (Colin Ihrig) [#​52146](https://togithub.com/nodejs/node/pull/52146) - \[[`e4981b3d75`](https://togithub.com/nodejs/node/commit/e4981b3d75)] - **test**: add test for using `--print` with promises (Antoine du Hamel) [#​52137](https://togithub.com/nodejs/node/pull/52137) - \[[`5cc540078e`](https://togithub.com/nodejs/node/commit/5cc540078e)] - **test**: un-set test-emit-after-on-destroyed as flaky (Abdirahim Musse) [#​51995](https://togithub.com/nodejs/node/pull/51995) - \[[`b9eb0035dd`](https://togithub.com/nodejs/node/commit/b9eb0035dd)] - **test**: skip test for dynamically linked OpenSSL (Richard Lau) [#​52542](https://togithub.com/nodejs/node/pull/52542) - \[[`32014f5601`](https://togithub.com/nodejs/node/commit/32014f5601)] - **test**: avoid v8 deadcode on performance function (Vinícius Lourenço) [#​50074](https://togithub.com/nodejs/node/pull/50074) - \[[`29d2011f51`](https://togithub.com/nodejs/node/commit/29d2011f51)] - **test_runner**: better error handing for test hook (Alex Yang) [#​52401](https://togithub.com/nodejs/node/pull/52401) - \[[`9497097fb3`](https://togithub.com/nodejs/node/commit/9497097fb3)] - **test_runner**: fix clearing final timeout in own callback (Ben Richeson) [#​52332](https://togithub.com/nodejs/node/pull/52332) - \[[`0f690f0b9e`](https://togithub.com/nodejs/node/commit/0f690f0b9e)] - **test_runner**: fix recursive run (Moshe Atlow) [#​52322](https://togithub.com/nodejs/node/pull/52322) - \[[`34ab1a36ee`](https://togithub.com/nodejs/node/commit/34ab1a36ee)] - **test_runner**: hide new line when no error in spec reporter (Moshe Atlow) [#​52297](https://togithub.com/nodejs/node/pull/52297) - \[[`379535abe3`](https://togithub.com/nodejs/node/commit/379535abe3)] - **test_runner**: disable highWatermark on TestsStream (Colin Ihrig) [#​52287](https://togithub.com/nodejs/node/pull/52287) - \[[`35588cff39`](https://togithub.com/nodejs/node/commit/35588cff39)] - **test_runner**: run afterEach hooks in correct order (Colin Ihrig) [#​52239](https://togithub.com/nodejs/node/pull/52239) - \[[`5cd3df8fe1`](https://togithub.com/nodejs/node/commit/5cd3df8fe1)] - **test_runner**: simplify test end time tracking (Colin Ihrig) [#​52182](https://togithub.com/nodejs/node/pull/52182) - \[[`07e4a42e4b`](https://togithub.com/nodejs/node/commit/07e4a42e4b)] - **test_runner**: simplify test start time tracking (Colin Ihrig) [#​52182](https://togithub.com/nodejs/node/pull/52182) - \[[`caec996831`](https://togithub.com/nodejs/node/commit/caec996831)] - **test_runner**: emit diagnostics when watch mode drains (Moshe Atlow) [#​52130](https://togithub.com/nodejs/node/pull/52130) - \[[`41646d9c9e`](https://togithub.com/nodejs/node/commit/41646d9c9e)] - **(SEMVER-MINOR)** **test_runner**: add suite() (Colin Ihrig) [#​52127](https://togithub.com/nodejs/node/pull/52127) - \[[`fd1489a623`](https://togithub.com/nodejs/node/commit/fd1489a623)] - **test_runner**: skip each hooks for skipped tests (Colin Ihrig) [#​52115](https://togithub.com/nodejs/node/pull/52115) - \[[`73b38bfa9e`](https://togithub.com/nodejs/node/commit/73b38bfa9e)] - **test_runner**: remove redundant report call (Colin Ihrig) [#​52089](https://togithub.com/nodejs/node/pull/52089) - \[[`68187c4d9e`](https://togithub.com/nodejs/node/commit/68187c4d9e)] - **test_runner**: use internal addAbortListener (Chemi Atlow) [#​52081](https://togithub.com/nodejs/node/pull/52081) - \[[`61e7ae05ef`](https://togithub.com/nodejs/node/commit/61e7ae05ef)] - **test_runner**: use source maps when reporting coverage (Moshe Atlow) [#​52060](https://togithub.com/nodejs/node/pull/52060) - \[[`e64a25af61`](https://togithub.com/nodejs/node/commit/e64a25af61)] - **test_runner**: handle undefined test locations (Colin Ihrig) [#​52036](https://togithub.com/nodejs/node/pull/52036) - \[[`590decf202`](https://togithub.com/nodejs/node/commit/590decf202)] - **test_runner**: avoid overwriting root start time (Colin Ihrig) [#​52020](https://togithub.com/nodejs/node/pull/52020) - \[[`a4cbb61c65`](https://togithub.com/nodejs/node/commit/a4cbb61c65)] - **test_runner**: abort unfinished tests on async error (Colin Ihrig) [#​51996](https://togithub.com/nodejs/node/pull/51996) - \[[`a223ca4868`](https://togithub.com/nodejs/node/commit/a223ca4868)] - **test_runner**: run before hook immediately if test started (Moshe Atlow) [#​52003](https://togithub.com/nodejs/node/pull/52003) - \[[`956ee74c7e`](https://togithub.com/nodejs/node/commit/956ee74c7e)] - **test_runner**: add support for null and date value output (Malthe Borch) [#​51920](https://togithub.com/nodejs/node/pull/51920) - \[[`fc9ba17f6c`](https://togithub.com/nodejs/node/commit/fc9ba17f6c)] - **(SEMVER-MINOR)** **test_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#​51909](https://togithub.com/nodejs/node/pull/51909) - \[[`d5ac979aeb`](https://togithub.com/nodejs/node/commit/d5ac979aeb)] - **test_runner**: format coverage report for tap reporter (Pulkit Gupta) [#​51119](https://togithub.com/nodejs/node/pull/51119) - \[[`c925bc18dc`](https://togithub.com/nodejs/node/commit/c925bc18dc)] - **tools**: take co-authors into account in `find-inactive-collaborators` (Antoine du Hamel) [#​52669](https://togithub.com/nodejs/node/pull/52669) - \[[`1d37e772ec`](https://togithub.com/nodejs/node/commit/1d37e772ec)] - **tools**: fix invalid escape sequence in mkssldef (Michaël Zasso) [#​52624](https://togithub.com/nodejs/node/pull/52624) - \[[`5b22fc3a81`](https://togithub.com/nodejs/node/commit/5b22fc3a81)] - **tools**: update lint-md-dependencies to rollup@4.15.0 (Node.js GitHub Bot) [#​52617](https://togithub.com/nodejs/node/pull/52617) - \[[`9cf47bb2f1`](https://togithub.com/nodejs/node/commit/9cf47bb2f1)] - **tools**: update lint-md-dependencies (Rich Trott) [#​52581](https://togithub.com/nodejs/node/pull/52581) - \[[`c0c60d13c0`](https://togithub.com/nodejs/node/commit/c0c60d13c0)] - **tools**: fix heading spaces for osx-entitlements.plist (Jackson Tian) [#​52561](https://togithub.com/nodejs/node/pull/52561) - \[[`7c349d7819`](https://togithub.com/nodejs/node/commit/7c349d7819)] - **tools**: update lint-md-dependencies to rollup@4.14.2 vfile-reporter@8.1.1 (Node.js GitHub Bot) [#​52518](https://togithub.com/nodejs/node/pull/52518) - \[[`b4d703297b`](https://togithub.com/nodejs/node/commit/b4d703297b)] - **tools**: use stylistic ESLint plugin for formatting (Michaël Zasso) [#​50714](https://togithub.com/nodejs/node/pull/50714) - \[[`c6813360c2`](https://togithub.com/nodejs/node/commit/c6813360c2)] - **tools**: update minimatch index path (Marco Ippolito) [#​52523](https://togithub.com/nodejs/node/pull/52523) - \[[`8464c0253c`](https://togithub.com/nodejs/node/commit/8464c0253c)] - **tools**: add a linter for README lists (Antoine du Hamel) [#​52476](https://togithub.com/nodejs/node/pull/52476) - \[[`55a3fbc842`](https://togithub.com/nodejs/node/commit/55a3fbc842)] - **tools**: change inactive limit to 12 months (Yagiz Nizipli) [#​52425](https://togithub.com/nodejs/node/pull/52425) - \[[`74a171f130`](https://togithub.com/nodejs/node/commit/74a171f130)] - **tools**: update stale bot messaging (Wes Todd) [#​52423](https://togithub.com/nodejs/node/pull/52423) - \[[`b2a3dcec2a`](https://togithub.com/nodejs/node/commit/b2a3dcec2a)] - **tools**: update lint-md-dependencies to rollup@4.14.0 (Node.js GitHub Bot) [#​52398](https://togithub.com/nodejs/node/pull/52398) - \[[`f71a777e6e`](https://togithub.com/nodejs/node/commit/f71a777e6e)] - **tools**: update Ruff to v0.3.4 (Michaël Zasso) [#​52302](https://togithub.com/nodejs/node/pull/52302) - \[[`e3e0c68f8f`](https://togithub.com/nodejs/node/commit/e3e0c68f8f)] - **tools**: run test-ubsan on ubuntu-latest (Michaël Zasso) [#​52375](https://togithub.com/nodejs/node/pull/52375) - \[[`893b5aac31`](https://togithub.com/nodejs/node/commit/893b5aac31)] - **tools**: update lint-md-dependencies to rollup@4.13.2 (Node.js GitHub Bot) [#​52286](https://togithub.com/nodejs/node/pull/52286) - \[[`049cca419e`](https://togithub.com/nodejs/node/commit/049cca419e)] - ***Revert*** "**tools**: run `build-windows` workflow only on source changes" (Michaël Zasso) [#​52320](https://togithub.com/nodejs/node/pull/52320) - \[[`b3dfc62cee`](https://togithub.com/nodejs/node/commit/b3dfc62cee)] - **tools**: use Python 3.12 in GitHub Actions workflows (Michaël Zasso) [#​52301](https://togithub.com/nodejs/node/pull/52301) - \[[`c7238d0c04`](https://togithub.com/nodejs/node/commit/c7238d0c04)] - **tools**: allow local updates for llhttp (Paolo Insogna) [#​52085](https://togithub.com/nodejs/node/pull/52085) - \[[`c39f15cafd`](https://togithub.com/nodejs/node/commit/c39f15cafd)] - **tools**: install npm PowerShell scripts on Windows (Luke Karrys) [#​52009](https://togithub.com/nodejs/node/pull/52009) - \[[`b36fea064a`](https://togithub.com/nodejs/node/commit/b36fea064a)] - **tools**: update lint-md-dependencies to rollup@4.13.0 (Node.js GitHub Bot) [#​52122](https://togithub.com/nodejs/node/pull/52122) - \[[`a5204eb915`](https://togithub.com/nodejs/node/commit/a5204eb915)] - **tools**: fix error reported by coverity in js2c.cc (Michael Dawson) [#​52142](https://togithub.com/nodejs/node/pull/52142) - \[[`cef4b7ef3d`](https://togithub.com/nodejs/node/commit/cef4b7ef3d)] - **tools**: sync ubsan workflow with asan (Michaël Zasso) [#​52152](https://togithub.com/nodejs/node/pull/52152) - \[[`d406976bbe`](https://togithub.com/nodejs/node/commit/d406976bbe)] - **tools**: update github_reporter to 1.7.0 (Node.js GitHub Bot) [#​52121](https://togithub.com/nodejs/node/pull/52121) - \[[`fb100a2ac8`](https://togithub.com/nodejs/node/commit/fb100a2ac8)] - **tools**: remove gyp-next .github folder (Marco Ippolito) [#​52064](https://togithub.com/nodejs/node/pull/52064) - \[[`5f1e7a0de2`](https://togithub.com/nodejs/node/commit/5f1e7a0de2)] - **tools**: update gyp-next to 0.16.2 (Node.js GitHub Bot) [#​52062](https://togithub.com/nodejs/node/pull/52062) - \[[`1f1253446b`](https://togithub.com/nodejs/node/commit/1f1253446b)] - **tools**: install manpage to share/man for FreeBSD (Po-Chuan Hsieh) [#​51791](https://togithub.com/nodejs/node/pull/51791) - \[[`4b8b92fccc`](https://togithub.com/nodejs/node/commit/4b8b92fccc)] - **tools**: automate gyp-next update (Marco Ippolito) [#​52014](https://togithub.com/nodejs/node/pull/52014) - \[[`1ec9e58692`](https://togithub.com/nodejs/node/commit/1ec9e58692)] - **typings**: fix invalid JSDoc declarations (Yagiz Nizipli) [#​52659](https://togithub.com/nodejs/node/pull/52659) - \[[`2d6b19970b`](https://togithub.com/nodejs/node/commit/2d6b19970b)] - **(SEMVER-MINOR)** **util**: support array of formats in util.styleText (Marco Ippolito) [#​52040](https://togithub.com/nodejs/node/pull/52040) - \[[`d30cccdf8c`](https://togithub.com/nodejs/node/commit/d30cccdf8c)] - **(SEMVER-MINOR)** **v8**: implement v8.queryObjects() for memory leak regression testing (Joyee Cheung) [#​51927](https://togithub.com/nodejs/node/pull/51927) - \[[`7f3b7fdeff`](https://togithub.com/nodejs/node/commit/7f3b7fdeff)] - **watch**: fix some node argument not passed to watched process (Raz Luvaton) [#​52358](https://togithub.com/nodejs/node/pull/52358) - \[[`8ba6f9bc9a`](https://togithub.com/nodejs/node/commit/8ba6f9bc9a)] - **watch**: use internal addAbortListener (Chemi Atlow) [#​52081](https://togithub.com/nodejs/node/pull/52081) - \[[`5a922232da`](https://togithub.com/nodejs/node/commit/5a922232da)] - **watch**: mark as stable (Moshe Atlow) [#​52074](https://togithub.com/nodejs/ </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.71.1` -> `0.71.2`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.71.1/0.71.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.71.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.71.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.71.1/0.71.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.71.1/0.71.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [node](https://togithub.com/nodejs/node) | stage | patch | `20.13.0-bookworm` -> `20.13.1-bookworm` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/nodejs/node/badge)](https://securityscorecards.dev/viewer/?uri=github.com/nodejs/node) | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v20.13.1`](https://togithub.com/nodejs/node/releases/tag/v20.13.1): 2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito [Compare Source](https://togithub.com/nodejs/node/compare/v20.13.0...v20.13.1) #### 2024-05-09, Version 20.13.1 'Iron' (LTS), [@​marco-ippolito](https://togithub.com/marco-ippolito) ##### Revert "tools: install npm PowerShell scripts on Windows" Due to a regression in the npm installation on Windows, this commit reverts the change that installed npm PowerShell scripts on Windows. ##### Commits - \[[`b7d80802cc`](https://togithub.com/nodejs/node/commit/b7d80802cc)] - ***Revert*** "**tools**: install npm PowerShell scripts on Windows" (marco-ippolito) [#​52897](https://togithub.com/nodejs/node/pull/52897) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNTEuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM1MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.71.2` -> `0.72.0`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.71.2/0.72.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.72.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.72.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.71.2/0.72.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.71.2/0.72.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjMuNSIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.72.0` -> `0.72.1`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.72.0/0.72.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.72.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.72.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.72.0/0.72.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.72.0/0.72.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.72.1` -> `0.72.2`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.72.1/0.72.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.72.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.72.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.72.1/0.72.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.72.1/0.72.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/solidity-token-erc20-metatx). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Bumps the npm_and_yarn group with 1 update in the /subgraph directory: [follow-redirects](https://github.com/follow-redirects/follow-redirects). Updates `follow-redirects` from 1.15.5 to 1.15.6 - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - [Commits](follow-redirects/follow-redirects@v1.15.5...v1.15.6) --- updated-dependencies: - dependency-name: follow-redirects dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
Dependabot couldn't find a package.json. Because of this, Dependabot cannot update this pull request. |
Dependabot couldn't find a package.json. Because of this, Dependabot cannot update this pull request. |
1 similar comment
Dependabot couldn't find a package.json. Because of this, Dependabot cannot update this pull request. |
This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests. To ignore these dependencies, configure ignore rules in dependabot.yml |
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​graphprotocol/graph-cli | [`0.78.0` -> `0.79.0`](https://renovatebot.com/diffs/npm/@graphprotocol%2fgraph-cli/0.78.0/0.79.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@graphprotocol%2fgraph-cli/0.79.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphprotocol%2fgraph-cli/0.79.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphprotocol%2fgraph-cli/0.78.0/0.79.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphprotocol%2fgraph-cli/0.78.0/0.79.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/settlemint/btp-smartcontractsets). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Bumps the npm_and_yarn group with 1 update in the /subgraph directory: follow-redirects.
Updates
follow-redirects
from 1.15.5 to 1.15.6Commits
35a517c
Release version 1.15.6 of the npm package.c4f847f
Drop Proxy-Authorization across hosts.8526b4a
Use GitHub for disclosure.Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.