bcgov / nr-rfc-alertauthoring

a tool to help create structured data for River Forecast Centre alert feeds
Apache License 2.0
0 stars 0 forks source link

chore(deps): update all non-major dependencies #99

Closed renovate[bot] closed 5 months ago

renovate[bot] commented 5 months ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
caddy final patch 2.7.5-alpine -> 2.7.6-alpine age adoption passing confidence
fastapi dependencies minor 0.110.1 -> 0.111.0 age adoption passing confidence
node stage minor 20.10.0-bullseye-slim -> 20.12.2-bullseye-slim age adoption passing confidence
postgresql (source) minor 15.1.2 -> 15.2.9 age adoption passing confidence
python final minor 3.11-alpine -> 3.12-alpine age adoption passing confidence
python stage minor 3.11-alpine -> 3.12-alpine age adoption passing confidence
ruff (source, changelog) dependencies minor ^0.3.4 -> ^0.4.0 age adoption passing confidence
typescript (source) devDependencies minor ~5.2.2 -> ~5.4.0 age adoption passing confidence
uvicorn (changelog) dependencies minor ^0.24.0 -> ^0.29.0 age adoption passing confidence

Release Notes

tiangolo/fastapi (fastapi) ### [`v0.111.0`](https://togithub.com/tiangolo/fastapi/releases/tag/0.111.0) [Compare Source](https://togithub.com/tiangolo/fastapi/compare/0.110.3...0.111.0) ##### Features - ✨ Add FastAPI CLI, the new `fastapi` command. PR [#​11522](https://togithub.com/tiangolo/fastapi/pull/11522) by [@​tiangolo](https://togithub.com/tiangolo). - New docs: [FastAPI CLI](https://fastapi.tiangolo.com/fastapi-cli/). Try it out with: ```console $ pip install --upgrade fastapi $ fastapi dev main.py ╭────────── FastAPI CLI - Development mode ───────────╮ │ │ │ Serving at: http://127.0.0.1:8000 │ │ │ │ API docs: http://127.0.0.1:8000/docs │ │ │ │ Running in development mode, for production use: │ │ │ │ fastapi run │ │ │ ╰─────────────────────────────────────────────────────╯ INFO: Will watch for changes in these directories: ['/home/user/code/awesomeapp'] INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) INFO: Started reloader process [2248755] using WatchFiles INFO: Started server process [2248757] INFO: Waiting for application startup. INFO: Application startup complete. ``` ##### Refactors - 🔧 Add configs and setup for `fastapi-slim` including optional extras `fastapi-slim[standard]`, and `fastapi` including by default the same `standard` extras. PR [#​11503](https://togithub.com/tiangolo/fastapi/pull/11503) by [@​tiangolo](https://togithub.com/tiangolo). ### [`v0.110.3`](https://togithub.com/tiangolo/fastapi/releases/tag/0.110.3) [Compare Source](https://togithub.com/tiangolo/fastapi/compare/0.110.2...0.110.3) #### Latest Changes ##### Docs - 📝 Update references to Python version, FastAPI supports all the current versions, no need to make the version explicit. PR [#​11496](https://togithub.com/tiangolo/fastapi/pull/11496) by [@​tiangolo](https://togithub.com/tiangolo). - ✏️ Fix typo in `fastapi/security/api_key.py`. PR [#​11481](https://togithub.com/tiangolo/fastapi/pull/11481) by [@​ch33zer](https://togithub.com/ch33zer). - ✏️ Fix typo in `security/http.py`. PR [#​11455](https://togithub.com/tiangolo/fastapi/pull/11455) by [@​omarmoo5](https://togithub.com/omarmoo5). ##### Translations - 🌐 Add Traditional Chinese translation for `docs/zh-hant/benchmarks.md`. PR [#​11484](https://togithub.com/tiangolo/fastapi/pull/11484) by [@​KNChiu](https://togithub.com/KNChiu). - 🌐 Update Chinese translation for `docs/zh/docs/fastapi-people.md`. PR [#​11476](https://togithub.com/tiangolo/fastapi/pull/11476) by [@​billzhong](https://togithub.com/billzhong). - 🌐 Add Chinese translation for `docs/zh/docs/how-to/index.md` and `docs/zh/docs/how-to/general.md`. PR [#​11443](https://togithub.com/tiangolo/fastapi/pull/11443) by [@​billzhong](https://togithub.com/billzhong). - 🌐 Add Spanish translation for cookie-params `docs/es/docs/tutorial/cookie-params.md`. PR [#​11410](https://togithub.com/tiangolo/fastapi/pull/11410) by [@​fabianfalon](https://togithub.com/fabianfalon). ##### Internal - ⬆ Bump mkdocstrings\[python] from 0.23.0 to 0.24.3. PR [#​11469](https://togithub.com/tiangolo/fastapi/pull/11469) by [@​dependabot\[bot\]](https://togithub.com/apps/dependabot). - 🔨 Update internal scripts and remove unused ones. PR [#​11499](https://togithub.com/tiangolo/fastapi/pull/11499) by [@​tiangolo](https://togithub.com/tiangolo). - 🔧 Migrate from Hatch to PDM for the internal build. PR [#​11498](https://togithub.com/tiangolo/fastapi/pull/11498) by [@​tiangolo](https://togithub.com/tiangolo). - ⬆️ Upgrade MkDocs Material and re-enable cards. PR [#​11466](https://togithub.com/tiangolo/fastapi/pull/11466) by [@​tiangolo](https://togithub.com/tiangolo). - ⬆ Bump pillow from 10.2.0 to 10.3.0. PR [#​11403](https://togithub.com/tiangolo/fastapi/pull/11403) by [@​dependabot\[bot\]](https://togithub.com/apps/dependabot). - 🔧 Ungroup dependabot updates. PR [#​11465](https://togithub.com/tiangolo/fastapi/pull/11465) by [@​tiangolo](https://togithub.com/tiangolo). ### [`v0.110.2`](https://togithub.com/tiangolo/fastapi/releases/tag/0.110.2) [Compare Source](https://togithub.com/tiangolo/fastapi/compare/0.110.1...0.110.2) ##### Fixes - 🐛 Fix support for query parameters with list types, handle JSON encoding Pydantic `UndefinedType`. PR [#​9929](https://togithub.com/tiangolo/fastapi/pull/9929) by [@​arjwilliams](https://togithub.com/arjwilliams). ##### Refactors - ♻️ Simplify Pydantic configs in OpenAPI models in `fastapi/openapi/models.py`. PR [#​10886](https://togithub.com/tiangolo/fastapi/pull/10886) by [@​JoeTanto2](https://togithub.com/JoeTanto2). - ✨ Add support for Pydantic's 2.7 new deprecated Field parameter, remove URL from validation errors response. PR [#​11461](https://togithub.com/tiangolo/fastapi/pull/11461) by [@​tiangolo](https://togithub.com/tiangolo). ##### Docs - 📝 Fix types in examples under `docs_src/extra_data_types`. PR [#​10535](https://togithub.com/tiangolo/fastapi/pull/10535) by [@​nilslindemann](https://togithub.com/nilslindemann). - 📝 Update references to UJSON. PR [#​11464](https://togithub.com/tiangolo/fastapi/pull/11464) by [@​tiangolo](https://togithub.com/tiangolo). - 📝 Tweak docs and translations links, typos, format. PR [#​11389](https://togithub.com/tiangolo/fastapi/pull/11389) by [@​nilslindemann](https://togithub.com/nilslindemann). - 📝 Fix typo in `docs/es/docs/async.md`. PR [#​11400](https://togithub.com/tiangolo/fastapi/pull/11400) by [@​fabianfalon](https://togithub.com/fabianfalon). - 📝 Update OpenAPI client generation docs to use `@hey-api/openapi-ts`. PR [#​11339](https://togithub.com/tiangolo/fastapi/pull/11339) by [@​jordanshatford](https://togithub.com/jordanshatford). ##### Translations - 🌐 Update Chinese translation for `docs/zh/docs/index.html`. PR [#​11430](https://togithub.com/tiangolo/fastapi/pull/11430) by [@​waketzheng](https://togithub.com/waketzheng). - 🌐 Add Russian translation for `docs/ru/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md`. PR [#​11411](https://togithub.com/tiangolo/fastapi/pull/11411) by [@​anton2yakovlev](https://togithub.com/anton2yakovlev). - 🌐 Add Portuguese translations for `learn/index.md` `resources/index.md` `help/index.md` `about/index.md`. PR [#​10807](https://togithub.com/tiangolo/fastapi/pull/10807) by [@​nazarepiedady](https://togithub.com/nazarepiedady). - 🌐 Update Russian translations for deployments docs. PR [#​11271](https://togithub.com/tiangolo/fastapi/pull/11271) by [@​Lufa1u](https://togithub.com/Lufa1u). - 🌐 Add Bengali translations for `docs/bn/docs/python-types.md`. PR [#​11376](https://togithub.com/tiangolo/fastapi/pull/11376) by [@​imtiaz101325](https://togithub.com/imtiaz101325). - 🌐 Add Korean translation for `docs/ko/docs/tutorial/security/simple-oauth2.md`. PR [#​5744](https://togithub.com/tiangolo/fastapi/pull/5744) by [@​KdHyeon0661](https://togithub.com/KdHyeon0661). - 🌐 Add Korean translation for `docs/ko/docs/help-fastapi.md`. PR [#​4139](https://togithub.com/tiangolo/fastapi/pull/4139) by [@​kty4119](https://togithub.com/kty4119). - 🌐 Add Korean translation for `docs/ko/docs/advanced/events.md`. PR [#​5087](https://togithub.com/tiangolo/fastapi/pull/5087) by [@​pers0n4](https://togithub.com/pers0n4). - 🌐 Add Japanese translation for `docs/ja/docs/tutorial/path-operation-configuration.md`. PR [#​1954](https://togithub.com/tiangolo/fastapi/pull/1954) by [@​SwftAlpc](https://togithub.com/SwftAlpc). - 🌐 Add Japanese translation for `docs/ja/docs/tutorial/request-forms-and-files.md`. PR [#​1946](https://togithub.com/tiangolo/fastapi/pull/1946) by [@​SwftAlpc](https://togithub.com/SwftAlpc). - 🌐 Add Russian translation for `docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md`. PR [#​10532](https://togithub.com/tiangolo/fastapi/pull/10532) by [@​AlertRED](https://togithub.com/AlertRED). - 🌐 Add Korean translation for `docs/ko/docs/tutorial/debugging.md`. PR [#​5695](https://togithub.com/tiangolo/fastapi/pull/5695) by [@​JungWooGeon](https://togithub.com/JungWooGeon). ##### Internal - ⬆️ Upgrade version of typer for docs. PR [#​11393](https://togithub.com/tiangolo/fastapi/pull/11393) by [@​tiangolo](https://togithub.com/tiangolo).
nodejs/node (node) ### [`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) ### [`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) ### [`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)] - **

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



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


