Skip to content

deps: bump the npm-astro-starlight group across 1 directory with 3 updates#88

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm-astro-starlight-d70e180ef0
Open

deps: bump the npm-astro-starlight group across 1 directory with 3 updates#88
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm-astro-starlight-d70e180ef0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 11, 2026

Bumps the npm-astro-starlight group with 3 updates in the / directory: @astrojs/starlight, astro and @astrojs/check.

Updates @astrojs/starlight from 0.37.1 to 0.37.7

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.37.7

Patch Changes

  • #3726 8a09b60 Thanks @​delucis! - Fixes an issue using components containing scripts inside Starlight’s steps component in versions of Astro >= 5.16.9

@​astrojs/starlight@​0.37.6

Patch Changes

@​astrojs/starlight@​0.37.5

Patch Changes

@​astrojs/starlight@​0.37.4

Patch Changes

  • #3534 703fab0 Thanks @​HiDeoo! - Fixes support for running builds when npx is unavailable.

    Previously, Starlight would spawn a process to run the Pagefind search indexing binary using npx. On platforms where npx isn’t available, this could cause issues. Starlight now runs Pagefind using its Node.js API to avoid a separate process. As a side effect, you may notice that logging during builds is now less verbose.

  • #3656 a0e6368 Thanks @​delucis! - Fixes several edge cases in highlighting the current page heading in Starlight’s table of contents

  • #3663 00cbf00 Thanks @​lines-of-codes! - Adds Thai language support

  • #3658 ac79329 Thanks @​delucis! - Avoids adding redundant aria-current="false" attributes to sidebar entries

  • #3382 db295c2 Thanks @​trueberryless! - Fixes an issue where the mobile table of contents is unable to find the first heading when a page has a tall banner.

@​astrojs/starlight@​0.37.3

Patch Changes

@​astrojs/starlight@​0.37.2

Patch Changes

Changelog

Sourced from @​astrojs/starlight's changelog.

0.37.7

Patch Changes

  • #3726 8a09b60 Thanks @​delucis! - Fixes an issue using components containing scripts inside Starlight’s steps component in versions of Astro >= 5.16.9

0.37.6

Patch Changes

0.37.5

Patch Changes

0.37.4

Patch Changes

  • #3534 703fab0 Thanks @​HiDeoo! - Fixes support for running builds when npx is unavailable.

    Previously, Starlight would spawn a process to run the Pagefind search indexing binary using npx. On platforms where npx isn’t available, this could cause issues. Starlight now runs Pagefind using its Node.js API to avoid a separate process. As a side effect, you may notice that logging during builds is now less verbose.

  • #3656 a0e6368 Thanks @​delucis! - Fixes several edge cases in highlighting the current page heading in Starlight’s table of contents

  • #3663 00cbf00 Thanks @​lines-of-codes! - Adds Thai language support

  • #3658 ac79329 Thanks @​delucis! - Avoids adding redundant aria-current="false" attributes to sidebar entries

  • #3382 db295c2 Thanks @​trueberryless! - Fixes an issue where the mobile table of contents is unable to find the first heading when a page has a tall banner.

0.37.3

Patch Changes

0.37.2

Patch Changes

Commits

Updates astro from 5.16.6 to 6.0.2

Release notes

Sourced from astro's releases.

astro@6.0.2

Patch Changes

astro@6.0.1

Patch Changes

  • #15827 a4c0d0b Thanks @​matthewp! - Fixes astro add so the tsconfig preview shows the actual pending changes before confirmation

astro@6.0.0

Major Changes

  • #14446 ece667a Thanks @​florian-lefebvre! - Removes entryPoints on astro:build:ssr hook (Integration API) - (v6 upgrade guidance)

  • #15535 dfe2e22 Thanks @​florian-lefebvre! - Deprecates loadManifest() and loadApp() from astro/app/node (Adapter API) - (v6 upgrade guidance)

  • #15006 f361730 Thanks @​florian-lefebvre! - Removes session test driver - (v6 upgrade guidance)

  • #15461 9f21b24 Thanks @​florian-lefebvre! - BREAKING CHANGE to the v6 beta Adapter API only: renames entryType to entrypointResolution and updates possible values

    Astro 6 introduced a way to let adapters have more control over the entrypoint by passing entryType: 'self' to setAdapter(). However during beta development, the name was unclear and confusing.

    entryType is now renamed to entrypointResolution and its possible values are updated:

    • legacy-dynamic becomes explicit.
    • self becomes auto.

    If you are building an adapter with v6 beta and specifying entryType, update it:

    setAdapter({
        // ...
    -    entryType: 'legacy-dynamic'
    +    entrypointResolution: 'explicit'
    })
    setAdapter({
    // ...
    
    entryType: 'self'
    
    
    entrypointResolution: 'auto'
    })
  • #14426 861b9cc Thanks @​florian-lefebvre! - Removes the deprecated emitESMImage() function - (v6 upgrade guidance)

  • #15006 f361730 Thanks @​florian-lefebvre! - Deprecates session driver string signature - (v6 upgrade guidance)

  • #15180 8780ff2 Thanks @​Princesseuh! - Adds support for converting SVGs to raster images (PNGs, WebP, etc) to the default Sharp image service - (v6 upgrade guidance)

  • ... (truncated)

    Changelog

    Sourced from astro's changelog.

    6.0.2

    Patch Changes

    6.0.1

    Patch Changes

    • #15827 a4c0d0b Thanks @​matthewp! - Fixes astro add so the tsconfig preview shows the actual pending changes before confirmation

    6.0.0

    Major Changes

    • #14446 ece667a Thanks @​florian-lefebvre! - Removes entryPoints on astro:build:ssr hook (Integration API) - (v6 upgrade guidance)

    • #15535 dfe2e22 Thanks @​florian-lefebvre! - Deprecates loadManifest() and loadApp() from astro/app/node (Adapter API) - (v6 upgrade guidance)

    • #15006 f361730 Thanks @​florian-lefebvre! - Removes session test driver - (v6 upgrade guidance)

    • #15461 9f21b24 Thanks @​florian-lefebvre! - BREAKING CHANGE to the v6 beta Adapter API only: renames entryType to entrypointResolution and updates possible values

      Astro 6 introduced a way to let adapters have more control over the entrypoint by passing entryType: 'self' to setAdapter(). However during beta development, the name was unclear and confusing.

      entryType is now renamed to entrypointResolution and its possible values are updated:

      • legacy-dynamic becomes explicit.
      • self becomes auto.

      If you are building an adapter with v6 beta and specifying entryType, update it:

      setAdapter({
          // ...
      -    entryType: 'legacy-dynamic'
      +    entrypointResolution: 'explicit'
      })
      setAdapter({
      // ...
      
      entryType: 'self'
      
      
      entrypointResolution: 'auto'
      })
  • #14426 861b9cc Thanks @​florian-lefebvre! - Removes the deprecated emitESMImage() function - (v6 upgrade guidance)

  • #15006 f361730 Thanks @​florian-lefebvre! - Deprecates session driver string signature - (v6 upgrade guidance)

  • ... (truncated)

    Commits

    Updates @astrojs/check from 0.9.6 to 0.9.7

    Release notes

    Sourced from @​astrojs/check's releases.

    @​astrojs/check@​0.9.7

    Patch Changes

    Changelog

    Sourced from @​astrojs/check's changelog.

    0.9.7

    Patch Changes

    0.9.7-beta.1

    Patch Changes

    0.9.6-beta.1

    Patch Changes

    0.9.6-alpha.0

    Patch Changes

    • Updated dependencies [df6d2d7]:
      • @​astrojs/language-server@​2.16.1-alpha.0
    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
    • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
    • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

    …dates
    
    Bumps the npm-astro-starlight group with 3 updates in the / directory: [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) and [@astrojs/check](https://github.com/withastro/astro/tree/HEAD/packages/language-tools/astro-check).
    
    
    Updates `@astrojs/starlight` from 0.37.1 to 0.37.7
    - [Release notes](https://github.com/withastro/starlight/releases)
    - [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)
    - [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.37.7/packages/starlight)
    
    Updates `astro` from 5.16.6 to 6.0.2
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/astro@6.0.2/packages/astro)
    
    Updates `@astrojs/check` from 0.9.6 to 0.9.7
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/language-tools/astro-check/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/check@0.9.7/packages/language-tools/astro-check)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.37.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-astro-starlight
    - dependency-name: astro
      dependency-version: 6.0.2
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: npm-astro-starlight
    - dependency-name: "@astrojs/check"
      dependency-version: 0.9.7
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-astro-starlight
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot @github
    Copy link
    Copy Markdown
    Contributor Author

    dependabot bot commented on behalf of github Mar 11, 2026

    Labels

    The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

    Please fix the above issues or remove invalid values from dependabot.yml.

    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