42fa725f8170323cb8173beccd1f23aa3ed29db0
432 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
42fa725f81 |
fix(website): update astro 5.14.0 → 5.14.1 (#40052)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.14.0` -> `5.14.1`](https://renovatebot.com/diffs/npm/astro/5.14.0/5.14.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.14.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5141) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.14.0...astro@5.14.1) ##### Patch Changes - [#​14440](https://redirect.github.com/withastro/astro/pull/14440) [`a3e16ab`](https://redirect.github.com/withastro/astro/commit/a3e16ab6dd0bef9ab6259f23bfeebed747e27497) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Fixes a case where the URLs generated by the experimental Fonts API would be incorrect in dev </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
0eb9490467 |
fix(website): update astro 5.13.11 → 5.14.0 (#40020)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.13.11` -> `5.14.0`](https://renovatebot.com/diffs/npm/astro/5.13.11/5.14.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.14.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5140) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.11...astro@5.14.0) ##### Minor Changes - [#​13520](https://redirect.github.com/withastro/astro/pull/13520) [`a31edb8`](https://redirect.github.com/withastro/astro/commit/a31edb8daad8632bacd1861adf6ac720695f7173) Thanks [@​openscript](https://redirect.github.com/openscript)! - Adds a new property `routePattern` available to `GetStaticPathsOptions` This provides the original, dynamic segment definition in a routing file path (e.g. `/[...locale]/[files]/[slug]`) from the Astro render context that would not otherwise be available within the scope of `getStaticPaths()`. This can be useful to calculate the `params` and `props` for each page route. For example, you can now localize your route segments and return an array of static paths by passing `routePattern` to a custom `getLocalizedData()` helper function. The `params` object will be set with explicit values for each route segment (e.g. `locale`, `files`, and `slug)`. Then, these values will be used to generate the routes and can be used in your page template via `Astro.params`. ```astro // src/pages/[...locale]/[files]/[slug].astro import { getLocalizedData } from "../../../utils/i18n"; export async function getStaticPaths({ routePattern }) { const response = await fetch('...'); const data = await response.json(); console.log(routePattern); // [...locale]/[files]/[slug] // Call your custom helper with `routePattern` to generate the static paths return data.flatMap((file) => getLocalizedData(file, routePattern)); } const { locale, files, slug } = Astro.params; ``` For more information about this advanced routing pattern, see Astro's [routing reference](https://docs.astro.build/en/reference/routing-reference/#routepattern). - [#​13651](https://redirect.github.com/withastro/astro/pull/13651) [`dcfbd8c`](https://redirect.github.com/withastro/astro/commit/dcfbd8c9d5dc798d1bcb9b36531c2eded301050d) Thanks [@​ADTC](https://redirect.github.com/ADTC)! - Adds a new `SvgComponent` type You can now more easily enforce type safety for your `.svg` assets by directly importing `SVGComponent` from `astro/types`: </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
2c38a49173 |
chore(deps): update node.js v22.19.0 → v22.20.0 (#39986)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [node](https://nodejs.org) ([source](https://redirect.github.com/nodejs/node)) | minor | `22.19.0` -> `22.20.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v22.20.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.20.0): 2025-09-24, Version 22.20.0 'Jod' (LTS), @​richardlau [Compare Source](https://redirect.github.com/nodejs/node/compare/v22.19.0...v22.20.0) ##### Notable Changes ##### OpenSSL updated to 3.5.2 For official Node.js builds, or builds using the default build configuration, Node.js now bundles OpenSSL 3.5.2. This update allows Node.js 22.x to be supported through to the planned End-of-Life date of 2027-04-30 as the previously bundled OpenSSL 3.0.x goes out of support in September 2026. This change does not affect third-party builds of Node.js that link to an external OpenSSL (or OpenSSL-compatible) library. ##### Other notable changes - \[[`5b83e1e0a2`](https://redirect.github.com/nodejs/node/commit/5b83e1e0a2)] - **crypto**: update root certificates to NSS 3.114 (Node.js GitHub Bot) [#​59571](https://redirect.github.com/nodejs/node/pull/59571) - \[[`34b25fd97b`](https://redirect.github.com/nodejs/node/commit/34b25fd97b)] - **doc**: stabilize --disable-sigusr1 (Rafael Gonzaga) [#​59707](https://redirect.github.com/nodejs/node/pull/59707) - \[[`bf41218ed9`](https://redirect.github.com/nodejs/node/commit/bf41218ed9)] - **doc**: mark `path.matchesGlob` as stable (Aviv Keller) [#​59572](https://redirect.github.com/nodejs/node/pull/59572) - \[[`1dbad2058f`](https://redirect.github.com/nodejs/node/commit/1dbad2058f)] - **(SEMVER-MINOR)** **http**: add Agent.agentKeepAliveTimeoutBuffer option (Haram Jeong) [#​59315](https://redirect.github.com/nodejs/node/pull/59315) - \[[`062e837d5f`](https://redirect.github.com/nodejs/node/commit/062e837d5f)] - **(SEMVER-MINOR)** **http2**: add support for raw header arrays in h2Stream.respond() (Tim Perry) [#​59455](https://redirect.github.com/nodejs/node/pull/59455) - \[[`b8066611c3`](https://redirect.github.com/nodejs/node/commit/b8066611c3)] - **inspector**: add http2 tracking support (Darshan Sen) [#​59611](https://redirect.github.com/nodejs/node/pull/59611) - \[[`9b7dd40da8`](https://redirect.github.com/nodejs/node/commit/9b7dd40da8)] - **(SEMVER-MINOR)** **sea**: implement execArgvExtension (Joyee Cheung) [#​59560](https://redirect.github.com/nodejs/node/pull/59560) - \[[`48bfbd3dca`](https://redirect.github.com/nodejs/node/commit/48bfbd3dca)] - **(SEMVER-MINOR)** **sea**: support execArgv in sea config (Joyee Cheung) [#​59314](https://redirect.github.com/nodejs/node/pull/59314) - \[[`cf06e74076`](https://redirect.github.com/nodejs/node/commit/cf06e74076)] - **(SEMVER-MINOR)** **stream**: add brotli support to CompressionStream and DecompressionStream (Matthew Aitken) [#​59464](https://redirect.github.com/nodejs/node/pull/59464) - \[[`62bb80c17e`](https://redirect.github.com/nodejs/node/commit/62bb80c17e)] - **(SEMVER-MINOR)** **test\_runner**: support object property mocking (Idan Goshen) [#​58438](https://redirect.github.com/nodejs/node/pull/58438) - \[[`9e2aa23be9`](https://redirect.github.com/nodejs/node/commit/9e2aa23be9)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#​59428](https://redirect.github.com/nodejs/node/pull/59428) ##### Commits - \[[`b7b78fd565`](https://redirect.github.com/nodejs/node/commit/b7b78fd565)] - **assert**: cap input size in myersDiff to avoid Int32Array overflow (Haram Jeong) [#​59578](https://redirect.github.com/nodejs/node/pull/59578) - \[[`9da50a6c53`](https://redirect.github.com/nodejs/node/commit/9da50a6c53)] - **benchmark**: sqlite prevent create both tables on prepare selects (Bruno Rodrigues) [#​59709](https://redirect.github.com/nodejs/node/pull/59709) - \[[`4c1538770e`](https://redirect.github.com/nodejs/node/commit/4c1538770e)] - **benchmark**: calibrate config array-vs-concat (Rafael Gonzaga) [#​59587](https://redirect.github.com/nodejs/node/pull/59587) - \[[`fc3f82d683`](https://redirect.github.com/nodejs/node/commit/fc3f82d683)] - **benchmark**: calibrate config v8/serialize.js (Rafael Gonzaga) [#​59586](https://redirect.github.com/nodejs/node/pull/59586) - \[[`e95c9b2950`](https://redirect.github.com/nodejs/node/commit/e95c9b2950)] - **benchmark**: reduce readfile-permission-enabled config (Rafael Gonzaga) [#​59589](https://redirect.github.com/nodejs/node/pull/59589) - \[[`e4fea38b31`](https://redirect.github.com/nodejs/node/commit/e4fea38b31)] - **benchmark**: calibrate length of util.diff (Rafael Gonzaga) [#​59588](https://redirect.github.com/nodejs/node/pull/59588) - \[[`c5d68c4a0f`](https://redirect.github.com/nodejs/node/commit/c5d68c4a0f)] - **benchmark, test**: replace CRLF variable with string literal (Lee Jiho) [#​59466](https://redirect.github.com/nodejs/node/pull/59466) - \[[`129a1d673b`](https://redirect.github.com/nodejs/node/commit/129a1d673b)] - **build**: fix getting OpenSSL version on Windows (Michaël Zasso) [#​59609](https://redirect.github.com/nodejs/node/pull/59609) - \[[`9f53db7162`](https://redirect.github.com/nodejs/node/commit/9f53db7162)] - **build**: fix 'implicit-function-declaration' on OpenHarmony platform (hqzing) [#​59547](https://redirect.github.com/nodejs/node/pull/59547) - \[[`3839593e07`](https://redirect.github.com/nodejs/node/commit/3839593e07)] - **build**: use `windows-2025` runner (Michaël Zasso) [#​59673](https://redirect.github.com/nodejs/node/pull/59673) - \[[`e430464669`](https://redirect.github.com/nodejs/node/commit/e430464669)] - **build**: compile bundled uvwasi conditionally (Carlo Cabrera) [#​59622](https://redirect.github.com/nodejs/node/pull/59622) - \[[`e2c9cab0cd`](https://redirect.github.com/nodejs/node/commit/e2c9cab0cd)] - **build**: do not set `-mminimal-toc` with `clang` (Richard Lau) [#​59484](https://redirect.github.com/nodejs/node/pull/59484) - \[[`208bc810a1`](https://redirect.github.com/nodejs/node/commit/208bc810a1)] - **child\_process**: remove unsafe array iteration (hotpineapple) [#​59347](https://redirect.github.com/nodejs/node/pull/59347) - \[[`d74799d90c`](https://redirect.github.com/nodejs/node/commit/d74799d90c)] - **crypto**: load system CA certificates off thread (Joyee Cheung) [#​59550](https://redirect.github.com/nodejs/node/pull/59550) - \[[`5b83e1e0a2`](https://redirect.github.com/nodejs/node/commit/5b83e1e0a2)] - **crypto**: update root certificates to NSS 3.114 (Node.js GitHub Bot) [#​59571](https://redirect.github.com/nodejs/node/pull/59571) - \[[`d289b1d1af`](https://redirect.github.com/nodejs/node/commit/d289b1d1af)] - **deps**: V8: cherry-pick [`e3df60f`](https://redirect.github.com/nodejs/node/commit/e3df60f3f5ab) (Chengzhong Wu) [#​58691](https://redirect.github.com/nodejs/node/pull/58691) - \[[`cf5d91e2a6`](https://redirect.github.com/nodejs/node/commit/cf5d91e2a6)] - **deps**: update uvwasi to 0.0.23 (Node.js GitHub Bot) [#​59791](https://redirect.github.com/nodejs/node/pull/59791) - \[[`1cf24a0445`](https://redirect.github.com/nodejs/node/commit/1cf24a0445)] - **deps**: update histogram to 0.11.9 (Node.js GitHub Bot) [#​59689](https://redirect.github.com/nodejs/node/pull/59689) - \[[`8638bd3f2e`](https://redirect.github.com/nodejs/node/commit/8638bd3f2e)] - **deps**: update googletest to [`eb2d85e`](https://redirect.github.com/nodejs/node/commit/eb2d85e) (Node.js GitHub Bot) [#​59335](https://redirect.github.com/nodejs/node/pull/59335) - \[[`3ff4eb5b37`](https://redirect.github.com/nodejs/node/commit/3ff4eb5b37)] - **deps**: update amaro to 1.1.2 (Node.js GitHub Bot) [#​59616](https://redirect.github.com/nodejs/node/pull/59616) - \[[`4d268ac034`](https://redirect.github.com/nodejs/node/commit/4d268ac034)] - **deps**: V8: cherry-pick [`7b91e3e`](https://redirect.github.com/nodejs/node/commit/7b91e3e2cbaf) (Milad Fa) [#​59485](https://redirect.github.com/nodejs/node/pull/59485) - \[[`83410eb0e3`](https://redirect.github.com/nodejs/node/commit/83410eb0e3)] - **deps**: V8: cherry-pick [`59d52e3`](https://redirect.github.com/nodejs/node/commit/59d52e311bb1) (Milad Fa) [#​59485](https://redirect.github.com/nodejs/node/pull/59485) - \[[`5780af02cb`](https://redirect.github.com/nodejs/node/commit/5780af02cb)] - **deps**: update amaro to 1.1.1 (Node.js GitHub Bot) [#​59141](https://redirect.github.com/nodejs/node/pull/59141) - \[[`2986eca821`](https://redirect.github.com/nodejs/node/commit/2986eca821)] - **deps**: V8: cherry-pick [`6b1b9bc`](https://redirect.github.com/nodejs/node/commit/6b1b9bca2a8) (zhoumingtao) [#​59283](https://redirect.github.com/nodejs/node/pull/59283) - \[[`98e399b3ea`](https://redirect.github.com/nodejs/node/commit/98e399b3ea)] - **deps**: update archs files for openssl-3.5.2 (Node.js GitHub Bot) [#​59371](https://redirect.github.com/nodejs/node/pull/59371) - \[[`2b983a7520`](https://redirect.github.com/nodejs/node/commit/2b983a7520)] - **deps**: upgrade openssl sources to openssl-3.5.2 (Node.js GitHub Bot) [#​59371](https://redirect.github.com/nodejs/node/pull/59371) - \[[`7ffbb42454`](https://redirect.github.com/nodejs/node/commit/7ffbb42454)] - **deps**: update archs files for openssl-3.5.1 (Node.js GitHub Bot) [#​59234](https://redirect.github.com/nodejs/node/pull/59234) - \[[`bd48a60a75`](https://redirect.github.com/nodejs/node/commit/bd48a60a75)] - **deps**: upgrade openssl sources to openssl-3.5.1 (Node.js GitHub Bot) [#​59234](https://redirect.github.com/nodejs/node/pull/59234) - \[[`24762a10ca`](https://redirect.github.com/nodejs/node/commit/24762a10ca)] - **deps**: fix OpenSSL security level at 1 (Richard Lau) [#​59859](https://redirect.github.com/nodejs/node/pull/59859) - \[[`1233e92d10`](https://redirect.github.com/nodejs/node/commit/1233e92d10)] - **diagnostics\_channel**: revoke DEP0163 (René) [#​59758](https://redirect.github.com/nodejs/node/pull/59758) - \[[`34b25fd97b`](https://redirect.github.com/nodejs/node/commit/34b25fd97b)] - **doc**: stabilize --disable-sigusr1 (Rafael Gonzaga) [#​59707](https://redirect.github.com/nodejs/node/pull/59707) - \[[`d7adf8be64`](https://redirect.github.com/nodejs/node/commit/d7adf8be64)] - **doc**: update "Type stripping in dependencies" section (Josh Kelley) [#​59652](https://redirect.github.com/nodejs/node/pull/59652) - \[[`a1d7e4fdbf`](https://redirect.github.com/nodejs/node/commit/a1d7e4fdbf)] - **doc**: add Miles Guicent as triager (Miles Guicent) [#​59562](https://redirect.github.com/nodejs/node/pull/59562) - \[[`bf41218ed9`](https://redirect.github.com/nodejs/node/commit/bf41218ed9)] - **doc**: mark `path.matchesGlob` as stable (Aviv Keller) [#​59572](https://redirect.github.com/nodejs/node/pull/59572) - \[[`afaa1ccb74`](https://redirect.github.com/nodejs/node/commit/afaa1ccb74)] - **doc**: improve documentation for raw headers in HTTP/2 APIs (Tim Perry) [#​59633](https://redirect.github.com/nodejs/node/pull/59633) - \[[`b95ff56102`](https://redirect.github.com/nodejs/node/commit/b95ff56102)] - **doc**: update install\_tools.bat free disk space (Stefan Stojanovic) [#​59579](https://redirect.github.com/nodejs/node/pull/59579) - \[[`6ff939b8d3`](https://redirect.github.com/nodejs/node/commit/6ff939b8d3)] - **doc**: fix filehandle.read typo (Ruy Adorno) [#​59635](https://redirect.github.com/nodejs/node/pull/59635) - \[[`963bfa9d6f`](https://redirect.github.com/nodejs/node/commit/963bfa9d6f)] - **doc**: fix missing link to the Error documentation in the `http` page (Alexander Makarenko) [#​59080](https://redirect.github.com/nodejs/node/pull/59080) - \[[`0e10a8ea27`](https://redirect.github.com/nodejs/node/commit/0e10a8ea27)] - **doc**: improve `sqlite.backup()` progress/fulfillment documentation (René) [#​59598](https://redirect.github.com/nodejs/node/pull/59598) - \[[`18ceefbabd`](https://redirect.github.com/nodejs/node/commit/18ceefbabd)] - **doc**: clarify experimental platform vulnerability policy (Matteo Collina) [#​59591](https://redirect.github.com/nodejs/node/pull/59591) - \[[`66cdd00368`](https://redirect.github.com/nodejs/node/commit/66cdd00368)] - **doc**: link to `TypedArray.from()` in signature (Aviv Keller) [#​59226](https://redirect.github.com/nodejs/node/pull/59226) - \[[`9f058ce7c0`](https://redirect.github.com/nodejs/node/commit/9f058ce7c0)] - **doc**: fix typos in `environment_variables.md` (PhistucK) [#​59536](https://redirect.github.com/nodejs/node/pull/59536) - \[[`3cfec820e9`](https://redirect.github.com/nodejs/node/commit/3cfec820e9)] - **doc**: add security incident reponse plan (Rafael Gonzaga) [#​59470](https://redirect.github.com/nodejs/node/pull/59470) - \[[`46aa3434e6`](https://redirect.github.com/nodejs/node/commit/46aa3434e6)] - **doc**: clarify maxRSS unit in `process.resourceUsage()` (Alex Yang) [#​59511](https://redirect.github.com/nodejs/node/pull/59511) - \[[`adf98f600a`](https://redirect.github.com/nodejs/node/commit/adf98f600a)] - **doc**: add missing Zstd strategy constants (RANDRIAMANANTENA Narindra Tiana Annaick) [#​59312](https://redirect.github.com/nodejs/node/pull/59312) - \[[`f335989942`](https://redirect.github.com/nodejs/node/commit/f335989942)] - **doc**: fix the version tls.DEFAULT\_CIPHERS was added (Allon Murienik) [#​59247](https://redirect.github.com/nodejs/node/pull/59247) - \[[`7fa14fcf54`](https://redirect.github.com/nodejs/node/commit/7fa14fcf54)] - **doc**: clarify glob's exclude option behavior (hotpineapple) [#​59245](https://redirect.github.com/nodejs/node/pull/59245) - \[[`85b8d255c9`](https://redirect.github.com/nodejs/node/commit/85b8d255c9)] - **doc**: add RafaelGSS as performance strategic lead (Rafael Gonzaga) [#​59445](https://redirect.github.com/nodejs/node/pull/59445) - \[[`16b1f7a602`](https://redirect.github.com/nodejs/node/commit/16b1f7a602)] - **doc**: add new environment variables doc page (Dario Piotrowicz) [#​59052](https://redirect.github.com/nodejs/node/pull/59052) - \[[`b4a43ed83a`](https://redirect.github.com/nodejs/node/commit/b4a43ed83a)] - **doc**: add missing environment variables to manpage (amir lavasani) [#​58963](https://redirect.github.com/nodejs/node/pull/58963) - \[[`c923cfe898`](https://redirect.github.com/nodejs/node/commit/c923cfe898)] - **doc**: fix links in test.md (Vas Sudanagunta) [#​58876](https://redirect.github.com/nodejs/node/pull/58876) - \[[`a93a8b5eda`](https://redirect.github.com/nodejs/node/commit/a93a8b5eda)] - **doc**: mark type stripping as release candidate (Marco Ippolito) [#​57705](https://redirect.github.com/nodejs/node/pull/57705) - \[[`d302cb3bb2`](https://redirect.github.com/nodejs/node/commit/d302cb3bb2)] - **esm**: add experimental support for addon modules (Chengzhong Wu) [#​55844](https://redirect.github.com/nodejs/node/pull/55844) - \[[`d55c3e7f0b`](https://redirect.github.com/nodejs/node/commit/d55c3e7f0b)] - **esm**: link modules synchronously when no async loader hooks are used (Joyee Cheung) [#​59519](https://redirect.github.com/nodejs/node/pull/59519) - \[[`9e1fbb620f`](https://redirect.github.com/nodejs/node/commit/9e1fbb620f)] - **esm**: show race error message for inner module job race (Joyee Cheung) [#​59519](https://redirect.github.com/nodejs/node/pull/59519) - \[[`8c4dcd5199`](https://redirect.github.com/nodejs/node/commit/8c4dcd5199)] - **esm**: sync-ify module translation (Joyee Cheung) [#​59453](https://redirect.github.com/nodejs/node/pull/59453) - \[[`71038932d3`](https://redirect.github.com/nodejs/node/commit/71038932d3)] - **fs**: fix wrong order of file names in cpSync error message (Nicholas Paun) [#​59775](https://redirect.github.com/nodejs/node/pull/59775) - \[[`5692dec451`](https://redirect.github.com/nodejs/node/commit/5692dec451)] - **fs**: fix dereference: false on cpSync (Nicholas Paun) [#​59681](https://redirect.github.com/nodejs/node/pull/59681) - \[[`dafd561d37`](https://redirect.github.com/nodejs/node/commit/dafd561d37)] - **fs**: fix return value of fs APIs (theanarkh) [#​58996](https://redirect.github.com/nodejs/node/pull/58996) - \[[`da6e8cb75b`](https://redirect.github.com/nodejs/node/commit/da6e8cb75b)] - **http**: unbreak keepAliveTimeoutBuffer (Robert Nagy) [#​59784](https://redirect.github.com/nodejs/node/pull/59784) - \[[`673a48f0a2`](https://redirect.github.com/nodejs/node/commit/673a48f0a2)] - **http**: use cached '1.1' http version string (Robert Nagy) [#​59717](https://redirect.github.com/nodejs/node/pull/59717) - \[[`1dbad2058f`](https://redirect.github.com/nodejs/node/commit/1dbad2058f)] - **(SEMVER-MINOR)** **http**: add Agent.agentKeepAliveTimeoutBuffer option (Haram Jeong) [#​59315](https://redirect.github.com/nodejs/node/pull/59315) - \[[`062e837d5f`](https://redirect.github.com/nodejs/node/commit/062e837d5f)] - **(SEMVER-MINOR)** **http2**: add support for raw header arrays in h2Stream.respond() (Tim Perry) [#​59455](https://redirect.github.com/nodejs/node/pull/59455) - \[[`4d4fb51b89`](https://redirect.github.com/nodejs/node/commit/4d4fb51b89)] - **http2**: report sent headers object in client stream dcs (Darshan Sen) [#​59419](https://redirect.github.com/nodejs/node/pull/59419) - \[[`b8066611c3`](https://redirect.github.com/nodejs/node/commit/b8066611c3)] - **inspector**: add http2 tracking support (Darshan Sen) [#​59611](https://redirect.github.com/nodejs/node/pull/59611) - \[[`9b2c013032`](https://redirect.github.com/nodejs/node/commit/9b2c013032)] - **inspector**: prevent propagation of promise hooks to noPromise hooks (Shima Ryuhei) [#​58841](https://redirect.github.com/nodejs/node/pull/58841) - \[[`a2329895e7`](https://redirect.github.com/nodejs/node/commit/a2329895e7)] - **lib**: fix DOMException subclass support (Chengzhong Wu) [#​59680](https://redirect.github.com/nodejs/node/pull/59680) - \[[`edb9248bdd`](https://redirect.github.com/nodejs/node/commit/edb9248bdd)] - **lib**: make domexception a native error (Chengzhong Wu) [#​58691](https://redirect.github.com/nodejs/node/pull/58691) - \[[`ccf29cda19`](https://redirect.github.com/nodejs/node/commit/ccf29cda19)] - ***Revert*** "**lib**: optimize writable stream buffer clearing" (Yoo) [#​59743](https://redirect.github.com/nodejs/node/pull/59743) - \[[`f291eda277`](https://redirect.github.com/nodejs/node/commit/f291eda277)] - **lib**: fix isReadable and isWritable return type value (Gabriel Quaresma) [#​59089](https://redirect.github.com/nodejs/node/pull/59089) - \[[`10ae8684ea`](https://redirect.github.com/nodejs/node/commit/10ae8684ea)] - **lib**: revert to using default derived class constructors (René) [#​59650](https://redirect.github.com/nodejs/node/pull/59650) - \[[`5d3b80d62d`](https://redirect.github.com/nodejs/node/commit/5d3b80d62d)] - **lib**: do not modify prototype deprecated asyncResource (encore) (Szymon Łągiewka) [#​59518](https://redirect.github.com/nodejs/node/pull/59518) - \[[`3c4541f878`](https://redirect.github.com/nodejs/node/commit/3c4541f878)] - **lib**: simplify IPv6 checks in isLoopback() (Krishnadas) [#​59375](https://redirect.github.com/nodejs/node/pull/59375) - \[[`0b631bbffa`](https://redirect.github.com/nodejs/node/commit/0b631bbffa)] - **lib**: handle windows reserved device names on UNC (Rafael Gonzaga) [#​59286](https://redirect.github.com/nodejs/node/pull/59286) - \[[`297f62ba1f`](https://redirect.github.com/nodejs/node/commit/297f62ba1f)] - **meta**: bump `codecov/codecov-action` (dependabot\[bot]) [#​59726](https://redirect.github.com/nodejs/node/pull/59726) - \[[`3dcd8446b6`](https://redirect.github.com/nodejs/node/commit/3dcd8446b6)] - **meta**: bump actions/download-artifact from 4.3.0 to 5.0.0 (dependabot\[bot]) [#​59729](https://redirect.github.com/nodejs/node/pull/59729) - \[[`d0d357f683`](https://redirect.github.com/nodejs/node/commit/d0d357f683)] - **meta**: bump github/codeql-action from 3.29.2 to 3.30.0 (dependabot\[bot]) [#​59728](https://redirect.github.com/nodejs/node/pull/59728) - \[[`2a0e264949`](https://redirect.github.com/nodejs/node/commit/2a0e264949)] - **meta**: bump actions/cache from 4.2.3 to 4.2.4 (dependabot\[bot]) [#​59727](https://redirect.github.com/nodejs/node/pull/59727) - \[[`0a013d1da1`](https://redirect.github.com/nodejs/node/commit/0a013d1da1)] - **meta**: bump actions/checkout from 4.2.2 to 5.0.0 (dependabot\[bot]) [#​59725](https://redirect.github.com/nodejs/node/pull/59725) - \[[`c690b53d24`](https://redirect.github.com/nodejs/node/commit/c690b53d24)] - **meta**: update devcontainer to the latest schema (Aviv Keller) [#​54347](https://redirect.github.com/nodejs/node/pull/54347) - \[[`61171c7756`](https://redirect.github.com/nodejs/node/commit/61171c7756)] - **module**: correctly detect top-level await in ambiguous contexts (Shima Ryuhei) [#​58646](https://redirect.github.com/nodejs/node/pull/58646) - \[[`75bf3f4a87`](https://redirect.github.com/nodejs/node/commit/75bf3f4a87)] - **node-api**: link to other programming language bindings (Chengzhong Wu) [#​59516](https://redirect.github.com/nodejs/node/pull/59516) - \[[`9a05107558`](https://redirect.github.com/nodejs/node/commit/9a05107558)] - **node-api**: clarify enum value ABI stability (Chengzhong Wu) [#​59085](https://redirect.github.com/nodejs/node/pull/59085) - \[[`658c31d60c`](https://redirect.github.com/nodejs/node/commit/658c31d60c)] - **path**: refactor path joining logic for clarity and performance (Lee Jiho) [#​59781](https://redirect.github.com/nodejs/node/pull/59781) - \[[`9cc89f55f7`](https://redirect.github.com/nodejs/node/commit/9cc89f55f7)] - **path,win**: fix bug in resolve and normalize (Hüseyin Açacak) [#​55623](https://redirect.github.com/nodejs/node/pull/55623) - \[[`24e825f8f5`](https://redirect.github.com/nodejs/node/commit/24e825f8f5)] - **sea**: implement sea.getAssetKeys() (Joyee Cheung) [#​59661](https://redirect.github.com/nodejs/node/pull/59661) - \[[`c66af21e55`](https://redirect.github.com/nodejs/node/commit/c66af21e55)] - **sea**: allow using inspector command line flags with SEA (Joyee Cheung) [#​59568](https://redirect.github.com/nodejs/node/pull/59568) - \[[`9b7dd40da8`](https://redirect.github.com/nodejs/node/commit/9b7dd40da8)] - **(SEMVER-MINOR)** **sea**: implement execArgvExtension (Joyee Cheung) [#​59560](https://redirect.github.com/nodejs/node/pull/59560) - \[[`48bfbd3dca`](https://redirect.github.com/nodejs/node/commit/48bfbd3dca)] - **(SEMVER-MINOR)** **sea**: support execArgv in sea config (Joyee Cheung) [#​59314](https://redirect.github.com/nodejs/node/pull/59314) - \[[`5559456fe4`](https://redirect.github.com/nodejs/node/commit/5559456fe4)] - **sqlite**: add sqlite-type symbol for DatabaseSync (Alex Yang) [#​59405](https://redirect.github.com/nodejs/node/pull/59405) - \[[`3478130da3`](https://redirect.github.com/nodejs/node/commit/3478130da3)] - **sqlite**: handle ?NNN parameters as positional (Edy Silva) [#​59350](https://redirect.github.com/nodejs/node/pull/59350) - \[[`312bc4e5d1`](https://redirect.github.com/nodejs/node/commit/312bc4e5d1)] - **sqlite**: avoid useless call to FromMaybe() (Tobias Nießen) [#​59490](https://redirect.github.com/nodejs/node/pull/59490) - \[[`937e9bb1c6`](https://redirect.github.com/nodejs/node/commit/937e9bb1c6)] - **src**: track BaseObjects with an efficient list (Chengzhong Wu) [#​55104](https://redirect.github.com/nodejs/node/pull/55104) - \[[`be2a5e170d`](https://redirect.github.com/nodejs/node/commit/be2a5e170d)] - **src**: track async resources via pointers to stack-allocated handles (Anna Henningsen) [#​59704](https://redirect.github.com/nodejs/node/pull/59704) - \[[`f232bf2c11`](https://redirect.github.com/nodejs/node/commit/f232bf2c11)] - **src**: fix build on NetBSD (Thomas Klausner) [#​59718](https://redirect.github.com/nodejs/node/pull/59718) - \[[`e9a685bc3d`](https://redirect.github.com/nodejs/node/commit/e9a685bc3d)] - **src**: fix race on process exit and off thread CA loading (Chengzhong Wu) [#​59632](https://redirect.github.com/nodejs/node/pull/59632) - \[[`24428fc8fb`](https://redirect.github.com/nodejs/node/commit/24428fc8fb)] - **src**: add name for more threads (theanarkh) [#​59601](https://redirect.github.com/nodejs/node/pull/59601) - \[[`fd7559f8c3`](https://redirect.github.com/nodejs/node/commit/fd7559f8c3)] - **src**: remove JSONParser (Joyee Cheung) [#​59619](https://redirect.github.com/nodejs/node/pull/59619) - \[[`8c296bac99`](https://redirect.github.com/nodejs/node/commit/8c296bac99)] - **src**: enforce assumptions in FIXED\_ONE\_BYTE\_STRING (Tobias Nießen) [#​58155](https://redirect.github.com/nodejs/node/pull/58155) - \[[`1b4885a3f2`](https://redirect.github.com/nodejs/node/commit/1b4885a3f2)] - **src**: use simdjson to parse --snapshot-config (Joyee Cheung) [#​59473](https://redirect.github.com/nodejs/node/pull/59473) - \[[`9f798de6b0`](https://redirect.github.com/nodejs/node/commit/9f798de6b0)] - **src**: fix order of CHECK\_NOT\_NULL/dereference (Tobias Nießen) [#​59487](https://redirect.github.com/nodejs/node/pull/59487) - \[[`f764be27dc`](https://redirect.github.com/nodejs/node/commit/f764be27dc)] - **src**: move shared\_ptr objects in KeyObjectData (Tobias Nießen) [#​59472](https://redirect.github.com/nodejs/node/pull/59472) - \[[`d30287fe12`](https://redirect.github.com/nodejs/node/commit/d30287fe12)] - **src**: iterate metadata version entries with std::array (Chengzhong Wu) [#​57866](https://redirect.github.com/nodejs/node/pull/57866) - \[[`b2bf620c7b`](https://redirect.github.com/nodejs/node/commit/b2bf620c7b)] - **src**: internalize `v8::ConvertableToTraceFormat` in traces (Chengzhong Wu) [#​57866](https://redirect.github.com/nodejs/node/pull/57866) - \[[`b3c507c8ef`](https://redirect.github.com/nodejs/node/commit/b3c507c8ef)] - **src**: remove duplicate assignment of `O_EXCL` in node\_constants.cc (Daniel Osvaldo R) [#​59049](https://redirect.github.com/nodejs/node/pull/59049) - \[[`20aec239d4`](https://redirect.github.com/nodejs/node/commit/20aec239d4)] - **src**: add Intel CET properties to large\_pages.S (tjuhaszrh) [#​59363](https://redirect.github.com/nodejs/node/pull/59363) - \[[`8e0f9cd061`](https://redirect.github.com/nodejs/node/commit/8e0f9cd061)] - **src**: remove unused DSAKeyExportJob (Filip Skokan) [#​59291](https://redirect.github.com/nodejs/node/pull/59291) - \[[`0c2b6df94f`](https://redirect.github.com/nodejs/node/commit/0c2b6df94f)] - **src,sqlite**: refactor value conversion (Edy Silva) [#​59659](https://redirect.github.com/nodejs/node/pull/59659) - \[[`b95cfdf0e5`](https://redirect.github.com/nodejs/node/commit/b95cfdf0e5)] - **stream**: replace manual function validation with validateFunction (방진혁) [#​59529](https://redirect.github.com/nodejs/node/pull/59529) - \[[`cf06e74076`](https://redirect.github.com/nodejs/node/commit/cf06e74076)] - **(SEMVER-MINOR)** **stream**: add brotli support to CompressionStream and DecompressionStream (Matthew Aitken) [#​59464](https://redirect.github.com/nodejs/node/pull/59464) - \[[`903ebd373a`](https://redirect.github.com/nodejs/node/commit/903ebd373a)] - **test**: skip more sea tests on Linux ppc64le (Richard Lau) [#​59755](https://redirect.github.com/nodejs/node/pull/59755) - \[[`e961060bb6`](https://redirect.github.com/nodejs/node/commit/e961060bb6)] - **test**: fix internet/test-dns (Michaël Zasso) [#​59660](https://redirect.github.com/nodejs/node/pull/59660) - \[[`c2b22f50a8`](https://redirect.github.com/nodejs/node/commit/c2b22f50a8)] - **test**: mark test-inspector-network-fetch as flaky again (Joyee Cheung) [#​59640](https://redirect.github.com/nodejs/node/pull/59640) - \[[`4ae958e59b`](https://redirect.github.com/nodejs/node/commit/4ae958e59b)] - **test**: skip test-fs-cp\* tests that are constantly failing on Windows (Joyee Cheung) [#​59637](https://redirect.github.com/nodejs/node/pull/59637) - \[[`d5b0a64598`](https://redirect.github.com/nodejs/node/commit/d5b0a64598)] - **test**: deflake test-http-keep-alive-empty-line (Luigi Pinca) [#​59595](https://redirect.github.com/nodejs/node/pull/59595) - \[[`eb311f1754`](https://redirect.github.com/nodejs/node/commit/eb311f1754)] - **test**: use mustSucceed in test-repl-tab-complete-import (Sohyeon Kim) [#​59368](https://redirect.github.com/nodejs/node/pull/59368) - \[[`8e047e32be`](https://redirect.github.com/nodejs/node/commit/8e047e32be)] - **test**: skip sea tests on Linux ppc64le (Richard Lau) [#​59563](https://redirect.github.com/nodejs/node/pull/59563) - \[[`4a250479d8`](https://redirect.github.com/nodejs/node/commit/4a250479d8)] - **test**: rename test-net-server-drop-connections-in-cluster.js to -http- (Meghan Denny) [#​59532](https://redirect.github.com/nodejs/node/pull/59532) - \[[`d22f113aaf`](https://redirect.github.com/nodejs/node/commit/d22f113aaf)] - **test**: lazy-load internalTTy (Pietro Marchini) [#​59517](https://redirect.github.com/nodejs/node/pull/59517) - \[[`36dd856897`](https://redirect.github.com/nodejs/node/commit/36dd856897)] - **test**: fix `test-setproctitle` status when `ps` is not available (Antoine du Hamel) [#​59523](https://redirect.github.com/nodejs/node/pull/59523) - \[[`fd02295da6`](https://redirect.github.com/nodejs/node/commit/fd02295da6)] - **test**: update WPT for WebCryptoAPI to [`ff26d9b`](https://redirect.github.com/nodejs/node/commit/ff26d9b307) (Node.js GitHub Bot) [#​59497](https://redirect.github.com/nodejs/node/pull/59497) - \[[`cce938c5f9`](https://redirect.github.com/nodejs/node/commit/cce938c5f9)] - **test**: make test-debug-process locale-independent (BCD1me) [#​59254](https://redirect.github.com/nodejs/node/pull/59254) - \[[`5a8f03df9e`](https://redirect.github.com/nodejs/node/commit/5a8f03df9e)] - **test**: mark test-wasi-pthread as flaky (Joyee Cheung) [#​59488](https://redirect.github.com/nodejs/node/pull/59488) - \[[`94f6d6b969`](https://redirect.github.com/nodejs/node/commit/94f6d6b969)] - **test**: split test-wasi.js (Joyee Cheung) [#​59488](https://redirect.github.com/nodejs/node/pull/59488) - \[[`162ac9393c`](https://redirect.github.com/nodejs/node/commit/162ac9393c)] - **test**: use case-insensitive path checking on Windows in fs.cpSync tests (Joyee Cheung) [#​59475](https://redirect.github.com/nodejs/node/pull/59475) - \[[`ce9d6776c9`](https://redirect.github.com/nodejs/node/commit/ce9d6776c9)] - **test**: add missing hasPostData in test-inspector-emit-protocol-event (Shima Ryuhei) [#​59412](https://redirect.github.com/nodejs/node/pull/59412) - \[[`717ea2866d`](https://redirect.github.com/nodejs/node/commit/717ea2866d)] - **test**: refactor error checks to use assert.ifError/mustSucceed (Sohyeon Kim) [#​59424](https://redirect.github.com/nodejs/node/pull/59424) - \[[`b1c3e4a17c`](https://redirect.github.com/nodejs/node/commit/b1c3e4a17c)] - **test**: fix typos (Lee Jiho) [#​59330](https://redirect.github.com/nodejs/node/pull/59330) - \[[`3f4bd94b1f`](https://redirect.github.com/nodejs/node/commit/3f4bd94b1f)] - **test**: skip test-watch-mode inspect when no inspector (James M Snell) [#​59440](https://redirect.github.com/nodejs/node/pull/59440) - \[[`8b7a8efe96`](https://redirect.github.com/nodejs/node/commit/8b7a8efe96)] - **test**: exclude mock from coverage (Shima Ryuhei) [#​59348](https://redirect.github.com/nodejs/node/pull/59348) - \[[`f39352b55c`](https://redirect.github.com/nodejs/node/commit/f39352b55c)] - **test**: split test-fs-cp.js (Joyee Cheung) [#​59408](https://redirect.github.com/nodejs/node/pull/59408) - \[[`fb4180e9f6`](https://redirect.github.com/nodejs/node/commit/fb4180e9f6)] - **test\_runner**: fix todo inheritance (Moshe Atlow) [#​59721](https://redirect.github.com/nodejs/node/pull/59721) - \[[`76bf6b908d`](https://redirect.github.com/nodejs/node/commit/76bf6b908d)] - **test\_runner**: set mock timer's interval undefined (hotpineapple) [#​59479](https://redirect.github.com/nodejs/node/pull/59479) - \[[`0a05d06fcc`](https://redirect.github.com/nodejs/node/commit/0a05d06fcc)] - **test\_runner**: do not error when getting `fullName` of root context (René) [#​59377](https://redirect.github.com/nodejs/node/pull/59377) - \[[`3fdfb187d6`](https://redirect.github.com/nodejs/node/commit/3fdfb187d6)] - **test\_runner**: fix isSkipped check in junit (Sungwon) [#​59414](https://redirect.github.com/nodejs/node/pull/59414) - \[[`37c6f7d7d8`](https://redirect.github.com/nodejs/node/commit/37c6f7d7d8)] - **test\_runner**: remove unused callee convertion (Alex Yang) [#​59221](https://redirect.github.com/nodejs/node/pull/59221) - \[[`57c30093e3`](https://redirect.github.com/nodejs/node/commit/57c30093e3)] - **test\_runner**: clean up promisified interval generation (René) [#​58824](https://redirect.github.com/nodejs/node/pull/58824) - \[[`88bf1bab91`](https://redirect.github.com/nodejs/node/commit/88bf1bab91)] - **test\_runner**: correct "already mocked" error punctuation placement (Jacob Smith) [#​58840](https://redirect.github.com/nodejs/node/pull/58840) - \[[`d3259d660a`](https://redirect.github.com/nodejs/node/commit/d3259d660a)] - **test\_runner**: prefer `Atomics` primordials (Renegade334) [#​58716](https://redirect.github.com/nodejs/node/pull/58716) - \[[`62bb80c17e`](https://redirect.github.com/nodejs/node/commit/62bb80c17e)] - **(SEMVER-MINOR)** **test\_runner**: support object property mocking (Idan Goshen) [#​58438](https://redirect.github.com/nodejs/node/pull/58438) - \[[`4b19439dea`](https://redirect.github.com/nodejs/node/commit/4b19439dea)] - **tools**: print appropriate output when test aborted (hotpineapple) [#​59794](https://redirect.github.com/nodejs/node/pull/59794) - \[[`847963bbba`](https://redirect.github.com/nodejs/node/commit/847963bbba)] - **tools**: use sparse checkout in `build-tarball.yml` (Antoine du Hamel) [#​59788](https://redirect.github.com/nodejs/node/pull/59788) - \[[`ef11d118a4`](https://redirect.github.com/nodejs/node/commit/ef11d118a4)] - **tools**: remove unused actions from `build-tarball.yml` (Antoine du Hamel) [#​59787](https://redirect.github.com/nodejs/node/pull/59787) - \[[`daa0615967`](https://redirect.github.com/nodejs/node/commit/daa0615967)] - **tools**: do not attempt to compress tgz archive (Antoine du Hamel) [#​59785](https://redirect.github.com/nodejs/node/pull/59785) - \[[`fdc85e5045`](https://redirect.github.com/nodejs/node/commit/fdc85e5045)] - **tools**: add v8windbg target (Chengzhong Wu) [#​59767](https://redirect.github.com/nodejs/node/pull/59767) - \[[`25801b9009`](https://redirect.github.com/nodejs/node/commit/25801b9009)] - **tools**: improve error handling in node\_mksnapshot (James M Snell) [#​59437](https://redirect.github.com/nodejs/node/pull/59437) - \[[`92100a813f`](https://redirect.github.com/nodejs/node/commit/92100a813f)] - **tools**: add sccache to `test-internet` workflow (Antoine du Hamel) [#​59720](https://redirect.github.com/nodejs/node/pull/59720) - \[[`5f0090af53`](https://redirect.github.com/nodejs/node/commit/5f0090af53)] - **tools**: update gyp-next to 0.20.4 (Node.js GitHub Bot) [#​59690](https://redirect.github.com/nodejs/node/pull/59690) - \[[`31ee7fc3e9`](https://redirect.github.com/nodejs/node/commit/31ee7fc3e9)] - **tools**: add script to make reviewing backport PRs easier (Antoine du Hamel) [#​59161](https://redirect.github.com/nodejs/node/pull/59161) - \[[`45906b0d5c`](https://redirect.github.com/nodejs/node/commit/45906b0d5c)] - **tools**: update gyp-next to 0.20.3 (Node.js GitHub Bot) [#​59603](https://redirect.github.com/nodejs/node/pull/59603) - \[[`6197eeee9b`](https://redirect.github.com/nodejs/node/commit/6197eeee9b)] - **tools**: avoid parsing test files twice (Pietro Marchini) [#​59526](https://redirect.github.com/nodejs/node/pull/59526) - \[[`027ae4f67e`](https://redirect.github.com/nodejs/node/commit/027ae4f67e)] - **tools**: fix return value of try\_check\_compiler (theanarkh) [#​59434](https://redirect.github.com/nodejs/node/pull/59434) - \[[`77682b52a1`](https://redirect.github.com/nodejs/node/commit/77682b52a1)] - **tools**: bump [@​eslint/plugin-kit](https://redirect.github.com/eslint/plugin-kit) from 0.3.3 to 0.3.4 in /tools/eslint (dependabot\[bot]) [#​59271](https://redirect.github.com/nodejs/node/pull/59271) - \[[`91fa83fffd`](https://redirect.github.com/nodejs/node/commit/91fa83fffd)] - **tools**: disable nullability-completeness warnings (Michaël Zasso) [#​59392](https://redirect.github.com/nodejs/node/pull/59392) - \[[`079a68d392`](https://redirect.github.com/nodejs/node/commit/079a68d392)] - **typings**: add typing for 'uv' (방진혁) [#​59606](https://redirect.github.com/nodejs/node/pull/59606) - \[[`b8927967d9`](https://redirect.github.com/nodejs/node/commit/b8927967d9)] - **typings**: add missing properties in ConfigBinding (Lee Jiho) [#​59585](https://redirect.github.com/nodejs/node/pull/59585) - \[[`9b66ce5ef7`](https://redirect.github.com/nodejs/node/commit/9b66ce5ef7)] - **typings**: add missing URLBinding methods (성우현 | Woohyun Sung) [#​59468](https://redirect.github.com/nodejs/node/pull/59468) - \[[`ba5b6597aa`](https://redirect.github.com/nodejs/node/commit/ba5b6597aa)] - **url**: add err.input to ERR\_INVALID\_FILE\_URL\_PATH (Joyee Cheung) [#​59730](https://redirect.github.com/nodejs/node/pull/59730) - \[[`f660943471`](https://redirect.github.com/nodejs/node/commit/f660943471)] - **util**: fix numericSeparator with negative fractional numbers (sangwook) [#​59379](https://redirect.github.com/nodejs/node/pull/59379) - \[[`aed1b883f1`](https://redirect.github.com/nodejs/node/commit/aed1b883f1)] - **util**: remove unnecessary template strings (btea) [#​59201](https://redirect.github.com/nodejs/node/pull/59201) - \[[`91e9b8d135`](https://redirect.github.com/nodejs/node/commit/91e9b8d135)] - **util**: remove outdated TODO comment (haramjeong) [#​59760](https://redirect.github.com/nodejs/node/pull/59760) - \[[`421ab3c294`](https://redirect.github.com/nodejs/node/commit/421ab3c294)] - **util**: use getOptionValue('--no-deprecation') in deprecated() (haramjeong) [#​59760](https://redirect.github.com/nodejs/node/pull/59760) - \[[`7864ad13bb`](https://redirect.github.com/nodejs/node/commit/7864ad13bb)] - **util**: hide duplicated stack frames when using util.inspect (Ruben Bridgewater) [#​59447](https://redirect.github.com/nodejs/node/pull/59447) - \[[`a2d2003daa`](https://redirect.github.com/nodejs/node/commit/a2d2003daa)] - **util**: fix error's namespaced node\_modules highlighting using inspect (Ruben Bridgewater) [#​59446](https://redirect.github.com/nodejs/node/pull/59446) - \[[`f64d0def94`](https://redirect.github.com/nodejs/node/commit/f64d0def94)] - **util**: add some additional error classes to `wellKnownPrototypes` (Mark S. Miller) [#​59456](https://redirect.github.com/nodejs/node/pull/59456) - \[[`9807ffd6a0`](https://redirect.github.com/nodejs/node/commit/9807ffd6a0)] - **vm**: expose import attributes on SourceTextModule.moduleRequests (Chengzhong Wu) [#​58829](https://redirect.github.com/nodejs/node/pull/58829) - \[[`f334e2d539`](https://redirect.github.com/nodejs/node/commit/f334e2d539)] - **wasi**: fix `clean` target in `test/wasi/Makefile` (Antoine du Hamel) [#​59576](https://redirect.github.com/nodejs/node/pull/59576) - \[[`9e2aa23be9`](https://redirect.github.com/nodejs/node/commit/9e2aa23be9)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#​59428](https://redirect.github.com/nodejs/node/pull/59428) - \[[`c5a93a3355`](https://redirect.github.com/nodejs/node/commit/c5a93a3355)] - **worker**: fix worker name with \0 (theanarkh) [#​59214](https://redirect.github.com/nodejs/node/pull/59214) - \[[`a5ed96bb97`](https://redirect.github.com/nodejs/node/commit/a5ed96bb97)] - **worker**: add worker name to report (theanarkh) [#​58935](https://redirect.github.com/nodejs/node/pull/58935) - \[[`98cd7e27d4`](https://redirect.github.com/nodejs/node/commit/98cd7e27d4)] - **worker**: add name for worker (theanarkh) [#​59213](https://redirect.github.com/nodejs/node/pull/59213) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
81bc7b5767 |
fix(website): update astro 5.13.10 → 5.13.11 (#39984)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.13.10` -> `5.13.11`](https://renovatebot.com/diffs/npm/astro/5.13.10/5.13.11) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.13.11`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#51311) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.10...astro@5.13.11) ##### Patch Changes - [#​14409](https://redirect.github.com/withastro/astro/pull/14409) [`250a595`](https://redirect.github.com/withastro/astro/commit/250a595596e9c7e1a966c5cda40f9bd5cf9d3f66) Thanks [@​louisescher](https://redirect.github.com/louisescher)! - Fixes an issue where `astro info` would log errors to console in certain cases. - [#​14398](https://redirect.github.com/withastro/astro/pull/14398) [`a7df80d`](https://redirect.github.com/withastro/astro/commit/a7df80d284652b500079e4476b17d5d1b7746b06) Thanks [@​idawnlight](https://redirect.github.com/idawnlight)! - Fixes an unsatisfiable type definition when calling `addServerRenderer` on an experimental container instance - [#​13747](https://redirect.github.com/withastro/astro/pull/13747) [`120866f`](https://redirect.github.com/withastro/astro/commit/120866f35a6b27c31bae1c04c0ea9d6bdaf09b16) Thanks [@​jp-knj](https://redirect.github.com/jp-knj)! - Adds automatic request signal abortion when the underlying socket closes in the Node.js adapter The Node.js adapter now automatically aborts the `request.signal` when the client connection is terminated. This enables better resource management and allows applications to properly handle client disconnections through the standard `AbortSignal` API. - [#​14428](https://redirect.github.com/withastro/astro/pull/14428) [`32a8acb`](https://redirect.github.com/withastro/astro/commit/32a8acba50bb15101c099fc7a14081d1a8cf0331) Thanks [@​drfuzzyness](https://redirect.github.com/drfuzzyness)! - Force sharpService to return a Uint8Array if Sharp returns a SharedArrayBuffer - [#​14411](https://redirect.github.com/withastro/astro/pull/14411) [`a601186`](https://redirect.github.com/withastro/astro/commit/a601186fb9ac0e7c8ff20887024234ecbfdd6ff1) Thanks [@​GameRoMan](https://redirect.github.com/GameRoMan)! - Fixes relative links to docs that could not be opened in the editor. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
fae448b3a6 | fix(website): update astro-better-image-service 2.1.8 → 2.1.9 (#39881) | ||
|
|
451eaddee5 |
chore(website): lock file maintenance (#39863)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==--> |
||
|
|
cf42ff1c1c |
fix(website): update astro 5.13.9 → 5.13.10 (#39873)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.13.9` -> `5.13.10`](https://renovatebot.com/diffs/npm/astro/5.13.9/5.13.10) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.13.10`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#51310) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.9...astro@5.13.10) ##### Patch Changes - Updated dependencies \[[`1e2499e`](https://redirect.github.com/withastro/astro/commit/1e2499e8ea83ebfa233a18a7499e1ccf169e56f4)]: - [@​astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)@​0.7.3 - [@​astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)@​6.3.7 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
65f3a1005a |
fix(website): update astro 5.13.8 → 5.13.9 (#39746)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.13.8` -> `5.13.9`](https://renovatebot.com/diffs/npm/astro/5.13.8/5.13.9) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.13.9`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5139) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.8...astro@5.13.9) ##### Patch Changes - [#​14402](https://redirect.github.com/withastro/astro/pull/14402) [`54dcd04`](https://redirect.github.com/withastro/astro/commit/54dcd04350b83cbf368dfb8d72f7d2ddf209a91e) Thanks [@​FredKSchott](https://redirect.github.com/FredKSchott)! - Removes warning that caused unexpected console spam when using Bun </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
3f11d75e07 |
fix(website): update sharp 0.34.3 → 0.34.4 (#39655)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [sharp](https://sharp.pixelplumbing.com) ([source](https://redirect.github.com/lovell/sharp), [changelog](https://redirect.github.com/lovell/sharp/blob/main/docs/src/content/docs/changelog.md)) | [`0.34.3` -> `0.34.4`](https://renovatebot.com/diffs/npm/sharp/0.34.3/0.34.4) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>lovell/sharp (sharp)</summary> ### [`v0.34.4`](https://redirect.github.com/lovell/sharp/releases/tag/v0.34.4) [Compare Source](https://redirect.github.com/lovell/sharp/compare/v0.34.3...v0.34.4) - Upgrade to libvips v8.17.2 for upstream bug fixes. - Ensure TIFF `subifd` and OpenSlide `level` input options are respected (regression in 0.34.3). - Ensure `autoOrient` occurs before non-90 angle rotation. [#​4425](https://redirect.github.com/lovell/sharp/issues/4425) - Ensure `autoOrient` removes existing metadata after shrink-on-load. [#​4431](https://redirect.github.com/lovell/sharp/issues/4431) - TypeScript: Ensure `KernelEnum` includes `linear`. [#​4441](https://redirect.github.com/lovell/sharp/pull/4441) [@​BayanBennett](https://redirect.github.com/BayanBennett) - Ensure `unlimited` flag is passed upstream when reading TIFF images. [#​4446](https://redirect.github.com/lovell/sharp/issues/4446) - Support Electron memory cage when reading XMP metadata (regression in 0.34.3). [#​4451](https://redirect.github.com/lovell/sharp/issues/4451) - Add sharp-libvips rpath for yarn v5 support. [#​4452](https://redirect.github.com/lovell/sharp/pull/4452) [@​arcanis](https://redirect.github.com/arcanis) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
7b3eedface |
fix(website): update @astrojs/sitemap 3.5.1 → 3.6.0 (#39648)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap)) | [`3.5.1` -> `3.6.0`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.5.1/3.6.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (@​astrojs/sitemap)</summary> ### [`v3.6.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#360) [Compare Source](https://redirect.github.com/withastro/astro/compare/@astrojs/sitemap@3.5.1...@astrojs/sitemap@3.6.0) ##### Minor Changes - [#​14285](https://redirect.github.com/withastro/astro/pull/14285) [`bedc31b`](https://redirect.github.com/withastro/astro/commit/bedc31ba7318dd89545503eaeeac4e0615843834) Thanks [@​jdcolombo](https://redirect.github.com/jdcolombo)! - Adds a new configuration option `namespaces` for more control over XML namespaces used in sitemap generation Excluding unused namespaces can help create cleaner, more focused sitemaps that are faster for search engines to parse and use less bandwidth. If your site doesn't have news content, videos, or multiple languages, you can exclude those namespaces to reduce XML bloat. The `namespaces` option allows you to configure `news`, `xhtml`, `image`, and `video` namespaces independently. All namespaces are enabled by default for backward compatibility and no change to existing projects is necessary. But now, you can choose to streamline your XML and avoid unnecessary code. For example, to exclude the video namespace from your sitemap, set `video: false` in your configuration: ``` // astro.config.mjs import { sitemap } from '@​astrojs/sitemap'; export default { integrations: [ sitemap({ namespaces: { video: false, // other namespaces remain enabled by default } }) ] }; ``` The generated XML will not include the `xmlns:video` namespace: ``` <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" > <!-- ... --> </urlset> ``` </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
72cea72115 |
fix(website): update astro 5.13.7 → 5.13.8 (#39644)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.13.7` -> `5.13.8`](https://renovatebot.com/diffs/npm/astro/5.13.7/5.13.8) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.13.8`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5138) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.7...astro@5.13.8) ##### Patch Changes - [#​14300](https://redirect.github.com/withastro/astro/pull/14300) [`bd4a70b`](https://redirect.github.com/withastro/astro/commit/bd4a70bde3c8e0c04e2754cf26d222aa36d3c3c8) Thanks [@​louisescher](https://redirect.github.com/louisescher)! - Adds Vite version & integration versions to output of `astro info` - [#​14341](https://redirect.github.com/withastro/astro/pull/14341) [`f75fd99`](https://redirect.github.com/withastro/astro/commit/f75fd9977f0f3f8afd1128cc3616205edec0a11c) Thanks [@​delucis](https://redirect.github.com/delucis)! - Fixes support for declarative Shadow DOM when using the `<ClientRouter>` component - [#​14350](https://redirect.github.com/withastro/astro/pull/14350) [`f59581f`](https://redirect.github.com/withastro/astro/commit/f59581f2d4566c684c587af816e22763440ded19) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Improves error reporting for content collections by adding logging for configuration errors that had previously been silently ignored. Also adds a new error that is thrown if a live collection is used in `content.config.ts` rather than `live.config.ts`. - [#​14343](https://redirect.github.com/withastro/astro/pull/14343) [`13f7d36`](https://redirect.github.com/withastro/astro/commit/13f7d36688042cdb5644786d795fc921841da76a) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Fixes a regression in non node runtimes </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
c8c9316fb2 |
chore(website): lock file maintenance (#39534)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==--> |
||
|
|
ce9487c142 |
fix(website): update astro 5.13.6 → 5.13.7 (#39352)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.13.6` -> `5.13.7`](https://renovatebot.com/diffs/npm/astro/5.13.6/5.13.7) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.13.7`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5137) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.6...astro@5.13.7) ##### Patch Changes - [#​14330](https://redirect.github.com/withastro/astro/pull/14330) [`72e14ab`](https://redirect.github.com/withastro/astro/commit/72e14abed6e20d31b1cd2caeeaa7e43703bf3aa3) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Removes pinned package that is no longer needed. - [#​14335](https://redirect.github.com/withastro/astro/pull/14335) [`17c7b03`](https://redirect.github.com/withastro/astro/commit/17c7b0395c00a0ea29dad9517b60bad3bd3a87a1) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Bumps `sharp` minimal version to `0.34.0` </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
47e519af99 |
fix(website): update astro 5.13.5 → 5.13.6 (#39297)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.13.5` -> `5.13.6`](https://renovatebot.com/diffs/npm/astro/5.13.5/5.13.6) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.13.6`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5136) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.5...astro@5.13.6) ##### Patch Changes - [#​14294](https://redirect.github.com/withastro/astro/pull/14294) [`e005855`](https://redirect.github.com/withastro/astro/commit/e0058553b2a6bb03fd864d77a1f07c25c60f7d91) Thanks [@​martrapp](https://redirect.github.com/martrapp)! - Restores the ability to use Google Analytics `History change trigger` with the `<ClientRouter />`. - [#​14326](https://redirect.github.com/withastro/astro/pull/14326) [`c24a8f4`](https://redirect.github.com/withastro/astro/commit/c24a8f42a17410ea78fc2d68ff0105b931a381eb) Thanks [@​jsparkdev](https://redirect.github.com/jsparkdev)! - Updates `vite` version to fix CVE - [#​14108](https://redirect.github.com/withastro/astro/pull/14108) [`218e070`](https://redirect.github.com/withastro/astro/commit/218e07054f4fe7a16e13479861dc162f6d886edc) Thanks [@​JusticeMatthew](https://redirect.github.com/JusticeMatthew)! - Updates dynamic route split regex to avoid infinite retries/exponential complexity - [#​14327](https://redirect.github.com/withastro/astro/pull/14327) [`c1033be`](https://redirect.github.com/withastro/astro/commit/c1033beafa331bbd67f0ee76b47303deb3db806f) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Pins simple-swizzle to avoid compromised version </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
f93fdab35a |
Update date for OCI repository news article
Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> |
||
|
|
8f8522e4d3 |
chore(website): lock file maintenance (#39275)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==--> |
||
|
|
7c7a92491b |
fix(docs): News and readme update (#39219)
**Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [x] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [x] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [ ] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ |
||
|
|
57eab2e1c5 |
fix(common): Improve common resources limit ratios (#38546)
**Description** Some users report that the current ratios between requests and limits where a bit too strict. This increases the ratio to 20x on CPU and 12x on ram, lowing requests and increasing limits slightly. Its important to note that CPU is easier to share among containers, so has the higher ratio on purpose. The new ratio allows more room for multithreading on a container **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [ ] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl> |
||
|
|
1c28a12789 | chore: fix links | ||
|
|
6578159cd5 |
chore(website): lock file maintenance (#39008)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==--> |
||
|
|
a9fd291a6c |
fix(clustertool): source.toolkit.fluxcd.io/v1 (#39197)
**Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> source.toolkit.fluxcd.io/v1 will work, if we bootstrap with the latest flux version, so changed that as well this time. ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Signed-off-by: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com> |
||
|
|
3fca974a8b |
fix(clustertool): Revert 35820 apiVersion: source.toolkit.fluxcd.io (#39057)
**Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> With this previous PR it seems a fresh clustertool bootstrap isn't possible. This needs to be `apiVersion: source.toolkit.fluxcd.io/v1beta2` **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> Just bootstrapped my cluster and `apiVersion: source.toolkit.fluxcd.io/v1` will not work **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Signed-off-by: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com> |
||
|
|
db05e17c5c |
chore(website): lock file maintenance (#38910)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==--> |
||
|
|
6172c42f5b |
chore(deps): update node.js v22.18.0 → v22.19.0 (#38890)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [node](https://nodejs.org) ([source](https://redirect.github.com/nodejs/node)) | minor | `22.18.0` -> `22.19.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v22.19.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.19.0): 2025-08-28, Version 22.19.0 'Jod' (LTS), @​aduh95 [Compare Source](https://redirect.github.com/nodejs/node/compare/v22.18.0...v22.19.0) ##### Notable Changes - \[[`8e2076a24f`](https://redirect.github.com/nodejs/node/commit/8e2076a24f)] - **(SEMVER-MINOR)** **cli**: add `NODE_USE_SYSTEM_CA=1` (Joyee Cheung) [#​59276](https://redirect.github.com/nodejs/node/pull/59276) - \[[`e592d739c2`](https://redirect.github.com/nodejs/node/commit/e592d739c2)] - **(SEMVER-MINOR)** **cli**: support `${pid}` placeholder in `--cpu-prof-name` (Haram Jeong) [#​59072](https://redirect.github.com/nodejs/node/pull/59072) - \[[`cda1dab6e2`](https://redirect.github.com/nodejs/node/commit/cda1dab6e2)] - **(SEMVER-MINOR)** **crypto**: add `tls.setDefaultCACertificates()` (Joyee Cheung) [#​58822](https://redirect.github.com/nodejs/node/pull/58822) - \[[`1f184513e9`](https://redirect.github.com/nodejs/node/commit/1f184513e9)] - **(SEMVER-MINOR)** **dns**: support max timeout (theanarkh) [#​58440](https://redirect.github.com/nodejs/node/pull/58440) - \[[`bace73a173`](https://redirect.github.com/nodejs/node/commit/bace73a173)] - **doc**: update the instruction on how to verify releases (Antoine du Hamel) [#​59113](https://redirect.github.com/nodejs/node/pull/59113) - \[[`fa9a9e9c69`](https://redirect.github.com/nodejs/node/commit/fa9a9e9c69)] - **(SEMVER-MINOR)** **esm**: unflag `--experimental-wasm-modules` (Guy Bedford) [#​57038](https://redirect.github.com/nodejs/node/pull/57038) - \[[`390a9dc20b`](https://redirect.github.com/nodejs/node/commit/390a9dc20b)] - **(SEMVER-MINOR)** **http**: add `server.keepAliveTimeoutBuffer` option (Haram Jeong) [#​59243](https://redirect.github.com/nodejs/node/pull/59243) - \[[`c12c5343ad`](https://redirect.github.com/nodejs/node/commit/c12c5343ad)] - **lib**: docs deprecate `_http_*` (Sebastian Beltran) [#​59293](https://redirect.github.com/nodejs/node/pull/59293) - \[[`f57ee3d71f`](https://redirect.github.com/nodejs/node/commit/f57ee3d71f)] - **(SEMVER-MINOR)** **net**: update `net.blocklist` to allow file save and file management (alphaleadership) [#​58087](https://redirect.github.com/nodejs/node/pull/58087) - \[[`035da74c31`](https://redirect.github.com/nodejs/node/commit/035da74c31)] - **(SEMVER-MINOR)** **process**: add `threadCpuUsage` (Paolo Insogna) [#​56467](https://redirect.github.com/nodejs/node/pull/56467) - \[[`8e697d1884`](https://redirect.github.com/nodejs/node/commit/8e697d1884)] - **(SEMVER-MINOR)** **zlib**: add dictionary support to `zstdCompress` and `zstdDecompress` (lluisemper) [#​59240](https://redirect.github.com/nodejs/node/pull/59240) ##### Commits - \[[`73aa0ae37f`](https://redirect.github.com/nodejs/node/commit/73aa0ae37f)] - **assert**: change utils to use index instead of for...of (방진혁) [#​59278](https://redirect.github.com/nodejs/node/pull/59278) - \[[`dfe3a11eed`](https://redirect.github.com/nodejs/node/commit/dfe3a11eed)] - **benchmark**: remove deprecated \_extend from benchmark (Rafael Gonzaga) [#​59228](https://redirect.github.com/nodejs/node/pull/59228) - \[[`9b9d30042a`](https://redirect.github.com/nodejs/node/commit/9b9d30042a)] - **benchmark**: add fs warmup to writefile-promises (Bruno Rodrigues) [#​59215](https://redirect.github.com/nodejs/node/pull/59215) - \[[`a663f7f954`](https://redirect.github.com/nodejs/node/commit/a663f7f954)] - **benchmark**: add calibrate-n script (Rafael Gonzaga) [#​59186](https://redirect.github.com/nodejs/node/pull/59186) - \[[`1b9b5bddd6`](https://redirect.github.com/nodejs/node/commit/1b9b5bddd6)] - **benchmark**: adjust configuration for string-decoder bench (Rafael Gonzaga) [#​59187](https://redirect.github.com/nodejs/node/pull/59187) - \[[`d0ac3319f9`](https://redirect.github.com/nodejs/node/commit/d0ac3319f9)] - **benchmark**: add --track to benchmark (Rafael Gonzaga) [#​59174](https://redirect.github.com/nodejs/node/pull/59174) - \[[`2044968b86`](https://redirect.github.com/nodejs/node/commit/2044968b86)] - **benchmark**: small lint fix on \_cli.js (Rafael Gonzaga) [#​59172](https://redirect.github.com/nodejs/node/pull/59172) - \[[`4e519934cb`](https://redirect.github.com/nodejs/node/commit/4e519934cb)] - **benchmark**: drop misc/punycode benchmark (Rafael Gonzaga) [#​59171](https://redirect.github.com/nodejs/node/pull/59171) - \[[`07e173d969`](https://redirect.github.com/nodejs/node/commit/07e173d969)] - **benchmark**: fix sqlite-is-transaction (Rafael Gonzaga) [#​59170](https://redirect.github.com/nodejs/node/pull/59170) - \[[`8440b6177f`](https://redirect.github.com/nodejs/node/commit/8440b6177f)] - **benchmark**: reduce N for diagnostics\_channel subscribe benchmark (Arthur Angelo) [#​59116](https://redirect.github.com/nodejs/node/pull/59116) - \[[`8615ea6db0`](https://redirect.github.com/nodejs/node/commit/8615ea6db0)] - **buffer**: cache Environment::GetCurrent to avoid repeated calls (Mert Can Altin) [#​59043](https://redirect.github.com/nodejs/node/pull/59043) - \[[`3deb5361d2`](https://redirect.github.com/nodejs/node/commit/3deb5361d2)] - **build**: fix node\_use\_sqlite for GN builds (Shelley Vohr) [#​59017](https://redirect.github.com/nodejs/node/pull/59017) - \[[`0f0ce63116`](https://redirect.github.com/nodejs/node/commit/0f0ce63116)] - **build**: remove suppressions.supp (Rafael Gonzaga) [#​59079](https://redirect.github.com/nodejs/node/pull/59079) - \[[`b30a2117dc`](https://redirect.github.com/nodejs/node/commit/b30a2117dc)] - **build,deps,tools**: prepare to update to OpenSSL 3.5 (Richard Lau) [#​58100](https://redirect.github.com/nodejs/node/pull/58100) - \[[`8e2076a24f`](https://redirect.github.com/nodejs/node/commit/8e2076a24f)] - **(SEMVER-MINOR)** **cli**: add NODE\_USE\_SYSTEM\_CA=1 (Joyee Cheung) [#​59276](https://redirect.github.com/nodejs/node/pull/59276) - \[[`e592d739c2`](https://redirect.github.com/nodejs/node/commit/e592d739c2)] - **(SEMVER-MINOR)** **cli**: support `${pid}` placeholder in --cpu-prof-name (Haram Jeong) [#​59072](https://redirect.github.com/nodejs/node/pull/59072) - \[[`b5571047ed`](https://redirect.github.com/nodejs/node/commit/b5571047ed)] - **crypto**: prepare webcrypto key import/export for modern algorithms (Filip Skokan) [#​59284](https://redirect.github.com/nodejs/node/pull/59284) - \[[`cda1dab6e2`](https://redirect.github.com/nodejs/node/commit/cda1dab6e2)] - **(SEMVER-MINOR)** **crypto**: add tls.setDefaultCACertificates() (Joyee Cheung) [#​58822](https://redirect.github.com/nodejs/node/pull/58822) - \[[`76dab34fb7`](https://redirect.github.com/nodejs/node/commit/76dab34fb7)] - **deps**: support madvise(3C) across ALL illumos revisions (Dan McDonald) [#​58237](https://redirect.github.com/nodejs/node/pull/58237) - \[[`19d3ed64b6`](https://redirect.github.com/nodejs/node/commit/19d3ed64b6)] - **deps**: update sqlite to 3.50.4 (Node.js GitHub Bot) [#​59337](https://redirect.github.com/nodejs/node/pull/59337) - \[[`38bafc59e0`](https://redirect.github.com/nodejs/node/commit/38bafc59e0)] - **deps**: V8: backport [`493cb53`](https://redirect.github.com/nodejs/node/commit/493cb53691be) (Chengzhong Wu) [#​59238](https://redirect.github.com/nodejs/node/pull/59238) - \[[`e8da171cc3`](https://redirect.github.com/nodejs/node/commit/e8da171cc3)] - **deps**: update sqlite to 3.50.3 (Node.js GitHub Bot) [#​59132](https://redirect.github.com/nodejs/node/pull/59132) - \[[`fd4ba38ab6`](https://redirect.github.com/nodejs/node/commit/fd4ba38ab6)] - **deps**: update googletest to [`7e17b15`](https://redirect.github.com/nodejs/node/commit/7e17b15) (Node.js GitHub Bot) [#​59131](https://redirect.github.com/nodejs/node/pull/59131) - \[[`f71f427b95`](https://redirect.github.com/nodejs/node/commit/f71f427b95)] - **deps**: update archs files for openssl-3.0.17 (Node.js GitHub Bot) [#​59134](https://redirect.github.com/nodejs/node/pull/59134) - \[[`79c5a8f4d2`](https://redirect.github.com/nodejs/node/commit/79c5a8f4d2)] - **deps**: upgrade openssl sources to openssl-3.0.17 (Node.js GitHub Bot) [#​59134](https://redirect.github.com/nodejs/node/pull/59134) - \[[`0dcc84cf53`](https://redirect.github.com/nodejs/node/commit/0dcc84cf53)] - **deps**: update corepack to 0.34.0 (Node.js GitHub Bot) [#​59133](https://redirect.github.com/nodejs/node/pull/59133) - \[[`1f184513e9`](https://redirect.github.com/nodejs/node/commit/1f184513e9)] - **(SEMVER-MINOR)** **dns**: support max timeout (theanarkh) [#​58440](https://redirect.github.com/nodejs/node/pull/58440) - \[[`f64f5df80e`](https://redirect.github.com/nodejs/node/commit/f64f5df80e)] - **doc**: fix `--use-system-ca` history (Joyee Cheung) [#​59411](https://redirect.github.com/nodejs/node/pull/59411) - \[[`e22aeaa38f`](https://redirect.github.com/nodejs/node/commit/e22aeaa38f)] - **doc**: add missing section for `setReturnArrays` in `sqlite.md` (Edy Silva) [#​59074](https://redirect.github.com/nodejs/node/pull/59074) - \[[`e44ef07235`](https://redirect.github.com/nodejs/node/commit/e44ef07235)] - **doc**: rename x509.extKeyUsage to x509.keyUsage (Filip Skokan) [#​59332](https://redirect.github.com/nodejs/node/pull/59332) - \[[`2c5d0aac5e`](https://redirect.github.com/nodejs/node/commit/2c5d0aac5e)] - **doc**: fix Pbkdf2Params hash attribute heading (Filip Skokan) [#​59395](https://redirect.github.com/nodejs/node/pull/59395) - \[[`fde94346e5`](https://redirect.github.com/nodejs/node/commit/fde94346e5)] - **doc**: fix missing reference links for server.keepAliveTimeoutBuffer (Lee Jiho) [#​59356](https://redirect.github.com/nodejs/node/pull/59356) - \[[`9af8bcea58`](https://redirect.github.com/nodejs/node/commit/9af8bcea58)] - **doc**: fix grammar in global dispatcher usage (Eng Zer Jun) [#​59344](https://redirect.github.com/nodejs/node/pull/59344) - \[[`0edf17198f`](https://redirect.github.com/nodejs/node/commit/0edf17198f)] - **doc**: run license-builder (github-actions\[bot]) [#​59343](https://redirect.github.com/nodejs/node/pull/59343) - \[[`7f767a2e38`](https://redirect.github.com/nodejs/node/commit/7f767a2e38)] - **doc**: correct orthography `eg.` → `e.g.` (Jacob Smith) [#​59329](https://redirect.github.com/nodejs/node/pull/59329) - \[[`a46ed50350`](https://redirect.github.com/nodejs/node/commit/a46ed50350)] - **doc**: clarify the need of compiler compatible with c++20 (Rafael Gonzaga) [#​59297](https://redirect.github.com/nodejs/node/pull/59297) - \[[`212263a305`](https://redirect.github.com/nodejs/node/commit/212263a305)] - **doc**: clarify release candidate stability index (Filip Skokan) [#​59295](https://redirect.github.com/nodejs/node/pull/59295) - \[[`ce93b8b556`](https://redirect.github.com/nodejs/node/commit/ce93b8b556)] - **doc**: add WDYT to glossary (btea) [#​59280](https://redirect.github.com/nodejs/node/pull/59280) - \[[`ebaaf2c67f`](https://redirect.github.com/nodejs/node/commit/ebaaf2c67f)] - **doc**: add manpage entry for --use-system-ca (Joyee Cheung) [#​59273](https://redirect.github.com/nodejs/node/pull/59273) - \[[`43b5a21916`](https://redirect.github.com/nodejs/node/commit/43b5a21916)] - **doc**: add path.join and path.normalize clarification (Rafael Gonzaga) [#​59262](https://redirect.github.com/nodejs/node/pull/59262) - \[[`409c66d328`](https://redirect.github.com/nodejs/node/commit/409c66d328)] - **doc**: fix typo in `test/common/README.md` (Yoo) [#​59180](https://redirect.github.com/nodejs/node/pull/59180) - \[[`cbb0a8eb13`](https://redirect.github.com/nodejs/node/commit/cbb0a8eb13)] - **doc**: add note on process memoryUsage (fengmk2) [#​59026](https://redirect.github.com/nodejs/node/pull/59026) - \[[`9892b15d81`](https://redirect.github.com/nodejs/node/commit/9892b15d81)] - **doc**: format safely for `doc-kit` (Aviv Keller) [#​59229](https://redirect.github.com/nodejs/node/pull/59229) - \[[`bace73a173`](https://redirect.github.com/nodejs/node/commit/bace73a173)] - **doc**: update the instruction on how to verify releases (Antoine du Hamel) [#​59113](https://redirect.github.com/nodejs/node/pull/59113) - \[[`b549deac02`](https://redirect.github.com/nodejs/node/commit/b549deac02)] - **doc**: copyedit SECURITY.md (Rich Trott) [#​59190](https://redirect.github.com/nodejs/node/pull/59190) - \[[`ef1bc3f344`](https://redirect.github.com/nodejs/node/commit/ef1bc3f344)] - **doc**: fix broken sentence in `URL.parse` (Superchupu) [#​59164](https://redirect.github.com/nodejs/node/pull/59164) - \[[`3c6639e8ec`](https://redirect.github.com/nodejs/node/commit/3c6639e8ec)] - **doc**: improve onboarding instructions (Joyee Cheung) [#​59159](https://redirect.github.com/nodejs/node/pull/59159) - \[[`6ffaac66bc`](https://redirect.github.com/nodejs/node/commit/6ffaac66bc)] - **doc**: add constraints for mem leak to threat model (Rafael Gonzaga) [#​58917](https://redirect.github.com/nodejs/node/pull/58917) - \[[`e419d20144`](https://redirect.github.com/nodejs/node/commit/e419d20144)] - **doc**: add Aditi-1400 to collaborators (Aditi Singh) [#​59157](https://redirect.github.com/nodejs/node/pull/59157) - \[[`ba380f7bf3`](https://redirect.github.com/nodejs/node/commit/ba380f7bf3)] - **doc**: avoid suggesting testing fast api with intense loop (Chengzhong Wu) [#​59111](https://redirect.github.com/nodejs/node/pull/59111) - \[[`fa1a532f2b`](https://redirect.github.com/nodejs/node/commit/fa1a532f2b)] - **doc**: fix typo in writing-test.md (SeokHun) [#​59123](https://redirect.github.com/nodejs/node/pull/59123) - \[[`0b93ca3d19`](https://redirect.github.com/nodejs/node/commit/0b93ca3d19)] - **doc**: add RafaelGSS as steward July 25 (Rafael Gonzaga) [#​59078](https://redirect.github.com/nodejs/node/pull/59078) - \[[`7d747aeac8`](https://redirect.github.com/nodejs/node/commit/7d747aeac8)] - **doc**: clarify ERR\_FS\_FILE\_TOO\_LARGE to reflect fs.readFile() I/O limit (Haram Jeong) [#​59050](https://redirect.github.com/nodejs/node/pull/59050) - \[[`0b5613f9fe`](https://redirect.github.com/nodejs/node/commit/0b5613f9fe)] - **doc**: run license-builder (github-actions\[bot]) [#​59056](https://redirect.github.com/nodejs/node/pull/59056) - \[[`1b6b5e72d3`](https://redirect.github.com/nodejs/node/commit/1b6b5e72d3)] - **doc**: fix typed list formatting (Aviv Keller) [#​59019](https://redirect.github.com/nodejs/node/pull/59019) - \[[`756c7dd639`](https://redirect.github.com/nodejs/node/commit/756c7dd639)] - **doc**: refine `util.parseArgs` `default` definition (Slayer95) [#​58958](https://redirect.github.com/nodejs/node/pull/58958) - \[[`0b840523a2`](https://redirect.github.com/nodejs/node/commit/0b840523a2)] - **doc**: remove unused import in `zlib.md` (coderaiser) [#​59041](https://redirect.github.com/nodejs/node/pull/59041) - \[[`3e9ed4b080`](https://redirect.github.com/nodejs/node/commit/3e9ed4b080)] - **doc**: add stability index to the `--watch-kill-signal` flag (Dario Piotrowicz) [#​58997](https://redirect.github.com/nodejs/node/pull/58997) - \[[`cb08a5d43f`](https://redirect.github.com/nodejs/node/commit/cb08a5d43f)] - **doc**: add missing `<code>` blocks (Antoine du Hamel) [#​58995](https://redirect.github.com/nodejs/node/pull/58995) - \[[`4a42360fe5`](https://redirect.github.com/nodejs/node/commit/4a42360fe5)] - **doc**: add scroll margin to links (Roman Reiss) [#​58982](https://redirect.github.com/nodejs/node/pull/58982) - \[[`9d073f32da`](https://redirect.github.com/nodejs/node/commit/9d073f32da)] - **doc**: add sponsorship link to RafaelGSS (Rafael Gonzaga) [#​58983](https://redirect.github.com/nodejs/node/pull/58983) - \[[`3cc11fc9ac`](https://redirect.github.com/nodejs/node/commit/3cc11fc9ac)] - **domain**: remove deprecated API call (Alex Yang) [#​59339](https://redirect.github.com/nodejs/node/pull/59339) - \[[`fa9a9e9c69`](https://redirect.github.com/nodejs/node/commit/fa9a9e9c69)] - **(SEMVER-MINOR)** **esm**: unflag --experimental-wasm-modules (Guy Bedford) [#​57038](https://redirect.github.com/nodejs/node/pull/57038) - \[[`177ed3b3dd`](https://redirect.github.com/nodejs/node/commit/177ed3b3dd)] - **esm**: js-string Wasm builtins in ESM Integration (Guy Bedford) [#​59020](https://redirect.github.com/nodejs/node/pull/59020) - \[[`4619fe0e04`](https://redirect.github.com/nodejs/node/commit/4619fe0e04)] - **fs**: fix glob TypeError on restricted dirs (Sylphy-0xd3ac) [#​58674](https://redirect.github.com/nodejs/node/pull/58674) - \[[`ad2089e32d`](https://redirect.github.com/nodejs/node/commit/ad2089e32d)] - **fs**: correct error message when FileHandle is transferred (Alex Yang) [#​59156](https://redirect.github.com/nodejs/node/pull/59156) - \[[`390a9dc20b`](https://redirect.github.com/nodejs/node/commit/390a9dc20b)] - **(SEMVER-MINOR)** **http**: add server.keepAliveTimeoutBuffer option (Haram Jeong) [#​59243](https://redirect.github.com/nodejs/node/pull/59243) - \[[`659002359d`](https://redirect.github.com/nodejs/node/commit/659002359d)] - **http2**: set Http2Stream#sentHeaders for raw headers (Darshan Sen) [#​59244](https://redirect.github.com/nodejs/node/pull/59244) - \[[`d02831ef73`](https://redirect.github.com/nodejs/node/commit/d02831ef73)] - **inspector**: initial support for Network.loadNetworkResource (Shima Ryuhei) [#​58077](https://redirect.github.com/nodejs/node/pull/58077) - \[[`264a838779`](https://redirect.github.com/nodejs/node/commit/264a838779)] - **lib**: add trace-sigint APIs (theanarkh) [#​59040](https://redirect.github.com/nodejs/node/pull/59040) - \[[`d22d2fa6d4`](https://redirect.github.com/nodejs/node/commit/d22d2fa6d4)] - **lib**: optimize writable stream buffer clearing (Yoo) [#​59406](https://redirect.github.com/nodejs/node/pull/59406) - \[[`a5e9759409`](https://redirect.github.com/nodejs/node/commit/a5e9759409)] - **lib**: do not modify prototype deprecated asyncResource (RafaelGSS) [#​59195](https://redirect.github.com/nodejs/node/pull/59195) - \[[`9254257fc0`](https://redirect.github.com/nodejs/node/commit/9254257fc0)] - **lib**: restructure assert to become a class (Miguel Marcondes Filho) [#​58253](https://redirect.github.com/nodejs/node/pull/58253) - \[[`946eab8d77`](https://redirect.github.com/nodejs/node/commit/946eab8d77)] - **lib**: handle superscript variants on windows device (Rafael Gonzaga) [#​59261](https://redirect.github.com/nodejs/node/pull/59261) - \[[`cd857a97b5`](https://redirect.github.com/nodejs/node/commit/cd857a97b5)] - **lib**: use validateString (hotpineapple) [#​59296](https://redirect.github.com/nodejs/node/pull/59296) - \[[`c12c5343ad`](https://redirect.github.com/nodejs/node/commit/c12c5343ad)] - **lib**: docs deprecate \_http\_\* (Sebastian Beltran) [#​59293](https://redirect.github.com/nodejs/node/pull/59293) - \[[`a28e5f0938`](https://redirect.github.com/nodejs/node/commit/a28e5f0938)] - **lib**: add type names in source mapped stack traces (Chengzhong Wu) [#​58976](https://redirect.github.com/nodejs/node/pull/58976) - \[[`6aec5aee7c`](https://redirect.github.com/nodejs/node/commit/6aec5aee7c)] - **lib**: prefer AsyncIteratorPrototype primordial (René) [#​59097](https://redirect.github.com/nodejs/node/pull/59097) - \[[`e704349858`](https://redirect.github.com/nodejs/node/commit/e704349858)] - **lib**: fix incorrect `ArrayBufferPrototypeGetDetached` primordial type (Dario Piotrowicz) [#​58978](https://redirect.github.com/nodejs/node/pull/58978) - \[[`2fc25fd400`](https://redirect.github.com/nodejs/node/commit/2fc25fd400)] - **lib**: flag to conditionally modify proto on deprecate (Rafael Gonzaga) [#​58928](https://redirect.github.com/nodejs/node/pull/58928) - \[[`446ee98e00`](https://redirect.github.com/nodejs/node/commit/446ee98e00)] - **meta**: clarify pr objection process further (James M Snell) [#​59096](https://redirect.github.com/nodejs/node/pull/59096) - \[[`46c339e4f3`](https://redirect.github.com/nodejs/node/commit/46c339e4f3)] - **meta**: add mailmap entry for aditi-1400 (Aditi) [#​59316](https://redirect.github.com/nodejs/node/pull/59316) - \[[`70a586261f`](https://redirect.github.com/nodejs/node/commit/70a586261f)] - **meta**: add tsc and build team as codeowners building.md (Rafael Gonzaga) [#​59298](https://redirect.github.com/nodejs/node/pull/59298) - \[[`e666e06781`](https://redirect.github.com/nodejs/node/commit/e666e06781)] - **meta**: add nodejs/path to path files (Rafael Gonzaga) [#​59289](https://redirect.github.com/nodejs/node/pull/59289) - \[[`251b65dd6c`](https://redirect.github.com/nodejs/node/commit/251b65dd6c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​59140](https://redirect.github.com/nodejs/node/pull/59140) - \[[`c8a7964da8`](https://redirect.github.com/nodejs/node/commit/c8a7964da8)] - **meta**: add marco-ippolito to security release stewards (Marco Ippolito) [#​58944](https://redirect.github.com/nodejs/node/pull/58944) - \[[`0eec5cc492`](https://redirect.github.com/nodejs/node/commit/0eec5cc492)] - **module**: fix conditions override in synchronous resolve hooks (Joyee Cheung) [#​59011](https://redirect.github.com/nodejs/node/pull/59011) - \[[`4acf7cd6d3`](https://redirect.github.com/nodejs/node/commit/4acf7cd6d3)] - **module**: throw error when re-runing errored module jobs (Joyee Cheung) [#​58957](https://redirect.github.com/nodejs/node/pull/58957) - \[[`f57ee3d71f`](https://redirect.github.com/nodejs/node/commit/f57ee3d71f)] - **(SEMVER-MINOR)** **net**: update net.blocklist to allow file save and file management (alphaleadership) [#​58087](https://redirect.github.com/nodejs/node/pull/58087) - \[[`4aefcfc318`](https://redirect.github.com/nodejs/node/commit/4aefcfc318)] - **node-api**: reword "implementation in an alternative VM" as implementable (Chengzhong Wu) [#​59036](https://redirect.github.com/nodejs/node/pull/59036) - \[[`ff6be2ed5d`](https://redirect.github.com/nodejs/node/commit/ff6be2ed5d)] - **node-api,doc**: update links to ecma262 with section names (Chengzhong Wu) [#​59087](https://redirect.github.com/nodejs/node/pull/59087) - \[[`8d60602677`](https://redirect.github.com/nodejs/node/commit/8d60602677)] - **perf\_hooks**: do not expose SafeMap via Histogram wrapper (René) [#​59094](https://redirect.github.com/nodejs/node/pull/59094) - \[[`035da74c31`](https://redirect.github.com/nodejs/node/commit/035da74c31)] - **(SEMVER-MINOR)** **process**: add threadCpuUsage (Paolo Insogna) [#​56467](https://redirect.github.com/nodejs/node/pull/56467) - \[[`74e1aa4d06`](https://redirect.github.com/nodejs/node/commit/74e1aa4d06)] - **process**: make execve's args argument optional (Allon Murienik) [#​58412](https://redirect.github.com/nodejs/node/pull/58412) - \[[`3366e60bd9`](https://redirect.github.com/nodejs/node/commit/3366e60bd9)] - **src**: use simdjson to parse SEA configuration (Joyee Cheung) [#​59323](https://redirect.github.com/nodejs/node/pull/59323) - \[[`63cc06977a`](https://redirect.github.com/nodejs/node/commit/63cc06977a)] - **src**: mark realm leaf classes final (Anna Henningsen) [#​59355](https://redirect.github.com/nodejs/node/pull/59355) - \[[`133d410cd9`](https://redirect.github.com/nodejs/node/commit/133d410cd9)] - **src**: use C++20 `contains()` method (iknoom) [#​59304](https://redirect.github.com/nodejs/node/pull/59304) - \[[`57fe96fe49`](https://redirect.github.com/nodejs/node/commit/57fe96fe49)] - **src**: added CHECK\_NOT\_NULL check for multiple eq\_wrap\_async (F3lixTheCat) [#​59267](https://redirect.github.com/nodejs/node/pull/59267) - \[[`a8f381a6c5`](https://redirect.github.com/nodejs/node/commit/a8f381a6c5)] - **src**: add nullptr checks in `StreamPipe::New` (Burkov Egor) [#​57613](https://redirect.github.com/nodejs/node/pull/57613) - \[[`0769e5a0dc`](https://redirect.github.com/nodejs/node/commit/0769e5a0dc)] - **src**: call unmask after install signal handler (theanarkh) [#​59059](https://redirect.github.com/nodejs/node/pull/59059) - \[[`1e7639e9e1`](https://redirect.github.com/nodejs/node/commit/1e7639e9e1)] - **src**: use `FastStringKey` for `TrackV8FastApiCall` (Anna Henningsen) [#​59148](https://redirect.github.com/nodejs/node/pull/59148) - \[[`9075a1a4bf`](https://redirect.github.com/nodejs/node/commit/9075a1a4bf)] - **src**: use C++20 `consteval` for `FastStringKey` (Anna Henningsen) [#​59148](https://redirect.github.com/nodejs/node/pull/59148) - \[[`5a0fd5689b`](https://redirect.github.com/nodejs/node/commit/5a0fd5689b)] - **src**: remove declarations of removed BaseObject static fns (Anna Henningsen) [#​59093](https://redirect.github.com/nodejs/node/pull/59093) - \[[`c637a2c41d`](https://redirect.github.com/nodejs/node/commit/c637a2c41d)] - **src**: add cache to nearest parent package json (Ilyas Shabi) [#​59086](https://redirect.github.com/nodejs/node/pull/59086) - \[[`3375a6cfee`](https://redirect.github.com/nodejs/node/commit/3375a6cfee)] - **test**: deflake sequential/test-tls-session-timeout (Joyee Cheung) [#​59423](https://redirect.github.com/nodejs/node/pull/59423) - \[[`438cb11a15`](https://redirect.github.com/nodejs/node/commit/438cb11a15)] - **test**: update WPT resources,WebCryptoAPI,webstorage (Filip Skokan) [#​59311](https://redirect.github.com/nodejs/node/pull/59311) - \[[`68bec19f76`](https://redirect.github.com/nodejs/node/commit/68bec19f76)] - **test**: add known issue test for fs.cpSync dereference bug (James M Snell) [#​58941](https://redirect.github.com/nodejs/node/pull/58941) - \[[`a100cce379`](https://redirect.github.com/nodejs/node/commit/a100cce379)] - **test**: deflake stream-readable-to-web test (Ethan Arrowood) [#​58948](https://redirect.github.com/nodejs/node/pull/58948) - \[[`b7577d853b`](https://redirect.github.com/nodejs/node/commit/b7577d853b)] - **test**: make test-inspector-network-resource sequential (Shima Ryuhei) [#​59104](https://redirect.github.com/nodejs/node/pull/59104) - \[[`667ee82443`](https://redirect.github.com/nodejs/node/commit/667ee82443)] - **test**: don't use expose internals in test-http-outgoing-buffer.js (Meghan Denny) [#​59219](https://redirect.github.com/nodejs/node/pull/59219) - \[[`feec26d3bb`](https://redirect.github.com/nodejs/node/commit/feec26d3bb)] - **test**: use mustSucceed in test-fs-read (Sungwon) [#​59204](https://redirect.github.com/nodejs/node/pull/59204) - \[[`d7e23769ab`](https://redirect.github.com/nodejs/node/commit/d7e23769ab)] - **test**: prepare test-crypto-rsa-dsa for newer OpenSSL (Richard Lau) [#​58100](https://redirect.github.com/nodejs/node/pull/58100) - \[[`3a9aca91c6`](https://redirect.github.com/nodejs/node/commit/3a9aca91c6)] - **test**: fix flaky test-worker-message-port-transfer-filehandle test (Alex Yang) [#​59158](https://redirect.github.com/nodejs/node/pull/59158) - \[[`3aee7625b9`](https://redirect.github.com/nodejs/node/commit/3aee7625b9)] - **test**: expand linting rules around `assert` w literal messages (Anna Henningsen) [#​59147](https://redirect.github.com/nodejs/node/pull/59147) - \[[`667c2ced38`](https://redirect.github.com/nodejs/node/commit/667c2ced38)] - **test**: update WPT for WebCryptoAPI to [`ab08796`](https://redirect.github.com/nodejs/node/commit/ab08796857) (Node.js GitHub Bot) [#​59129](https://redirect.github.com/nodejs/node/pull/59129) - \[[`89ac344393`](https://redirect.github.com/nodejs/node/commit/89ac344393)] - **test**: update WPT for WebCryptoAPI to [`19d82c5`](https://redirect.github.com/nodejs/node/commit/19d82c57ab) (Node.js GitHub Bot) [#​59129](https://redirect.github.com/nodejs/node/pull/59129) - \[[`d332957ac6`](https://redirect.github.com/nodejs/node/commit/d332957ac6)] - **test**: skip tests that cause timeouts on IBM i (Abdirahim Musse) [#​59014](https://redirect.github.com/nodejs/node/pull/59014) - \[[`a23562ff72`](https://redirect.github.com/nodejs/node/commit/a23562ff72)] - **test**: update `startCLI` to set `--port=0` by default (Dario Piotrowicz) [#​59042](https://redirect.github.com/nodejs/node/pull/59042) - \[[`4a12f5d83b`](https://redirect.github.com/nodejs/node/commit/4a12f5d83b)] - **test**: mark test-inspector-network-fetch as flaky on Windows (Joyee Cheung) [#​59091](https://redirect.github.com/nodejs/node/pull/59091) - \[[`ac4f7aa69c`](https://redirect.github.com/nodejs/node/commit/ac4f7aa69c)] - **test**: add missing port=0 arg in test-debugger-extract-function-name (Dario Piotrowicz) [#​58977](https://redirect.github.com/nodejs/node/pull/58977) - \[[`8dd09267e3`](https://redirect.github.com/nodejs/node/commit/8dd09267e3)] - **test,crypto**: skip unsupported ciphers (Shelley Vohr) [#​59388](https://redirect.github.com/nodejs/node/pull/59388) - \[[`45200b43ea`](https://redirect.github.com/nodejs/node/commit/45200b43ea)] - **tools**: update coverage GitHub Actions to fixed version (Rich Trott) [#​59512](https://redirect.github.com/nodejs/node/pull/59512) - \[[`8f2b8b3dc4`](https://redirect.github.com/nodejs/node/commit/8f2b8b3dc4)] - **tools**: allow selecting test subsystems with numbers in their names (Darshan Sen) [#​59242](https://redirect.github.com/nodejs/node/pull/59242) - \[[`f9bc2573dd`](https://redirect.github.com/nodejs/node/commit/f9bc2573dd)] - **tools**: clarify README linter error message (Joyee Cheung) [#​59160](https://redirect.github.com/nodejs/node/pull/59160) - \[[`cba0de128d`](https://redirect.github.com/nodejs/node/commit/cba0de128d)] - **tools**: add support for URLs to PR commits in `merge.sh` (Antoine du Hamel) [#​59162](https://redirect.github.com/nodejs/node/pull/59162) - \[[`039949ef5b`](https://redirect.github.com/nodejs/node/commit/039949ef5b)] - **tools**: bump [@​eslint/plugin-kit](https://redirect.github.com/eslint/plugin-kit) from 0.3.1 to 0.3.3 in /tools/eslint (dependabot\[bot]) [#​59119](https://redirect.github.com/nodejs/node/pull/59119) - \[[`6a8a73aa35`](https://redirect.github.com/nodejs/node/commit/6a8a73aa35)] - **tools**: ignore CVE mention when linting release proposals (Antoine du Hamel) [#​59037](https://redirect.github.com/nodejs/node/pull/59037) - \[[`d0f40f3a3a`](https://redirect.github.com/nodejs/node/commit/d0f40f3a3a)] - **tools,test**: enforce best practices to detect never settling promises (Antoine du Hamel) [#​58992](https://redirect.github.com/nodejs/node/pull/58992) - \[[`9d801a3f00`](https://redirect.github.com/nodejs/node/commit/9d801a3f00)] - **typings**: improve internal binding types (Nam Yooseong) [#​59351](https://redirect.github.com/nodejs/node/pull/59351) - \[[`6dbda6cb25`](https://redirect.github.com/nodejs/node/commit/6dbda6cb25)] - **typings**: improve internal binding types (Michaël Zasso) [#​59176](https://redirect.github.com/nodejs/node/pull/59176) - \[[`e22dddf859`](https://redirect.github.com/nodejs/node/commit/e22dddf859)] - **util**: respect nested formats in styleText (Alex Yang) [#​59098](https://redirect.github.com/nodejs/node/pull/59098) - \[[`491f390515`](https://redirect.github.com/nodejs/node/commit/491f390515)] - **worker**: add cpuUsage for worker (theanarkh) [#​59177](https://redirect.github.com/nodejs/node/pull/59177) - \[[`8e697d1884`](https://redirect.github.com/nodejs/node/commit/8e697d1884)] - **(SEMVER-MINOR)** **zlib**: add dictionary support to zstdCompress and zstdDecompress (lluisemper) [#​59240](https://redirect.github.com/nodejs/node/pull/59240) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
8fab10b232 |
fix(website): update astro monorepo (patch) (#38750)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap)) | [`3.5.0` -> `3.5.1`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.5.0/3.5.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.13.2` -> `5.13.3`](https://renovatebot.com/diffs/npm/astro/5.13.2/5.13.3) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (@​astrojs/sitemap)</summary> ### [`v3.5.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#351) [Compare Source](https://redirect.github.com/withastro/astro/compare/@astrojs/sitemap@3.5.0...@astrojs/sitemap@3.5.1) ##### Patch Changes - [#​14233](https://redirect.github.com/withastro/astro/pull/14233) [`896886c`](https://redirect.github.com/withastro/astro/commit/896886cc6e60954d8d5ac80a4b2560df92cfdc5b) Thanks [@​gouravkhunger](https://redirect.github.com/gouravkhunger)! - Fixes the issue with the option `lastmod` where if it is defined it applies correctly to `<url>` entries in each `sitemap-${i}.xml` file but not the `<sitemap>` entries in the root `sitemap-index.xml` file. </details> <details> <summary>withastro/astro (astro)</summary> ### [`v5.13.3`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5133) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.2...astro@5.13.3) ##### Patch Changes - [#​14239](https://redirect.github.com/withastro/astro/pull/14239) [`d7d93e1`](https://redirect.github.com/withastro/astro/commit/d7d93e19fbfa52cf74dee40f5af6b7ea6a7503d2) Thanks [@​wtchnm](https://redirect.github.com/wtchnm)! - Fixes a bug where the types for the live content collections were not being generated correctly in dev mode - [#​14221](https://redirect.github.com/withastro/astro/pull/14221) [`eadc9dd`](https://redirect.github.com/withastro/astro/commit/eadc9dd277d0075d7bff0e33c7a86f3fb97fdd61) Thanks [@​delucis](https://redirect.github.com/delucis)! - Fixes JSON schema support for content collections using the `file()` loader - [#​14229](https://redirect.github.com/withastro/astro/pull/14229) [`1a9107a`](https://redirect.github.com/withastro/astro/commit/1a9107a4049f43c1e4e9f40e07033f6bfe4398e4) Thanks [@​jonmichaeldarby](https://redirect.github.com/jonmichaeldarby)! - Ensures `Astro.currentLocale` returns the correct locale during SSG for pages that use a locale param (such as `[locale].astro` or `[locale]/index.astro`, which produce `[locale].html`) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi41IiwidXBkYXRlZEluVmVyIjoiNDEuODIuNSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
fd8f1add2a |
Change tccr.io into oci.trueforge.org (#38868)
**Description** We're moving from tccr.io to oci.trueforge.org TCCR meant "TrueCharts Container Repository" however, it mostly stores chart artefacts. At the same time, we want to more clearly allow us to store containers/artifacts not related to truecharts. Its also worth noting that an additional .io domain carries additional costs. **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [ ] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ |
||
|
|
1957535b25 |
chore(website): lock file maintenance (#38559)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS43Mi4xIiwidXBkYXRlZEluVmVyIjoiNDEuNzIuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiXX0=--> |
||
|
|
794ba315d7 |
fix(website): update astro 5.13.0 → 5.13.2 (#38469)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.13.0` -> `5.13.2`](https://renovatebot.com/diffs/npm/astro/5.13.0/5.13.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.13.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5132) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.1...astro@5.13.2) ##### Patch Changes - [`4d16de7`](https://redirect.github.com/withastro/astro/commit/4d16de7f95db5d1ec1ce88610d2a95e606e83820) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Improves the detection of remote paths in the `_image` endpoint. Now `href` parameters that start with `//` are considered remote paths. - Updated dependencies \[[`4d16de7`](https://redirect.github.com/withastro/astro/commit/4d16de7f95db5d1ec1ce88610d2a95e606e83820)]: - [@​astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)@​0.7.2 - [@​astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)@​6.3.6 ### [`v5.13.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5131) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.13.0...astro@5.13.1) ##### Patch Changes - [#​14225](https://redirect.github.com/withastro/astro/pull/14225) [`f2490ab`](https://redirect.github.com/withastro/astro/commit/f2490aba420a8999c0e8d12b9e1e69d4e33ae29e) Thanks [@​delucis](https://redirect.github.com/delucis)! - Fixes the `experimental.chromeDevtoolsWorkspace` feature. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS43Mi4xIiwidXBkYXRlZEluVmVyIjoiNDEuNzIuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
2665aafb39 |
fix(website): update astro monorepo (minor) (#38410)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap)) | [`3.4.2` -> `3.5.0`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.4.2/3.5.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.12.9` -> `5.13.0`](https://renovatebot.com/diffs/npm/astro/5.12.9/5.13.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (@​astrojs/sitemap)</summary> ### [`v3.5.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#350) [Compare Source](https://redirect.github.com/withastro/astro/compare/@astrojs/sitemap@3.4.2...@astrojs/sitemap@3.5.0) ##### Minor Changes - [#​13682](https://redirect.github.com/withastro/astro/pull/13682) [`5824b32`](https://redirect.github.com/withastro/astro/commit/5824b32c5cc5d58c1138e408a05d1be18924c711) Thanks [@​gouravkhunger](https://redirect.github.com/gouravkhunger)! - Adds a `customSitemaps` option to include extra sitemaps in the `sitemap-index.xml` file generated by Astro. This is useful for multi-framework setups on the same domain as your Astro site (`example.com`), such as a blog at `example.com/blog` whose sitemap is generated by another framework. The following example shows configuring your Astro site to include sitemaps for an externally-generated blog and help center along with the generated sitemap entries in `sitemap-index.xml`: Example: ```js import { defineConfig } from 'astro/config'; import sitemap from '@​astrojs/sitemap'; export default defineConfig({ site: 'https://example.com', integrations: [ sitemap({ customSitemaps: [ 'https://example.com/blog/sitemap.xml', 'https://example.com/helpcenter/sitemap.xml', ], }), ], }); ``` Learn more in the [`@astrojs/sitemap` configuration documentation](https://docs.astro.build/en/guides/integrations-guide/sitemap/#configuration). </details> <details> <summary>withastro/astro (astro)</summary> ### [`v5.13.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5130) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.9...astro@5.13.0) ##### Minor Changes - [#​14173](https://redirect.github.com/withastro/astro/pull/14173) [`39911b8`](https://redirect.github.com/withastro/astro/commit/39911b823d4617d99cc95e4b7584e9e4b7b90038) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Adds an experimental flag `staticImportMetaEnv` to disable the replacement of `import.meta.env` values with `process.env` calls and their coercion of environment variable values. This supersedes the `rawEnvValues` experimental flag, which is now removed. Astro allows you to configure a [type-safe schema for your environment variables](https://docs.astro.build/en/guides/environment-variables/#type-safe-environment-variables), and converts variables imported via `astro:env` into the expected type. This is the recommended way to use environment variables in Astro, as it allows you to easily see and manage whether your variables are public or secret, available on the client or only on the server at build time, and the data type of your values. However, you can still access environment variables through `process.env` and `import.meta.env` directly when needed. This was the only way to use environment variables in Astro before `astro:env` was added in Astro 5.0, and Astro's default handling of `import.meta.env` includes some logic that was only needed for earlier versions of Astro. The `experimental.staticImportMetaEnv` flag updates the behavior of `import.meta.env` to align with [Vite's handling of environment variables](https://vite.dev/guide/env-and-mode.html#env-variables) and for better ease of use with Astro's current implementations and features. **This will become the default behavior in Astro 6.0**, and this early preview is introduced as an experimental feature. Currently, non-public `import.meta.env` environment variables are replaced by a reference to `process.env`. Additionally, Astro may also convert the value type of your environment variables used through `import.meta.env`, which can prevent access to some values such as the strings `"true"` (which is converted to a boolean value), and `"1"` (which is converted to a number). The `experimental.staticImportMetaEnv` flag simplifies Astro's default behavior, making it easier to understand and use. Astro will no longer replace any `import.meta.env` environment variables with a `process.env` call, nor will it coerce values. To enable this feature, add the experimental flag in your Astro config and remove `rawEnvValues` if it was enabled: ```diff // astro.config.mjs import { defineConfig } from "astro/config"; export default defineConfig({ + experimental: { + staticImportMetaEnv: true - rawEnvValues: false + } }); ``` ##### Updating your project If you were relying on Astro's default coercion, you may need to update your project code to apply it manually: ```diff // src/components/MyComponent.astro - const enabled: boolean = import.meta.env.ENABLED; + const enabled: boolean = import.meta.env.ENABLED === "true"; ``` If you were relying on the transformation into `process.env` calls, you may need to update your project code to apply it manually: ```diff // src/components/MyComponent.astro - const enabled: boolean = import.meta.env.DB_PASSWORD; + const enabled: boolean = process.env.DB_PASSWORD; ``` You may also need to update types: ```diff // src/env.d.ts interface ImportMetaEnv { readonly PUBLIC_POKEAPI: string; - readonly DB_PASSWORD: string; - readonly ENABLED: boolean; + readonly ENABLED: string; } interface ImportMeta { readonly env: ImportMetaEnv; } + namespace NodeJS { + interface ProcessEnv { + DB_PASSWORD: string; + } + } ``` See the [experimental static `import.meta.env` documentation](https://docs.astro.build/en/reference/experimental-flags/static-import-meta-env/) for more information about this feature. You can learn more about using environment variables in Astro, including `astro:env`, in the [environment variables documentation](https://docs.astro.build/en/guides/environment-variables/). - [#​14122](https://redirect.github.com/withastro/astro/pull/14122) [`41ed3ac`](https://redirect.github.com/withastro/astro/commit/41ed3ac54adf1025a38031757ee0bfaef8504092) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Adds experimental support for automatic [Chrome DevTools workspace folders](https://developer.chrome.com/docs/devtools/workspaces) This feature allows you to edit files directly in the browser and have those changes reflected in your local file system via a connected workspace folder. This allows you to apply edits such as CSS tweaks without leaving your browser tab! With this feature enabled, the Astro dev server will automatically configure a Chrome DevTools workspace for your project. Your project will then appear as a workspace source, ready to connect. Then, changes that you make in the "Sources" panel are automatically saved to your project source code. To enable this feature, add the experimental flag `chromeDevtoolsWorkspace` to your Astro config: ```js // astro.config.mjs import { defineConfig } from 'astro/config'; export default defineConfig({ experimental: { chromeDevtoolsWorkspace: true, }, }); ``` See the [experimental Chrome DevTools workspace feature documentation](https://docs.astro.build/en/reference/experimental-flags/chrome-devtools-workspace/) for more information. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
969f727888 |
chore(website): lock file maintenance (#38377)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiXX0=--> |
||
|
|
7f55d9e890 |
chore(website): lock file maintenance (#38255)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiXX0=--> |
||
|
|
c907bc19c9 |
chore(website): lock file maintenance (#38076)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiXX0=--> |
||
|
|
f1ba2a4e9a |
fix(website): update astro 5.12.8 → 5.12.9 (#38202)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.12.8` -> `5.12.9`](https://renovatebot.com/diffs/npm/astro/5.12.8/5.12.9) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.12.9`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5129) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.8...astro@5.12.9) ##### Patch Changes - [#​14020](https://redirect.github.com/withastro/astro/pull/14020) [`9518975`](https://redirect.github.com/withastro/astro/commit/951897553921c1419fb96aef74d42ec99976d8be) Thanks [@​jp-knj](https://redirect.github.com/jp-knj) and [@​asieradzk](https://redirect.github.com/asieradzk)! - Prevent double-prefixed redirect paths when using fallback and redirectToDefaultLocale together Fixes an issue where i18n fallback routes would generate double-prefixed paths (e.g., `/es/es/test/item1/`) when `fallback` and `redirectToDefaultLocale` configurations were used together. The fix adds proper checks to prevent double prefixing in route generation. - [#​14199](https://redirect.github.com/withastro/astro/pull/14199) [`3e4cb8e`](https://redirect.github.com/withastro/astro/commit/3e4cb8e52a83974cc2671d13fb1b4595fe65085d) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that prevented HMR from working with inline styles </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
abef1885d2 |
fix(website): update astro 5.12.7 → 5.12.8 (#38027)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.12.7` -> `5.12.8`](https://renovatebot.com/diffs/npm/astro/5.12.7/5.12.8) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.12.8`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5128) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.7...astro@5.12.8) ##### Patch Changes - [`0567fb7`](https://redirect.github.com/withastro/astro/commit/0567fb7b50c0c452be387dd7c7264b96bedab48f) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Adds `//` to list of internal path prefixes that do not have automated trailing slash handling - [#​13894](https://redirect.github.com/withastro/astro/pull/13894) [`b36e72f`](https://redirect.github.com/withastro/astro/commit/b36e72f11fbcc0f3d5826f2b1939084f1fb1e3a8) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Removes Astro Studio commands from the CLI help - Updated dependencies \[[`0567fb7`](https://redirect.github.com/withastro/astro/commit/0567fb7b50c0c452be387dd7c7264b96bedab48f)]: - [@​astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)@​0.7.1 - [@​astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)@​6.3.5 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
eb6b9c8c38 |
chore(deps): update node.js v22.17.1 → v22.18.0 (#38017)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [node](https://nodejs.org) ([source](https://redirect.github.com/nodejs/node)) | minor | `22.17.1` -> `22.18.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v22.18.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.18.0): 2025-07-31, Version 22.18.0 'Jod' (LTS), @​aduh95 [Compare Source](https://redirect.github.com/nodejs/node/compare/v22.17.1...v22.18.0) ##### Notable Changes ##### Type stripping is enabled by default Node.js will be able to execute TypeScript files without additional configuration: ```console $ echo 'const foo: string = 'World'; console.log(`Hello ${foo}!`);' > file.ts $ node file.ts Hello World! ``` There are some limitations in the supported syntax documented at <https://nodejs.org/api/typescript.html#type-stripping>. This feature is experimental and is subject to change. Disable it by passing `--no-experimental-strip-types` CLI flag. Contributed by Marco Ippolito in [#​56350](https://redirect.github.com/nodejs/node/pull/56350). ##### Other notable changes - \[[`26f3711228`](https://redirect.github.com/nodejs/node/commit/26f3711228)] - **(SEMVER-MINOR)** **deps**: update amaro to 1.1.0 (Node.js GitHub Bot) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`d80ef2a71f`](https://redirect.github.com/nodejs/node/commit/d80ef2a71f)] - **(SEMVER-MINOR)** **doc**: add all watch-mode related flags to node.1 (Dario Piotrowicz) [#​58719](https://redirect.github.com/nodejs/node/pull/58719) - \[[`8ab24d21c9`](https://redirect.github.com/nodejs/node/commit/8ab24d21c9)] - **doc**: add islandryu to collaborators (Shima Ryuhei) [#​58714](https://redirect.github.com/nodejs/node/pull/58714) - \[[`430e66b9b8`](https://redirect.github.com/nodejs/node/commit/430e66b9b8)] - **(SEMVER-MINOR)** **esm**: implement `import.meta.main` (Joe) [#​57804](https://redirect.github.com/nodejs/node/pull/57804) - \[[`62f7926b6a`](https://redirect.github.com/nodejs/node/commit/62f7926b6a)] - **(SEMVER-MINOR)** **fs**: allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) [#​58490](https://redirect.github.com/nodejs/node/pull/58490) - \[[`65f19a00c3`](https://redirect.github.com/nodejs/node/commit/65f19a00c3)] - **(SEMVER-MINOR)** **permission**: propagate permission model flags on spawn (Rafael Gonzaga) [#​58853](https://redirect.github.com/nodejs/node/pull/58853) - \[[`ccca1517f9`](https://redirect.github.com/nodejs/node/commit/ccca1517f9)] - **(SEMVER-MINOR)** **sqlite**: add support for `readBigInts` option in db connection level (Miguel Marcondes Filho) [#​58697](https://redirect.github.com/nodejs/node/pull/58697) - \[[`48003e87e8`](https://redirect.github.com/nodejs/node/commit/48003e87e8)] - **(SEMVER-MINOR)** **src,permission**: add support to `permission.has(addon)` (Rafael Gonzaga) [#​58951](https://redirect.github.com/nodejs/node/pull/58951) - \[[`fe4290a0e6`](https://redirect.github.com/nodejs/node/commit/fe4290a0e6)] - **(SEMVER-MINOR)** **url**: add `fileURLToPathBuffer` API (James M Snell) [#​58700](https://redirect.github.com/nodejs/node/pull/58700) - \[[`4dc6b4c67a`](https://redirect.github.com/nodejs/node/commit/4dc6b4c67a)] - **(SEMVER-MINOR)** **watch**: add `--watch-kill-signal` flag (Dario Piotrowicz) [#​58719](https://redirect.github.com/nodejs/node/pull/58719) - \[[`8dbc6b210f`](https://redirect.github.com/nodejs/node/commit/8dbc6b210f)] - **(SEMVER-MINOR)** **worker**: make `Worker` async disposable (James M Snell) [#​58385](https://redirect.github.com/nodejs/node/pull/58385) ##### Commits - \[[`b19ffebea7`](https://redirect.github.com/nodejs/node/commit/b19ffebea7)] - **assert**: remove dead code (Yoshiya Hinosawa) [#​58760](https://redirect.github.com/nodejs/node/pull/58760) - \[[`5bc828beae`](https://redirect.github.com/nodejs/node/commit/5bc828beae)] - **benchmark**: add source map and source map cache (Miguel Marcondes Filho) [#​58125](https://redirect.github.com/nodejs/node/pull/58125) - \[[`f7c16985a7`](https://redirect.github.com/nodejs/node/commit/f7c16985a7)] - **build**: disable v8\_enable\_pointer\_compression\_shared\_cage on non-64bit (Shelley Vohr) [#​58867](https://redirect.github.com/nodejs/node/pull/58867) - \[[`ba42c72f7f`](https://redirect.github.com/nodejs/node/commit/ba42c72f7f)] - **build**: option to use custom inspector\_protocol path (Shelley Vohr) [#​58839](https://redirect.github.com/nodejs/node/pull/58839) - \[[`4fd8911653`](https://redirect.github.com/nodejs/node/commit/4fd8911653)] - **build**: fix typo 'Stoage' to 'Storage' in help text (ganglike) [#​58777](https://redirect.github.com/nodejs/node/pull/58777) - \[[`114cd95919`](https://redirect.github.com/nodejs/node/commit/114cd95919)] - **crypto**: fix inclusion of OPENSSL\_IS\_BORINGSSL define (Shelley Vohr) [#​58845](https://redirect.github.com/nodejs/node/pull/58845) - \[[`6699c75eac`](https://redirect.github.com/nodejs/node/commit/6699c75eac)] - **crypto**: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 (Filip Skokan) [#​58942](https://redirect.github.com/nodejs/node/pull/58942) - \[[`f99aa748c0`](https://redirect.github.com/nodejs/node/commit/f99aa748c0)] - **deps**: upgrade npm to 10.9.3 (npm team) [#​58847](https://redirect.github.com/nodejs/node/pull/58847) - \[[`02e971190b`](https://redirect.github.com/nodejs/node/commit/02e971190b)] - **deps**: update sqlite to 3.50.2 (Node.js GitHub Bot) [#​58882](https://redirect.github.com/nodejs/node/pull/58882) - \[[`de2b85b5ae`](https://redirect.github.com/nodejs/node/commit/de2b85b5ae)] - **deps**: update googletest to [`35b75a2`](https://redirect.github.com/nodejs/node/commit/35b75a2) (Node.js GitHub Bot) [#​58710](https://redirect.github.com/nodejs/node/pull/58710) - \[[`e7591d7a19`](https://redirect.github.com/nodejs/node/commit/e7591d7a19)] - **deps**: update minimatch to 10.0.3 (Node.js GitHub Bot) [#​58712](https://redirect.github.com/nodejs/node/pull/58712) - \[[`8c61b96c43`](https://redirect.github.com/nodejs/node/commit/8c61b96c43)] - **deps**: update acorn to 8.15.0 (Node.js GitHub Bot) [#​58711](https://redirect.github.com/nodejs/node/pull/58711) - \[[`113f4e2d3c`](https://redirect.github.com/nodejs/node/commit/113f4e2d3c)] - **deps**: update sqlite to 3.50.1 (Node.js GitHub Bot) [#​58630](https://redirect.github.com/nodejs/node/pull/58630) - \[[`7ccd848995`](https://redirect.github.com/nodejs/node/commit/7ccd848995)] - **deps**: update simdjson to 3.13.0 (Node.js GitHub Bot) [#​58629](https://redirect.github.com/nodejs/node/pull/58629) - \[[`e9c51deb5c`](https://redirect.github.com/nodejs/node/commit/e9c51deb5c)] - **deps**: update zlib to 1.3.1-470d3a2 (Node.js GitHub Bot) [#​58628](https://redirect.github.com/nodejs/node/pull/58628) - \[[`26f3711228`](https://redirect.github.com/nodejs/node/commit/26f3711228)] - **(SEMVER-MINOR)** **deps**: update amaro to 1.1.0 (Node.js GitHub Bot) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`752dde182f`](https://redirect.github.com/nodejs/node/commit/752dde182f)] - **(SEMVER-MINOR)** **deps**: update amaro to 1.0.0 (Node.js GitHub Bot) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`258534d0dc`](https://redirect.github.com/nodejs/node/commit/258534d0dc)] - **(SEMVER-MINOR)** **deps**: update amaro to 0.5.3 (Node.js GitHub Bot) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`7fcf675503`](https://redirect.github.com/nodejs/node/commit/7fcf675503)] - **(SEMVER-MINOR)** **deps**: update amaro to 0.5.2 (Node.js GitHub Bot) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`81a10a67d5`](https://redirect.github.com/nodejs/node/commit/81a10a67d5)] - **(SEMVER-MINOR)** **deps**: update amaro to 0.5.1 (Marco Ippolito) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`25f8682a62`](https://redirect.github.com/nodejs/node/commit/25f8682a62)] - **(SEMVER-MINOR)** **deps**: update amaro to 0.5.0 (nodejs-github-bot) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`4baf2167e7`](https://redirect.github.com/nodejs/node/commit/4baf2167e7)] - **dns**: fix parse memory leaky (theanarkh) [#​58973](https://redirect.github.com/nodejs/node/pull/58973) - \[[`e8f4a7df22`](https://redirect.github.com/nodejs/node/commit/e8f4a7df22)] - **dns**: set timeout to 1000ms when timeout < 0 (theanarkh) [#​58441](https://redirect.github.com/nodejs/node/pull/58441) - \[[`1e373a0a25`](https://redirect.github.com/nodejs/node/commit/1e373a0a25)] - **doc**: update release key for aduh95 (Antoine du Hamel) [#​58877](https://redirect.github.com/nodejs/node/pull/58877) - \[[`d5c104246f`](https://redirect.github.com/nodejs/node/commit/d5c104246f)] - **doc**: remove broken link to permission model source code (Juan José) [#​58972](https://redirect.github.com/nodejs/node/pull/58972) - \[[`b8885a25ff`](https://redirect.github.com/nodejs/node/commit/b8885a25ff)] - **doc**: clarify details of TSC public and private meetings (James M Snell) [#​58925](https://redirect.github.com/nodejs/node/pull/58925) - \[[`aa05823b37`](https://redirect.github.com/nodejs/node/commit/aa05823b37)] - **doc**: mark stability markers consistent in `globals.md` (Antoine du Hamel) [#​58932](https://redirect.github.com/nodejs/node/pull/58932) - \[[`3856aee9b2`](https://redirect.github.com/nodejs/node/commit/3856aee9b2)] - **doc**: move "Core Promise APIs" to "Completed initiatives" (Antoine du Hamel) [#​58934](https://redirect.github.com/nodejs/node/pull/58934) - \[[`c2f9735422`](https://redirect.github.com/nodejs/node/commit/c2f9735422)] - **doc**: fix `fetch` subsections in `globals.md` (Antoine du Hamel) [#​58933](https://redirect.github.com/nodejs/node/pull/58933) - \[[`5f4c7a9d2d`](https://redirect.github.com/nodejs/node/commit/5f4c7a9d2d)] - **doc**: add missing `Class:` mentions (Antoine du Hamel) [#​58931](https://redirect.github.com/nodejs/node/pull/58931) - \[[`88ee38b37c`](https://redirect.github.com/nodejs/node/commit/88ee38b37c)] - **doc**: remove myself from security steward rotation (Michael Dawson) [#​58927](https://redirect.github.com/nodejs/node/pull/58927) - \[[`02031a9b0d`](https://redirect.github.com/nodejs/node/commit/02031a9b0d)] - **doc**: add ovflowd back to core collaborators (Claudio W.) [#​58911](https://redirect.github.com/nodejs/node/pull/58911) - \[[`9551fa3c8f`](https://redirect.github.com/nodejs/node/commit/9551fa3c8f)] - **doc**: update email address for Richard Lau (Richard Lau) [#​58910](https://redirect.github.com/nodejs/node/pull/58910) - \[[`cd6bc982c0`](https://redirect.github.com/nodejs/node/commit/cd6bc982c0)] - **doc**: update vm doc links (Chengzhong Wu) [#​58885](https://redirect.github.com/nodejs/node/pull/58885) - \[[`ce49303cd0`](https://redirect.github.com/nodejs/node/commit/ce49303cd0)] - **doc**: add missing comma in `child_process.md` (ronijames008) [#​58862](https://redirect.github.com/nodejs/node/pull/58862) - \[[`d80ef2a71f`](https://redirect.github.com/nodejs/node/commit/d80ef2a71f)] - **(SEMVER-MINOR)** **doc**: add all watch-mode related flags to node.1 (Dario Piotrowicz) [#​58719](https://redirect.github.com/nodejs/node/pull/58719) - \[[`f8fcb1c83a`](https://redirect.github.com/nodejs/node/commit/f8fcb1c83a)] - **doc**: fix jsdoc definition of assert.ifError() fn in lib/assert.js (jesh) [#​58573](https://redirect.github.com/nodejs/node/pull/58573) - \[[`28fddc04ca`](https://redirect.github.com/nodejs/node/commit/28fddc04ca)] - **doc**: add array type in http request headers (Michael Henrique) [#​58049](https://redirect.github.com/nodejs/node/pull/58049) - \[[`8bd698b688`](https://redirect.github.com/nodejs/node/commit/8bd698b688)] - **doc**: add missing colon to headers in `globals.md` (Aviv Keller) [#​58825](https://redirect.github.com/nodejs/node/pull/58825) - \[[`fa5818e3c1`](https://redirect.github.com/nodejs/node/commit/fa5818e3c1)] - **doc**: fix `stream.md` section order (Antoine du Hamel) [#​58811](https://redirect.github.com/nodejs/node/pull/58811) - \[[`2384bfdcbd`](https://redirect.github.com/nodejs/node/commit/2384bfdcbd)] - **doc**: fix stability 1.x links excluding the decimal digit (Dario Piotrowicz) [#​58783](https://redirect.github.com/nodejs/node/pull/58783) - \[[`4e9fe670c9`](https://redirect.github.com/nodejs/node/commit/4e9fe670c9)] - **doc**: fix wrong RFC number in http2 (Deokjin Kim) [#​58753](https://redirect.github.com/nodejs/node/pull/58753) - \[[`bbe4ad7351`](https://redirect.github.com/nodejs/node/commit/bbe4ad7351)] - **doc**: add history entry for TS support in hooks (Antoine du Hamel) [#​58732](https://redirect.github.com/nodejs/node/pull/58732) - \[[`ec60473ab1`](https://redirect.github.com/nodejs/node/commit/ec60473ab1)] - **doc**: run license-builder (github-actions\[bot]) [#​58722](https://redirect.github.com/nodejs/node/pull/58722) - \[[`8ab24d21c9`](https://redirect.github.com/nodejs/node/commit/8ab24d21c9)] - **doc**: add islandryu to collaborators (Shima Ryuhei) [#​58714](https://redirect.github.com/nodejs/node/pull/58714) - \[[`8c641105cd`](https://redirect.github.com/nodejs/node/commit/8c641105cd)] - **doc**: punctuation fix for Node-API versioning clarification (Jiacai Liu) [#​58599](https://redirect.github.com/nodejs/node/pull/58599) - \[[`133b10a0bb`](https://redirect.github.com/nodejs/node/commit/133b10a0bb)] - **doc**: add path rules and validation for export targets in package.json (0hm☘️) [#​58604](https://redirect.github.com/nodejs/node/pull/58604) - \[[`354a68c460`](https://redirect.github.com/nodejs/node/commit/354a68c460)] - **doc**: add history entries to `--input-type` section (Antoine du Hamel) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`430e66b9b8`](https://redirect.github.com/nodejs/node/commit/430e66b9b8)] - **(SEMVER-MINOR)** **esm**: implement import.meta.main (Joe) [#​57804](https://redirect.github.com/nodejs/node/pull/57804) - \[[`42c4ca6024`](https://redirect.github.com/nodejs/node/commit/42c4ca6024)] - **esm**: syncify default path of `ModuleLoader.load` (Jacob Smith) [#​57419](https://redirect.github.com/nodejs/node/pull/57419) - \[[`3ac8c686a3`](https://redirect.github.com/nodejs/node/commit/3ac8c686a3)] - **esm**: unwrap WebAssembly.Global on Wasm Namespaces (Guy Bedford) [#​57525](https://redirect.github.com/nodejs/node/pull/57525) - \[[`c7ebf2e245`](https://redirect.github.com/nodejs/node/commit/c7ebf2e245)] - **fs**: close dir before throwing if `options.bufferSize` is invalid (Livia Medeiros) [#​58856](https://redirect.github.com/nodejs/node/pull/58856) - \[[`38ffed8744`](https://redirect.github.com/nodejs/node/commit/38ffed8744)] - **fs**: special input `-1` on `chown`, `lchown` and `fchown` (Alex Yang) [#​58836](https://redirect.github.com/nodejs/node/pull/58836) - \[[`0e82f72a46`](https://redirect.github.com/nodejs/node/commit/0e82f72a46)] - **fs**: throw `ERR_INVALID_THIS` on illegal invocations (Livia Medeiros) [#​58848](https://redirect.github.com/nodejs/node/pull/58848) - \[[`141b2b1954`](https://redirect.github.com/nodejs/node/commit/141b2b1954)] - **fs**: make `Dir` disposers idempotent (René) [#​58692](https://redirect.github.com/nodejs/node/pull/58692) - \[[`dedd9d1961`](https://redirect.github.com/nodejs/node/commit/dedd9d1961)] - **fs**: avoid computing time coefficient constants in runtime (Livia Medeiros) [#​58728](https://redirect.github.com/nodejs/node/pull/58728) - \[[`a029a06b49`](https://redirect.github.com/nodejs/node/commit/a029a06b49)] - **fs**: add UV\_ENOSPC to list of things to pass to err directly (Jacky Zhao) [#​56918](https://redirect.github.com/nodejs/node/pull/56918) - \[[`62f7926b6a`](https://redirect.github.com/nodejs/node/commit/62f7926b6a)] - **(SEMVER-MINOR)** **fs**: allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) [#​58490](https://redirect.github.com/nodejs/node/pull/58490) - \[[`927d2e77f3`](https://redirect.github.com/nodejs/node/commit/927d2e77f3)] - **http**: fix keep-alive not timing out after post-request empty line (Shima Ryuhei) [#​58178](https://redirect.github.com/nodejs/node/pull/58178) - \[[`5cd8145612`](https://redirect.github.com/nodejs/node/commit/5cd8145612)] - **http2**: add diagnostics channel 'http2.server.stream.close' (Darshan Sen) [#​58602](https://redirect.github.com/nodejs/node/pull/58602) - \[[`0f2b31cba4`](https://redirect.github.com/nodejs/node/commit/0f2b31cba4)] - **inspector**: add protocol methods retrieving sent/received data (Chengzhong Wu) [#​58645](https://redirect.github.com/nodejs/node/pull/58645) - \[[`79428d8946`](https://redirect.github.com/nodejs/node/commit/79428d8946)] - **lib**: fix `getTypeScriptParsingMode` jsdoc (沈鸿飞) [#​58681](https://redirect.github.com/nodejs/node/pull/58681) - \[[`2c205d857c`](https://redirect.github.com/nodejs/node/commit/2c205d857c)] - **lib**: rename `validateInternalField` into `validateThisInternalField` (LiviaMedeiros) [#​58765](https://redirect.github.com/nodejs/node/pull/58765) - \[[`f67e927a5f`](https://redirect.github.com/nodejs/node/commit/f67e927a5f)] - **lib**: make `validateInternalField()` throw `ERR_INVALID_THIS` (LiviaMedeiros) [#​58765](https://redirect.github.com/nodejs/node/pull/58765) - \[[`914701d4f8`](https://redirect.github.com/nodejs/node/commit/914701d4f8)] - **lib,src**: support DOMException ser-des (Chengzhong Wu) [#​58649](https://redirect.github.com/nodejs/node/pull/58649) - \[[`12a75dca8b`](https://redirect.github.com/nodejs/node/commit/12a75dca8b)] - **meta**: bump step-security/harden-runner from 2.12.0 to 2.12.2 (dependabot\[bot]) [#​58923](https://redirect.github.com/nodejs/node/pull/58923) - \[[`0d56fec6f0`](https://redirect.github.com/nodejs/node/commit/0d56fec6f0)] - **meta**: bump github/codeql-action from 3.28.18 to 3.29.2 (dependabot\[bot]) [#​58922](https://redirect.github.com/nodejs/node/pull/58922) - \[[`7f4f6e0409`](https://redirect.github.com/nodejs/node/commit/7f4f6e0409)] - **meta**: add IlyasShabi to collaborators (Ilyas Shabi) [#​58916](https://redirect.github.com/nodejs/node/pull/58916) - \[[`50b62c9663`](https://redirect.github.com/nodejs/node/commit/50b62c9663)] - **meta**: add [@​nodejs/inspector](https://redirect.github.com/nodejs/inspector) as codeowner (Chengzhong Wu) [#​58790](https://redirect.github.com/nodejs/node/pull/58790) - \[[`2fc89892ab`](https://redirect.github.com/nodejs/node/commit/2fc89892ab)] - **module**: fix typescript import.meta.main (Marco Ippolito) [#​58661](https://redirect.github.com/nodejs/node/pull/58661) - \[[`bfc68c8ae8`](https://redirect.github.com/nodejs/node/commit/bfc68c8ae8)] - **module**: convert schema-only core module on `convertCJSFilenameToURL` (Alex Yang) [#​58612](https://redirect.github.com/nodejs/node/pull/58612) - \[[`54634f5e53`](https://redirect.github.com/nodejs/node/commit/54634f5e53)] - **module**: update tests for combined ambiguous module syntax error (Mert Can Altin) [#​55874](https://redirect.github.com/nodejs/node/pull/55874) - \[[`10eb3db4af`](https://redirect.github.com/nodejs/node/commit/10eb3db4af)] - **module**: allow cycles in require() in the CJS handling in ESM loader (Joyee Cheung) [#​58598](https://redirect.github.com/nodejs/node/pull/58598) - \[[`fe7994eb0c`](https://redirect.github.com/nodejs/node/commit/fe7994eb0c)] - **module**: improve typescript error message format (Marco Ippolito) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`c898491017`](https://redirect.github.com/nodejs/node/commit/c898491017)] - **(SEMVER-MINOR)** **module**: remove experimental warning from type stripping (Marco Ippolito) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`c07745a436`](https://redirect.github.com/nodejs/node/commit/c07745a436)] - **module**: refactor commonjs typescript loader (Marco Ippolito) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`8d1f5df313`](https://redirect.github.com/nodejs/node/commit/8d1f5df313)] - **(SEMVER-MINOR)** **module**: unflag --experimental-strip-types (Marco Ippolito) [#​56350](https://redirect.github.com/nodejs/node/pull/56350) - \[[`a8a1c9a960`](https://redirect.github.com/nodejs/node/commit/a8a1c9a960)] - **os**: fix GetInterfaceAddresses memory lieaky (theanarkh) [#​58940](https://redirect.github.com/nodejs/node/pull/58940) - \[[`65f19a00c3`](https://redirect.github.com/nodejs/node/commit/65f19a00c3)] - **(SEMVER-MINOR)** **permission**: propagate permission model flags on spawn (Rafael Gonzaga) [#​58853](https://redirect.github.com/nodejs/node/pull/58853) - \[[`f0a165d89f`](https://redirect.github.com/nodejs/node/commit/f0a165d89f)] - **repl**: fix eval errors thrown after close throwing `ERR_USE_AFTER_CLOSE` (Dario Piotrowicz) [#​58791](https://redirect.github.com/nodejs/node/pull/58791) - \[[`9ef1cd1607`](https://redirect.github.com/nodejs/node/commit/9ef1cd1607)] - **repl**: avoid deprecated `require.extensions` in tab completion (baki gul) [#​58653](https://redirect.github.com/nodejs/node/pull/58653) - \[[`22a4c60e08`](https://redirect.github.com/nodejs/node/commit/22a4c60e08)] - **repl**: fix tab completion not working with computer string properties (Dario Piotrowicz) [#​58709](https://redirect.github.com/nodejs/node/pull/58709) - \[[`ccca1517f9`](https://redirect.github.com/nodejs/node/commit/ccca1517f9)] - **(SEMVER-MINOR)** **sqlite**: add support for readBigInts option in db connection level (Miguel Marcondes Filho) [#​58697](https://redirect.github.com/nodejs/node/pull/58697) - \[[`690525881e`](https://redirect.github.com/nodejs/node/commit/690525881e)] - **src**: simplify adding fast APIs to ExternalReferenceRegistry (René) [#​58896](https://redirect.github.com/nodejs/node/pull/58896) - \[[`a381b4d990`](https://redirect.github.com/nodejs/node/commit/a381b4d990)] - **src**: remove fast API for InternalModuleStat (Joyee Cheung) [#​58489](https://redirect.github.com/nodejs/node/pull/58489) - \[[`390654e996`](https://redirect.github.com/nodejs/node/commit/390654e996)] - **src**: fix internalModuleStat v8 fast path (Yagiz Nizipli) [#​58054](https://redirect.github.com/nodejs/node/pull/58054) - \[[`b722647572`](https://redirect.github.com/nodejs/node/commit/b722647572)] - **src**: fix -Wunreachable-code in src/node\_api.cc (Shelley Vohr) [#​58901](https://redirect.github.com/nodejs/node/pull/58901) - \[[`6d1fe67f56`](https://redirect.github.com/nodejs/node/commit/6d1fe67f56)] - **src**: -Wunreachable-code error in crypto\_context.cc (Shelley Vohr) [#​58901](https://redirect.github.com/nodejs/node/pull/58901) - \[[`2d8e65c6db`](https://redirect.github.com/nodejs/node/commit/2d8e65c6db)] - **src**: fix -Wunreachable-code-return in src/node\_contextify.cc (Shelley Vohr) [#​58901](https://redirect.github.com/nodejs/node/pull/58901) - \[[`e07adb3b18`](https://redirect.github.com/nodejs/node/commit/e07adb3b18)] - **src**: cleanup uv\_fs\_req before uv\_fs\_stat on existSync (RafaelGSS) [#​58915](https://redirect.github.com/nodejs/node/pull/58915) - \[[`6b30c0a511`](https://redirect.github.com/nodejs/node/commit/6b30c0a511)] - **src**: -Wmismatched-new-delete in debug\_utils.cc (Shelley Vohr) [#​58844](https://redirect.github.com/nodejs/node/pull/58844) - \[[`74ef07f2e7`](https://redirect.github.com/nodejs/node/commit/74ef07f2e7)] - **src**: add FromV8Value\<T>() for integral and enum types (Aditi) [#​57931](https://redirect.github.com/nodejs/node/pull/57931) - \[[`28bf6ed87d`](https://redirect.github.com/nodejs/node/commit/28bf6ed87d)] - **src**: pass resource on permission checks for spawn (Rafael Gonzaga) [#​58758](https://redirect.github.com/nodejs/node/pull/58758) - \[[`daf65d479b`](https://redirect.github.com/nodejs/node/commit/daf65d479b)] - **src**: replace std::array with static arrays in contextify (Mert Can Altin) [#​58580](https://redirect.github.com/nodejs/node/pull/58580) - \[[`9cb671fdb1`](https://redirect.github.com/nodejs/node/commit/9cb671fdb1)] - **src**: add new CopyUtimes function to reduce code duplication (Dario Piotrowicz) [#​58625](https://redirect.github.com/nodejs/node/pull/58625) - \[[`e515eb861c`](https://redirect.github.com/nodejs/node/commit/e515eb861c)] - **src**: replace V8 Fast API todo comment with note comment (Dario Piotrowicz) [#​58614](https://redirect.github.com/nodejs/node/pull/58614) - \[[`48003e87e8`](https://redirect.github.com/nodejs/node/commit/48003e87e8)] - **(SEMVER-MINOR)** **src,permission**: add support to permission.has(addon) (Rafael Gonzaga) [#​58951](https://redirect.github.com/nodejs/node/pull/58951) - \[[`72f75bb976`](https://redirect.github.com/nodejs/node/commit/72f75bb976)] - **src,permission**: enhance permission model debug (Rafael Gonzaga) [#​58898](https://redirect.github.com/nodejs/node/pull/58898) - \[[`66fccc252b`](https://redirect.github.com/nodejs/node/commit/66fccc252b)] - **(SEMVER-MINOR)** **test**: add test for async disposable worker thread (James M Snell) [#​58385](https://redirect.github.com/nodejs/node/pull/58385) - \[[`43d2ad8599`](https://redirect.github.com/nodejs/node/commit/43d2ad8599)] - **test**: deflake test-runner-watch-mode-kill-signal (Dario Piotrowicz) [#​58952](https://redirect.github.com/nodejs/node/pull/58952) - \[[`7c54085698`](https://redirect.github.com/nodejs/node/commit/7c54085698)] - **test**: add known issue tests for recursive readdir calls with Buffer path (Dario Piotrowicz) [#​58893](https://redirect.github.com/nodejs/node/pull/58893) - \[[`cd2a5d9a51`](https://redirect.github.com/nodejs/node/commit/cd2a5d9a51)] - **test**: add known issue tests for fs.cp (James M Snell) [#​58883](https://redirect.github.com/nodejs/node/pull/58883) - \[[`26072a7953`](https://redirect.github.com/nodejs/node/commit/26072a7953)] - **test**: add tests to ensure that node.1 is kept in sync with cli.md (Dario Piotrowicz) [#​58878](https://redirect.github.com/nodejs/node/pull/58878) - \[[`3fd187f559`](https://redirect.github.com/nodejs/node/commit/3fd187f559)] - **test**: replace `.filter()[0]` with `.find()` (Livia Medeiros) [#​58872](https://redirect.github.com/nodejs/node/pull/58872) - \[[`0d538abb15`](https://redirect.github.com/nodejs/node/commit/0d538abb15)] - **test**: remove reliance on in-tree `deps/undici` (Richard Lau) [#​58866](https://redirect.github.com/nodejs/node/pull/58866) - \[[`e24dede403`](https://redirect.github.com/nodejs/node/commit/e24dede403)] - **test**: close dirs in `fs-opendir` test (Livia Medeiros) [#​58855](https://redirect.github.com/nodejs/node/pull/58855) - \[[`ac6b8222e6`](https://redirect.github.com/nodejs/node/commit/ac6b8222e6)] - **test**: correct SIMD support comment (Richard Lau) [#​58767](https://redirect.github.com/nodejs/node/pull/58767) - \[[`9d3e451181`](https://redirect.github.com/nodejs/node/commit/9d3e451181)] - **test**: add tests for REPL custom evals (Dario Piotrowicz) [#​57850](https://redirect.github.com/nodejs/node/pull/57850) - \[[`17a3246718`](https://redirect.github.com/nodejs/node/commit/17a3246718)] - **test**: reduce the use of private symbols in test-events-once.js (Yoshiya Hinosawa) [#​58685](https://redirect.github.com/nodejs/node/pull/58685) - \[[`bbf33efcd0`](https://redirect.github.com/nodejs/node/commit/bbf33efcd0)] - **test**: use `common.skipIfInspectorDisabled()` to skip tests (Dario Piotrowicz) [#​58675](https://redirect.github.com/nodejs/node/pull/58675) - \[[`d6660baff7`](https://redirect.github.com/nodejs/node/commit/d6660baff7)] - **test**: update WPT for dom/abort to [`dc92816`](https://redirect.github.com/nodejs/node/commit/dc928169ee) (Node.js GitHub Bot) [#​58644](https://redirect.github.com/nodejs/node/pull/58644) - \[[`6d9d5deb44`](https://redirect.github.com/nodejs/node/commit/6d9d5deb44)] - **test**: split indirect eval import tests (Chengzhong Wu) [#​58637](https://redirect.github.com/nodejs/node/pull/58637) - \[[`abd5b5fd20`](https://redirect.github.com/nodejs/node/commit/abd5b5fd20)] - **test**: deflake async-hooks/test-improper-order on AIX (Baki Gul) [#​58567](https://redirect.github.com/nodejs/node/pull/58567) - \[[`3fc630e7cf`](https://redirect.github.com/nodejs/node/commit/3fc630e7cf)] - **test**: close FileHandle objects in tests explicitly (James M Snell) [#​58615](https://redirect.github.com/nodejs/node/pull/58615) - \[[`7f0560dc4b`](https://redirect.github.com/nodejs/node/commit/7f0560dc4b)] - **test**: skip broken sea on rhel8 (Marco Ippolito) [#​58914](https://redirect.github.com/nodejs/node/pull/58914) - \[[`898e68a915`](https://redirect.github.com/nodejs/node/commit/898e68a915)] - **test**: save the config file in a temporary directory (Luigi Pinca) [#​58799](https://redirect.github.com/nodejs/node/pull/58799) - \[[`9f2132a4f6`](https://redirect.github.com/nodejs/node/commit/9f2132a4f6)] - **test**: deflake test-config-file (Luigi Pinca) [#​58799](https://redirect.github.com/nodejs/node/pull/58799) - \[[`f1b74cff9a`](https://redirect.github.com/nodejs/node/commit/f1b74cff9a)] - **test**: skip tests failing when run under root (Livia Medeiros) [#​58610](https://redirect.github.com/nodejs/node/pull/58610) - \[[`4b0ee14a97`](https://redirect.github.com/nodejs/node/commit/4b0ee14a97)] - **tools**: bump the eslint group in /tools/eslint with 6 updates (dependabot\[bot]) [#​58921](https://redirect.github.com/nodejs/node/pull/58921) - \[[`a84935fb0e`](https://redirect.github.com/nodejs/node/commit/a84935fb0e)] - **tools**: update inspector\_protocol to [`69d69dd`](https://redirect.github.com/nodejs/node/commit/69d69dd) (Shelley Vohr) [#​58900](https://redirect.github.com/nodejs/node/pull/58900) - \[[`af805186cd`](https://redirect.github.com/nodejs/node/commit/af805186cd)] - **tools**: update gyp-next to 0.20.2 (Node.js GitHub Bot) [#​58788](https://redirect.github.com/nodejs/node/pull/58788) - \[[`a2d2d36bb1`](https://redirect.github.com/nodejs/node/commit/a2d2d36bb1)] - **tools**: make nodedownload module compatible with Python 3.14 (Lumír 'Frenzy' Balhar) [#​58752](https://redirect.github.com/nodejs/node/pull/58752) - \[[`cc8b9aa43d`](https://redirect.github.com/nodejs/node/commit/cc8b9aa43d)] - **tools**: include toolchain.gypi in abseil.gyp (Chengzhong Wu) [#​58678](https://redirect.github.com/nodejs/node/pull/58678) - \[[`fbbf49a7d3`](https://redirect.github.com/nodejs/node/commit/fbbf49a7d3)] - **tools**: bump `brace-expansion` in `/tools/clang-format` (dependabot\[bot]) [#​58699](https://redirect.github.com/nodejs/node/pull/58699) - \[[`8db92a41c5`](https://redirect.github.com/nodejs/node/commit/8db92a41c5)] - **tools**: bump brace-expansion from 1.1.11 to 1.1.12 in /tools/eslint (dependabot\[bot]) [#​58698](https://redirect.github.com/nodejs/node/pull/58698) - \[[`3a099cf88f`](https://redirect.github.com/nodejs/node/commit/3a099cf88f)] - **tools**: switch to `@stylistic/eslint-plugin` (Michaël Zasso) [#​58623](https://redirect.github.com/nodejs/node/pull/58623) - \[[`9798511e7c`](https://redirect.github.com/nodejs/node/commit/9798511e7c)] - **tools**: remove config.status under `make distclean` (René) [#​58603](https://redirect.github.com/nodejs/node/pull/58603) - \[[`011290a4eb`](https://redirect.github.com/nodejs/node/commit/011290a4eb)] - **tools**: edit commit-queue workflow file (Antoine du Hamel) [#​58667](https://redirect.github.com/nodejs/node/pull/58667) - \[[`a7406f56da`](https://redirect.github.com/nodejs/node/commit/a7406f56da)] - **tools**: improve release proposal linter (Antoine du Hamel) [#​58647](https://redirect.github.com/nodejs/node/pull/58647) - \[[`c855310f83`](https://redirect.github.com/nodejs/node/commit/c855310f83)] - **tools,doc**: move more MDN links to types (Antoine du Hamel) [#​58930](https://redirect.github.com/nodejs/node/pull/58930) - \[[`805239c824`](https://redirect.github.com/nodejs/node/commit/805239c824)] - **typings**: add Atomics primordials (Renegade334) [#​58577](https://redirect.github.com/nodejs/node/pull/58577) - \[[`d28b2aa0a2`](https://redirect.github.com/nodejs/node/commit/d28b2aa0a2)] - **typings**: add ZSTD\_COMPRESS, ZSTD\_DECOMPRESS to internalBinding (Meghan Denny) [#​58655](https://redirect.github.com/nodejs/node/pull/58655) - \[[`fe4290a0e6`](https://redirect.github.com/nodejs/node/commit/fe4290a0e6)] - **(SEMVER-MINOR)** **url**: add fileURLToPathBuffer API (James M Snell) [#​58700](https://redirect.github.com/nodejs/node/pull/58700) - \[[`db648b92c1`](https://redirect.github.com/nodejs/node/commit/db648b92c1)] - **util**: inspect: do not crash on an Error stack pointing to itself (Sam Verschueren) [#​58196](https://redirect.github.com/nodejs/node/pull/58196) - \[[`791ecfac14`](https://redirect.github.com/nodejs/node/commit/791ecfac14)] - **v8**: fix missing callback in heap utils destroy (Ruben Bridgewater) [#​58846](https://redirect.github.com/nodejs/node/pull/58846) - \[[`4dc6b4c67a`](https://redirect.github.com/nodejs/node/commit/4dc6b4c67a)] - **(SEMVER-MINOR)** **watch**: add `--watch-kill-signal` flag (Dario Piotrowicz) [#​58719](https://redirect.github.com/nodejs/node/pull/58719) - \[[`8dbc6b210f`](https://redirect.github.com/nodejs/node/commit/8dbc6b210f)] - **(SEMVER-MINOR)** **worker**: make Worker async disposable (James M Snell) [#​58385](https://redirect.github.com/nodejs/node/pull/58385) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
642f4d11fc |
fix(website): update astro 5.12.6 → 5.12.7 (#38011)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.12.6` -> `5.12.7`](https://renovatebot.com/diffs/npm/astro/5.12.6/5.12.7) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.12.7`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5127) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.6...astro@5.12.7) ##### Patch Changes - [#​14169](https://redirect.github.com/withastro/astro/pull/14169) [`f4e8889`](https://redirect.github.com/withastro/astro/commit/f4e8889c10c25aeb7650b389c35a70780d5ed172) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Skips trailing slash handling for paths that start with `/.`. - [#​14170](https://redirect.github.com/withastro/astro/pull/14170) [`34e6b3a`](https://redirect.github.com/withastro/astro/commit/34e6b3a87dd3e9be4886059d1c0efee4c5fa3cda) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Fixes an issue where static redirects couldn't correctly generate a redirect when the destination is a prerendered route, and the `output` is set to `"server"`. - [#​14169](https://redirect.github.com/withastro/astro/pull/14169) [`f4e8889`](https://redirect.github.com/withastro/astro/commit/f4e8889c10c25aeb7650b389c35a70780d5ed172) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that prevented images from being displayed in dev when using the Netlify adapter with `trailingSlash` set to `always` - Updated dependencies \[[`f4e8889`](https://redirect.github.com/withastro/astro/commit/f4e8889c10c25aeb7650b389c35a70780d5ed172)]: - [@​astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)@​0.7.0 - [@​astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)@​6.3.4 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
c46721982e |
fix(website): update typescript 5.8.3 → 5.9.2 (#38014)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [typescript](https://www.typescriptlang.org/) ([source](https://redirect.github.com/microsoft/TypeScript)) | [`5.8.3` -> `5.9.2`](https://renovatebot.com/diffs/npm/typescript/5.8.3/5.9.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>microsoft/TypeScript (typescript)</summary> ### [`v5.9.2`](https://redirect.github.com/microsoft/TypeScript/releases/tag/v5.9.2): TypeScript 5.9 [Compare Source](https://redirect.github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2) <!--- For release notes, check out the [release announcement](). For new features, check out the [What's new in TypeScript v5.9.2](). For the complete list of fixed issues, check out the * [fixed issues query for TypeScript v5.9.2](https://redirect.github.com/microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.3%22+is%3Aclosed+). Downloads are available on: * [npm](https://www.npmjs.com/package/typescript) --> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
4c77887f14 |
fix(website): update astro 5.12.5 → 5.12.6 (#37992)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.12.5` -> `5.12.6`](https://renovatebot.com/diffs/npm/astro/5.12.5/5.12.6) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.12.6`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5126) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.5...astro@5.12.6) ##### Patch Changes - [#​14153](https://redirect.github.com/withastro/astro/pull/14153) [`29e9283`](https://redirect.github.com/withastro/astro/commit/29e928391a90844f8b701a581c4f163e0b6c46db) Thanks [@​jp-knj](https://redirect.github.com/jp-knj)! - Fixes a regression introduced by a recent optimisation of how SVG images are emitted during the build. - [#​14156](https://redirect.github.com/withastro/astro/pull/14156) [`592f08d`](https://redirect.github.com/withastro/astro/commit/592f08d1b4a3e03c61b34344e36cb772bd67709a) Thanks [@​TheOtterlord](https://redirect.github.com/TheOtterlord)! - Fix the client router not submitting forms if the active URL contained a hash - [#​14160](https://redirect.github.com/withastro/astro/pull/14160) [`d2e25c6`](https://redirect.github.com/withastro/astro/commit/d2e25c6e9d52160d4f8d8cbf7bc44e6794483f20) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that meant some remote image URLs could cause invalid filenames to be used for processed images - [#​14167](https://redirect.github.com/withastro/astro/pull/14167) [`62bd071`](https://redirect.github.com/withastro/astro/commit/62bd0717ab810c049ed7f3f63029895dfb402797) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that prevented destroyed sessions from being deleted from storage unless the session had been loaded </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
477ea3b198 |
fix(website): update astro 5.12.4 → 5.12.5 (#37914)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.12.4` -> `5.12.5`](https://renovatebot.com/diffs/npm/astro/5.12.4/5.12.5) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.12.5`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5125) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.4...astro@5.12.5) ##### Patch Changes - [#​14059](https://redirect.github.com/withastro/astro/pull/14059) [`19f53eb`](https://redirect.github.com/withastro/astro/commit/19f53eb59dfeeff08078cec0a903c8722b5650ca) Thanks [@​benosmac](https://redirect.github.com/benosmac)! - Fixes a bug in i18n implementation, where Astro didn't emit the correct pages when `fallback` is enabled, and a locale uses a catch-all route, e.g. `src/pages/es/[...catchAll].astro` - [#​14155](https://redirect.github.com/withastro/astro/pull/14155) [`31822c3`](https://redirect.github.com/withastro/astro/commit/31822c3f0c8401e20129d0fc6bf8d1d670249265) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that caused an error "serverEntrypointModule\[\_start] is not a function" in some adapters </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
d27ec23543 |
fix(website): update astro 5.11.2 → 5.12.4 (#37880)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.11.2` -> `5.12.4`](https://renovatebot.com/diffs/npm/astro/5.11.2/5.12.4) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.12.4`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5124) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.3...astro@5.12.4) ##### Patch Changes - [#​14031](https://redirect.github.com/withastro/astro/pull/14031) [`e9206c1`](https://redirect.github.com/withastro/astro/commit/e9206c192fc4a4dbf2d02f921fa540f987ccbe89) Thanks [@​jp-knj](https://redirect.github.com/jp-knj)! - Optimized the build pipeline for SVG images. Now, Astro doesn't reprocess images that have already been processed. - [#​14132](https://redirect.github.com/withastro/astro/pull/14132) [`976879a`](https://redirect.github.com/withastro/astro/commit/976879a400af9f44aee52c9112a7bd9788163588) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Fixes a bug where the property `Astro.routePattern`/`context.routePattern` wasn't updated when using a rewrite via middleware. - [#​14131](https://redirect.github.com/withastro/astro/pull/14131) [`aafc4d7`](https://redirect.github.com/withastro/astro/commit/aafc4d7f8b3f198ace24a8a7f6cc9298771542da) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Fixes a case where an error occurring in a middleware would show the dev overlay instead of the custom `500.astro` page - [#​14127](https://redirect.github.com/withastro/astro/pull/14127) [`2309ada`](https://redirect.github.com/withastro/astro/commit/2309ada1c6d96c75815eda0760656147de435ba2) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Upgrades zod - [#​14134](https://redirect.github.com/withastro/astro/pull/14134) [`186c201`](https://redirect.github.com/withastro/astro/commit/186c201a1bd83593c880ab784d79f69245b445c2) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Throws a more helpful error in dev if trying to use a server island without an adapter - [#​14129](https://redirect.github.com/withastro/astro/pull/14129) [`3572d85`](https://redirect.github.com/withastro/astro/commit/3572d85ba89ef9c374f3631654eee704adf00e73) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Fixes a bug where the CSP headers was incorrectly added to a page when using an adapter. ### [`v5.12.3`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5123) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.2...astro@5.12.3) ##### Patch Changes - [#​14119](https://redirect.github.com/withastro/astro/pull/14119) [`14807a4`](https://redirect.github.com/withastro/astro/commit/14807a4581b5ba2e61bc63ef9ef9f14848564edd) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that caused builds to fail if a client directive was mistakenly added to an Astro component - [#​14001](https://redirect.github.com/withastro/astro/pull/14001) [`4b03d9c`](https://redirect.github.com/withastro/astro/commit/4b03d9c9d9237d9af38425062559eafdfc27f76f) Thanks [@​dnek](https://redirect.github.com/dnek)! - Fixes an issue where `getImage()` assigned the resized base URL to the srcset URL of `ImageTransform`, which matched the width, height, and format of the original image. ### [`v5.12.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5122) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.1...astro@5.12.2) ##### Patch Changes - [#​14071](https://redirect.github.com/withastro/astro/pull/14071) [`d2cb35d`](https://redirect.github.com/withastro/astro/commit/d2cb35d2b7ff999fea8aa39c79f9f048c3500aeb) Thanks [@​Grisoly](https://redirect.github.com/Grisoly)! - Exposes the `Code` component `lang` prop type: ```ts import type { CodeLanguage } from 'astro'; ``` - [#​14111](https://redirect.github.com/withastro/astro/pull/14111) [`5452ee6`](https://redirect.github.com/withastro/astro/commit/5452ee67f95f51dcfdca8c1988b29f89553efe1c) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that prevented "key" from being used as a prop for Astro components in MDX - [#​14106](https://redirect.github.com/withastro/astro/pull/14106) [`b5b39e4`](https://redirect.github.com/withastro/astro/commit/b5b39e4d4bf5e5816bccf7fbfd9a48e4d8ee302a) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Exits with non-zero exit code when config has an error - [#​14112](https://redirect.github.com/withastro/astro/pull/14112) [`37458b3`](https://redirect.github.com/withastro/astro/commit/37458b31aeee23df0b5a8ab9e319a23ee4eddc6d) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that meant that SVG components could no longer be serialized with `JSON.stringify` - [#​14061](https://redirect.github.com/withastro/astro/pull/14061) [`c7a7dd5`](https://redirect.github.com/withastro/astro/commit/c7a7dd5f612b302f02a0ff468beeadd8e142a5ad) Thanks [@​jonasgeiler](https://redirect.github.com/jonasgeiler)! - Add module declaration for `?no-inline` asset imports - [#​14109](https://redirect.github.com/withastro/astro/pull/14109) [`5a08fa2`](https://redirect.github.com/withastro/astro/commit/5a08fa22b4023810fea45876f62152bd196e6062) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Throw a more helpful error if defineLiveCollection is used outside of a live.config file - [#​14110](https://redirect.github.com/withastro/astro/pull/14110) [`e7dd4e1`](https://redirect.github.com/withastro/astro/commit/e7dd4e1116103892ddc6a83052c8f1ba25d8abdc) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Warn if duplicate IDs are found by file loader ### [`v5.12.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5121) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.12.0...astro@5.12.1) ##### Patch Changes - [#​14094](https://redirect.github.com/withastro/astro/pull/14094) [`22e9087`](https://redirect.github.com/withastro/astro/commit/22e90873f85d7b5b5d556f456362656f04b32341) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Correct types to allow `priority` on all images - [#​14091](https://redirect.github.com/withastro/astro/pull/14091) [`26c6b6d`](https://redirect.github.com/withastro/astro/commit/26c6b6db264f9cbd98ddf97c3f7a34ec7f488095) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that caused a type error when defining session options without a driver - [#​14082](https://redirect.github.com/withastro/astro/pull/14082) [`93322cb`](https://redirect.github.com/withastro/astro/commit/93322cbe36c40401256eea2a9e34f5fbe13a28ec) Thanks [@​louisescher](https://redirect.github.com/louisescher)! - Fixes an issue where Astro's default 404 route would incorrectly match routes containing "/404" in dev - [#​14089](https://redirect.github.com/withastro/astro/pull/14089) [`687d253`](https://redirect.github.com/withastro/astro/commit/687d25365a41ff8a9e6da155d3527f841abb70dd) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Fixes a case where `astro:env` would not load the right environments variables in dev - [#​14092](https://redirect.github.com/withastro/astro/pull/14092) [`6692c71`](https://redirect.github.com/withastro/astro/commit/6692c71ed609690ebf6a697d88582130a5cbfdfb) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Improves error handling in live collections - [#​14074](https://redirect.github.com/withastro/astro/pull/14074) [`144a950`](https://redirect.github.com/withastro/astro/commit/144a950b55f22c2beeff710e5672e9fa611520b3) Thanks [@​abcfy2](https://redirect.github.com/abcfy2)! - Fixes a bug that caused some image service builds to fail - [#​14092](https://redirect.github.com/withastro/astro/pull/14092) [`6692c71`](https://redirect.github.com/withastro/astro/commit/6692c71ed609690ebf6a697d88582130a5cbfdfb) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a case where zod could not be imported from `astro:content` virtual module in live collection config ### [`v5.12.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5120) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.11.2...astro@5.12.0) ##### Minor Changes - [#​13971](https://redirect.github.com/withastro/astro/pull/13971) [`fe35ee2`](https://redirect.github.com/withastro/astro/commit/fe35ee2835997e7e6c3e1975dc6dacfa1052a765) Thanks [@​adamhl8](https://redirect.github.com/adamhl8)! - Adds an experimental flag `rawEnvValues` to disable coercion of `import.meta.env` values (e.g. converting strings to other data types) that are populated from `process.env` Astro allows you to configure a [type-safe schema for your environment variables](https://docs.astro.build/en/guides/environment-variables/#type-safe-environment-variables), and converts variables imported via `astro:env` into the expected type. However, Astro also converts your environment variables used through `import.meta.env` in some cases, and this can prevent access to some values such as the strings `"true"` (which is converted to a boolean value), and `"1"` (which is converted to a number). The `experimental.rawEnvValues` flag disables coercion of `import.meta.env` values that are populated from `process.env`, allowing you to use the raw value. To enable this feature, add the experimental flag in your Astro config: ```diff import { defineConfig } from "astro/config" export default defineConfig({ + experimental: { + rawEnvValues: true, + } }) ``` If you were relying on this coercion, you may need to update your project code to apply it manually: ```ts diff - const enabled: boolean = import.meta.env.ENABLED + const enabled: boolean = import.meta.env.ENABLED === "true" ``` See the [experimental raw environment variables reference docs](https://docs.astro.build/en/reference/experimental-flags/raw-env-values/) for more information. - [#​13941](https://redirect.github.com/withastro/astro/pull/13941) [`6bd5f75`](https://redirect.github.com/withastro/astro/commit/6bd5f75806cb4df39d9e4e9b1f2225dcfdd724b0) Thanks [@​aditsachde](https://redirect.github.com/aditsachde)! - Adds support for TOML files to Astro's built-in `glob()` and `file()` content loaders. In Astro 5.2, Astro added support for using TOML frontmatter in Markdown files instead of YAML. However, if you wanted to use TOML files as local content collection entries themselves, you needed to write your own loader. Astro 5.12 now directly supports loading data from TOML files in content collections in both the `glob()` and the `file()` loaders. If you had added your own TOML content parser for the `file()` loader, you can now remove it as this functionality is now included: ```diff // src/content.config.ts import { defineCollection } from "astro:content"; import { file } from "astro/loaders"; - import { parse as parseToml } from "toml"; const dogs = defineCollection({ - loader: file("src/data/dogs.toml", { parser: (text) => parseToml(text) }), + loader: file("src/data/dogs.toml") schema: /* ... */ }) ``` Note that TOML does not support top-level arrays. Instead, the `file()` loader considers each top-level table to be an independent entry. The table header is populated in the `id` field of the entry object. See Astro's [content collections guide](https://docs.astro.build/en/guides/content-collections/#built-in-loaders) for more information on using the built-in content loaders. ##### Patch Changes - Updated dependencies \[[`6bd5f75`](https://redirect.github.com/withastro/astro/commit/6bd5f75806cb4df39d9e4e9b1f2225dcfdd724b0)]: - [@​astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)@​6.3.3 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
6d01298c21 |
fix(website): update @astrojs/sitemap 3.4.1 → 3.4.2 (#37875)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap)) | [`3.4.1` -> `3.4.2`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.4.1/3.4.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (@​astrojs/sitemap)</summary> ### [`v3.4.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#342) [Compare Source](https://redirect.github.com/withastro/astro/compare/@astrojs/sitemap@3.4.1...@astrojs/sitemap@3.4.2) ##### Patch Changes - [#​14127](https://redirect.github.com/withastro/astro/pull/14127) [`2309ada`](https://redirect.github.com/withastro/astro/commit/2309ada1c6d96c75815eda0760656147de435ba2) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Upgrades zod </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
8c9ea41081 |
chore(website): lock file maintenance (#37694)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiXX0=--> |
||
|
|
0a4d2a2580 |
fix(website): update astro 5.11.1 → 5.11.2 (#37660)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.11.1` -> `5.11.2`](https://renovatebot.com/diffs/npm/astro/5.11.1/5.11.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.11.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5112) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.11.1...astro@5.11.2) ##### Patch Changes - [#​14064](https://redirect.github.com/withastro/astro/pull/14064) [`2eb77d8`](https://redirect.github.com/withastro/astro/commit/2eb77d8f54be3faea38370693d33fb220231ea84) Thanks [@​jp-knj](https://redirect.github.com/jp-knj)! - Allows using `tsconfig` `compilerOptions.paths` without setting `compilerOptions.baseUrl` - [#​14068](https://redirect.github.com/withastro/astro/pull/14068) [`10189c0`](https://redirect.github.com/withastro/astro/commit/10189c0b44881fd22bac69acc182834d597d9603) Thanks [@​jsparkdev](https://redirect.github.com/jsparkdev)! - Fixes the incorrect CSS import path shown in the terminal message during Tailwind integration setup. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
c1dcd9b5f3 |
chore(deps): update node.js v22.17.0 → v22.17.1 (#37626)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [node](https://nodejs.org) ([source](https://redirect.github.com/nodejs/node)) | patch | `22.17.0` -> `22.17.1` | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v22.17.1`](https://redirect.github.com/nodejs/node/releases/tag/v22.17.1): 2025-07-15, Version 22.17.1 'Jod' (LTS), @​RafaelGSS [Compare Source](https://redirect.github.com/nodejs/node/compare/v22.17.0...v22.17.1) This is a security release. ##### Notable Changes - (CVE-2025-27210) Windows Device Names (CON, PRN, AUX) Bypass Path Traversal Protection in path.normalize() ##### Commits - \[[`8cf5d66ab7`](https://redirect.github.com/nodejs/node/commit/8cf5d66ab7)] - **(CVE-2025-27210)** **lib**: handle all windows reserved driver name (RafaelGSS) [nodejs-private/node-private#721](https://redirect.github.com/nodejs-private/node-private/pull/721) - \[[`9c0cb487ec`](https://redirect.github.com/nodejs/node/commit/9c0cb487ec)] - **win,build**: fix MSVS v17.14 compilation issue (StefanStojanovic) [#​58902](https://redirect.github.com/nodejs/node/pull/58902) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
12cfc466fa |
fix(website): social-link github and more links (#37748)
**Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> Social link of git is outdated in top right. Constantly on a wrong page. Fix also some other pages. **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ |
||
|
|
03b3376635 | fix(website): update astro 5.11.0 → 5.11.1 (#37527) | ||
|
|
6ad9cfef30 |
fix(clustertool): nginx proxy-busy-buffers-size (#37389)
**Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> As according latest ngnix release nginx proxy-busy-buffers-size included. ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ |
||
|
|
d1ce6a8aeb | fix(website): update astro-better-image-service 2.1.7 → 2.1.8 (#37350) | ||
|
|
011dc670c4 | fix(website): update sharp 0.34.2 → 0.34.3 (#37351) | ||
|
|
529dead206 |
Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org> |