Bumps the astro group with 1 update: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro).
Updates `astro` from 5.16.11 to 5.16.15
<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.16.15</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/withastro/astro/pull/15286">#15286</a> <a href="https://github.com/withastro/astro/commit/0aafc8342a47f5c96cd13bfc02539d89c3c358a7"><code>0aafc83</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - Fixes a case where font providers provided as class instances may not work when using the experimental Fonts API. It affected the local provider</li>
</ul>
<h2>astro@5.16.14</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15213">#15213</a> <a href="https://github.com/withastro/astro/commit/c775fce98f50001bc59025dceaf8ea5287675f17"><code>c775fce</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - <strong>BREAKING CHANGE to the experimental Fonts API only</strong></p>
<p>Updates how the local provider must be used when using the experimental Fonts API</p>
<p>Previously, there were 2 kinds of font providers: remote and local.</p>
<p>Font providers are now unified. If you are using the local provider, the process for configuring local fonts must be updated:</p>
<pre lang="diff"><code>-import { defineConfig } from "astro/config";
+import { defineConfig, fontProviders } from "astro/config";
<p>export default defineConfig({
experimental: {
fonts: [{
name: "Custom",
cssVariable: "--font-custom",</p>
<ul>
<li>
<pre><code> provider: &quot;local&quot;,
</code></pre>
</li>
</ul>
<ul>
<li>
<pre><code> provider: fontProviders.local(),
</code></pre>
</li>
<li>
<pre><code> options: {
variants: [
{
weight: 400,
style: &quot;normal&quot;,
src: [&quot;./src/assets/fonts/custom-400.woff2&quot;]
},
{
weight: 700,
style: &quot;normal&quot;,
src: [&quot;./src/assets/fonts/custom-700.woff2&quot;]
}
// ...
]
</code></pre>
</li>
<li>
<pre><code> }
}]
</code></pre>
}
});
</code></pre></li>
</ul>
<p>Once configured, there is no change to using local fonts in your project. However, you should inspect your deployed site to confirm that your new font configuration is being applied.</p>
<p>See <a href="https://docs.astro.build/en/reference/experimental-flags/fonts/">the experimental Fonts API docs</a> for more information.</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>5.16.15</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/withastro/astro/pull/15286">#15286</a> <a href="https://github.com/withastro/astro/commit/0aafc8342a47f5c96cd13bfc02539d89c3c358a7"><code>0aafc83</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - Fixes a case where font providers provided as class instances may not work when using the experimental Fonts API. It affected the local provider</li>
</ul>
<h2>5.16.14</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15213">#15213</a> <a href="https://github.com/withastro/astro/commit/c775fce98f50001bc59025dceaf8ea5287675f17"><code>c775fce</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - <strong>BREAKING CHANGE to the experimental Fonts API only</strong></p>
<p>Updates how the local provider must be used when using the experimental Fonts API</p>
<p>Previously, there were 2 kinds of font providers: remote and local.</p>
<p>Font providers are now unified. If you are using the local provider, the process for configuring local fonts must be updated:</p>
<pre lang="diff"><code>-import { defineConfig } from "astro/config";
+import { defineConfig, fontProviders } from "astro/config";
<p>export default defineConfig({
experimental: {
fonts: [{
name: "Custom",
cssVariable: "--font-custom",</p>
<ul>
<li>
<pre><code> provider: &quot;local&quot;,
</code></pre>
</li>
</ul>
<ul>
<li>
<pre><code> provider: fontProviders.local(),
</code></pre>
</li>
<li>
<pre><code> options: {
variants: [
{
weight: 400,
style: &quot;normal&quot;,
src: [&quot;./src/assets/fonts/custom-400.woff2&quot;]
},
{
weight: 700,
style: &quot;normal&quot;,
src: [&quot;./src/assets/fonts/custom-700.woff2&quot;]
}
// ...
]
</code></pre>
</li>
<li>
<pre><code> }
}]
</code></pre>
}
});
</code></pre></li>
</ul>
<p>Once configured, there is no change to using local fonts in your project. However, you should inspect your deployed site to confirm that your new font configuration is being applied.</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/8ca97e107b0ad607898b3ac9cbcf96b65953fe84"><code>8ca97e1</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15288">#15288</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/0aafc8342a47f5c96cd13bfc02539d89c3c358a7"><code>0aafc83</code></a> fix(fonts): font providers as class instances (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15286">#15286</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/f7a841550bcd88214f647bacf69ee03d2304263f"><code>f7a8415</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15278">#15278</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/7db2fda6619c209a7133fbcf23b794fcb44e20f0"><code>7db2fda</code></a> address sarah's feedback (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15280">#15280</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/c775fce98f50001bc59025dceaf8ea5287675f17"><code>c775fce</code></a> feat(fonts)!: local provider unification (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15213">#15213</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/edabeaa3cd3355fa33e4eb547656033fe7b66845"><code>edabeaa</code></a> fix(cli): add .vercel to .gitignore when using astro add vercel (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15185">#15185</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/ce0c3465d57ebf75be6f93ceb9a99faad195eb06"><code>ce0c346</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15270">#15270</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/60d1045e042738499875d3add39d43e0f1daebe0"><code>60d1045</code></a> clear fonts test cache (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15274">#15274</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/c4a15a827bc96d2857420212b8c9627fd3bfb195"><code>c4a15a8</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/cb60ee16051da258ab140f3bb64ff3fd8e4c9e17"><code>cb60ee1</code></a> feat(fonts): getFontBuffer() (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15182">#15182</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.16.15/packages/astro">compare view</a></li>
</ul>
</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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions
</details>