Skip to content

chore(deps): update astro#1914

Merged
dbanty merged 3 commits into
mainfrom
renovate/astro
Jul 17, 2026
Merged

chore(deps): update astro#1914
dbanty merged 3 commits into
mainfrom
renovate/astro

Conversation

@renovate

@renovate renovate Bot commented May 14, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@astrojs/starlight (source) ^0.38.1^0.41.0 age confidence
starlight-links-validator (source) =0.24.0=0.25.2 age confidence

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

HiDeoo/starlight-links-validator (starlight-links-validator)

v0.25.2

Compare Source

Patch Changes

v0.25.1

Compare Source

Patch Changes

v0.25.0

Compare Source

Minor Changes
  • #​167 5019546 Thanks @​HiDeoo! - Adds support for Astro v7, drops support for Astro v6.

    ⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now 0.41.0.

    Please follow the upgrade guide to update your project.

  • #​167 5019546 Thanks @​HiDeoo! - Adds support for the Sätteri Markdown processor.

v0.24.1

Compare Source

Patch Changes

Configuration

📅 Schedule: (UTC)

  • 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 is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented May 14, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
knope-docs 0f7b888 Commit Preview URL

Branch Preview URL
Jul 17 2026, 06:55 PM

@renovate
renovate Bot force-pushed the renovate/astro branch 6 times, most recently from ad12402 to 4ecbd79 Compare May 21, 2026 18:49
@renovate
renovate Bot force-pushed the renovate/astro branch 5 times, most recently from db8b460 to 3cf6b54 Compare May 24, 2026 19:22
@renovate renovate Bot changed the title chore(deps): update astro chore(deps): update dependency @astrojs/starlight to ^0.39.0 May 24, 2026
@renovate
renovate Bot force-pushed the renovate/astro branch 3 times, most recently from a9a3383 to 3421045 Compare May 25, 2026 17:46
@renovate renovate Bot changed the title chore(deps): update dependency @astrojs/starlight to ^0.39.0 chore(deps): update astro May 25, 2026
@renovate
renovate Bot force-pushed the renovate/astro branch 4 times, most recently from 5800b87 to 6dd1e48 Compare June 1, 2026 18:52
@renovate renovate Bot changed the title chore(deps): update astro chore(deps): update dependency @astrojs/starlight to ^0.39.0 Jun 1, 2026
@renovate
renovate Bot force-pushed the renovate/astro branch from 6dd1e48 to dc219c8 Compare June 2, 2026 17:55
@renovate renovate Bot changed the title chore(deps): update dependency @astrojs/starlight to ^0.39.0 chore(deps): update astro Jun 2, 2026
@renovate
renovate Bot force-pushed the renovate/astro branch 6 times, most recently from 8cb69d0 to 0a51fc4 Compare June 10, 2026 17:40
@renovate

renovate Bot commented Jun 30, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: docs/package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: knope-docs@0.0.1
npm error Found: astro@6.4.8
npm error node_modules/astro
npm error   astro@"^6.0.5" from the root project
npm error
npm error Could not resolve dependency:
npm error peer astro@"^7.0.2" from @astrojs/starlight@0.41.3
npm error node_modules/@astrojs/starlight
npm error   @astrojs/starlight@"^0.41.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-07-17T17_24_41_660Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-07-17T17_24_41_660Z-debug-0.log

@renovate
renovate Bot force-pushed the renovate/astro branch 12 times, most recently from 8d24bff to 3a315ea Compare July 8, 2026 19:25
@renovate
renovate Bot force-pushed the renovate/astro branch 4 times, most recently from d91d947 to 65d190d Compare July 17, 2026 14:48
@renovate
renovate Bot force-pushed the renovate/astro branch from 65d190d to f5f54cb Compare July 17, 2026 17:24
@dbanty

dbanty commented Jul 17, 2026

Copy link
Copy Markdown
Member

@copilot can you also upgrade Astro to v7 here, run Astro's upgrader, and implement any manual breaking changes from Astro or Starlight's changelogs?

Copilot AI commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

@copilot can you also upgrade Astro to v7 here, run Astro's upgrader, and implement any manual breaking changes from Astro or Starlight's changelogs?

Implemented in 25bfb58.

  • Upgraded docs Astro to v7 (astro ^7.1.1) and ran Astro’s upgrader (npx @astrojs/upgrade), which also updated @astrojs/check to ^0.9.9 and @astrojs/starlight to ^0.41.3.
  • Applied manual Starlight breaking-change migrations for sidebar autogeneration config in docs/astro.config.mjs.
  • Applied manual docs fixes needed by the newer Starlight/validator behavior (removed empty admonition block in release.md and fixed release links).
  • Rebuilt/validated docs with npm run --prefix docs astro check and npm run --prefix docs build (including links validator), both passing.

@renovate

renovate Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@dbanty

dbanty commented Jul 17, 2026

Copy link
Copy Markdown
Member

@copilot why does only the release page need trailing slash?

dbanty
dbanty previously approved these changes Jul 17, 2026

Copilot AI commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

@copilot why does only the release page need trailing slash?

Good catch — it doesn’t. I re-tested and /reference/concepts/release works without the trailing slash.

The original invalid-link errors were caused by release.md failing to render (empty :::note block), not by slash behavior. I reverted those slash-only edits for consistency in 0f7b888, and docs build/link validation still passes.

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.

2 participants