Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency @astrojs/starlight to v0.31.0 #66

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 28, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/starlight (source) 0.23.1 -> 0.31.0 age adoption passing confidence

Release Notes

withastro/starlight (@​astrojs/starlight)

v0.31.0

Compare Source

Minor Changes
  • #​2777 88f4214 Thanks @​hippotastic! - Updates astro-expressive-code dependency to the latest version (0.40).

    This includes an update to the latest Shiki version (1.26.1), providing access to all current Shiki themes and syntax highlighting languages, and adding the config options shiki.engine, shiki.bundledLangs, shiki.langAlias and removeUnusedThemes. It also adds new style variants to the optional collapsible sections plugin.

    See the Expressive Code release notes for full details.

  • #​2736 29a885b Thanks @​delucis! - ⚠️ BREAKING CHANGE: The minimum supported version of Astro is now 5.1.5

    Please update Astro and Starlight together:

    npx @​astrojs/upgrade
  • #​2728 e187383 Thanks @​delucis! - Updates minimum Pagefind dependency to v1.3.0, sets new defaults for Pagefind’s ranking options, and adds support for manually configuring the ranking options

    The new ranking option defaults have been evaluated against Starlight’s own docs to improve the quality of search results. See “Customize Pagefind's result ranking” for more details about how they work.

  • #​157 23bf960 Thanks @​tony-sull! - Adds a print stylesheet to improve the appearance of Starlight docs pages when printed

  • #​2728 e187383 Thanks @​delucis! - Fixes Pagefind logging to respect the Astro log level. When using Astro’s --verbose or --silent CLI flags, these are now respected by Pagefind as well.

Patch Changes
  • #​2792 412effb Thanks @​dhruvkb! - Uses semantic var(--sl-color-hairline) for the page sidebar border instead of var(--sl-color-gray-6). This is visually the same as previously but makes it easier to override the hairline color consistently across a site.

  • #​2736 29a885b Thanks @​delucis! - Updates internal dependencies @astrojs/sitemap and @astrojs/mdx to the latest versions

  • #​2782 d9d415b Thanks @​delucis! - Fixes a documentation link in the JSDoc comment for the StarlightExpressiveCodeOptions type

  • #​2708 442c819 Thanks @​delucis! - Fixes colour contrast correction in code blocks

v0.30.6

Compare Source

Patch Changes

v0.30.5

Compare Source

Patch Changes

v0.30.4

Compare Source

Patch Changes

v0.30.3

Compare Source

Patch Changes

v0.30.2

Compare Source

Patch Changes
  • #​2702 02d16f3 Thanks @​HiDeoo! - Fixes an issue with autogenerated sidebars when using Starlight with Astro's new Content Layer API with directories containing spaces or special characters.

  • #​2704 fd16470 Thanks @​delucis! - Fixes display of focus indicator around site title

v0.30.1

Compare Source

Patch Changes
  • #​2688 5c6996c Thanks @​HiDeoo! - Fixes an issue with autogenerated sidebars when using Starlight with Astro's new Content Layer API where group names would be sluggified.

v0.30.0

Compare Source

Minor Changes
Upgrade Astro and dependencies

⚠️ BREAKING CHANGE: Astro v4 is no longer supported. Make sure you update Astro and any other official integrations at the same time as updating Starlight:

npx @​astrojs/upgrade

Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v5. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

Update your collections

⚠️ BREAKING CHANGE: Starlight's internal content collections, which organize, validate, and render your content, have been updated to use Astro's new Content Layer API and require configuration changes in your project.

  1. Move the content config file. This file no longer lives within the src/content/config.ts folder and should now exist at src/content.config.ts.

  2. Edit the collection definition(s). To update the docs collection, a loader is now required:

     // src/content.config.ts
     import { defineCollection } from "astro:content";
    +import { docsLoader } from "@​astrojs/starlight/loaders";
     import { docsSchema } from "@​astrojs/starlight/schema";
    
     export const collections = {
    -  docs: defineCollection({ schema: docsSchema() }),
    +  docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
     };

    If you are using the i18n collection to provide translations for additional languages you support or override our default labels, you will need to update the collection definition in a similar way and remove the collection type which is no longer available:

     // src/content.config.ts
     import { defineCollection } from "astro:content";
    +import { docsLoader, i18nLoader } from "@​astrojs/starlight/loaders";
     import { docsSchema, i18nSchema } from "@​astrojs/starlight/schema";
    
     export const collections = {
    -  docs: defineCollection({ schema: docsSchema() }),
    +  docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
    -  i18n: defineCollection({ type: 'data', schema: i18nSchema() }),
    +  i18n: defineCollection({ loader: i18nLoader(), schema: i18nSchema() }),
     };
  3. Update other collections. To update any other collections you may have, follow the “Updating existing collections” section in the Astro 5 upgrade guide.

