Skip to content

Commit 9146983

Browse files
Bump @astrojs/starlight from 0.36.0 to 0.37.0 in /website in the dependabot group (#281)
Bumps the dependabot group in /website with 1 update: [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight). Updates `@astrojs/starlight` from 0.36.0 to 0.37.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/withastro/starlight/releases"><code>@​astrojs/starlight</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​astrojs/starlight</code><a href="https://github.com/0"><code>@​0</code></a>.37.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3491">#3491</a> <a href="https://github.com/withastro/starlight/commit/28810f085faf017f3fedd1407e741bdf6c232848"><code>28810f0</code></a> Thanks <a href="https://github.com/JusticeMatthew"><code>@​JusticeMatthew</code></a>! - Changes text overflow styling in Markdown content</p> <p>⚠️ <strong>Potentially breaking change:</strong> This release switches the <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap"><code>overflow-wrap</code></a> CSS style for common elements to <code>break-word</code>. In most cases, there should be little visual impact, but this change can impact how layouts with implicit sizing (such as tables) look, improving legibility in how words wrap.</p> <p>If you want to preserve the previous styling, you can add the following <a href="https://starlight.astro.build/guides/css-and-tailwind/#custom-css-styles">custom CSS</a> to your site:</p> <pre lang="css"><code>p, h1, h2, h3, h4, h5, h6, code { overflow-wrap: anywhere; } </code></pre> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3351">#3351</a> <a href="https://github.com/withastro/starlight/commit/239698c53625f5411792e314994d20c20f9ede77"><code>239698c</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Ensures that Starlight CSS layer order is predictable in custom pages using the <code>&lt;StarlightPage&gt;</code> component.</p> <p>Previously, due to how <a href="https://docs.astro.build/en/guides/styling/#import-order">import order</a> works in Astro, the <code>&lt;StarlightPage&gt;</code> component had to be the first import in custom pages to set up <a href="https://starlight.astro.build/guides/css-and-tailwind/#cascade-layers">cascade layers</a> used internally by Starlight to manage the order of its styles.</p> <p>With this change, this restriction no longer applies and Starlight’s styles will be applied correctly regardless of the import order of the <code>&lt;StarlightPage&gt;</code> component.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3521">#3521</a> <a href="https://github.com/withastro/starlight/commit/ca7b771e5bd4da3fe500bbad562e69d5880690ea"><code>ca7b771</code></a> Thanks <a href="https://github.com/shubham-padia"><code>@​shubham-padia</code></a>! - Fixes an issue where a vertical scrollbar could be displayed on the Starlight <code>&lt;Tabs&gt;</code> component when zooming the page</p> <p>⚠️ <strong>Potentially breaking change:</strong> The <code>&lt;Tabs&gt;</code> component no longer uses <code>margin-bottom</code> and <code>border-bottom</code> to highlight the current tab. This is now done with a <code>box-shadow</code>. If you have custom styling for your tabs, you may need to update it.</p> <p>If you want to preserve the previous styling, you can add the following custom CSS to your site:</p> <pre lang="css"><code>starlight-tabs .tab { margin-bottom: -2px; } <p>starlight-tabs .tab &gt; [role='tab'] { border-bottom: 2px solid var(--sl-color-gray-5); box-shadow: none; }</p> <p>starlight-tabs .tab [role='tab'][aria-selected='true'] { border-color: var(--sl-color-text-accent); } </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3549">#3549</a> <a href="https://github.com/withastro/starlight/commit/1cf50ebb18c0232be581cf0aff0c192e4c421e55"><code>1cf50eb</code></a> Thanks <a href="https://github.com/jacobdalamb"><code>@​jacobdalamb</code></a>! - Updates the default sans-serif system font stack, dropping support for the <code>-apple-system</code> and <code>BlinkMacSystemFont</code> font names used in older browsers. These are no longer needed in <a href="https://browsersl.ist/#q=%3E+0.5%25%2C+not+dead%2C+Chrome+%3E%3D+105%2C+Edge+%3E%3D+105%2C+Firefox+%3E%3D+121%2C+Safari+%3E%3D+15.4%2C+iOS+%3E%3D+15.4%2C+not+op_mini+all">browsers officially supported by Starlight</a>.</p> <p>If you still need to support older browsers, you can add the following custom CSS to your site:</p> <pre lang="css"><code>:root { --sl-font-system: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md"><code>@​astrojs/starlight</code>'s changelog</a>.</em></p> <blockquote> <h2>0.37.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3491">#3491</a> <a href="https://github.com/withastro/starlight/commit/28810f085faf017f3fedd1407e741bdf6c232848"><code>28810f0</code></a> Thanks <a href="https://github.com/JusticeMatthew"><code>@​JusticeMatthew</code></a>! - Changes text overflow styling in Markdown content</p> <p>⚠️ <strong>Potentially breaking change:</strong> This release switches the <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap"><code>overflow-wrap</code></a> CSS style for common elements to <code>break-word</code>. In most cases, there should be little visual impact, but this change can impact how layouts with implicit sizing (such as tables) look, improving legibility in how words wrap.</p> <p>If you want to preserve the previous styling, you can add the following <a href="https://starlight.astro.build/guides/css-and-tailwind/#custom-css-styles">custom CSS</a> to your site:</p> <pre lang="css"><code>p, h1, h2, h3, h4, h5, h6, code { overflow-wrap: anywhere; } </code></pre> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3351">#3351</a> <a href="https://github.com/withastro/starlight/commit/239698c53625f5411792e314994d20c20f9ede77"><code>239698c</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Ensures that Starlight CSS layer order is predictable in custom pages using the <code>&lt;StarlightPage&gt;</code> component.</p> <p>Previously, due to how <a href="https://docs.astro.build/en/guides/styling/#import-order">import order</a> works in Astro, the <code>&lt;StarlightPage&gt;</code> component had to be the first import in custom pages to set up <a href="https://starlight.astro.build/guides/css-and-tailwind/#cascade-layers">cascade layers</a> used internally by Starlight to manage the order of its styles.</p> <p>With this change, this restriction no longer applies and Starlight’s styles will be applied correctly regardless of the import order of the <code>&lt;StarlightPage&gt;</code> component.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3521">#3521</a> <a href="https://github.com/withastro/starlight/commit/ca7b771e5bd4da3fe500bbad562e69d5880690ea"><code>ca7b771</code></a> Thanks <a href="https://github.com/shubham-padia"><code>@​shubham-padia</code></a>! - Fixes an issue where a vertical scrollbar could be displayed on the Starlight <code>&lt;Tabs&gt;</code> component when zooming the page</p> <p>⚠️ <strong>Potentially breaking change:</strong> The <code>&lt;Tabs&gt;</code> component no longer uses <code>margin-bottom</code> and <code>border-bottom</code> to highlight the current tab. This is now done with a <code>box-shadow</code>. If you have custom styling for your tabs, you may need to update it.</p> <p>If you want to preserve the previous styling, you can add the following custom CSS to your site:</p> <pre lang="css"><code>starlight-tabs .tab { margin-bottom: -2px; } <p>starlight-tabs .tab &gt; [role='tab'] { border-bottom: 2px solid var(--sl-color-gray-5); box-shadow: none; }</p> <p>starlight-tabs .tab [role='tab'][aria-selected='true'] { border-color: var(--sl-color-text-accent); } </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/starlight/commit/4c0cd60e0e9b9180dd2f3e59ac3a191daef7f291"><code>4c0cd60</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3587">#3587</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/f61f99dc09c59d26761ffebc611969e20b866191"><code>f61f99d</code></a> Relax remark/rehype plugins usage (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3332">#3332</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/239698c53625f5411792e314994d20c20f9ede77"><code>239698c</code></a> Ensure CSS layer order in custom pages (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3351">#3351</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/28810f085faf017f3fedd1407e741bdf6c232848"><code>28810f0</code></a> Fix: Update overflow property in reset.css (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3491">#3491</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/1cf50ebb18c0232be581cf0aff0c192e4c421e55"><code>1cf50eb</code></a> fix: Update fonts (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3549">#3549</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/ca7b771e5bd4da3fe500bbad562e69d5880690ea"><code>ca7b771</code></a> Tabs: Remove margin-bottom being used to hide border. (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3521">#3521</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/37d0af0e2ef96d95ccf6a5b5933a8a3df0104fe1"><code>37d0af0</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3516">#3516</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/547dc30558b388bfc0505ab0fd8269cecaed462a"><code>547dc30</code></a> fix: customCSS catch and throw error (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3555">#3555</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/b5c972aaca937869ac23072d2ae240471f4e3130"><code>b5c972a</code></a> [i18nIgnore] fix: typos (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3560">#3560</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/bf1a9e6fd7311c30b7d1adbecfe9ca32e24207d9"><code>bf1a9e6</code></a> [ci] format</li> <li>Additional commits viewable in <a href="https://github.com/withastro/starlight/commits/@astrojs/[email protected]/packages/starlight">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 <code>@​astrojs/starlight</code> since your current version.</p> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@astrojs/starlight&package-manager=npm_and_yarn&previous-version=0.36.0&new-version=0.37.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 <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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a66577b commit 9146983

File tree

2 files changed

+13
-21
lines changed

2 files changed

+13
-21
lines changed

website/package-lock.json

Lines changed: 12 additions & 20 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
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@astrojs/check": "^0.9.3",
14-
"@astrojs/starlight": "^0.36.0",
14+
"@astrojs/starlight": "^0.37.0",
1515
"astro": "^5.16.0",
1616
"rehype-mathjax": "^7.1.0",
1717
"remark-math": "^6.0.0",

0 commit comments

Comments
 (0)