Skip to content

Commit c9c9d37

Browse files
Bump astro from 5.14.4 to 5.15.1 in /website in the dependabot group (#431)
Bumps the dependabot group in /website with 1 update: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro). Updates `astro` from 5.14.4 to 5.15.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.15.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/14612">#14612</a> <a href="https://github.com/withastro/astro/commit/18552c733c55792a4bf8374d66134742d666e902"><code>18552c7</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes a regression introduced in Astro v5.14.7 that caused <code>?url</code> imports to not work correctly. This release reverts <a href="https://redirect.github.com/withastro/astro/pull/14142">#14142</a>.</li> </ul> <h2>astro@5.15.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14543">#14543</a> <a href="https://github.com/withastro/astro/commit/9b3241d8a903ce0092905205af883cef5498d0b2"><code>9b3241d</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds two new adapter configuration options <code>assetQueryParams</code> and <code>internalFetchHeaders</code> to the Adapter API.</p> <p>Official and community-built adapters can now use <code>client.assetQueryParams</code> to specify query parameters that should be appended to asset URLs (CSS, JavaScript, images, fonts, etc.). The query parameters are automatically appended to all generated asset URLs during the build process.</p> <p>Adapters can also use <code>client.internalFetchHeaders</code> to specify headers that should be included in Astro's internal fetch calls (Actions, View Transitions, Server Islands, Prefetch).</p> <p>This enables features like Netlify's skew protection, which requires the deploy ID to be sent with both internal requests and asset URLs to ensure client and server versions match during deployments.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14489">#14489</a> <a href="https://github.com/withastro/astro/commit/add4277b6d78080a9da32554f495d870978656af"><code>add4277</code></a> Thanks <a href="https://github.com/dev-shetty"><code>@​dev-shetty</code></a>! - Adds a new Copy to Clipboard button to the error overlay stack trace.</p> <p>When an error occurs in dev mode, you can now copy the stack trace with a single click to more easily share it in a bug report, a support thread, or with your favorite LLM.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14564">#14564</a> <a href="https://github.com/withastro/astro/commit/5e7cebbfaa935dab462de6efb0bab507644e10de"><code>5e7cebb</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Updates <code>astro add cloudflare</code> to scaffold more configuration files</p> <p>Running <code>astro add cloudflare</code> will now emit <code>wrangler.jsonc</code> and <code>public/.assetsignore</code>, allowing your Astro project to work out of the box as a worker.</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14591">#14591</a> <a href="https://github.com/withastro/astro/commit/3e887ec523b8e4ec4d01978f0fedf246dfdfbc81"><code>3e887ec</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds TypeScript support for the <code>components</code> prop on MDX <code>Content</code> component when using <code>await render()</code>. Developers now get proper IntelliSense and type checking when passing custom components to override default MDX element rendering.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14598">#14598</a> <a href="https://github.com/withastro/astro/commit/7b45c65c62e37d4225fb14ea378e2301de31cbea"><code>7b45c65</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Reduces terminal text styling dependency size by switching from <code>kleur</code> to <code>picocolors</code></p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13826">#13826</a> <a href="https://github.com/withastro/astro/commit/807948204d3838031e8952a5b3eadb26f5612b8f"><code>8079482</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Adds the option to specify in the <code>preload</code> directive which weights, styles, or subsets to preload for a given font family when using the experimental Fonts API:</p> <pre lang="astro"><code>--- import { Font } from 'astro:assets'; --- <p>&lt;Font cssVariable=&quot;--font-roboto&quot; preload={[{ subset: 'latin', style: 'normal' }, { weight: '400' }]} /&gt; </code></pre></p> <p>Variable weight font files will be preloaded if any weight within its range is requested. For example, a font file for font weight <code>100 900</code> will be included when <code>400</code> is specified in a <code>preload</code> object.</p> </li> </ul> <h2>astro@5.14.8</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/14590">#14590</a> <a href="https://github.com/withastro/astro/commit/577d051637d1b5d0df3100bed4c1d815eae7291c"><code>577d051</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Fixes image path resolution in content layer collections to support bare filenames. The <code>image()</code> helper now normalizes bare filenames like <code>&quot;cover.jpg&quot;</code> to relative paths <code>&quot;./cover.jpg&quot;</code> for consistent resolution behavior between markdown frontmatter and JSON content collections.</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.15.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/14612">#14612</a> <a href="https://github.com/withastro/astro/commit/18552c733c55792a4bf8374d66134742d666e902"><code>18552c7</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes a regression introduced in Astro v5.14.7 that caused <code>?url</code> imports to not work correctly. This release reverts <a href="https://redirect.github.com/withastro/astro/pull/14142">#14142</a>.</li> </ul> <h2>5.15.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14543">#14543</a> <a href="https://github.com/withastro/astro/commit/9b3241d8a903ce0092905205af883cef5498d0b2"><code>9b3241d</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds two new adapter configuration options <code>assetQueryParams</code> and <code>internalFetchHeaders</code> to the Adapter API.</p> <p>Official and community-built adapters can now use <code>client.assetQueryParams</code> to specify query parameters that should be appended to asset URLs (CSS, JavaScript, images, fonts, etc.). The query parameters are automatically appended to all generated asset URLs during the build process.</p> <p>Adapters can also use <code>client.internalFetchHeaders</code> to specify headers that should be included in Astro's internal fetch calls (Actions, View Transitions, Server Islands, Prefetch).</p> <p>This enables features like Netlify's skew protection, which requires the deploy ID to be sent with both internal requests and asset URLs to ensure client and server versions match during deployments.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14489">#14489</a> <a href="https://github.com/withastro/astro/commit/add4277b6d78080a9da32554f495d870978656af"><code>add4277</code></a> Thanks <a href="https://github.com/dev-shetty"><code>@​dev-shetty</code></a>! - Adds a new Copy to Clipboard button to the error overlay stack trace.</p> <p>When an error occurs in dev mode, you can now copy the stack trace with a single click to more easily share it in a bug report, a support thread, or with your favorite LLM.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14564">#14564</a> <a href="https://github.com/withastro/astro/commit/5e7cebbfaa935dab462de6efb0bab507644e10de"><code>5e7cebb</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Updates <code>astro add cloudflare</code> to scaffold more configuration files</p> <p>Running <code>astro add cloudflare</code> will now emit <code>wrangler.jsonc</code> and <code>public/.assetsignore</code>, allowing your Astro project to work out of the box as a worker.</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14591">#14591</a> <a href="https://github.com/withastro/astro/commit/3e887ec523b8e4ec4d01978f0fedf246dfdfbc81"><code>3e887ec</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds TypeScript support for the <code>components</code> prop on MDX <code>Content</code> component when using <code>await render()</code>. Developers now get proper IntelliSense and type checking when passing custom components to override default MDX element rendering.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/14598">#14598</a> <a href="https://github.com/withastro/astro/commit/7b45c65c62e37d4225fb14ea378e2301de31cbea"><code>7b45c65</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Reduces terminal text styling dependency size by switching from <code>kleur</code> to <code>picocolors</code></p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13826">#13826</a> <a href="https://github.com/withastro/astro/commit/807948204d3838031e8952a5b3eadb26f5612b8f"><code>8079482</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Adds the option to specify in the <code>preload</code> directive which weights, styles, or subsets to preload for a given font family when using the experimental Fonts API:</p> <pre lang="astro"><code>--- import { Font } from 'astro:assets'; --- <p>&lt;Font cssVariable=&quot;--font-roboto&quot; preload={[{ subset: 'latin', style: 'normal' }, { weight: '400' }]} /&gt; </code></pre></p> <p>Variable weight font files will be preloaded if any weight within its range is requested. For example, a font file for font weight <code>100 900</code> will be included when <code>400</code> is specified in a <code>preload</code> object.</p> </li> </ul> <h2>5.14.8</h2> <h3>Patch Changes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/8ebc0d79756a73741ac01c4a09a864b60bb7207f"><code>8ebc0d7</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14613">#14613</a>)</li> <li><a href="https://github.com/withastro/astro/commit/18552c733c55792a4bf8374d66134742d666e902"><code>18552c7</code></a> Revert &quot;fix(build): Prevent duplicate CSS for hydrated client components&quot; (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/1">#1</a>...</li> <li><a href="https://github.com/withastro/astro/commit/54803d7e4f16029810b43694b37e2e6a25b5ce59"><code>54803d7</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14603">#14603</a>)</li> <li><a href="https://github.com/withastro/astro/commit/cba8cc19c5af1286449987d006749fb26f224901"><code>cba8cc1</code></a> refactor(cli): docs (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14602">#14602</a>)</li> <li><a href="https://github.com/withastro/astro/commit/bed419903cd8c8058805ffee8e711898c8a5378a"><code>bed4199</code></a> refactor(cli): version (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14601">#14601</a>)</li> <li><a href="https://github.com/withastro/astro/commit/bc6e6ccb2123ca23e860c5c8e2e5c60e4bef9cee"><code>bc6e6cc</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/9b3241d8a903ce0092905205af883cef5498d0b2"><code>9b3241d</code></a> Allow adapters to customize headers for fetch requests (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14543">#14543</a>)</li> <li><a href="https://github.com/withastro/astro/commit/e735d85158fcc773325afcdbeda4ad7ef3397a12"><code>e735d85</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/807948204d3838031e8952a5b3eadb26f5612b8f"><code>8079482</code></a> feat(fonts): granular preload (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13826">#13826</a>)</li> <li><a href="https://github.com/withastro/astro/commit/5e7cebbfaa935dab462de6efb0bab507644e10de"><code>5e7cebb</code></a> feat(cli): scaffold wrangler.jsonc in astro add (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14564">#14564</a>)</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.15.1/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 /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astro&package-manager=npm_and_yarn&previous-version=5.14.4&new-version=5.15.1)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3cf3008 commit c9c9d37

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

website/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"@astrojs/check": "^0.9.3",
1414
"@astrojs/starlight": "^0.36.0",
15-
"astro": "^5.14.4",
15+
"astro": "^5.15.1",
1616
"rehype-mathjax": "^7.1.0",
1717
"remark-math": "^6.0.0",
1818
"sharp": "^0.34.1",

0 commit comments

Comments
 (0)