Thanks for the PR!

Deployments, as required, will be available below:

Please create PRs in draft mode. Mark as ready to enable:

After merge, new images are deployed in:

renovate[bot] commented 5 months ago

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

The artifact failure details are included below:

File name: frontend/hydro_alerting/package-lock.json
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @angular-devkit/build-angular@17.1.2
npm error Found: typescript@5.4.5
npm error node_modules/typescript
npm error   dev typescript@"~5.4.0" from the root project
npm error   peerOptional typescript@">=4.9.5" from cosmiconfig@8.3.6
npm error   node_modules/cosmiconfig
npm error     cosmiconfig@"^8.3.5" from postcss-loader@7.3.4
npm error     node_modules/postcss-loader
npm error       postcss-loader@"7.3.4" from @angular-devkit/build-angular@17.1.2
npm error       node_modules/@angular-devkit/build-angular
npm error         dev @angular-devkit/build-angular@"^17.0.3" from the root project
npm error
npm error Could not resolve dependency:
npm error peer typescript@">=5.2 <5.4" from @angular-devkit/build-angular@17.1.2
npm error node_modules/@angular-devkit/build-angular
npm error   dev @angular-devkit/build-angular@"^17.0.3" from the root project
npm error
npm error Conflicting peer dependency: typescript@5.3.3
npm error node_modules/typescript
npm error   peer typescript@">=5.2 <5.4" from @angular-devkit/build-angular@17.1.2
npm error   node_modules/@angular-devkit/build-angular
npm error     dev @angular-devkit/build-angular@"^17.0.3" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2024-05-07T00_18_22_203Z-eresolve-report.txt

npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-05-07T00_18_22_203Z-debug-0.log
renovate[bot] commented 5 months ago

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.