build(deps): bump astro from 5.5.5 to 6.4.6 in /test/js/third_party/astro #44

Open
dependabot[bot] wants to merge 1 commit from dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6 into local/mlkem-default
dependabot[bot] commented 2026-06-19 20:14:43 -04:00 (Migrated from github.com)

Bumps astro from 5.5.5 to 6.4.6.

Release notes

Sourced from astro's releases.

astro@6.4.6

Patch Changes

  • #16765 b10e86e Thanks @​fkatsuhiro! - Fixes an issue where renaming an image file while the dev server is running triggers a build error. Now Astro correctly hot-reloads the image without crashing.

  • #17026 add3df1 Thanks @​matthewp! - Hardens addAttribute to drop attribute names containing characters that are invalid per the HTML spec (", ', >, /, =, whitespace)

  • #17033 ffda27b Thanks @​matthewp! - Validates the request origin against allowedDomains before fetching prerendered error pages. When allowedDomains is configured and the Host header matches, the original origin is used. Otherwise, the fetch falls back to localhost.

astro@6.4.5

Patch Changes

  • #16985 4ecff32 Thanks @​maximslo! - Fixes the experimental.logger destination not being used for the "Server listening on..." startup message. The logger is now resolved before the server starts listening, and adapterLogger re-creates itself when the underlying logger changes so the startup message uses the correct destination.

  • #16947 e0703a6 Thanks @​ematipico! - Fixes Astro.request.url not reflecting validated X-Forwarded-Proto/X-Forwarded-Host headers when security.allowedDomains is configured. Previously, only Astro.url was updated with the forwarded origin while Astro.request.url retained the socket-derived URL, causing the two to diverge behind TLS-terminating proxies.

  • #16997 dc45246 Thanks @​matthewp! - Reverts a change to isNode runtime detection that caused a significant build time regression for Cloudflare adapter users with large prerendered sites

astro@6.4.4

Patch Changes

  • #16926 1b39ae8 Thanks @​narendraio! - Prevents App.match() from throwing on request paths that contain an invalid percent-sequence.

  • #16924 2c0bc94 Thanks @​astrobot-houston! - Fixes an issue where editing a client-side component (e.g. with client:idle, client:load, etc.) caused an unnecessary full program reload of the backend during development.

  • #16958 2c1d50f Thanks @​fkatsuhiro! - Fixes a bug where static file endpoints using getStaticPaths with .html in dynamic param values (e.g. { path: 'file.html' }) would fail with a NoMatchingStaticPathFound error during build. The .html suffix is no longer incorrectly stripped from endpoint route pathnames.

  • #16855 c610cda Thanks @​astrobot-houston! - Fixes dynamic routes returning 500 "TypeError: Missing parameter" when using domain-based i18n routing in SSR.

  • #16946 606c37b Thanks @​ematipico! - Fixes Astro.routePattern to preserve original casing of dynamic parameter names from filenames. Previously, a file at src/pages/blog/[postId].astro would return /blog/[postid] for Astro.routePattern due to an internal .toLowerCase() call. It now correctly returns /blog/[postId].

  • #16720 16d49b6 Thanks @​thomas-callahan-collibra! - Fix an issue where dynamic routes would return the string [object Object] instead of the expected content, in certain runtimes.

  • #16703 17390a6 Thanks @​henrybrewer00-dotcom! - Fixes styles being stripped when the project root is started with a path whose case differs from the actual filesystem case (e.g. running astro dev from d:\dev\app while the folder on disk is D:\dev\app).

  • #16855 c610cda Thanks @​astrobot-houston! - Fixes Astro.currentLocale returning the default locale instead of the domain's locale on dynamic routes served from a mapped domain.

astro@6.4.3

Patch Changes

  • #16900 17a0fbd Thanks @​ocavue! - Bumps devalue dependency to v5.8.1

  • #16016 0d85e1b Thanks @​felmonon! - Fix a false positive in the dev toolbar accessibility audit for anchors with text inside closed <details> elements.

  • #16911 79c6c46 Thanks @​astrobot-houston! - Fixes a bug where experimental.advancedRouting with astro/hono handlers threw TypeError: Cannot read properties of undefined (reading 'route') for unmatched routes instead of rendering the custom 404 page.

  • #16899 239c469 Thanks @​matthewp! - Fixes a false "does not call the middleware() handler" warning when using astro() in a custom src/app.ts and the first request is a redirect route.

  • #16887 493acdb Thanks @​astrobot-houston! - Fixes redirectToDefaultLocale not working after the Advanced Routing refactoring.

