Skip to content

Commit be98449

Browse files
chore(deps): bump @astrojs/starlight from 0.36.2 to 0.37.4 (#16)
Bumps [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) from 0.36.2 to 0.37.4. <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.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3534">#3534</a> <a href="https://github.com/withastro/starlight/commit/703fab085b99303c0c01325c9bb869ea7e1418c4"><code>703fab0</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Fixes support for running builds when <code>npx</code> is unavailable.</p> <p>Previously, Starlight would spawn a process to run the Pagefind search indexing binary using <code>npx</code>. On platforms where <code>npx</code> isn’t available, this could cause issues. Starlight now runs Pagefind using its Node.js API to avoid a separate process. As a side effect, you may notice that logging during builds is now less verbose.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3656">#3656</a> <a href="https://github.com/withastro/starlight/commit/a0e636838092d30cb6b8f80e5535ad842e52d759"><code>a0e6368</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Fixes several edge cases in highlighting the current page heading in Starlight’s table of contents</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3663">#3663</a> <a href="https://github.com/withastro/starlight/commit/00cbf001fee4fd59f351c7a6c0f8c353c7c41f13"><code>00cbf00</code></a> Thanks <a href="https://github.com/lines-of-codes"><code>@​lines-of-codes</code></a>! - Adds Thai language support</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3658">#3658</a> <a href="https://github.com/withastro/starlight/commit/ac793290f0dbd21f9b9a5d6f60aa315043815227"><code>ac79329</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Avoids adding redundant <code>aria-current=&quot;false&quot;</code> attributes to sidebar entries</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3382">#3382</a> <a href="https://github.com/withastro/starlight/commit/db295c2a3d75aad71a41702f33001195d89de5d2"><code>db295c2</code></a> Thanks <a href="https://github.com/trueberryless"><code>@​trueberryless</code></a>! - Fixes an issue where the mobile table of contents is unable to find the first heading when a page has a tall banner.</p> </li> </ul> <h2><code>@​astrojs/starlight</code><a href="https://github.com/0"><code>@​0</code></a>.37.3</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/starlight/pull/3648">#3648</a> <a href="https://github.com/withastro/starlight/commit/292666cdcb9d81da2ee32ab5a3e83b2c44cea5cd"><code>292666c</code></a> Thanks <a href="https://github.com/maxchang3"><code>@​maxchang3</code></a>! - Prevents unwanted font size adjustments on iOS after orientation changes.</li> </ul> <h2><code>@​astrojs/starlight</code><a href="https://github.com/0"><code>@​0</code></a>.37.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/starlight/pull/3647">#3647</a> <a href="https://github.com/withastro/starlight/commit/9f4efc3c59ee41038b7c0550230a10bb35ad0e50"><code>9f4efc3</code></a> Thanks <a href="https://github.com/gerstenbergit"><code>@​gerstenbergit</code></a>! - Adds Greek language support</li> </ul> <h2><code>@​astrojs/starlight</code><a href="https://github.com/0"><code>@​0</code></a>.37.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/starlight/pull/3603">#3603</a> <a href="https://github.com/withastro/starlight/commit/30f6e7fa83ca0a248b1b59d616f55a6f933334a2"><code>30f6e7f</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Fixes support for providing an absolute URL to Starlight’s <code>favicon</code> configuration option</li> </ul> <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> </ul> </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.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3534">#3534</a> <a href="https://github.com/withastro/starlight/commit/703fab085b99303c0c01325c9bb869ea7e1418c4"><code>703fab0</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Fixes support for running builds when <code>npx</code> is unavailable.</p> <p>Previously, Starlight would spawn a process to run the Pagefind search indexing binary using <code>npx</code>. On platforms where <code>npx</code> isn’t available, this could cause issues. Starlight now runs Pagefind using its Node.js API to avoid a separate process. As a side effect, you may notice that logging during builds is now less verbose.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3656">#3656</a> <a href="https://github.com/withastro/starlight/commit/a0e636838092d30cb6b8f80e5535ad842e52d759"><code>a0e6368</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Fixes several edge cases in highlighting the current page heading in Starlight’s table of contents</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3663">#3663</a> <a href="https://github.com/withastro/starlight/commit/00cbf001fee4fd59f351c7a6c0f8c353c7c41f13"><code>00cbf00</code></a> Thanks <a href="https://github.com/lines-of-codes"><code>@​lines-of-codes</code></a>! - Adds Thai language support</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3658">#3658</a> <a href="https://github.com/withastro/starlight/commit/ac793290f0dbd21f9b9a5d6f60aa315043815227"><code>ac79329</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Avoids adding redundant <code>aria-current=&quot;false&quot;</code> attributes to sidebar entries</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/3382">#3382</a> <a href="https://github.com/withastro/starlight/commit/db295c2a3d75aad71a41702f33001195d89de5d2"><code>db295c2</code></a> Thanks <a href="https://github.com/trueberryless"><code>@​trueberryless</code></a>! - Fixes an issue where the mobile table of contents is unable to find the first heading when a page has a tall banner.</p> </li> </ul> <h2>0.37.3</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/starlight/pull/3648">#3648</a> <a href="https://github.com/withastro/starlight/commit/292666cdcb9d81da2ee32ab5a3e83b2c44cea5cd"><code>292666c</code></a> Thanks <a href="https://github.com/maxchang3"><code>@​maxchang3</code></a>! - Prevents unwanted font size adjustments on iOS after orientation changes.</li> </ul> <h2>0.37.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/starlight/pull/3647">#3647</a> <a href="https://github.com/withastro/starlight/commit/9f4efc3c59ee41038b7c0550230a10bb35ad0e50"><code>9f4efc3</code></a> Thanks <a href="https://github.com/gerstenbergit"><code>@​gerstenbergit</code></a>! - Adds Greek language support</li> </ul> <h2>0.37.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/starlight/pull/3603">#3603</a> <a href="https://github.com/withastro/starlight/commit/30f6e7fa83ca0a248b1b59d616f55a6f933334a2"><code>30f6e7f</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Fixes support for providing an absolute URL to Starlight’s <code>favicon</code> configuration option</li> </ul> <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, </code></pre> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/starlight/commit/879d6b347ffca43e98afae30417582c3921a0c8f"><code>879d6b3</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3659">#3659</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/db295c2a3d75aad71a41702f33001195d89de5d2"><code>db295c2</code></a> fix: mobile toc issue with custom banners (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3382">#3382</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/a0e636838092d30cb6b8f80e5535ad842e52d759"><code>a0e6368</code></a> Fix table of contents intersection observer (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3656">#3656</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/703fab085b99303c0c01325c9bb869ea7e1418c4"><code>703fab0</code></a> Pagefind CLI → Pagefind API (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3534">#3534</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/42ff0aa9600ec7af61df8decc25ceb20d7db9af5"><code>42ff0aa</code></a> [ci] format</li> <li><a href="https://github.com/withastro/starlight/commit/00cbf001fee4fd59f351c7a6c0f8c353c7c41f13"><code>00cbf00</code></a> i18n(th): Add Thai translations to Starlight UI (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3663">#3663</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/ac793290f0dbd21f9b9a5d6f60aa315043815227"><code>ac79329</code></a> Avoid adding redundant <code>aria-current=&quot;false&quot;</code> to sidebar entries (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3658">#3658</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/bd54da3282d385a2b3da824327e48f17214f66ab"><code>bd54da3</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3654">#3654</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/292666cdcb9d81da2ee32ab5a3e83b2c44cea5cd"><code>292666c</code></a> Fix: Prevent font-size adjustments on iOS after orientation change (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3648">#3648</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/5387d33b9644900afd61651b8287503698cdb065"><code>5387d33</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/3650">#3650</a>)</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> <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.2&new-version=0.37.4)](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>
1 parent a1da707 commit be98449

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"astro": "astro"
1111
},
1212
"dependencies": {
13-
"@astrojs/starlight": "^0.36.2",
13+
"@astrojs/starlight": "^0.37.4",
1414
"astro": "^5.16.15",
1515
"rehype-mermaid": "^3.0.0",
1616
"sharp": "^0.34.5"

0 commit comments

Comments
 (0)