Skip to content

fix(deps): update npm-packages [skip ci]#72

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-packages
Open

fix(deps): update npm-packages [skip ci]#72
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-packages

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 18, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/starlight (source) ^0.38.1^0.39.1 age adoption passing confidence
@changesets/changelog-github (source) ^0.6.0^0.7.0 age adoption passing confidence
sharp (source, changelog) ^0.34.3^0.34.5 age adoption passing confidence
starlight-links-validator (source) ^0.20.1^0.24.0 age adoption passing confidence

Release Notes

withastro/starlight (@​astrojs/starlight)

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

changesets/changesets (@​changesets/changelog-github)

v0.7.0

Compare Source

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

v0.24.0

Compare Source

Minor Changes

v0.23.0

Compare Source

Minor Changes
  • #​147 424b4c2 Thanks @​mvvmm! - Adds a new failOnError option to control whether link validation issues fail the build.

    • When set to true, validation issues fail the build.
    • When set to false, validation issues are still reported, but they do not fail the build.
  • #​147 424b4c2 Thanks @​mvvmm! - Adds support for a JSON reporter.

    When enabled, validation errors are written to the .starlight-links-validator/errors.json file, which is only created when validation errors are found.

  • #​147 424b4c2 Thanks @​mvvmm! - Adds a link_validation_failed step output to the GitHub Actions reporter.

Patch Changes
  • #​155 045637e Thanks @​HiDeoo! - Fixes a regression in version 0.21.0 where some links were incorrectly reported as invalid or failed to match the exclude option.

v0.22.0

Compare Source

Minor Changes
  • #​151 6f66387 Thanks @​HiDeoo! - Adds support for validating frontmatter links transformed by Starlight route data middleware.

v0.21.0

Compare Source

Minor Changes
  • #​142 9ee77ad Thanks @​HiDeoo! - Refactors internal logic from a remark to a rehype plugin.

    This is an internal update and should not cause any user-facing changes, but it improves plugin performance and fixes some edge-case validation issues.

  • #​144 b30aa17 Thanks @​HiDeoo! - Redesigns link validation error reporting to be more user-friendly and actionable.

    Most notably, error reporting now includes the following improvements:

    • Errors now include source line numbers.
    • In supported terminals and editors, links can open the source file at the relevant error location.
    • In supported terminals, error messages link to dedicated documentation pages with explanations and suggested fixes.
  • #​145 82cb4d Thanks @​HiDeoo! - Adds support for a GitHub Actions reporter.

    When enabled and the plugin runs in GitHub Actions, validation errors are written to the job summary as a Markdown table.

  • #​142 9ee77ad Thanks @​HiDeoo! - Adds support for validating links transformed by remark and rehype plugins.

    This change allows users to use portable Markdown links, author links that can be followed in an IDE and that are transformed by remark or rehype plugins into proper URLs at build time, while still being validated.

  • #​144 b30aa17 Thanks @​HiDeoo! - Reduces terminal text styling dependency size by switching to Node.js built-in util.styleText().

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 becomes conflicted, 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.

@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Mar 18, 2026

⚠️ No Changeset found

Latest commit: c338546

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.

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

💥 An error occurred when fetching the changed packages and changesets in this PR
Some errors occurred when validating the changesets config:
The package or glob expression "starlight-theme-next-docs" is specified in the `ignore` option but it is not found in the project. You may have misspelled the package name or provided an invalid glob expression. Note that glob expressions must be defined according to https://www.npmjs.com/package/micromatch.

@github-actions github-actions Bot added ✒️ documentation Documentation updates, like README changes 📦 package Updates in package structure or package.json labels Mar 18, 2026
@renovate renovate Bot force-pushed the renovate/npm-packages branch 3 times, most recently from c6fa0ea to e11309e Compare March 26, 2026 17:42
@renovate renovate Bot force-pushed the renovate/npm-packages branch 4 times, most recently from c1ca74a to 13e0988 Compare April 1, 2026 22:06
@renovate renovate Bot force-pushed the renovate/npm-packages branch 5 times, most recently from f0e7d46 to 3290e54 Compare April 10, 2026 05:44
@renovate renovate Bot force-pushed the renovate/npm-packages branch 5 times, most recently from e2ef9cb to 60e9e83 Compare April 18, 2026 13:58
@renovate renovate Bot force-pushed the renovate/npm-packages branch 4 times, most recently from 05d8516 to 475b5d7 Compare April 27, 2026 22:15
@renovate renovate Bot force-pushed the renovate/npm-packages branch 4 times, most recently from 8aefefb to 90f3ebb Compare May 7, 2026 10:09
@renovate renovate Bot force-pushed the renovate/npm-packages branch from 90f3ebb to c338546 Compare May 7, 2026 20:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

✒️ documentation Documentation updates, like README changes 📦 package Updates in package structure or package.json

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants