Bumps the astro group with 2 updates: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) and [astro-og-canvas](https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas).
Updates `astro` from 5.16.15 to 5.17.1
<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.17.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15334">#15334</a> <a href="https://github.com/withastro/astro/commit/d715f1f88777a4ce0fb61c8043cccfbac2486ab4"><code>d715f1f</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>Removes the <code>getFontBuffer()</code> helper function exported from <code>astro:assets</code> when using the experimental Fonts API</p>
<p>This experimental feature introduced in v15.6.13 ended up causing significant memory usage during build. This feature has been removed and will be reintroduced after further exploration and testing.</p>
<p>If you were relying on this function, you can replicate the previous behavior manually:</p>
<ul>
<li>On prerendered routes, read the file using <code>node:fs</code></li>
<li>On server rendered routes, fetch files using URLs from <code>fontData</code> and <code>context.url</code></li>
</ul>
</li>
</ul>
<h2>astro@5.17.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14932">#14932</a> <a href="https://github.com/withastro/astro/commit/b19d816c914022c4e618d6012e09aed82be34213"><code>b19d816</code></a> Thanks <a href="https://github.com/patrickarlt"><code>@patrickarlt</code></a>! - Adds support for returning a Promise from the <code>parser()</code> option of the <code>file()</code> loader</p>
<p>This enables you to run asynchronous code such as fetching remote data or using async parsers when loading files with the Content Layer API.</p>
<p>For example:</p>
<pre lang="js"><code>import { defineCollection } from 'astro:content';
import { file } from 'astro/loaders';
<p>const blog = defineCollection({
loader: file('src/data/blog.json', {
parser: async (text) => {
const data = JSON.parse(text);</p>
<pre><code> // Perform async operations like fetching additional data
const enrichedData = await fetch(`https://api.example.com/enrich`, {
method: 'POST',
body: JSON.stringify(data),
}).then((res) =&gt; res.json());
return enrichedData;
},
</code></pre>
<p>}),
});</p>
<p>export const collections = { blog };
</code></pre></p>
<p>See <a href="https://docs.astro.build/en/reference/content-loader-reference/#parser">the <code>parser()</code> reference documentation</a> for more information.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15171">#15171</a> <a href="https://github.com/withastro/astro/commit/f22072607c79f5ba3459ba7522cfdf2581f1869b"><code>f220726</code></a> Thanks <a href="https://github.com/mark-ignacio"><code>@mark-ignacio</code></a>! - Adds a new, optional <code>kernel</code> configuration option to select a resize algorithm in the Sharp image service</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.17.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15334">#15334</a> <a href="https://github.com/withastro/astro/commit/d715f1f88777a4ce0fb61c8043cccfbac2486ab4"><code>d715f1f</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>Removes the <code>getFontBuffer()</code> helper function exported from <code>astro:assets</code> when using the experimental Fonts API</p>
<p>This experimental feature introduced in v15.6.13 ended up causing significant memory usage during build. This feature has been removed and will be reintroduced after further exploration and testing.</p>
<p>If you were relying on this function, you can replicate the previous behavior manually:</p>
<ul>
<li>On prerendered routes, read the file using <code>node:fs</code></li>
<li>On server rendered routes, fetch files using URLs from <code>fontData</code> and <code>context.url</code></li>
</ul>
</li>
</ul>
<h2>5.17.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14932">#14932</a> <a href="https://github.com/withastro/astro/commit/b19d816c914022c4e618d6012e09aed82be34213"><code>b19d816</code></a> Thanks <a href="https://github.com/patrickarlt"><code>@patrickarlt</code></a>! - Adds support for returning a Promise from the <code>parser()</code> option of the <code>file()</code> loader</p>
<p>This enables you to run asynchronous code such as fetching remote data or using async parsers when loading files with the Content Layer API.</p>
<p>For example:</p>
<pre lang="js"><code>import { defineCollection } from 'astro:content';
import { file } from 'astro/loaders';
<p>const blog = defineCollection({
loader: file('src/data/blog.json', {
parser: async (text) => {
const data = JSON.parse(text);</p>
<pre><code> // Perform async operations like fetching additional data
const enrichedData = await fetch(`https://api.example.com/enrich`, {
method: 'POST',
body: JSON.stringify(data),
}).then((res) =&gt; res.json());
return enrichedData;
},
</code></pre>
<p>}),
});</p>
<p>export const collections = { blog };
</code></pre></p>
<p>See <a href="https://docs.astro.build/en/reference/content-loader-reference/#parser">the <code>parser()</code> reference documentation</a> for more information.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15171">#15171</a> <a href="https://github.com/withastro/astro/commit/f22072607c79f5ba3459ba7522cfdf2581f1869b"><code>f220726</code></a> Thanks <a href="https://github.com/mark-ignacio"><code>@mark-ignacio</code></a>! - Adds a new, optional <code>kernel</code> configuration option to select a resize algorithm in the Sharp image service</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/1c6c9fc5b53cbf3d16a1bd0dadece153455e2512"><code>1c6c9fc</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15339">#15339</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/d715f1f88777a4ce0fb61c8043cccfbac2486ab4"><code>d715f1f</code></a> fix(fonts): remove getFontBuffer() (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15334">#15334</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/08d38c6ca489142e923383a8b19ad1038313d30d"><code>08d38c6</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15325">#15325</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/388818a0079cfd31d9e383ae2548ce79605299d2"><code>388818a</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/f1fce0e7cc3c1122bf5c4f1c5985ca716c8417db"><code>f1fce0e</code></a> feat: add <code>retainBody</code> option to the <code>glob()</code> loader (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15022">#15022</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/928529f824d37e9bfb297ff931ebfcb3f0b56428"><code>928529f</code></a> adds ImageTransform.background (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15153">#15153</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/f22072607c79f5ba3459ba7522cfdf2581f1869b"><code>f220726</code></a> feat(sharp): add kernel option to image service config (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15171">#15171</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/b19d816c914022c4e618d6012e09aed82be34213"><code>b19d816</code></a> feat: allow for async parsing in file loader (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14932">#14932</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/08e0fd723742dda4126665f5e32f4065899af83e"><code>08e0fd7</code></a> Support partitioned cookies (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15063">#15063</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/54f6006c3ddae8935a5550e2c3b38d25bf662ea6"><code>54f6006</code></a> Add <code>devToolbar.placement</code> configuration option (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15015">#15015</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.17.1/packages/astro">compare view</a></li>
</ul>
</details>
<br />
Updates `astro-og-canvas` from 0.10.0 to 0.10.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/delucis/astro-og-canvas/releases">astro-og-canvas's releases</a>.</em></p>
<blockquote>
<h2>astro-og-canvas@0.10.1</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/delucis/astro-og-canvas/pull/128">#128</a> <a href="https://github.com/delucis/astro-og-canvas/commit/dd829f9afaa439e5949f6d0e207a0af07e0777fc"><code>dd829f9</code></a> Thanks <a href="https://github.com/apps/renovate"><code>@renovate</code></a>! - Updates dependency entities to ^7.0.1</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/delucis/astro-og-canvas/blob/latest/packages/astro-og-canvas/CHANGELOG.md">astro-og-canvas's changelog</a>.</em></p>
<blockquote>
<h2>0.10.1</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/delucis/astro-og-canvas/pull/128">#128</a> <a href="https://github.com/delucis/astro-og-canvas/commit/dd829f9afaa439e5949f6d0e207a0af07e0777fc"><code>dd829f9</code></a> Thanks <a href="https://github.com/apps/renovate"><code>@renovate</code></a>! - Updates dependency entities to ^7.0.1</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/9ec89cfe20e6587ceda9191300e9af274e9570db"><code>9ec89cf</code></a> Version Packages (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/131">#131</a>)</li>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/dd829f9afaa439e5949f6d0e207a0af07e0777fc"><code>dd829f9</code></a> Update dependency entities to ^7.0.1 (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/128">#128</a>)</li>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/9f8a1fdb17da889d170837d45d2f46f279104a9d"><code>9f8a1fd</code></a> Update dependency astro to ^5.16.15 (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/127">#127</a>)</li>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/4bf4c8dcbdf11a21d87d9b880c6d5b06c2aac69f"><code>4bf4c8d</code></a> Update dependency astro to ^5.16.9 (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/124">#124</a>)</li>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/83dba33a655838c8e6fe8bd93dbc6bb7a777a3bb"><code>83dba33</code></a> Update dependency astro to ^5.16.8 (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/122">#122</a>)</li>
<li>See full diff in <a href="https://github.com/delucis/astro-og-canvas/commits/astro-og-canvas@0.10.1/packages/astro-og-canvas">compare view</a></li>
</ul>
</details>
<br />
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>