- From: dependabot[bot] via GitHub <noreply@w3.org>
- Date: Wed, 19 Nov 2025 20:58:50 +0000
- To: public-design-tokens-log@w3.org
dependabot[bot] has just submitted a new pull request for https://github.com/design-tokens/community-group:
== build(deps): bump astro from 5.13.8 to 5.15.9 in /www ==
Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.13.8 to 5.15.9.
<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@5.15.9</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14786">#14786</a> <a href="https://github.com/withastro/astro/commit/758a891112839a108479fd0489a1785640b31ecf"><code>758a891</code></a> Thanks <a href="https://github.com/mef"><code>@mef</code></a>! - Add handling of invalid encrypted props and slots in server islands.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14783">#14783</a> <a href="https://github.com/withastro/astro/commit/504958fe7fccd7bffc177a1f4b1bf4e22989470e"><code>504958f</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - Improves the experimental Fonts API build log to show the number of downloaded files. This can help spotting excessive downloading because of misconfiguration</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14791">#14791</a> <a href="https://github.com/withastro/astro/commit/9e9c528191b6f5e06db9daf6ad26b8f68016e533"><code>9e9c528</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@Princesseuh</code></a>! - Changes the remote protocol checks for images to require explicit authorization in order to use data URIs.</p>
<p>In order to allow data URIs for remote images, you will need to update your <code>astro.config.mjs</code> file to include the following configuration:</p>
<pre lang="js"><code>// astro.config.mjs
import { defineConfig } from 'astro/config';
<p>export default defineConfig({
images: {
remotePatterns: [
{
protocol: 'data',
},
],
},
});
</code></pre></p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14787">#14787</a> <a href="https://github.com/withastro/astro/commit/0f75f6bc637d547e07324e956db21d9f245a3e8e"><code>0f75f6b</code></a> Thanks <a href="https://github.com/matthewp"><code>@matthewp</code></a>! - Fixes wildcard hostname pattern matching to correctly reject hostnames without dots</p>
<p>Previously, hostnames like <code>localhost</code> or other single-part names would incorrectly match patterns like <code>*.example.com</code>. The wildcard matching logic has been corrected to ensure that only valid subdomains matching the pattern are accepted.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14776">#14776</a> <a href="https://github.com/withastro/astro/commit/3537876fde3bdb2a0ded99cc9b00d53f66160a7f"><code>3537876</code></a> Thanks <a href="https://github.com/ktym4a"><code>@ktym4a</code></a>! - Fixes the behavior of <code>passthroughImageService</code> so it does not generate webp.</p>
</li>
<li>
<p>Updated dependencies [<a href="https://github.com/withastro/astro/commit/9e9c528191b6f5e06db9daf6ad26b8f68016e533"><code>9e9c528</code></a>, <a href="https://github.com/withastro/astro/commit/0f75f6bc637d547e07324e956db21d9f245a3e8e"><code>0f75f6b</code></a>]:</p>
<ul>
<li><code>@astrojs/internal-helpers</code><a href="https://github.com/0"><code>@0</code></a>.7.5</li>
<li><code>@astrojs/markdown-remark</code><a href="https://github.com/6"><code>@6</code></a>.3.9</li>
</ul>
</li>
</ul>
<h2>astro@5.15.8</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14772">#14772</a> <a href="https://github.com/withastro/astro/commit/00c579a23322d92459e4ccad0ec365c4d1980a5d"><code>00c579a</code></a> Thanks <a href="https://github.com/matthewp"><code>@matthewp</code></a>! - Improves the security of Server Islands slots by encrypting them before transmission to the browser, matching the security model used for props. This improves the integrity of slot content and prevents injection attacks, even when component templates don't explicitly support slots.</p>
<p>Slots continue to work as expected for normal usage—this change has no breaking changes for legitimate requests.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14771">#14771</a> <a href="https://github.com/withastro/astro/commit/6f800813516b07bbe12c666a92937525fddb58ce"><code>6f80081</code></a> Thanks <a href="https://github.com/matthewp"><code>@matthewp</code></a>! - Fix middleware pathname matching by normalizing URL-encoded paths</p>
<p>Middleware now receives normalized pathname values, ensuring that encoded paths like <code>/%61dmin</code> are properly decoded to <code>/admin</code> before middleware checks. This prevents potential security issues where middleware checks might be bypassed through URL encoding.</p>
</li>
</ul>
<h2>astro@5.15.7</h2>
<h3>Patch Changes</h3>
<!-- 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>5.15.9</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14786">#14786</a> <a href="https://github.com/withastro/astro/commit/758a891112839a108479fd0489a1785640b31ecf"><code>758a891</code></a> Thanks <a href="https://github.com/mef"><code>@mef</code></a>! - Add handling of invalid encrypted props and slots in server islands.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14783">#14783</a> <a href="https://github.com/withastro/astro/commit/504958fe7fccd7bffc177a1f4b1bf4e22989470e"><code>504958f</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - Improves the experimental Fonts API build log to show the number of downloaded files. This can help spotting excessive downloading because of misconfiguration</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14791">#14791</a> <a href="https://github.com/withastro/astro/commit/9e9c528191b6f5e06db9daf6ad26b8f68016e533"><code>9e9c528</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@Princesseuh</code></a>! - Changes the remote protocol checks for images to require explicit authorization in order to use data URIs.</p>
<p>In order to allow data URIs for remote images, you will need to update your <code>astro.config.mjs</code> file to include the following configuration:</p>
<pre lang="js"><code>// astro.config.mjs
import { defineConfig } from 'astro/config';
<p>export default defineConfig({
images: {
remotePatterns: [
{
protocol: 'data',
},
],
},
});
</code></pre></p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14787">#14787</a> <a href="https://github.com/withastro/astro/commit/0f75f6bc637d547e07324e956db21d9f245a3e8e"><code>0f75f6b</code></a> Thanks <a href="https://github.com/matthewp"><code>@matthewp</code></a>! - Fixes wildcard hostname pattern matching to correctly reject hostnames without dots</p>
<p>Previously, hostnames like <code>localhost</code> or other single-part names would incorrectly match patterns like <code>*.example.com</code>. The wildcard matching logic has been corrected to ensure that only valid subdomains matching the pattern are accepted.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14776">#14776</a> <a href="https://github.com/withastro/astro/commit/3537876fde3bdb2a0ded99cc9b00d53f66160a7f"><code>3537876</code></a> Thanks <a href="https://github.com/ktym4a"><code>@ktym4a</code></a>! - Fixes the behavior of <code>passthroughImageService</code> so it does not generate webp.</p>
</li>
<li>
<p>Updated dependencies [<a href="https://github.com/withastro/astro/commit/9e9c528191b6f5e06db9daf6ad26b8f68016e533"><code>9e9c528</code></a>, <a href="https://github.com/withastro/astro/commit/0f75f6bc637d547e07324e956db21d9f245a3e8e"><code>0f75f6b</code></a>]:</p>
<ul>
<li><code>@astrojs/internal-helpers</code><a href="https://github.com/0"><code>@0</code></a>.7.5</li>
<li><code>@astrojs/markdown-remark</code><a href="https://github.com/6"><code>@6</code></a>.3.9</li>
</ul>
</li>
</ul>
<h2>5.15.8</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14772">#14772</a> <a href="https://github.com/withastro/astro/commit/00c579a23322d92459e4ccad0ec365c4d1980a5d"><code>00c579a</code></a> Thanks <a href="https://github.com/matthewp"><code>@matthewp</code></a>! - Improves the security of Server Islands slots by encrypting them before transmission to the browser, matching the security model used for props. This improves the integrity of slot content and prevents injection attacks, even when component templates don't explicitly support slots.</p>
<p>Slots continue to work as expected for normal usage—this change has no breaking changes for legitimate requests.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14771">#14771</a> <a href="https://github.com/withastro/astro/commit/6f800813516b07bbe12c666a92937525fddb58ce"><code>6f80081</code></a> Thanks <a href="https://github.com/matthewp"><code>@matthewp</code></a>! - Fix middleware pathname matching by normalizing URL-encoded paths</p>
<p>Middleware now receives normalized pathname values, ensuring that encoded paths like <code>/%61dmin</code> are properly decoded to <code>/admin</code> before middleware checks. This prevents potential security issues where middleware checks might be bypassed through URL encoding.</p>
</li>
</ul>
<h2>5.15.7</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/withastro/astro/commit/7a07f0244c78a8f1889c1e08910ac2033c9a8c4c"><code>7a07f02</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14788">#14788</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/8cf3f0544fac865848bf6d5cc1d9e9d9b117aa7d"><code>8cf3f05</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/758a891112839a108479fd0489a1785640b31ecf"><code>758a891</code></a> fix(astro): handle invalid encrypted props in server island (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14786">#14786</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/3537876fde3bdb2a0ded99cc9b00d53f66160a7f"><code>3537876</code></a> fix: <code>passthroughImageService</code> generate webp (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14776">#14776</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/048e4dc764d0dc2aee4ce67c7a8bb582011980dd"><code>048e4dc</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/9e9c528191b6f5e06db9daf6ad26b8f68016e533"><code>9e9c528</code></a> fix: require explicit authorization to use data urls (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14791">#14791</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/0f75f6bc637d547e07324e956db21d9f245a3e8e"><code>0f75f6b</code></a> Fix wildcard hostname matching to reject hostnames without dots (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14787">#14787</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/504958fe7fccd7bffc177a1f4b1bf4e22989470e"><code>504958f</code></a> feat(fonts): log number of downloaded files (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14783">#14783</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/24e28d2aea9f8d3dbace85947e4712a06190568d"><code>24e28d2</code></a> fix(deps): update astro dependencies (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14779">#14779</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/60af4d0a1a56d8db56e3d737f4f9ea680203490e"><code>60af4d0</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14773">#14773</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.15.9/packages/astro">compare view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for astro since your current version.</p>
</details>
<br />
[](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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore 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/design-tokens/community-group/network/alerts).
</details>
See https://github.com/design-tokens/community-group/pull/354
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 19 November 2025 20:58:51 UTC