If you are unable to make any changes to your collections at this time, including Starlight's default docs and i18n collections, you can enable the legacy.collections flag to upgrade to v5 without updating your collections. This legacy flag exists to provide temporary backwards compatibility, and will allow you to keep your collections in their current state until the legacy flag is no longer supported.

Patch Changes

v0.29.3

Compare Source

Patch Changes

v0.29.2

Compare Source

Patch Changes
  • #​2616 128cc51 Thanks @​delucis! - Fixes an edge case to correctly avoid a trailing slash when navigating from a root locale homepage to another language via Starlight’s language switcher when trailingSlash: 'never' is set

v0.29.1

Compare Source

Patch Changes

v0.29.0

Compare Source

Minor Changes
  • #​2551 154c8e3 Thanks @​hippotastic! - Updates the astro-expressive-code dependency to the latest version (0.38).

    The new version allows using ec.config.mjs to selectively override individual Expressive Code styles and settings provided by Starlight themes and plugins, speeds up Shiki language loading, and adds the config option expressiveCode.shiki.injectLangsIntoNestedCodeBlocks. See the Expressive Code release notes for full details.

  • #​2252 6116db0 Thanks @​HiDeoo! - Improves build performance for sites with large sidebars

    This release adds a caching layer to Starlight’s sidebar generation logic, reducing the number of times sidebars need to be regenerated while building a site. Some benchmarks for projects with a complex sidebar saw builds complete more than 35% faster with this change.

  • #​2503 a4c8edd Thanks @​HiDeoo! - Improves the accessibility of asides and tabs by removing some unnecessary HTML landmarks.

Patch Changes

v0.28.6

Compare Source

Patch Changes
  • #​2565 236467b Thanks @​HiDeoo! - Fixes an issue with custom UI strings defined in YAML files not being loaded in some contexts.

v0.28.5

Compare Source

Patch Changes
  • #​2546 bf42300 Thanks @​HiDeoo! - Fixes an issue where i18n content collection related errors, e.g. malformed JSON or YAML, would not be reported.

  • #​2548 07673c8 Thanks @​HiDeoo! - Fixes a URL localization edge case. In projects without a root locale configured, slugs without a locale prefix did not fall back to the default locale as expected.

  • #​2547 91e1dd7 Thanks @​HiDeoo! - Fixes a Firefox Markdown content rendering issue for text sentences separated by a line break.

  • #​2524 1b46783 Thanks @​jsparkdev! - Fixes a broken link to Astro’s Docs in an error message

v0.28.4

Compare Source

Patch Changes

v0.28.3

Compare Source

Patch Changes

v0.28.2

Compare Source

Patch Changes
  • #​2377 a257b83 Thanks @​HiDeoo! - Fixes an issue with synced <Tabs> components containing nested <Tabs> causing tab panels to not render correctly.

v0.28.1

Compare Source

Patch Changes

v0.28.0

Compare Source

Minor Changes
  • #​1923 5269aad Thanks @​HiDeoo! - Overhauls the built-in localization system which is now powered by the i18next library and available to use anywhere in your documentation website.

    See the “Using UI translations” guide to learn more about how to access built-in UI labels or your own custom strings in your project. Plugin authors can also use the new injectTranslations() helper to add or update translation strings.

    ⚠️ BREAKING CHANGE: The Astro.props.labels props has been removed from the props passed down to custom component overrides.

    If you are relying on Astro.props.labels (for example to read a built-in UI label), you will need to update your code to use the new Astro.locals.t() helper instead.

v0.27.1

Compare Source

Patch Changes
  • #​2303 f92791a Thanks @​delucis! - Fixes resolution for the internal module Git virtual module in projects with special characters in the file path

v0.27.0

Compare Source

Minor Changes
  • #​1255 6f3202b Thanks @​Fryuni! - Adds support for server-rendered Starlight pages.

    When building a project with hybrid or server output mode, a new prerender option on Starlight config can be set to false to make all Starlight pages be rendered on-demand:

    export default defineConfig({
      output: 'server',
      integrations: [
        starlight({
          prerender: false,
        }),
      ],
    });
Patch Changes
  • #​2242 756e85e Thanks @​delucis! - Refactors the logic for persisting and restoring sidebar state across navigations for better performance on slow or busy devices

  • #​1255 6f3202b Thanks @​Fryuni! - Improves performance of computing the last updated times from Git history.

    Instead of executing git for each docs page, it is now executed twice regardless of the number of pages.

  • #​1255 6f3202b Thanks @​Fryuni! - Fixes last updated times on projects with custom srcDir

v0.26.4

Compare Source

Patch Changes
  • #​2288 b15f725 Thanks @​matthewp! - Safely handle Zod errors

    Prevents bugs where errors without the .received props would through and cause builds to fail unnecessarily.

v0.26.3

Compare Source

Patch Changes
  • #​2281 5062d30 Thanks @​HiDeoo! - Fixes a potential text rendering issue that could include extra whitespaces for text containing colons.

  • #​2279 62d59e2 Thanks @​HiDeoo! - Fixes an issue with frontmatter schemas containing collection references used with the <StarlightPage /> component and an Astro version greater than 4.14.0.

v0.26.2

Compare Source

Patch Changes

v0.26.1

Compare Source

Patch Changes
  • #​2219 74d4716 Thanks @​HiDeoo! - Fixes a sidebar persistence issue when navigating between pages with different sidebar content.

v0.26.0

Compare Source

Minor Changes
  • #​1784 68f56a7 Thanks @​HiDeoo! - Adds <LinkButton> component for visually distinct and emphasized call to action links

  • #​2150 9368494 Thanks @​delucis! - Adds state persistence across page navigations to the main site sidebar

  • #​2087 caa84ea Thanks @​HiDeoo! - Adds persistence to synced <Tabs> so that a user's choices are reflected across page navigations.

  • #​2051 ec3b579 Thanks @​HiDeoo! - Adds a guideline to the last step of the <Steps> component.

    If you want to preserve the previous behaviour and hide the guideline on final steps, you can add the following custom CSS to your site:

    /* Hide the guideline for the final step in <Steps> lists. */
    .sl-steps > li:last-of-type::after {
      background: transparent;
    }
  • #​1784 68f56a7 Thanks @​HiDeoo! - Changes the hero component action button default variant from minimal to primary.

    ⚠️ BREAKING CHANGE: If you want to preserve the previous appearance, hero component action buttons previously declared without a variant will need to be updated to include the variant property with the value minimal.

    hero:
      actions:
        - text: View on GitHub
          link: https://github.com/astronaut/my-project
          icon: external
    +     variant: minimal
  • #​2168 e044fee Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: Updates the <StarlightPage /> component sidebar prop to accept an array of SidebarItems like the main Starlight sidebar configuration in astro.config.mjs.

    This change simplifies the definition of sidebar items in the <StarlightPage /> component, allows for shared sidebar configuration between the global sidebar option and <StarlightPage /> component, and also enables the usage of autogenerated sidebar groups with the <StarlightPage /> component.
    If you are using the <StarlightPage /> component with a custom sidebar configuration, you will need to update the sidebar prop to an array of SidebarItem objects.

    For example, the following custom page with a custom sidebar configuration defines a “Resources” group with a “New” badge, a link to the “Showcase” page which is part of the docs content collection, and a link to the Starlight website:

v0.25.5

Compare Source

Patch Changes

v0.25.4

Compare Source

Patch Changes
  • #​2155 8bed886 Thanks @​delucis! - Improves page load performance on slower devices

  • #​2167 9ac7725 Thanks @​delucis! - Fixes an issue detecting the built-in locale when running Starlight in a web container environment on Firefox

  • #​2166 4f12049 Thanks @​delucis! - Updates @astrojs/mdx, @astrojs/sitemap, astro-expressive-code, unified, and vfile dependencies to the latest version

v0.25.3

Compare Source

Patch Changes

v0.25.2

Compare Source

Patch Changes

v0.25.1

Compare Source

Patch Changes
  • #​2122 359a642 Thanks @​HiDeoo! - Fixes an i18n configuration issue for multilingual sites when using Astro’s i18n config with prefixDefaultLocale set to false.

  • #​2107 61e223b Thanks @​sanabel-al-firdaws! - Updates Arabic UI translations

  • #​2105 81f8a2c Thanks @​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 464685a Thanks @​evadecker! - Improves styling of <hr>, <blockquote>, and <code> within asides

v0.25.0

Compare Source

Minor Changes
  • #​2025 47f32c1 Thanks @​HiDeoo! - Removes the / search shortcut for accessibility reasons.

    ⚠️ 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 c5b47cb Thanks @​SnowDingo! - Improves styling of Markdown tables to work better in different contexts, including against different background colours like when used in asides.

  • #​2031 2bab648 Thanks @​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 eeba06e Thanks @​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:

    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

v0.24.5

Compare Source

Patch Changes

v0.24.4

Compare Source

Patch Changes

v0.24.3

Compare Source

Patch Changes

v0.24.2

Compare Source

Patch Changes

v0.24.1

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from b7ccaea to 2d1a2fd Compare June 4, 2024 23:55
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.23.2 fix(deps): update dependency @astrojs/starlight to v0.23.3 Jun 4, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.23.3 fix(deps): update dependency @astrojs/starlight to v0.23.4 Jun 5, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from f603136 to bcf223f Compare June 5, 2024 20:13
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.23.4 fix(deps): update dependency @astrojs/starlight to v0.24.0 Jun 5, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from bcf223f to 46b5109 Compare June 9, 2024 20:02
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.0 fix(deps): update dependency @astrojs/starlight to v0.24.1 Jun 9, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.1 fix(deps): update dependency @astrojs/starlight to v0.24.2 Jun 12, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 6c31559 to fc567a9 Compare June 19, 2024 00:52
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.2 fix(deps): update dependency @astrojs/starlight to v0.24.3 Jun 19, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from fc567a9 to c679b12 Compare June 20, 2024 18:53
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.3 fix(deps): update dependency @astrojs/starlight to v0.24.4 Jun 20, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from c679b12 to 49be7f9 Compare June 28, 2024 16:26
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.4 fix(deps): update dependency @astrojs/starlight to v0.24.5 Jun 28, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 49be7f9 to 6537f70 Compare July 5, 2024 14:26
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.5 fix(deps): update dependency @astrojs/starlight to v0.25.0 Jul 5, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 6537f70 to deb59e4 Compare July 10, 2024 19:14
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.0 fix(deps): update dependency @astrojs/starlight to v0.25.1 Jul 10, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from deb59e4 to 1eca901 Compare July 23, 2024 15:37
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.1 fix(deps): update dependency @astrojs/starlight to v0.25.2 Jul 23, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 1eca901 to 4e49ddf Compare July 29, 2024 17:07
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.2 fix(deps): update dependency @astrojs/starlight to v0.25.3 Jul 29, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 4e49ddf to f18bccf Compare August 6, 2024 10:05
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.3 fix(deps): update dependency @astrojs/starlight to v0.25.4 Aug 6, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from f18bccf to 59dc76e Compare August 13, 2024 10:27
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.4 fix(deps): update dependency @astrojs/starlight to v0.25.5 Aug 13, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 59dc76e to c971202 Compare August 16, 2024 18:49
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.5 fix(deps): update dependency @astrojs/starlight to v0.26.1 Aug 16, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.28.3 fix(deps): update dependency @astrojs/starlight to v0.28.4 Oct 28, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 09de715 to 1f675fc Compare November 1, 2024 18:35
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.28.4 fix(deps): update dependency @astrojs/starlight to v0.28.5 Nov 1, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 1f675fc to 57295a1 Compare November 4, 2024 13:54
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.28.5 fix(deps): update dependency @astrojs/starlight to v0.28.6 Nov 4, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 57295a1 to c8d2323 Compare November 8, 2024 18:57
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.28.6 fix(deps): update dependency @astrojs/starlight to v0.29.0 Nov 8, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from c8d2323 to 4788269 Compare November 19, 2024 17:36
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.29.0 fix(deps): update dependency @astrojs/starlight to v0.29.1 Nov 19, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 4788269 to 1b79817 Compare November 19, 2024 19:37
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.29.1 fix(deps): update dependency @astrojs/starlight to v0.29.2 Nov 19, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.29.2 fix(deps): update dependency @astrojs/starlight to v0.29.3 Dec 11, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 9ac7367 to 52182d1 Compare December 14, 2024 00:50
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.29.3 fix(deps): update dependency @astrojs/starlight to v0.30.0 Dec 14, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 52182d1 to 539b3ee Compare December 14, 2024 15:12
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.30.0 fix(deps): update dependency @astrojs/starlight to v0.30.1 Dec 14, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 539b3ee to 7251c35 Compare December 16, 2024 18:25
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.30.1 fix(deps): update dependency @astrojs/starlight to v0.30.2 Dec 16, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 7251c35 to 9d77cca Compare December 19, 2024 12:44
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.30.2 fix(deps): update dependency @astrojs/starlight to v0.30.3 Dec 19, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 9d77cca to e5c0145 Compare January 7, 2025 01:32
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.30.3 fix(deps): update dependency @astrojs/starlight to v0.30.4 Jan 7, 2025
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from e5c0145 to e7f9b40 Compare January 7, 2025 16:34
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.30.4 fix(deps): update dependency @astrojs/starlight to v0.30.5 Jan 7, 2025
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from e7f9b40 to 78a4e4f Compare January 10, 2025 22:13
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.30.5 fix(deps): update dependency @astrojs/starlight to v0.30.6 Jan 10, 2025
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 78a4e4f to a6e71ed Compare January 13, 2025 13:41
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.30.6 fix(deps): update dependency @astrojs/starlight to v0.31.0 Jan 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants