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

chore: update dependency @astrojs/starlight to ^0.30.3 #55

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 5, 2024

This PR contains the following updates:

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

Release Notes

withastro/starlight (@​astrojs/starlight)

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

v0.24.0

Compare Source

Minor Changes
  • #​1841 ee0cd38a Thanks @​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 081d1a96 Thanks @​delucis! - Allows users to opt into displaying a “Built with Starlight” link in the site footer

  • #​1530 dd64836a Thanks @​kevinzunigacuellar! - Adds a new <Badge> component

v0.23.4

Compare Source

Patch Changes

v0.23.3

Compare Source

Patch Changes

v0.23.2

Compare Source

Patch Changes

v0.23.1

Compare Source

Patch Changes

v0.23.0

Compare Source

Minor Changes
  • #​1846 2de67039 Thanks @​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.

    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:

    import { defineConfig } from 'astro/config';
    + import mdx from '@&#8203;astrojs/mdx';
    import starlight from '@&#8203;astrojs/starlight';
    
    // https://astro.build/config
    export default defineConfig({
    	integrations: [
    		starlight({
    			title: 'My docs',
    			// ...
    		}),
    +		mdx(),
    	],
    });
  • #​1735 1a9ab50d Thanks @​HiDeoo! - Adds custom styles for <details> and <summary> elements in Markdown content.

  • #​1846 2de67039 Thanks @​delucis! - ⚠️ BREAKING CHANGE: The minimum supported version of Astro is now 4.8.6

    Please update Astro and Starlight together:

    npx @&#8203;astrojs/upgrade

v0.22.4


Configuration

📅 Schedule: Branch creation - "after 10am on monday,before 5pm on monday" in timezone Asia/Tokyo, 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.

Copy link

changeset-bot bot commented May 5, 2024

⚠️ No Changeset found

Latest commit: b3f1f3c

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

coderabbitai bot commented May 5, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.22.1 chore: update dependency @astrojs/starlight to ^0.22.2 May 12, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 29a6a05 to f6aebda Compare May 12, 2024 16:23
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.22.2 chore: update dependency @astrojs/starlight to ^0.23.1 May 19, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from f6aebda to 5071da3 Compare May 19, 2024 16:17
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 5071da3 to fddf345 Compare June 2, 2024 16:42
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.23.1 chore: update dependency @astrojs/starlight to ^0.23.2 Jun 2, 2024
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.23.2 chore: update dependency @astrojs/starlight to ^0.24.0 Jun 9, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from f6993ab to 46e9178 Compare June 9, 2024 19:03
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.24.0 chore: update dependency @astrojs/starlight to ^0.24.1 Jun 9, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 46e9178 to 659a0d9 Compare June 16, 2024 15:34
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.24.1 chore: update dependency @astrojs/starlight to ^0.24.2 Jun 16, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 659a0d9 to 94f3117 Compare June 23, 2024 16:34
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.24.2 chore: update dependency @astrojs/starlight to ^0.24.4 Jun 23, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 94f3117 to 4f41960 Compare June 30, 2024 15:34
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.24.4 chore: update dependency @astrojs/starlight to ^0.24.5 Jun 30, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 4f41960 to 7cb1945 Compare July 7, 2024 17:05
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.24.5 chore: update dependency @astrojs/starlight to ^0.25.0 Jul 7, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 7cb1945 to 91ad3f6 Compare July 14, 2024 17:23
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.25.0 chore: update dependency @astrojs/starlight to ^0.25.1 Jul 14, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 91ad3f6 to 95b7445 Compare July 28, 2024 17:49
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.25.1 chore: update dependency @astrojs/starlight to ^0.25.2 Jul 28, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 95b7445 to 2b0a7e5 Compare August 4, 2024 16:28
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.25.2 chore: update dependency @astrojs/starlight to ^0.25.3 Aug 4, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 2b0a7e5 to acaec85 Compare August 11, 2024 16:13
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.25.3 chore: update dependency @astrojs/starlight to ^0.25.4 Aug 11, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from acaec85 to f85edd7 Compare August 18, 2024 16:29
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.25.4 chore: update dependency @astrojs/starlight to ^0.26.1 Aug 18, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from f85edd7 to 658c135 Compare September 2, 2024 13:54
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.26.1 chore: update dependency @astrojs/starlight to ^0.26.2 Sep 2, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 658c135 to 131f14c Compare September 8, 2024 16:29
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.26.2 chore: update dependency @astrojs/starlight to ^0.27.1 Sep 8, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 131f14c to 45eceb0 Compare September 8, 2024 18:59
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 45eceb0 to 228ada4 Compare September 22, 2024 16:52
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.27.1 chore: update dependency @astrojs/starlight to ^0.28.2 Sep 22, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 228ada4 to 0e1f698 Compare October 13, 2024 15:25
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.28.2 chore: update dependency @astrojs/starlight to ^0.28.3 Oct 13, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 0e1f698 to 79cd08a Compare November 3, 2024 16:25
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.28.3 chore: update dependency @astrojs/starlight to ^0.28.5 Nov 3, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 79cd08a to 9f81c41 Compare November 4, 2024 12:48
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.28.5 chore: update dependency @astrojs/starlight to ^0.28.6 Nov 4, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 9f81c41 to e7deec6 Compare November 10, 2024 16:47
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.28.6 chore: update dependency @astrojs/starlight to ^0.29.0 Nov 10, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 9296755 to 333e6d6 Compare November 24, 2024 15:26
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.29.0 chore: update dependency @astrojs/starlight to ^0.29.2 Nov 24, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 5125a9e to 740c5ee Compare December 15, 2024 15:07
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.29.2 chore: update dependency @astrojs/starlight to ^0.30.1 Dec 15, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 740c5ee to b3f1f3c Compare December 22, 2024 16:41
@renovate renovate bot changed the title chore: update dependency @astrojs/starlight to ^0.30.1 chore: update dependency @astrojs/starlight to ^0.30.3 Dec 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants