withastro/starlight (@astrojs/starlight)
### [`v0.25.1`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0251)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.25.0...@astrojs/starlight@0.25.1)
##### Patch Changes
- [#2122](https://togithub.com/withastro/starlight/pull/2122) [`359a642`](https://togithub.com/withastro/starlight/commit/359a64219288795936f18fd50fb5f195c412a748) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes an i18n configuration issue for multilingual sites when using Astro’s `i18n` config with `prefixDefaultLocale` set to `false`.
- [#2107](https://togithub.com/withastro/starlight/pull/2107) [`61e223b`](https://togithub.com/withastro/starlight/commit/61e223b153cb10958f3fbaa77acf6ac07d982944) Thanks [@sanabel-al-firdaws](https://togithub.com/sanabel-al-firdaws)! - Updates Arabic UI translations
- [#2105](https://togithub.com/withastro/starlight/pull/2105) [`81f8a2c`](https://togithub.com/withastro/starlight/commit/81f8a2c9580ec07dd17e2f596b9b1b50fae8237a) Thanks [@delucis](https://togithub.com/delucis)! - Fixes an edge case in custom pagination link processing
Custom link values for `prev`/`next` in page frontmatter are now always used as authored.
Previously this was not the case in some edge cases such as for the first and final pages in the sidebar.
- [#2119](https://togithub.com/withastro/starlight/pull/2119) [`464685a`](https://togithub.com/withastro/starlight/commit/464685a3ce33e7ccc8d1d7365935732c87ba95e9) Thanks [@evadecker](https://togithub.com/evadecker)! - Improves styling of ``, `
`, and `` within asides
### [`v0.25.0`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0250)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.24.5...@astrojs/starlight@0.25.0)
##### Minor Changes
- [#2025](https://togithub.com/withastro/starlight/pull/2025) [`47f32c1`](https://togithub.com/withastro/starlight/commit/47f32c196c5d840a6a45799ddf123d17c77274b0) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Removes the `/` search shortcut for [accessibility reasons](https://www.w3.org/WAI/WCAG21/Understanding/character-key-shortcuts.html).
⚠️ **Potentially breaking change:** The `search.shortcutLabel` UI string has been removed. If you were using this string in your custom UI, you will need to update your code.
- [#2064](https://togithub.com/withastro/starlight/pull/2064) [`c5b47cb`](https://togithub.com/withastro/starlight/commit/c5b47cbe1242f0b29b9212db72fe26590ab57d88) Thanks [@SnowDingo](https://togithub.com/SnowDingo)! - Improves styling of Markdown tables to work better in different contexts, including against different background colours like when used in asides.
- [#2031](https://togithub.com/withastro/starlight/pull/2031) [`2bab648`](https://togithub.com/withastro/starlight/commit/2bab648be9ddc6bfe05562650b773f5158a9ed42) Thanks [@delucis](https://togithub.com/delucis)! - Makes sidebar entry parsing stricter in Starlight config
**⚠️ Potentially breaking change:** Previously Starlight would accept a sidebar entry that matched one of its expected shapes, even if it included additional properties. For example, including both `link` and `items` was considered valid, with `items` being ignored. Now, it is an error to include more than one of `link`, `items`, or `autogenerate` in a sidebar entry.
If you see errors after updating, look for sidebar entries in the Starlight configuration in `astro.config.mjs` that include too many keys and remove the one that was previously ignored.
- [#1874](https://togithub.com/withastro/starlight/pull/1874) [`eeba06e`](https://togithub.com/withastro/starlight/commit/eeba06ea7df962e8f0520e145d28b8c17cd32c18) Thanks [@lorenzolewis](https://togithub.com/lorenzolewis)! - Adds a new syntax for specifying sidebar link items for internal links
You can now specify an internal page using only its slug, either as a string, or as an object with a `slug` property:
```js
starlight({
title: 'Docs with easier sidebars',
sidebar: ['getting-started', { slug: 'guides/installation' }],
});
```
Starlight will use the linked page’s frontmatter to configure the sidebar link.
##### Patch Changes
- [#2081](https://togithub.com/withastro/starlight/pull/2081) [`f0181d2`](https://togithub.com/withastro/starlight/commit/f0181d2689248a46ff3eb6fc604bfcd95d4cb1aa) Thanks [@andrii-bodnar](https://togithub.com/andrii-bodnar)! - Updates the Ukrainian UI translations
### [`v0.24.5`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0245)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.24.4...@astrojs/starlight@0.24.5)
##### Patch Changes
- [#2062](https://togithub.com/withastro/starlight/pull/2062) [`5ac0ac6`](https://togithub.com/withastro/starlight/commit/5ac0ac6614e3c45d810a1594a2009d3febfa2793) Thanks [@evadecker](https://togithub.com/evadecker)! - Increase theme and language select inline padding
- [#2056](https://togithub.com/withastro/starlight/pull/2056) [`87e9ad0`](https://togithub.com/withastro/starlight/commit/87e9ad029c9730fca8df66e35828b57cd0872a61) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes an issue preventing remark plugins injected by Starlight plugins to handle Markdown text and leaf directives.
- [#2063](https://togithub.com/withastro/starlight/pull/2063) [`3ee1a94`](https://togithub.com/withastro/starlight/commit/3ee1a9404db25f5776a3c1ecd248614f64db46ae) Thanks [@delucis](https://togithub.com/delucis)! - Translate `fileTree.directory` and `aside.*` UI string into Norwegian (Bokmål).
- [#2054](https://togithub.com/withastro/starlight/pull/2054) [`dbfd3ee`](https://togithub.com/withastro/starlight/commit/dbfd3eeccacb5f5b77d75213dac3b30dc0be6deb) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes an issue when using the `` component in a custom page with a user-defined `srcDir` configuration.
### [`v0.24.4`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0244)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.24.3...@astrojs/starlight@0.24.4)
##### Patch Changes
- [#2038](https://togithub.com/withastro/starlight/pull/2038) [`87f3f92`](https://togithub.com/withastro/starlight/commit/87f3f925be6f9897b71b09a3041ec6d54be483b2) Thanks [@dragomano](https://togithub.com/dragomano)! - Updates Russian UI translations
- [#2043](https://togithub.com/withastro/starlight/pull/2043) [`53f4cd4`](https://togithub.com/withastro/starlight/commit/53f4cd443cf31b6135ff16eb74b5f26ee93ee2d5) Thanks [@playmr365](https://togithub.com/playmr365)! - Updates Czech UI translations
- [#2041](https://togithub.com/withastro/starlight/pull/2041) [`8af5a60`](https://togithub.com/withastro/starlight/commit/8af5a60ab14f4dae7f5a5e4ee535ae927273368b) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes `` numbering bug caused by Chrome v126 CSS counter rewrite
### [`v0.24.3`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0243)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.24.2...@astrojs/starlight@0.24.3)
##### Patch Changes
- [#2028](https://togithub.com/withastro/starlight/pull/2028) [`af81ad3`](https://togithub.com/withastro/starlight/commit/af81ad38fd26c375c0372718fd3e152b7f1a0fa6) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes a search dialog height issue in Safari.
- [#2022](https://togithub.com/withastro/starlight/pull/2022) [`80f82b1`](https://togithub.com/withastro/starlight/commit/80f82b15afae1366676e0c25e674210a19606df5) Thanks [@playmr365](https://togithub.com/playmr365)! - Updates Czech UI translations
### [`v0.24.2`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0242)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.24.1...@astrojs/starlight@0.24.2)
##### Patch Changes
- [#2008](https://togithub.com/withastro/starlight/pull/2008) [`40359c7`](https://togithub.com/withastro/starlight/commit/40359c7b73d9c7d60f0b44a870dbc93ba941228f) Thanks [@vnepogodin](https://togithub.com/vnepogodin)! - Add Slovak language UI translation.
- [#2004](https://togithub.com/withastro/starlight/pull/2004) [`0aa2f06`](https://togithub.com/withastro/starlight/commit/0aa2f06d3a35a3c5182b4d461c8f3489ac145301) Thanks [@liruifengv](https://togithub.com/liruifengv)! - Removes an outdated export in `package.json`
- [#2007](https://togithub.com/withastro/starlight/pull/2007) [`44ca490`](https://togithub.com/withastro/starlight/commit/44ca490f36ecd6789d0865dd2506e5ea03dfa0fb) Thanks [@delucis](https://togithub.com/delucis)! - Updates internal dependencies
- [#1993](https://togithub.com/withastro/starlight/pull/1993) [`60165b2`](https://togithub.com/withastro/starlight/commit/60165b20c9d11a08c4c4793615778e045b41b7de) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes an i18n configuration issue when using a single root locale.
### [`v0.24.1`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0241)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.24.0...@astrojs/starlight@0.24.1)
##### Patch Changes
- [#1978](https://togithub.com/withastro/starlight/pull/1978) [`a5ab8cd6`](https://togithub.com/withastro/starlight/commit/a5ab8cd6a0095cb48b65b9784054714f87bd7e4d) Thanks [@kylewlacy](https://togithub.com/kylewlacy)! - Add new social icon for Zulip
- [#1962](https://togithub.com/withastro/starlight/pull/1962) [`2ef19a94`](https://togithub.com/withastro/starlight/commit/2ef19a947c54c7d2c085bf8820c862737e2ab08b) Thanks [@torn4dom4n](https://togithub.com/torn4dom4n)! - Updates Vietnamese UI translations
- [#1976](https://togithub.com/withastro/starlight/pull/1976) [`5a61f73c`](https://togithub.com/withastro/starlight/commit/5a61f73c198a33b27342c9b0371dd5fd22da2190) Thanks [@jsparkdev](https://togithub.com/jsparkdev)! - Updates Korean UI translations
- [#1987](https://togithub.com/withastro/starlight/pull/1987) [`0b8a8439`](https://togithub.com/withastro/starlight/commit/0b8a843936bd8506ac228608b07c54a76a7add19) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes issues with the locale text direction detection mechanism in some environments like WebContainers or Bun.
### [`v0.24.0`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0240)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.23.4...@astrojs/starlight@0.24.0)
##### Minor Changes
- [#1841](https://togithub.com/withastro/starlight/pull/1841) [`ee0cd38a`](https://togithub.com/withastro/starlight/commit/ee0cd38a1fae31717fe820e779baeabe693cd67a) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Adds support for `Astro.currentLocale` and Astro’s i18n routing.
⚠️ **Potentially breaking change:** Starlight now configures Astro’s `i18n` option for you based on its `locales` config.
If you are currently using Astro’s `i18n` option as well as Starlight’s `locales` option, you will need to remove one of these.
In general we recommend using Starlight’s `locales`, but if you have a more advanced configuration you may choose to keep Astro’s `i18n` config instead.
- [#1958](https://togithub.com/withastro/starlight/pull/1958) [`081d1a96`](https://togithub.com/withastro/starlight/commit/081d1a969462633e41ca95a18a1ec121cb4af5d2) Thanks [@delucis](https://togithub.com/delucis)! - Allows users to opt into displaying a “Built with Starlight” link in the site footer
- [#1530](https://togithub.com/withastro/starlight/pull/1530) [`dd64836a`](https://togithub.com/withastro/starlight/commit/dd64836af45f33df4a99ab864eabb91fc9b8e204) Thanks [@kevinzunigacuellar](https://togithub.com/kevinzunigacuellar)! - Adds a new `` component
### [`v0.23.4`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0234)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.23.3...@astrojs/starlight@0.23.4)
##### Patch Changes
- [#1955](https://togithub.com/withastro/starlight/pull/1955) [`15ef1f4b`](https://togithub.com/withastro/starlight/commit/15ef1f4bdbf7174134121f4bbdf82ca3903c802a) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Reverts a [change](https://togithub.com/withastro/starlight/pull/1948) to prevent a numbering issue with the `` component in future versions of Chrome.
### [`v0.23.3`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0233)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.23.2...@astrojs/starlight@0.23.3)
##### Patch Changes
- [#1948](https://togithub.com/withastro/starlight/pull/1948) [`68c0c077`](https://togithub.com/withastro/starlight/commit/68c0c077a9ca5ec2a8206e99b70236043a74c3b8) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes a `` component numbering issue with the next Chrome stable version when a step contains a nested list.
- [#1909](https://togithub.com/withastro/starlight/pull/1909) [`c98c7088`](https://togithub.com/withastro/starlight/commit/c98c7088ee3ecd43522dac0916fd41c417693f65) Thanks [@joshka](https://togithub.com/joshka)! - Adds Discourse to social icons
### [`v0.23.2`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0232)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.23.1...@astrojs/starlight@0.23.2)
##### Patch Changes
- [#1913](https://togithub.com/withastro/starlight/pull/1913) [`7ebe8f75`](https://togithub.com/withastro/starlight/commit/7ebe8f7599d473cdd22c80bb0fe115fe6120cab7) Thanks [@delucis](https://togithub.com/delucis)! - Fixes support for Astro’s `build: { format: 'preserve' }` configuration option
- [#1941](https://togithub.com/withastro/starlight/pull/1941) [`2f3240c9`](https://togithub.com/withastro/starlight/commit/2f3240c91c09dfc411d93a71eeb75ad6d704e14b) Thanks [@astrobot-houston](https://togithub.com/astrobot-houston)! - Adds icon support for `.otf` files in ``
### [`v0.23.1`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0231)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.23.0...@astrojs/starlight@0.23.1)
##### Patch Changes
- [#1892](https://togithub.com/withastro/starlight/pull/1892) [`01de9be8`](https://togithub.com/withastro/starlight/commit/01de9be89c85bcd0022e87465182ee1aba501687) Thanks [@delucis](https://togithub.com/delucis)! - Internal refactor: simplify some CSS for the `` element
### [`v0.23.0`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0230)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.22.4...@astrojs/starlight@0.23.0)
##### Minor Changes
- [#1846](https://togithub.com/withastro/starlight/pull/1846) [`2de67039`](https://togithub.com/withastro/starlight/commit/2de6703971908cfc0df2915ebf89a63e0141f954) Thanks [@delucis](https://togithub.com/delucis)! - Updates `@astrojs/mdx` to 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](https://docs.astro.build/en/guides/integrations-guide/mdx/#optimize).
Most Starlight users should be unaffected, but if you are using MDX files outside of Starlight pages with the `components` prop, you may see issues. You can disable optimization by adding MDX manually to your `integrations` array in `astro.config.mjs`:
```diff
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](https://togithub.com/withastro/starlight/pull/1735) [`1a9ab50d`](https://togithub.com/withastro/starlight/commit/1a9ab50d458d6274994ffe66a23fe7a30681337a) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Adds custom styles for `` and `` elements in Markdown content.
- [#1846](https://togithub.com/withastro/starlight/pull/1846) [`2de67039`](https://togithub.com/withastro/starlight/commit/2de6703971908cfc0df2915ebf89a63e0141f954) Thanks [@delucis](https://togithub.com/delucis)! - ⚠️ **BREAKING CHANGE:** The minimum supported version of Astro is now 4.8.6
Please update Astro and Starlight together:
```sh
npx @astrojs/upgrade
```
### [`v0.22.4`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0224)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.22.3...@astrojs/starlight@0.22.4)
##### Patch Changes
- [#1871](https://togithub.com/withastro/starlight/pull/1871) [`03bb126b`](https://togithub.com/withastro/starlight/commit/03bb126b74d9adaba1be2f0df3f34566815dd77f) Thanks [@delucis](https://togithub.com/delucis)! - Adds a `blueSky` icon and social link option
- [#1873](https://togithub.com/withastro/starlight/pull/1873) [`13f33b81`](https://togithub.com/withastro/starlight/commit/13f33b81fd51d18165eb52f2a0c02b890084e4bd) Thanks [@ekfuhrmann](https://togithub.com/ekfuhrmann)! - Adds 1 new icon: `alpine`
- [#1857](https://togithub.com/withastro/starlight/pull/1857) [`32cdfaf0`](https://togithub.com/withastro/starlight/commit/32cdfaf0155e65ff6fbe9c0cfacd6969ab0015d9) Thanks [@tarikcoskun](https://togithub.com/tarikcoskun)! - Updates Turkish UI translations
- [#1736](https://togithub.com/withastro/starlight/pull/1736) [`cfa94a34`](https://togithub.com/withastro/starlight/commit/cfa94a346ef10804b90db28d217be175e1c1d5ed) Thanks [@julien-deramond](https://togithub.com/julien-deramond)! - Prevent list items from overflowing Markdown content
### [`v0.22.3`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0223)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.22.2...@astrojs/starlight@0.22.3)
##### Patch Changes
- [#1838](https://togithub.com/withastro/starlight/pull/1838) [`9fe84754`](https://togithub.com/withastro/starlight/commit/9fe847544f1edb85bf5b25cd81db39227814335e) Thanks [@delucis](https://togithub.com/delucis)! - Adds extra information to the errors thrown by the `` component to help locate misformatted code
- [#1863](https://togithub.com/withastro/starlight/pull/1863) [`50be60bb`](https://togithub.com/withastro/starlight/commit/50be60bbc5cbc42db42e868b9e8f128b4dcbd6a5) Thanks [@torn4dom4n](https://togithub.com/torn4dom4n)! - Update Vietnamese translation
- [#1837](https://togithub.com/withastro/starlight/pull/1837) [`a33a1223`](https://togithub.com/withastro/starlight/commit/a33a12231772c1dc4b7cc2db3477a6802f3ef53e) Thanks [@delucis](https://togithub.com/delucis)! - Adds three new icons: `comment`, `comment-alt`, `heart`
- [#1842](https://togithub.com/withastro/starlight/pull/1842) [`c7838636`](https://togithub.com/withastro/starlight/commit/c7838636edb8d60a2422ce76a2db511b9cebbb70) Thanks [@delucis](https://togithub.com/delucis)! - Moves the `href` used 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](https://togithub.com/withastro/starlight/pull/1840) [`cb85563c`](https://togithub.com/withastro/starlight/commit/cb85563c9a3d4eb2925ad884e6a4e8698a15381b) Thanks [@MiahaCybersec](https://togithub.com/MiahaCybersec)! - Adds 1 new icon: `hackerone`
### [`v0.22.2`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0222)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.22.1...@astrojs/starlight@0.22.2)
##### Patch Changes
- [#1811](https://togithub.com/withastro/starlight/pull/1811) [`fe06aa13`](https://togithub.com/withastro/starlight/commit/fe06aa1307208ef9f5b249181ec29837f96940c2) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes a `` sync issue when inconsistently using the `icon` prop or not on `` components.
- [#1826](https://togithub.com/withastro/starlight/pull/1826) [`52ea7381`](https://togithub.com/withastro/starlight/commit/52ea7381e131338a03cffb3499ba1699951cea1e) Thanks [@dragomano](https://togithub.com/dragomano)! - Updates Russian UI translations
### [`v0.22.1`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0221)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.22.0...@astrojs/starlight@0.22.1)
##### Patch Changes
- [`1c0fc384`](https://togithub.com/withastro/starlight/commit/1c0fc3849771713d5a3e7a572bdbf1483ae5551b) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes an issue where the `siteTitle` property would not be set when using the `` component.
### [`v0.22.0`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0220)
[Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.21.5...@astrojs/starlight@0.22.0)
##### Minor Changes
- [#640](https://togithub.com/withastro/starlight/pull/640) [`7dc503ea`](https://togithub.com/withastro/starlight/commit/7dc503ea7993123a4aeff453d08de41cac887353) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Adds support for syncing multiple sets of tabs on the same page.
- [#1620](https://togithub.com/withastro/starlight/pull/1620) [`ca0678ca`](https://togithub.com/withastro/starlight/commit/ca0678ca556d739bda9648edc1b79c764fdea851) Thanks [@emjio](https://togithub.com/emjio)! - Adds support for translating the site title
⚠️ **Potentially breaking change:** The shape of the `title` field 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 `` or `` component), you will need to update your code. We recommend using the new [`siteTitle` prop](https://starlight.astro.build/reference/overrides/#sitetitle) 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.
This PR contains the following updates:
^0.21.5
->^0.25.0
Release Notes
withastro/starlight (@astrojs/starlight)
### [`v0.25.1`](https://togithub.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0251) [Compare Source](https://togithub.com/withastro/starlight/compare/@astrojs/starlight@0.25.0...@astrojs/starlight@0.25.1) ##### Patch Changes - [#2122](https://togithub.com/withastro/starlight/pull/2122) [`359a642`](https://togithub.com/withastro/starlight/commit/359a64219288795936f18fd50fb5f195c412a748) Thanks [@HiDeoo](https://togithub.com/HiDeoo)! - Fixes an i18n configuration issue for multilingual sites when using Astro’s `i18n` config with `prefixDefaultLocale` set to `false`. - [#2107](https://togithub.com/withastro/starlight/pull/2107) [`61e223b`](https://togithub.com/withastro/starlight/commit/61e223b153cb10958f3fbaa77acf6ac07d982944) Thanks [@sanabel-al-firdaws](https://togithub.com/sanabel-al-firdaws)! - Updates Arabic UI translations - [#2105](https://togithub.com/withastro/starlight/pull/2105) [`81f8a2c`](https://togithub.com/withastro/starlight/commit/81f8a2c9580ec07dd17e2f596b9b1b50fae8237a) Thanks [@delucis](https://togithub.com/delucis)! - Fixes an edge case in custom pagination link processing Custom link values for `prev`/`next` in page frontmatter are now always used as authored. Previously this was not the case in some edge cases such as for the first and final pages in the sidebar. - [#2119](https://togithub.com/withastro/starlight/pull/2119) [`464685a`](https://togithub.com/withastro/starlight/commit/464685a3ce33e7ccc8d1d7365935732c87ba95e9) Thanks [@evadecker](https://togithub.com/evadecker)! - Improves styling of ``, `