... (truncated)

Changelog

Sourced from astro's changelog.

6.4.6

Patch Changes

  • #16765 b10e86e Thanks @​fkatsuhiro! - Fixes an issue where renaming an image file while the dev server is running triggers a build error. Now Astro correctly hot-reloads the image without crashing.

  • #17026 add3df1 Thanks @​matthewp! - Hardens addAttribute to drop attribute names containing characters that are invalid per the HTML spec (", ', >, /, =, whitespace)

  • #17033 ffda27b Thanks @​matthewp! - Validates the request origin against allowedDomains before fetching prerendered error pages. When allowedDomains is configured and the Host header matches, the original origin is used. Otherwise, the fetch falls back to localhost.

6.4.5

Patch Changes

  • #16985 4ecff32 Thanks @​maximslo! - Fixes the experimental.logger destination not being used for the "Server listening on..." startup message. The logger is now resolved before the server starts listening, and adapterLogger re-creates itself when the underlying logger changes so the startup message uses the correct destination.

  • #16947 e0703a6 Thanks @​ematipico! - Fixes Astro.request.url not reflecting validated X-Forwarded-Proto/X-Forwarded-Host headers when security.allowedDomains is configured. Previously, only Astro.url was updated with the forwarded origin while Astro.request.url retained the socket-derived URL, causing the two to diverge behind TLS-terminating proxies.

  • #16997 dc45246 Thanks @​matthewp! - Reverts a change to isNode runtime detection that caused a significant build time regression for Cloudflare adapter users with large prerendered sites

6.4.4

Patch Changes

  • #16926 1b39ae8 Thanks @​narendraio! - Prevents App.match() from throwing on request paths that contain an invalid percent-sequence.

  • #16924 2c0bc94 Thanks @​astrobot-houston! - Fixes an issue where editing a client-side component (e.g. with client:idle, client:load, etc.) caused an unnecessary full program reload of the backend during development.

  • #16958 2c1d50f Thanks @​fkatsuhiro! - Fixes a bug where static file endpoints using getStaticPaths with .html in dynamic param values (e.g. { path: 'file.html' }) would fail with a NoMatchingStaticPathFound error during build. The .html suffix is no longer incorrectly stripped from endpoint route pathnames.

  • #16855 c610cda Thanks @​astrobot-houston! - Fixes dynamic routes returning 500 "TypeError: Missing parameter" when using domain-based i18n routing in SSR.

  • #16946 606c37b Thanks @​ematipico! - Fixes Astro.routePattern to preserve original casing of dynamic parameter names from filenames. Previously, a file at src/pages/blog/[postId].astro would return /blog/[postid] for Astro.routePattern due to an internal .toLowerCase() call. It now correctly returns /blog/[postId].

  • #16720 16d49b6 Thanks @​thomas-callahan-collibra! - Fix an issue where dynamic routes would return the string [object Object] instead of the expected content, in certain runtimes.

  • #16703 17390a6 Thanks @​henrybrewer00-dotcom! - Fixes styles being stripped when the project root is started with a path whose case differs from the actual filesystem case (e.g. running astro dev from d:\dev\app while the folder on disk is D:\dev\app).

  • #16855 c610cda Thanks @​astrobot-houston! - Fixes Astro.currentLocale returning the default locale instead of the domain's locale on dynamic routes served from a mapped domain.

6.4.3

