Tuhura-Tech / wiki

Free and public resources for NZ schools
https://wiki.tuhuratech.org.nz
GNU Affero General Public License v3.0
3 stars 6 forks source link

fix(deps): update dependency @astrojs/starlight to ^0.23.0 #233

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 1 month ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/starlight (source) ^0.22.0 -> ^0.23.0 age adoption passing confidence

Release Notes

withastro/starlight (@​astrojs/starlight) ### [`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`

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.

cloudflare-pages[bot] commented 1 month ago

Deploying wiki with  Cloudflare Pages  Cloudflare Pages

Latest commit: 4a07878
Status: ✅  Deploy successful!
Preview URL: https://d4d67118.wiki-752.pages.dev
Branch Preview URL: https://renovate-astrojs-starlight-0.wiki-752.pages.dev

View logs