fix(deps): update dependency @astrojs/starlight to ^0.23.0
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| @astrojs/starlight (source) | ^0.21.5 -> ^0.23.0 |
Release Notes
withastro/starlight (@astrojs/starlight)
v0.23.1
Patch Changes
v0.23.0
Minor Changes
-
#1846
2de67039Thanks @delucis! - Updates@astrojs/mdxto v3 and enables MDX optimization by default⚠️ Potentially breaking change: MDX optimization speeds up builds (Starlight’s docs are building ~40% faster for example), but restricts some advanced MDX features. See full details in the MDX optimization documentation.
Most Starlight users should be unaffected, but if you are using MDX files outside of Starlight pages with the
componentsprop, you may see issues. You can disable optimization by adding MDX manually to yourintegrationsarray inastro.config.mjs:import { defineConfig } from 'astro/config'; + import mdx from '@​astrojs/mdx'; import starlight from '@​astrojs/starlight'; // https://astro.build/config export default defineConfig({ integrations: [ starlight({ title: 'My docs', // ... }), + mdx(), ], }); -
#1735
1a9ab50dThanks @HiDeoo! - Adds custom styles for<details>and<summary>elements in Markdown content. -
#1846
2de67039Thanks @delucis! - ⚠️ BREAKING CHANGE: The minimum supported version of Astro is now 4.8.6Please update Astro and Starlight together:
npx @​astrojs/upgrade
v0.22.4
Patch Changes
-
#1871
03bb126bThanks @delucis! - Adds ablueSkyicon and social link option -
#1873
13f33b81Thanks @ekfuhrmann! - Adds 1 new icon:alpine -
#1857
32cdfaf0Thanks @tarikcoskun! - Updates Turkish UI translations -
#1736
cfa94a34Thanks @julien-deramond! - Prevent list items from overflowing Markdown content
v0.22.3
Patch Changes
-
#1838
9fe84754Thanks @delucis! - Adds extra information to the errors thrown by the<Steps>component to help locate misformatted code -
#1863
50be60bbThanks @torn4dom4n! - Update Vietnamese translation -
#1837
a33a1223Thanks @delucis! - Adds three new icons:comment,comment-alt,heart -
#1842
c7838636Thanks @delucis! - Moves thehrefused in the site title link to Starlight’s route data object. This makes it possible for overrides to change the title link while reusing Starlight’s default component implemenation. -
#1840
cb85563cThanks @MiahaCybersec! - Adds 1 new icon:hackerone
v0.22.2
Patch Changes
-
#1811
fe06aa13Thanks @HiDeoo! - Fixes a<Tabs>sync issue when inconsistently using theiconprop or not on<TabItem>components. -
#1826
52ea7381Thanks @dragomano! - Updates Russian UI translations
v0.22.1
Patch Changes
-
1c0fc384Thanks @HiDeoo! - Fixes an issue where thesiteTitleproperty would not be set when using the<StarlightPage />component.
v0.22.0
Minor Changes
-
#640
7dc503eaThanks @HiDeoo! - Adds support for syncing multiple sets of tabs on the same page. -
#1620
ca0678caThanks @emjio! - Adds support for translating the site title⚠️ Potentially breaking change: The shape of the
titlefield on Starlight’s internal config object has changed. This used to be a string, but is now an object.If you are relying on
config.title(for example in a custom<SiteTitle>or<Head>component), you will need to update your code. We recommend using the newsiteTitleprop available to component overrides:
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.