Skip to content

fix(deps): update dependency @astrojs/starlight to v0.41.3#409

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/starlight-packages
Open

fix(deps): update dependency @astrojs/starlight to v0.41.3#409
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/starlight-packages

Conversation

@renovate

@renovate renovate Bot commented Mar 16, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@astrojs/starlight (source) 0.37.70.41.3 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

withastro/starlight (@​astrojs/starlight)

v0.41.3

Compare Source

Patch Changes
  • #​3911 1686ecc Thanks @​timothyjordan! - Keeps keyboard focus inside the mobile menu while it is open, preventing focus moving to hidden interactive elements in page content.

v0.41.2

Compare Source

Patch Changes
  • #​4008 58a3520 Thanks @​FrancoKaddour! - Fixes the table of contents overflowing the right edge of the viewport when a custom --sl-content-width value exceeds available space

  • #​4015 bdbfffc Thanks @​delucis! - Fixes an issue where aside icons were rendered incorrectly in projects where Astro’s MDX integration had optimization disabled

v0.41.1

Compare Source

Patch Changes

v0.41.0

Compare Source

Minor Changes
Upgrade Astro and dependencies

⚠️ BREAKING CHANGE: Astro v6 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 v7. 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.

⚠️ BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 111 (released 07 March 2023) and Safari-based browsers prior to version 16.4 (released 27 March 2023). You can find a list of currently supported browsers and their versions using this browserslist query.

Patch Changes
  • #​3953 a935d33 Thanks @​HiDeoo! - Fixes Starlight Markdown processing being potentially applied to files that should not be processed.

v0.40.0

Compare Source

Minor Changes
  • #​3923 edf2e6b Thanks @​Princesseuh! - Adds support for Astro 6.4 and the new Sätteri Markdown processor.

    It is now possible to opt into using Astro's 6.4 Sätteri Markdown processor by installing the @astrojs/markdown-satteri package and configuring it in your astro.config.mjs file:

    // astro.config.mjs
    
    import { defineConfig } from 'astro/config';
    import { satteri } from '@​astrojs/markdown-satteri';
    
    export default defineConfig({
      markdown: {
        processor: satteri(),
      },
    });

    ⚠️ BREAKING CHANGE: The minimum supported version of Astro is now v6.4.5.

    Please update Starlight and Astro together:

    npx @​astrojs/upgrade

    Community Starlight plugins and Astro integrations may also need to be manually updated to work with Sätteri. 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.

Patch Changes

v0.39.3

Compare Source

Patch Changes

v0.39.2

Compare Source

Patch Changes

v0.39.1

Compare Source

Patch Changes
  • #​3885 010eed1 Thanks @​ArmandPhilippot! - Fixes the version mentioned in an error message related to autogenerated sidebar groups support.

  • #​3887 b3c6990 Thanks @​delucis! - Adds 13 new icons: clock, desktop, mobile-android, window, database, server, code-branch, notes, question, question-circle, analytics, padlock, and solidjs.

v0.39.0

Compare Source

Minor Changes
  • #​3618 dcf6d09 Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: This release changes how autogenerated links work in Starlight’s sidebar configuration.

    If you have sidebar groups using the autogenerate key, you must now wrap that configuration in an items array:

    {
        label: 'My group',
    -   autogenerate: { directory: 'some-dir' },
    +   items: [{ autogenerate: { directory: 'some-dir' } }],
    }

    This change unlocks the possibility to mix autogenerated links and other links in a single group, for example:

    {
      label: 'Mixed group',
      items: [
        'example-page',
        { autogenerate: { directory: 'examples' } },
        { label: 'More examples', link: 'https://example.com' },
      ],
    }

    This release also updates the shape of autogenerated sidebar entries in route data. Autogenerated links and groups in Astro.locals.starlightRoute.sidebar now include an autogenerate object with the configured directory value:

    {
      type: 'link',
      label: 'Example',
      href: '/examples/example/',
      isCurrent: false,
      autogenerate: { directory: 'examples' }
    }
  • #​3618 dcf6d09 Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: This release changes the default collapsed state of autogenerated sidebar subgroups.

    Autogenerated subgroups no longer inherit the collapsed value from their parent group. They are now expanded by default unless explicitly configured with autogenerate.collapsed.

    If your sidebar configuration relies on a collapsed parent group to also collapse its autogenerated subgroups, update your configuration to set autogenerate.collapsed to true:

    {
      label: 'Reference',
      collapsed: true,
      items: [
    -   { autogenerate: { directory: 'reference' } },
    +   { autogenerate: { directory: 'reference', collapsed: true } },
      ],
    }
  • #​3845 4d755f5 Thanks @​delucis! - Adds a <link rel="alternate" hreflang="x-default" href="..."> tag pointing to the default locale in multilingual sites. The x-default alternate is used as a signal of which language to fall back to if no other is available. Learn more in Google’s SEO localization docs.

  • #​3862 ec70630 Thanks @​itrew! - Makes spacing of items in nested lists more consistent

  • #​3872 417a66c Thanks @​tats-u! - Enables the CSS property text-autospace in Chinese and Japanese documents.

    If you would prefer to disable autospacing in Chinese and Japanese pages, you can add the following custom CSS to your site:

    [lang]:where(:lang(zh, ja)) {
      text-autospace: initial;
    }
  • #​3797 9764ebd Thanks @​delucis! - Avoids the risk of layout shift when users expand and collapse sidebar groups

    This release can introduce additional padding to the site sidebar on certain devices to reserve space for scrollbars. You may wish to inspect your site sidebar visually when upgrading.

    If you would prefer to keep the previous styling, you can add the following custom CSS to your site:

    .sidebar-pane {
      scrollbar-gutter: auto;
    }
  • #​3858 6672c35 Thanks @​delucis! - Updates i18next, used for Starlight’s localization APIs, from v23 to v26

    There should not be any user-facing changes from this update

v0.38.5

Compare Source

Patch Changes

v0.38.4

Compare Source

Patch Changes

v0.38.3

Compare Source

Patch Changes

v0.38.2

Compare Source

Patch Changes
  • #​3759 f24ce99 Thanks @​MilesChou! - Fixes an issue where monolingual sites using a region-specific locale (e.g., zh-TW) as the default would incorrectly display base language translations (e.g., zh Simplified Chinese) instead of the region-specific ones (e.g., zh-TW Traditional Chinese).

  • #​3768 a4c6c20 Thanks @​delucis! - Improves performance of sidebar generation for sites with very large sidebars

v0.38.1

Compare Source

Patch Changes

v0.38.0

Compare Source

Minor Changes
Upgrade Astro and dependencies

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

npx @&#8203;astrojs/upgrade

Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v6. 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: Drops support for content collections backwards compatibility.

In Astro 5.x, projects could delay upgrading to the new Content Layer API introduced for content collections because of some existing automatic backwards compatibility that was not previously behind a flag. This meant that it was possible to upgrade from Astro 4 to Astro 5 without updating your content collections, even if you had not enabled the legacy.collections flag. Projects would continue to build, and no errors or warnings would be displayed.

Astro v6.0 now removes this automatic legacy content collections support, along with the legacy.collections flag.