Patch Changes

  • #16900 17a0fbd Thanks @​ocavue! - Bumps devalue dependency to v5.8.1

  • #16016 0d85e1b Thanks @​felmonon! - Fix a false positive in the dev toolbar accessibility audit for anchors with text inside closed <details> elements.

  • #16911 79c6c46 Thanks @​astrobot-houston! - Fixes a bug where experimental.advancedRouting with astro/hono handlers threw TypeError: Cannot read properties of undefined (reading 'route') for unmatched routes instead of rendering the custom 404 page.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for astro since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.
Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.5.5 to 6.4.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/releases">astro's releases</a>.</em></p> <blockquote> <h2>astro@6.4.6</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16765">#16765</a> <a href="https://github.com/withastro/astro/commit/b10e86e6dbaf04678127c86366befc0b78a164f6"><code>b10e86e</code></a> Thanks <a href="https://github.com/fkatsuhiro"><code>@​fkatsuhiro</code></a>! - Fixes an issue where renaming an image file while the dev server is running triggers a build error. Now Astro correctly hot-reloads the image without crashing.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17026">#17026</a> <a href="https://github.com/withastro/astro/commit/add3df10fdaff469ae0228f09d99290de170029a"><code>add3df1</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Hardens <code>addAttribute</code> to drop attribute names containing characters that are invalid per the HTML spec (<code>&quot;</code>, <code>'</code>, <code>&gt;</code>, <code>/</code>, <code>=</code>, whitespace)</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17033">#17033</a> <a href="https://github.com/withastro/astro/commit/ffda27b7c8697d4b7ed530e93385a420e1fc4acd"><code>ffda27b</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Validates the request origin against <code>allowedDomains</code> before fetching prerendered error pages. When <code>allowedDomains</code> is configured and the Host header matches, the original origin is used. Otherwise, the fetch falls back to <code>localhost</code>.</p> </li> </ul> <h2>astro@6.4.5</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16985">#16985</a> <a href="https://github.com/withastro/astro/commit/4ecff3268acb6ee3db719c4b38bbaead703ff4de"><code>4ecff32</code></a> Thanks <a href="https://github.com/maximslo"><code>@​maximslo</code></a>! - Fixes the <code>experimental.logger</code> destination not being used for the &quot;Server listening on...&quot; startup message. The logger is now resolved before the server starts listening, and <code>adapterLogger</code> re-creates itself when the underlying logger changes so the startup message uses the correct destination.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16947">#16947</a> <a href="https://github.com/withastro/astro/commit/e0703a6e815be829759ab7912f7024ee8424c3ac"><code>e0703a6</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes <code>Astro.request.url</code> not reflecting validated <code>X-Forwarded-Proto</code>/<code>X-Forwarded-Host</code> headers when <code>security.allowedDomains</code> is configured. Previously, only <code>Astro.url</code> was updated with the forwarded origin while <code>Astro.request.url</code> retained the socket-derived URL, causing the two to diverge behind TLS-terminating proxies.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16997">#16997</a> <a href="https://github.com/withastro/astro/commit/dc45246812afcaab60393e5236d27e95f98f5efa"><code>dc45246</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Reverts a change to <code>isNode</code> runtime detection that caused a significant build time regression for Cloudflare adapter users with large prerendered sites</p> </li> </ul> <h2>astro@6.4.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16926">#16926</a> <a href="https://github.com/withastro/astro/commit/1b39ae8485406937501d8a734afe2a464d671064"><code>1b39ae8</code></a> Thanks <a href="https://github.com/narendraio"><code>@​narendraio</code></a>! - Prevents <code>App.match()</code> from throwing on request paths that contain an invalid percent-sequence.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16924">#16924</a> <a href="https://github.com/withastro/astro/commit/2c0bc943d96d602b429ce3ecbb379d01a46903b5"><code>2c0bc94</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes an issue where editing a client-side component (e.g. with <code>client:idle</code>, <code>client:load</code>, etc.) caused an unnecessary full program reload of the backend during development.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16958">#16958</a> <a href="https://github.com/withastro/astro/commit/2c1d50f5f9d557d7cdc17fd75f3a10fd203699c9"><code>2c1d50f</code></a> Thanks <a href="https://github.com/fkatsuhiro"><code>@​fkatsuhiro</code></a>! - Fixes a bug where static file endpoints using <code>getStaticPaths</code> with <code>.html</code> in dynamic param values (e.g. <code>{ path: 'file.html' }</code>) would fail with a <code>NoMatchingStaticPathFound</code> error during build. The <code>.html</code> suffix is no longer incorrectly stripped from endpoint route pathnames.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16855">#16855</a> <a href="https://github.com/withastro/astro/commit/c610cda44b273c15a6e7eaa4a84fa194002643e1"><code>c610cda</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes dynamic routes returning 500 &quot;TypeError: Missing parameter&quot; when using domain-based i18n routing in SSR.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16946">#16946</a> <a href="https://github.com/withastro/astro/commit/606c37b886a9e25170ba82634cc81a8a775e8ac6"><code>606c37b</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes <code>Astro.routePattern</code> to preserve original casing of dynamic parameter names from filenames. Previously, a file at <code>src/pages/blog/[postId].astro</code> would return <code>/blog/[postid]</code> for <code>Astro.routePattern</code> due to an internal <code>.toLowerCase()</code> call. It now correctly returns <code>/blog/[postId]</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16720">#16720</a> <a href="https://github.com/withastro/astro/commit/16d49b694071be212fb8c5a141ade72e8717a30e"><code>16d49b6</code></a> Thanks <a href="https://github.com/thomas-callahan-collibra"><code>@​thomas-callahan-collibra</code></a>! - Fix an issue where dynamic routes would return the string <code>[object Object]</code> instead of the expected content, in certain runtimes.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16703">#16703</a> <a href="https://github.com/withastro/astro/commit/17390a6184d5cbd5ff85b7f652a92f5a6a7b0557"><code>17390a6</code></a> Thanks <a href="https://github.com/henrybrewer00-dotcom"><code>@​henrybrewer00-dotcom</code></a>! - Fixes styles being stripped when the project root is started with a path whose case differs from the actual filesystem case (e.g. running <code>astro dev</code> from <code>d:\dev\app</code> while the folder on disk is <code>D:\dev\app</code>).</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16855">#16855</a> <a href="https://github.com/withastro/astro/commit/c610cda44b273c15a6e7eaa4a84fa194002643e1"><code>c610cda</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes <code>Astro.currentLocale</code> returning the default locale instead of the domain's locale on dynamic routes served from a mapped domain.</p> </li> </ul> <h2>astro@6.4.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16900">#16900</a> <a href="https://github.com/withastro/astro/commit/17a0fbd34d11db765e79caf269bfd5f43ef51da8"><code>17a0fbd</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Bumps <code>devalue</code> dependency to v5.8.1</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16016">#16016</a> <a href="https://github.com/withastro/astro/commit/0d85e1b7ea58a243bd1b61bdfb951c4fd87b9db5"><code>0d85e1b</code></a> Thanks <a href="https://github.com/felmonon"><code>@​felmonon</code></a>! - Fix a false positive in the dev toolbar accessibility audit for anchors with text inside closed <code>&lt;details&gt;</code> elements.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16911">#16911</a> <a href="https://github.com/withastro/astro/commit/79c6c469a735bece8a80200f7b188e15f1abff24"><code>79c6c46</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes a bug where <code>experimental.advancedRouting</code> with <code>astro/hono</code> handlers threw <code>TypeError: Cannot read properties of undefined (reading 'route')</code> for unmatched routes instead of rendering the custom 404 page.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16899">#16899</a> <a href="https://github.com/withastro/astro/commit/239c469cd2cd66d147a302a2ca14e07a0891f9b8"><code>239c469</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Fixes a false &quot;does not call the middleware() handler&quot; warning when using <code>astro()</code> in a custom <code>src/app.ts</code> and the first request is a redirect route.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16887">#16887</a> <a href="https://github.com/withastro/astro/commit/493acdb4abc56534e9efa68af16e3ef273d7d88b"><code>493acdb</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes <code>redirectToDefaultLocale</code> not working after the Advanced Routing refactoring.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md">astro's changelog</a>.</em></p> <blockquote> <h2>6.4.6</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16765">#16765</a> <a href="https://github.com/withastro/astro/commit/b10e86e6dbaf04678127c86366befc0b78a164f6"><code>b10e86e</code></a> Thanks <a href="https://github.com/fkatsuhiro"><code>@​fkatsuhiro</code></a>! - Fixes an issue where renaming an image file while the dev server is running triggers a build error. Now Astro correctly hot-reloads the image without crashing.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17026">#17026</a> <a href="https://github.com/withastro/astro/commit/add3df10fdaff469ae0228f09d99290de170029a"><code>add3df1</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Hardens <code>addAttribute</code> to drop attribute names containing characters that are invalid per the HTML spec (<code>&quot;</code>, <code>'</code>, <code>&gt;</code>, <code>/</code>, <code>=</code>, whitespace)</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17033">#17033</a> <a href="https://github.com/withastro/astro/commit/ffda27b7c8697d4b7ed530e93385a420e1fc4acd"><code>ffda27b</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Validates the request origin against <code>allowedDomains</code> before fetching prerendered error pages. When <code>allowedDomains</code> is configured and the Host header matches, the original origin is used. Otherwise, the fetch falls back to <code>localhost</code>.</p> </li> </ul> <h2>6.4.5</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16985">#16985</a> <a href="https://github.com/withastro/astro/commit/4ecff3268acb6ee3db719c4b38bbaead703ff4de"><code>4ecff32</code></a> Thanks <a href="https://github.com/maximslo"><code>@​maximslo</code></a>! - Fixes the <code>experimental.logger</code> destination not being used for the &quot;Server listening on...&quot; startup message. The logger is now resolved before the server starts listening, and <code>adapterLogger</code> re-creates itself when the underlying logger changes so the startup message uses the correct destination.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16947">#16947</a> <a href="https://github.com/withastro/astro/commit/e0703a6e815be829759ab7912f7024ee8424c3ac"><code>e0703a6</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes <code>Astro.request.url</code> not reflecting validated <code>X-Forwarded-Proto</code>/<code>X-Forwarded-Host</code> headers when <code>security.allowedDomains</code> is configured. Previously, only <code>Astro.url</code> was updated with the forwarded origin while <code>Astro.request.url</code> retained the socket-derived URL, causing the two to diverge behind TLS-terminating proxies.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16997">#16997</a> <a href="https://github.com/withastro/astro/commit/dc45246812afcaab60393e5236d27e95f98f5efa"><code>dc45246</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Reverts a change to <code>isNode</code> runtime detection that caused a significant build time regression for Cloudflare adapter users with large prerendered sites</p> </li> </ul> <h2>6.4.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16926">#16926</a> <a href="https://github.com/withastro/astro/commit/1b39ae8485406937501d8a734afe2a464d671064"><code>1b39ae8</code></a> Thanks <a href="https://github.com/narendraio"><code>@​narendraio</code></a>! - Prevents <code>App.match()</code> from throwing on request paths that contain an invalid percent-sequence.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16924">#16924</a> <a href="https://github.com/withastro/astro/commit/2c0bc943d96d602b429ce3ecbb379d01a46903b5"><code>2c0bc94</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes an issue where editing a client-side component (e.g. with <code>client:idle</code>, <code>client:load</code>, etc.) caused an unnecessary full program reload of the backend during development.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16958">#16958</a> <a href="https://github.com/withastro/astro/commit/2c1d50f5f9d557d7cdc17fd75f3a10fd203699c9"><code>2c1d50f</code></a> Thanks <a href="https://github.com/fkatsuhiro"><code>@​fkatsuhiro</code></a>! - Fixes a bug where static file endpoints using <code>getStaticPaths</code> with <code>.html</code> in dynamic param values (e.g. <code>{ path: 'file.html' }</code>) would fail with a <code>NoMatchingStaticPathFound</code> error during build. The <code>.html</code> suffix is no longer incorrectly stripped from endpoint route pathnames.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16855">#16855</a> <a href="https://github.com/withastro/astro/commit/c610cda44b273c15a6e7eaa4a84fa194002643e1"><code>c610cda</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes dynamic routes returning 500 &quot;TypeError: Missing parameter&quot; when using domain-based i18n routing in SSR.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16946">#16946</a> <a href="https://github.com/withastro/astro/commit/606c37b886a9e25170ba82634cc81a8a775e8ac6"><code>606c37b</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes <code>Astro.routePattern</code> to preserve original casing of dynamic parameter names from filenames. Previously, a file at <code>src/pages/blog/[postId].astro</code> would return <code>/blog/[postid]</code> for <code>Astro.routePattern</code> due to an internal <code>.toLowerCase()</code> call. It now correctly returns <code>/blog/[postId]</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16720">#16720</a> <a href="https://github.com/withastro/astro/commit/16d49b694071be212fb8c5a141ade72e8717a30e"><code>16d49b6</code></a> Thanks <a href="https://github.com/thomas-callahan-collibra"><code>@​thomas-callahan-collibra</code></a>! - Fix an issue where dynamic routes would return the string <code>[object Object]</code> instead of the expected content, in certain runtimes.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16703">#16703</a> <a href="https://github.com/withastro/astro/commit/17390a6184d5cbd5ff85b7f652a92f5a6a7b0557"><code>17390a6</code></a> Thanks <a href="https://github.com/henrybrewer00-dotcom"><code>@​henrybrewer00-dotcom</code></a>! - Fixes styles being stripped when the project root is started with a path whose case differs from the actual filesystem case (e.g. running <code>astro dev</code> from <code>d:\dev\app</code> while the folder on disk is <code>D:\dev\app</code>).</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16855">#16855</a> <a href="https://github.com/withastro/astro/commit/c610cda44b273c15a6e7eaa4a84fa194002643e1"><code>c610cda</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes <code>Astro.currentLocale</code> returning the default locale instead of the domain's locale on dynamic routes served from a mapped domain.</p> </li> </ul> <h2>6.4.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16900">#16900</a> <a href="https://github.com/withastro/astro/commit/17a0fbd34d11db765e79caf269bfd5f43ef51da8"><code>17a0fbd</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Bumps <code>devalue</code> dependency to v5.8.1</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16016">#16016</a> <a href="https://github.com/withastro/astro/commit/0d85e1b7ea58a243bd1b61bdfb951c4fd87b9db5"><code>0d85e1b</code></a> Thanks <a href="https://github.com/felmonon"><code>@​felmonon</code></a>! - Fix a false positive in the dev toolbar accessibility audit for anchors with text inside closed <code>&lt;details&gt;</code> elements.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16911">#16911</a> <a href="https://github.com/withastro/astro/commit/79c6c469a735bece8a80200f7b188e15f1abff24"><code>79c6c46</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes a bug where <code>experimental.advancedRouting</code> with <code>astro/hono</code> handlers threw <code>TypeError: Cannot read properties of undefined (reading 'route')</code> for unmatched routes instead of rendering the custom 404 page.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/19ad1b4159ad8109b831437b0a782d30f5bebb49"><code>19ad1b4</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/17023">#17023</a>)</li> <li><a href="https://github.com/withastro/astro/commit/f1baeea1923518aead11db128c773cd844499aaa"><code>f1baeea</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/ffda27b7c8697d4b7ed530e93385a420e1fc4acd"><code>ffda27b</code></a> Validate origin in prerendered error page fetch against allowedDomains (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/17033">#17033</a>)</li> <li><a href="https://github.com/withastro/astro/commit/0408628e334440e5e1c6b80f43ed52866bbe71f8"><code>0408628</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/add3df10fdaff469ae0228f09d99290de170029a"><code>add3df1</code></a> Harden addAttribute to reject invalid attribute names (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/17026">#17026</a>)</li> <li><a href="https://github.com/withastro/astro/commit/cfeb958e5d60fb41a12d1ebd29bf4b0359d56439"><code>cfeb958</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/b10e86e6dbaf04678127c86366befc0b78a164f6"><code>b10e86e</code></a> fix : content collections image hmr (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/16765">#16765</a>)</li> <li><a href="https://github.com/withastro/astro/commit/0b879fbbaa0c8494835dab6f5c781b1c0cb36eac"><code>0b879fb</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/16972">#16972</a>)</li> <li><a href="https://github.com/withastro/astro/commit/dc45246812afcaab60393e5236d27e95f98f5efa"><code>dc45246</code></a> Revert isNode workerd detection that caused Cloudflare build regression (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/16997">#16997</a>)</li> <li><a href="https://github.com/withastro/astro/commit/132a879eaa4a6ba4b31a78bd9af019d5cc17767b"><code>132a879</code></a> [ci] format</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@6.4.6/packages/astro">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~GitHub%20Actions">GitHub Actions</a>, a new releaser for astro since your current version.</p> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astro&package-manager=npm_and_yarn&previous-version=5.5.5&new-version=6.4.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/orpheuslummis/bun-mlkem/network/alerts). </details>
autofix-troubleshooter commented 2026-06-19 20:16:26 -04:00 (Migrated from github.com)

Hi! I'm the autofix logoautofix.ci troubleshooter bot.

It looks like you correctly set up a CI job that uses the autofix.ci GitHub Action, but the autofix.ci GitHub App has not been installed for this repository. This means that autofix.ci unfortunately does not have the permissions to fix this pull request. If you are the repository owner, please install the app and then restart the CI workflow! 😃

Hi! I'm the <a href="https://autofix.ci"><img alt="autofix logo" src="https://autofix.ci/logo/logo.svg" width="16"><strong>autofix.ci</strong></a> troubleshooter bot. It looks like you correctly set up a CI job that uses the autofix.ci GitHub Action, but the [**autofix.ci GitHub App**](https://github.com/apps/autofix-ci/) has not been installed for this repository. This means that autofix.ci unfortunately does not have the permissions to fix this pull request. If you are the repository owner, please install the app and then restart the CI workflow! 😃
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6:dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6
git switch dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch local/mlkem-default
git merge --no-ff dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6
git switch dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6
git rebase local/mlkem-default
git switch local/mlkem-default
git merge --ff-only dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6
git switch dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6
git rebase local/mlkem-default
git switch local/mlkem-default
git merge --no-ff dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6
git switch local/mlkem-default
git merge --squash dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6
git switch local/mlkem-default
git merge --ff-only dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6
git switch local/mlkem-default
git merge dependabot/npm_and_yarn/test/js/third_party/astro/astro-6.4.6
git push origin local/mlkem-default
Sign in to join this conversation.
No description provided.