Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

deps(deps): bump astro from 5.15.9 to 5.16.0

Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.15.9 to 5.16.0.
<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.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/13880">#13880</a> <a href="https://github.com/withastro/astro/commit/1a2ed01c92fe93843046396a2c854514747f4df8"><code>1a2ed01</code></a> Thanks <a href="https://github.com/azat-io"><code>@​azat-io</code></a>! - Adds experimental SVGO optimization support for SVG assets</p>
<p>Astro now supports automatic SVG optimization using SVGO during build time. This experimental feature helps reduce SVG file sizes while maintaining visual quality, improving your site's performance.</p>
<p>To enable SVG optimization with default settings, add the following to your <code>astro.config.mjs</code>:</p>
<pre lang="js"><code>import { defineConfig } from 'astro/config';
<p>export default defineConfig({
experimental: {
svgo: true,
},
});
</code></pre></p>
<p>To customize optimization, pass a <a href="https://svgo.dev/docs/plugins/">SVGO configuration object</a>:</p>
<pre lang="js"><code>export default defineConfig({
experimental: {
svgo: {
plugins: [
'preset-default',
{
name: 'removeViewBox',
active: false,
},
],
},
},
});
</code></pre>
<p>For more information on enabling and using this feature in your project, see the <a href="https://docs.astro.build/en/reference/experimental-flags/svg-optimization/">experimental SVG optimization docs</a>.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14810">#14810</a> <a href="https://github.com/withastro/astro/commit/2e845fe56de45c710d282ed36f92978612810b79"><code>2e845fe</code></a> Thanks <a href="https://github.com/ascorbic"><code>@​ascorbic</code></a>! - Adds a hint for code agents to use the <code>--yes</code> flag to skip prompts when running <code>astro add</code></p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14698">#14698</a> <a href="https://github.com/withastro/astro/commit/f42ff9bd5b4c8d3e67247ee6e21f14cd2062c037"><code>f42ff9b</code></a> Thanks <a href="https://github.com/mauriciabad"><code>@​mauriciabad</code></a>! - Adds the <code>ActionInputSchema</code> utility type to automatically infer the TypeScript type of an action's input based on its Zod schema</p>
<p>For example, this type can be used to retrieve the input type of a form action:</p>
<pre lang="ts"><code>import { type ActionInputSchema, defineAction } from 'astro:actions';
import { z } from 'astro/zod';
<p>const action = defineAction({
</code></pre></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.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/13880">#13880</a> <a href="https://github.com/withastro/astro/commit/1a2ed01c92fe93843046396a2c854514747f4df8"><code>1a2ed01</code></a> Thanks <a href="https://github.com/azat-io"><code>@​azat-io</code></a>! - Adds experimental SVGO optimization support for SVG assets</p>
<p>Astro now supports automatic SVG optimization using SVGO during build time. This experimental feature helps reduce SVG file sizes while maintaining visual quality, improving your site's performance.</p>
<p>To enable SVG optimization with default settings, add the following to your <code>astro.config.mjs</code>:</p>
<pre lang="js"><code>import { defineConfig } from 'astro/config';
<p>export default defineConfig({
experimental: {
svgo: true,
},
});
</code></pre></p>
<p>To customize optimization, pass a <a href="https://svgo.dev/docs/plugins/">SVGO configuration object</a>:</p>
<pre lang="js"><code>export default defineConfig({
experimental: {
svgo: {
plugins: [
'preset-default',
{
name: 'removeViewBox',
active: false,
},
],
},
},
});
</code></pre>
<p>For more information on enabling and using this feature in your project, see the <a href="https://docs.astro.build/en/reference/experimental-flags/svg-optimization/">experimental SVG optimization docs</a>.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14810">#14810</a> <a href="https://github.com/withastro/astro/commit/2e845fe56de45c710d282ed36f92978612810b79"><code>2e845fe</code></a> Thanks <a href="https://github.com/ascorbic"><code>@​ascorbic</code></a>! - Adds a hint for code agents to use the <code>--yes</code> flag to skip prompts when running <code>astro add</code></p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14698">#14698</a> <a href="https://github.com/withastro/astro/commit/f42ff9bd5b4c8d3e67247ee6e21f14cd2062c037"><code>f42ff9b</code></a> Thanks <a href="https://github.com/mauriciabad"><code>@​mauriciabad</code></a>! - Adds the <code>ActionInputSchema</code> utility type to automatically infer the TypeScript type of an action's input based on its Zod schema</p>
<p>For example, this type can be used to retrieve the input type of a form action:</p>
<pre lang="ts"><code>import { type ActionInputSchema, defineAction } from 'astro:actions';
import { z } from 'astro/zod';
<p></code></pre></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/e8786795fc462374d44917dd8eb6effcd6939257"><code>e878679</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14808">#14808</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/78ed8b5b1feb783ba65b92913f27fb8ab166b01d"><code>78ed8b5</code></a> refactor(fonts): match cli structure (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14806">#14806</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/1a2ed01c92fe93843046396a2c854514747f4df8"><code>1a2ed01</code></a> feat: add SVGO optimization support for SVG assets (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13880">#13880</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/30305563dd7fce95cbf4b7f77a3a788483449904"><code>3030556</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/e1dd377398a3dcf6ba0697dc8d4bde6d77a45700"><code>e1dd377</code></a> fix: remove picocolors (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14813">#14813</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/4356485b0f708c7abf93207105ddcb890a466729"><code>4356485</code></a> feat(cli): Add preview shortcuts (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14574">#14574</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/2e845fe56de45c710d282ed36f92978612810b79"><code>2e845fe</code></a> feat: add hint about astro add --yes flag (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14810">#14810</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/f42ff9bd5b4c8d3e67247ee6e21f14cd2062c037"><code>f42ff9b</code></a> feat: Add <code>ActionInputSchema</code> utility type (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14698">#14698</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/c29a785d57f08c5526828379d748f788797d9c39"><code>c29a785</code></a> feat(fonts)!: update default subsets (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14796">#14796</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/ca359f213b8d4fda4db484966f6cb99f1a65caa6"><code>ca359f2</code></a> [ci] format</li>
<li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.16.0/packages/astro">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astro&package-manager=npm_and_yarn&previous-version=5.15.9&new-version=5.16.0)](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)


</details>

authored by

dependabot[bot] and committed by
GitHub
cbd7681a 59106add

+48 -27
+1 -1
package.json
··· 22 22 "@astrojs/rss": "^4.0.13", 23 23 "@astrojs/sitemap": "^3.6.0", 24 24 "@playform/inline": "^0.1.2", 25 - "astro": "^5.15.9", 25 + "astro": "^5.16.0", 26 26 "astro-og-canvas": "^0.7.2", 27 27 "canvaskit-wasm": "^0.40.0", 28 28 "feed": "^5.1.0",
+47 -26
pnpm-lock.yaml
··· 10 10 dependencies: 11 11 '@astrojs/mdx': 12 12 specifier: ^4.3.11 13 - version: 4.3.11(astro@5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)) 13 + version: 4.3.11(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)) 14 14 '@astrojs/netlify': 15 15 specifier: ^6.6.1 16 - version: 6.6.1(@netlify/api@14.0.10)(@types/node@24.10.1)(astro@5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(yaml@2.8.1) 16 + version: 6.6.1(@netlify/api@14.0.10)(@types/node@24.10.1)(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(yaml@2.8.1) 17 17 '@astrojs/rss': 18 18 specifier: ^4.0.13 19 19 version: 4.0.13 ··· 24 24 specifier: ^0.1.2 25 25 version: 0.1.2(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 26 26 astro: 27 - specifier: ^5.15.9 28 - version: 5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 27 + specifier: ^5.16.0 28 + version: 5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 29 29 astro-og-canvas: 30 30 specifier: ^0.7.2 31 - version: 0.7.2(astro@5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)) 31 + version: 0.7.2(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)) 32 32 canvaskit-wasm: 33 33 specifier: ^0.40.0 34 34 version: 0.40.0 ··· 1480 1480 peerDependencies: 1481 1481 astro: ^3.0.0 || ^4.0.0 || ^5.0.0 1482 1482 1483 - astro@5.15.9: 1484 - resolution: {integrity: sha512-XLDXxu0282cC/oYHswWZm3johGlRvk9rLRS7pWVWSne+HsZe9JgrpHI+vewAJSSNHBGd1aCyaQOElT5RNGe7IQ==} 1483 + astro@5.16.0: 1484 + resolution: {integrity: sha512-GaDRs2Mngpw3dr2vc085GnORh98NiXxwIjg/EoQQQl/icZt3Z7s0BRsYHDZ8swkZbOA6wZsqWJdrNirl+iKcDg==} 1485 1485 engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 1486 1486 hasBin: true 1487 1487 ··· 2763 2763 mdast-util-to-hast@13.2.0: 2764 2764 resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 2765 2765 2766 + mdast-util-to-hast@13.2.1: 2767 + resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==} 2768 + 2766 2769 mdast-util-to-markdown@2.1.2: 2767 2770 resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 2768 2771 ··· 3066 3069 oniguruma-parser@0.12.1: 3067 3070 resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} 3068 3071 3069 - oniguruma-to-es@4.3.3: 3070 - resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==} 3072 + oniguruma-to-es@4.3.4: 3073 + resolution: {integrity: sha512-3VhUGN3w2eYxnTzHn+ikMI+fp/96KoRSVK9/kMTcFqj1NRDh2IhQCKvYxDnWePKRXY/AqH+Fuiyb7VHSzBjHfA==} 3071 3074 3072 3075 optionator@0.9.4: 3073 3076 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} ··· 3189 3192 3190 3193 pend@1.2.0: 3191 3194 resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} 3195 + 3196 + piccolore@0.1.3: 3197 + resolution: {integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==} 3192 3198 3193 3199 picocolors@1.1.1: 3194 3200 resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} ··· 3790 3796 resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} 3791 3797 engines: {node: '>=0.10.0'} 3792 3798 3793 - unstorage@1.17.2: 3794 - resolution: {integrity: sha512-cKEsD6iBWJgOMJ6vW1ID/SYuqNf8oN4yqRk8OYqaVQ3nnkJXOT1PSpaMh2QfzLs78UN5kSNRD2c/mgjT8tX7+w==} 3799 + unstorage@1.17.3: 3800 + resolution: {integrity: sha512-i+JYyy0DoKmQ3FximTHbGadmIYb8JEpq7lxUjnjeB702bCPum0vzo6oy5Mfu0lpqISw7hCyMW2yj4nWC8bqJ3Q==} 3795 3801 peerDependencies: 3796 3802 '@azure/app-configuration': ^1.8.0 3797 3803 '@azure/cosmos': ^4.2.0 ··· 4105 4111 transitivePeerDependencies: 4106 4112 - supports-color 4107 4113 4108 - '@astrojs/mdx@4.3.11(astro@5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))': 4114 + '@astrojs/mdx@4.3.11(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))': 4109 4115 dependencies: 4110 4116 '@astrojs/markdown-remark': 6.3.9 4111 4117 '@mdx-js/mdx': 3.1.1 4112 4118 acorn: 8.15.0 4113 - astro: 5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 4119 + astro: 5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 4114 4120 es-module-lexer: 1.7.0 4115 4121 estree-util-visit: 2.0.0 4116 4122 hast-util-to-html: 9.0.5 ··· 4124 4130 transitivePeerDependencies: 4125 4131 - supports-color 4126 4132 4127 - '@astrojs/netlify@6.6.1(@netlify/api@14.0.10)(@types/node@24.10.1)(astro@5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(yaml@2.8.1)': 4133 + '@astrojs/netlify@6.6.1(@netlify/api@14.0.10)(@types/node@24.10.1)(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(yaml@2.8.1)': 4128 4134 dependencies: 4129 4135 '@astrojs/internal-helpers': 0.7.5 4130 4136 '@astrojs/underscore-redirects': 1.0.0 ··· 4132 4138 '@netlify/functions': 4.3.0(rollup@4.53.3) 4133 4139 '@netlify/vite-plugin': 2.7.14(@netlify/api@14.0.10)(rollup@4.53.3)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1)) 4134 4140 '@vercel/nft': 0.30.3(rollup@4.53.3) 4135 - astro: 5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 4141 + astro: 5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 4136 4142 esbuild: 0.25.12 4137 4143 tinyglobby: 0.2.15 4138 4144 vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1) ··· 5151 5157 '@playform/inline@0.1.2(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)': 5152 5158 dependencies: 5153 5159 '@playform/pipe': 0.1.3 5154 - astro: 5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 5160 + astro: 5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 5155 5161 beasties: 0.2.0 5156 5162 deepmerge-ts: 7.1.5 5157 5163 transitivePeerDependencies: ··· 5280 5286 dependencies: 5281 5287 '@shikijs/types': 3.15.0 5282 5288 '@shikijs/vscode-textmate': 10.0.2 5283 - oniguruma-to-es: 4.3.3 5289 + oniguruma-to-es: 4.3.4 5284 5290 5285 5291 '@shikijs/engine-oniguruma@3.15.0': 5286 5292 dependencies: ··· 5692 5698 transitivePeerDependencies: 5693 5699 - supports-color 5694 5700 5695 - astro-og-canvas@0.7.2(astro@5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)): 5701 + astro-og-canvas@0.7.2(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)): 5696 5702 dependencies: 5697 - astro: 5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 5703 + astro: 5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 5698 5704 canvaskit-wasm: 0.40.0 5699 5705 deterministic-object-hash: 2.0.2 5700 5706 entities: 7.0.0 5701 5707 5702 - astro@5.15.9(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1): 5708 + astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@24.10.1)(jiti@2.6.1)(rollup@4.53.3)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1): 5703 5709 dependencies: 5704 5710 '@astrojs/compiler': 2.13.0 5705 5711 '@astrojs/internal-helpers': 0.7.5 ··· 5740 5746 p-limit: 6.2.0 5741 5747 p-queue: 8.1.1 5742 5748 package-manager-detector: 1.5.0 5743 - picocolors: 1.1.1 5749 + piccolore: 0.1.3 5744 5750 picomatch: 4.0.3 5745 5751 prompts: 2.4.2 5746 5752 rehype: 13.0.2 5747 5753 semver: 7.7.3 5748 5754 shiki: 3.15.0 5749 5755 smol-toml: 1.5.2 5756 + svgo: 4.0.0 5750 5757 tinyexec: 1.0.2 5751 5758 tinyglobby: 0.2.15 5752 5759 tsconfck: 3.1.6(typescript@5.9.3) 5753 5760 ultrahtml: 1.6.0 5754 5761 unifont: 0.6.0 5755 5762 unist-util-visit: 5.0.0 5756 - unstorage: 1.17.2(@netlify/blobs@10.4.1) 5763 + unstorage: 1.17.3(@netlify/blobs@10.4.1) 5757 5764 vfile: 6.0.3 5758 5765 vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1) 5759 5766 vitefu: 1.1.1(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1)) ··· 6894 6901 sharp: 0.34.5 6895 6902 svgo: 4.0.0 6896 6903 ufo: 1.6.1 6897 - unstorage: 1.17.2(@netlify/blobs@10.4.1) 6904 + unstorage: 1.17.3(@netlify/blobs@10.4.1) 6898 6905 xss: 1.0.15 6899 6906 transitivePeerDependencies: 6900 6907 - '@azure/app-configuration' ··· 7341 7348 unist-util-visit: 5.0.0 7342 7349 vfile: 6.0.3 7343 7350 7351 + mdast-util-to-hast@13.2.1: 7352 + dependencies: 7353 + '@types/hast': 3.0.4 7354 + '@types/mdast': 4.0.4 7355 + '@ungap/structured-clone': 1.3.0 7356 + devlop: 1.1.0 7357 + micromark-util-sanitize-uri: 2.0.1 7358 + trim-lines: 3.0.1 7359 + unist-util-position: 5.0.0 7360 + unist-util-visit: 5.0.0 7361 + vfile: 6.0.3 7362 + 7344 7363 mdast-util-to-markdown@2.1.2: 7345 7364 dependencies: 7346 7365 '@types/mdast': 4.0.4 ··· 7799 7818 7800 7819 oniguruma-parser@0.12.1: {} 7801 7820 7802 - oniguruma-to-es@4.3.3: 7821 + oniguruma-to-es@4.3.4: 7803 7822 dependencies: 7804 7823 oniguruma-parser: 0.12.1 7805 7824 regex: 6.0.1 ··· 7927 7946 pathe@2.0.3: {} 7928 7947 7929 7948 pend@1.2.0: {} 7949 + 7950 + piccolore@0.1.3: {} 7930 7951 7931 7952 picocolors@1.1.1: {} 7932 7953 ··· 8199 8220 dependencies: 8200 8221 '@types/hast': 3.0.4 8201 8222 '@types/mdast': 4.0.4 8202 - mdast-util-to-hast: 13.2.0 8223 + mdast-util-to-hast: 13.2.1 8203 8224 unified: 11.0.5 8204 8225 vfile: 6.0.3 8205 8226 ··· 8706 8727 dependencies: 8707 8728 normalize-path: 2.1.1 8708 8729 8709 - unstorage@1.17.2(@netlify/blobs@10.4.1): 8730 + unstorage@1.17.3(@netlify/blobs@10.4.1): 8710 8731 dependencies: 8711 8732 anymatch: 3.1.3 8712 8733 chokidar: 4.0.3