If you experience content collections errors after updating to v6, check your project for any removed legacy features that may need updating to the Content Layer API. See the Starlight v0.30.0 upgrade guide for detailed instructions on upgrading legacy collections to the new Content Layer API.

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.collectionsBackwardsCompat flag to upgrade to v6 without updating your collections. This temporary flag preserves some legacy v4 content collections features, and will allow you to keep your collections in their current state until the legacy flag is no longer supported.

  • #​3704 375edcc Thanks @​florian-lefebvre! - Fixes autocomplete for components exported from @astrojs/starlight/components/*

    ⚠️ Potentially breaking change: This change moves some files used in Starlight’s component internals out of the components/ directory. Direct use of these files was not and is not officially supported. If you previously imported TableOfContents/starlight-toc.ts, TableOfContents/TableOfContentsList.astro, Icons.ts, or SidebarPersistState.ts, please review your code when updating.

  • #​3729 3642625 Thanks @​delucis! - Improves Starlight’s default body font stack to better support languages such as Chinese, Japanese, and Korean on Windows.
    For most users there should be no visible change.

    If you would prefer to keep the previous font stack, you can add the following custom CSS to your site:

    :root {
      --sl-font-system: ui-sans-serif, system-ui, 'Segoe UI', Roboto,
        'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
        'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    }
  • #​3598 fff38d5 Thanks @​HiDeoo! - Makes hover styles consistent in Starlight’s navigation bar

    Previously, the social icon links and language/theme switchers in Starlight’s navigation bar, dimmed on hover.
    After this change, they now increase in contrast on hover instead.
    This matches hover behavior elsewhere, for example in the sidebar, table of contents, or search button.

    ⚠️ Potentially breaking change: this is a subtle change to the hover style colors.
    If you want to preserve the previous styling, you can add the following custom CSS to your site:

    starlight-theme-select label,
    starlight-lang-select label {
      color: var(--sl-color-gray-1);
    
      &:hover {
        color: var(--sl-color-white);
      }
    }
    
    .social-icons a:hover {
      color: var(--sl-color-text-accent);
      opacity: 0.66;
    }

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 5am on monday"
  • 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 added the dependencies Pull requests that update a dependency file label Mar 16, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 85b7527 to f3b1bdb Compare March 16, 2026 09:44
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from f3b1bdb to d7d5b50 Compare March 20, 2026 21:50
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.38.1 fix(deps): update dependency @astrojs/starlight to v0.38.2 Mar 20, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from d7d5b50 to 326453b Compare March 26, 2026 17:13
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.38.2 fix(deps): update dependency @astrojs/starlight to v0.38.3 Apr 7, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 326453b to 224ca94 Compare April 7, 2026 18:04
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.38.3 fix(deps): update dependency @astrojs/starlight to v0.38.4 Apr 23, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 224ca94 to 61b0042 Compare April 23, 2026 16:48
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.38.4 fix(deps): update dependency @astrojs/starlight to v0.38.5 May 5, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 61b0042 to 780bc24 Compare May 5, 2026 22:37
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 780bc24 to 877b533 Compare May 7, 2026 10:45
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.38.5 fix(deps): update dependency @astrojs/starlight to v0.39.0 May 7, 2026
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.39.0 fix(deps): update dependency @astrojs/starlight to v0.39.1 May 7, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 877b533 to 7f7a7b0 Compare May 7, 2026 21:29
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 7f7a7b0 to e13a35c Compare May 8, 2026 20:50
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.39.1 fix(deps): update dependency @astrojs/starlight to v0.39.2 May 8, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from e13a35c to 972d547 Compare May 18, 2026 12:53
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 972d547 to feb41a5 Compare June 2, 2026 13:34
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.39.2 fix(deps): update dependency @astrojs/starlight to v0.39.3 Jun 2, 2026
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.39.3 fix(deps): update starlight packages to v0.39.3 Jun 2, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from feb41a5 to 845ae50 Compare June 9, 2026 20:10
@renovate renovate Bot changed the title fix(deps): update starlight packages to v0.39.3 fix(deps): update starlight packages to v0.40.0 Jun 9, 2026
@renovate renovate Bot changed the title fix(deps): update starlight packages to v0.40.0 fix(deps): update starlight packages (minor) Jun 22, 2026
@mergify

mergify Bot commented Jun 22, 2026

Copy link
Copy Markdown

Tick the box to add this pull request to the merge queue (same as @mergifyio queue).

  • Queue this pull request

@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 845ae50 to a83ada9 Compare June 23, 2026 22:13
@mergify

mergify Bot commented Jun 23, 2026

Copy link
Copy Markdown

Tick the box to add this pull request to the merge queue (same as @mergifyio queue).

  • Queue this pull request

@renovate renovate Bot changed the title fix(deps): update starlight packages (minor) fix(deps): update dependency @astrojs/starlight to v0.41.0 Jun 25, 2026
@mergify

mergify Bot commented Jun 25, 2026

Copy link
Copy Markdown

Tick the box to add this pull request to the merge queue (same as @mergifyio queue).

  • Queue this pull request

@renovate renovate Bot force-pushed the renovate/starlight-packages branch from a83ada9 to 5e05dae Compare June 25, 2026 15:00
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.41.0 fix(deps): update dependency @astrojs/starlight to v0.41.1 Jun 25, 2026
@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.41.1 fix(deps): update dependency @astrojs/starlight to v0.41.2 Jul 1, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 5e05dae to 13e9c55 Compare July 1, 2026 20:36
@mergify

mergify Bot commented Jul 1, 2026

Copy link
Copy Markdown

Tick the box to add this pull request to the merge queue (same as @mergifyio queue).

  • Queue this pull request

@renovate renovate Bot changed the title fix(deps): update dependency @astrojs/starlight to v0.41.2 fix(deps): update dependency @astrojs/starlight to v0.41.3 Jul 3, 2026
@renovate renovate Bot force-pushed the renovate/starlight-packages branch from 13e9c55 to 08fe3b1 Compare July 3, 2026 21:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants