Skip to content

build(deps-dev): bump the astro group across 1 directory with 13 updates#574

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/astro-f855a8001a
Open

build(deps-dev): bump the astro group across 1 directory with 13 updates#574
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/astro-f855a8001a

Conversation

@dependabot
Copy link
Contributor

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

Bumps the astro group with 13 updates in the / directory:

Package From To
@astrojs/check 0.9.6 0.9.7
@astrojs/cloudflare 12.6.12 13.1.1
@astrojs/language-server 2.16.3 2.16.4
@astrojs/react 4.4.2 5.0.0
@astrojs/rss 4.0.15 4.0.17
@astrojs/sitemap 3.7.0 3.7.1
@astrojs/starlight 0.37.7 0.38.1
@astrojs/starlight-docsearch 0.6.1 0.7.0
@astrojs/ts-plugin 1.10.6 1.10.7
astro 5.18.0 6.0.4
starlight-image-zoom 0.13.2 0.14.1
starlight-links-validator 0.19.2 0.20.1
starlight-llms-txt 0.7.0 0.8.0

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

Updates @astrojs/cloudflare from 12.6.12 to 13.1.1

Release notes

Sourced from @​astrojs/cloudflare's releases.

@​astrojs/cloudflare@​13.1.1

Patch Changes

  • #15815 d1872ee Thanks @​matthewp! - Prebundle additional Astro runtime dependencies for Cloudflare development server, speeding up initial start time and preventing required restarts.

  • #15872 3b47b89 Thanks @​Princesseuh! - Fixes images not working in dev mode when using the cloudflare option

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.1

@​astrojs/cloudflare@​13.1.0

Minor Changes

  • #15711 b2bd27b Thanks @​OliverSpeir! - Adds a prerenderEnvironment option to the Cloudflare adapter.

    By default, Cloudflare uses its workerd runtime for prerendering static pages. Set prerenderEnvironment to 'node' to use Astro's built-in Node.js prerender environment instead, giving prerendered pages access to the full Node.js ecosystem during both build and dev. This is useful when your prerendered pages depend on Node.js-specific APIs or NPM packages that aren't compatible with workerd.

    // astro.config.mjs
    import cloudflare from '@astrojs/cloudflare';
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    adapter: cloudflare({
    prerenderEnvironment: 'node',
    }),
    });

Patch Changes

  • #15845 50fcc8b Thanks @​aqiray! - fix: show actionable error when running astro preview without prior build

  • #15794 d1ac58e Thanks @​OliverSpeir! - Fixes image serving in passthrough mode by using the Cloudflare ASSETS binding instead of generic fetch, which does not work in Workers for local assets

  • #15850 660da74 Thanks @​tristanbes! - fix(cloudflare): forward configPath and other PluginConfig options to the Cloudflare Vite Plugin

    Options like configPath, inspectorPort, persistState, remoteBindings, and auxiliaryWorkers were accepted by the type system but never forwarded to cfVitePlugin(), making them silently ignored.

    Also fixes addWatchFile for configPath which resolved the path relative to the adapter's node_modules directory instead of the project root.

  • #15843 fcd237d Thanks @​Calvin-LL! - fix cloudflare image transform ignoring quality parameter

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.1

@​astrojs/cloudflare@​13.0.2

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/cloudflare's changelog.

13.1.1

Patch Changes

  • #15815 d1872ee Thanks @​matthewp! - Prebundle additional Astro runtime dependencies for Cloudflare development server, speeding up initial start time and preventing required restarts.

  • #15872 3b47b89 Thanks @​Princesseuh! - Fixes images not working in dev mode when using the cloudflare option

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.1

13.1.0

Minor Changes

  • #15711 b2bd27b Thanks @​OliverSpeir! - Adds a prerenderEnvironment option to the Cloudflare adapter.

    By default, Cloudflare uses its workerd runtime for prerendering static pages. Set prerenderEnvironment to 'node' to use Astro's built-in Node.js prerender environment instead, giving prerendered pages access to the full Node.js ecosystem during both build and dev. This is useful when your prerendered pages depend on Node.js-specific APIs or NPM packages that aren't compatible with workerd.

    // astro.config.mjs
    import cloudflare from '@astrojs/cloudflare';
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    adapter: cloudflare({
    prerenderEnvironment: 'node',
    }),
    });

Patch Changes

  • #15845 50fcc8b Thanks @​aqiray! - fix: show actionable error when running astro preview without prior build

  • #15794 d1ac58e Thanks @​OliverSpeir! - Fixes image serving in passthrough mode by using the Cloudflare ASSETS binding instead of generic fetch, which does not work in Workers for local assets

  • #15850 660da74 Thanks @​tristanbes! - fix(cloudflare): forward configPath and other PluginConfig options to the Cloudflare Vite Plugin

    Options like configPath, inspectorPort, persistState, remoteBindings, and auxiliaryWorkers were accepted by the type system but never forwarded to cfVitePlugin(), making them silently ignored.

    Also fixes addWatchFile for configPath which resolved the path relative to the adapter's node_modules directory instead of the project root.

  • #15843 fcd237d Thanks @​Calvin-LL! - fix cloudflare image transform ignoring quality parameter

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.1

13.0.2

... (truncated)

Commits
  • b16ee32 [ci] release (#15858)
  • 3b47b89 fix(cloudflare): Use passthrough in dev mode when using the cloudflare opti...
  • d1872ee fix(cloudflare): prebundle SSR deps for Starlight + Cloudflare dev (#15815)
  • 5a77dbc [ci] release (#15851)
  • 0c81216 [ci] format
  • 50fcc8b fix(cloudflare): show actionable error when running preview without prior bui...
  • b2bd27b Feat(cloudflare): configure prerender environment (#15711)
  • d1ac58e fix: cloudflare passthrough image service endpoint (#15794)
  • fcd237d fix(cloudflare): image transform ignoring quality parameter (#15843)
  • 271fea5 [ci] format
  • Additional commits viewable in compare view

Updates @astrojs/language-server from 2.16.3 to 2.16.4

Changelog

Sourced from @​astrojs/language-server's changelog.

2.16.4

Patch Changes

2.16.1

Patch Changes

2.16.1-beta.1

Patch Changes

2.16.1-alpha.0

Patch Changes

Commits

Updates @astrojs/react from 4.4.2 to 5.0.0

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​5.0.0

Major Changes

Minor Changes

Patch Changes

@​astrojs/react@​5.0.0-beta.4

Patch Changes

  • #15700 4e7f3e8 Thanks @​ocavue! - Improves how React components are identified when setting the include and/or exclude options in projects where multiple JSX frameworks are used together

  • Updated dependencies [4ebc1e3, 4e7f3e8]:

    • @​astrojs/internal-helpers@​0.8.0-beta.3
Changelog

Sourced from @​astrojs/react's changelog.

5.0.0

Major Changes

Minor Changes

Patch Changes

5.0.0-beta.4

Patch Changes

  • #15700 4e7f3e8 Thanks @​ocavue! - Improves how React components are identified when setting the include and/or exclude options in projects where multiple JSX frameworks are used together

  • Updated dependencies [4ebc1e3, 4e7f3e8]:

    • @​astrojs/internal-helpers@​0.8.0-beta.3

5.0.0-beta.3

Minor Changes

5.0.0-beta.2

Patch Changes

5.0.0-beta.1

Patch Changes

... (truncated)

Commits

Updates @astrojs/rss from 4.0.15 to 4.0.17

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.17

Patch Changes

@​astrojs/rss@​4.0.16

Patch Changes

Changelog

Sourced from @​astrojs/rss's changelog.

4.0.17

Patch Changes

4.0.16

Patch Changes

4.0.15-beta.4

Patch Changes

4.0.15-beta.3

Patch Changes

4.0.15-beta.2

Patch Changes

4.0.15-beta.1

Patch Changes

4.0.15-alpha.0

Patch Changes

Commits

Updates @astrojs/sitemap from 3.7.0 to 3.7.1

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.7.1

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.7.1

Patch Changes

3.6.1-beta.3

Patch Changes

3.6.1-beta.2

Patch Changes

3.6.1-alpha.1

Patch Changes

3.6.1-alpha.0

Patch Changes

Commits

Updates @astrojs/starlight from 0.37.7 to 0.38.1

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.38.1

Patch Changes

@​astrojs/starlight@​0.38.0

Minor Changes

  • #3644 0d2e7ed Thanks @​HiDeoo! - Adds support for Astro v6, drops support for Astro v5.

    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 @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

... (truncated)

Changelog

Sourced from @​astrojs/starlight's changelog.

0.38.1

Patch Changes

0.38.0

Minor Changes

  • #3644 0d2e7ed Thanks @​HiDeoo! - Adds support for Astro v6, drops support for Astro v5.

    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 @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 ...

    Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 13, 2026
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Mar 13, 2026

Deploying with  Cloudflare Workers  Cloudflare Workers

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

Status Name Latest Commit Updated (UTC)
❌ Deployment failed
View logs
developer-sumup-com db41ea9 Mar 19 2026, 03:16 AM

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/astro-f855a8001a branch 4 times, most recently from f02ae8d to b05fd77 Compare March 18, 2026 09:31
Bumps the astro group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/check](https://github.com/withastro/astro/tree/HEAD/packages/language-tools/astro-check) | `0.9.6` | `0.9.7` |
| [@astrojs/cloudflare](https://github.com/withastro/astro/tree/HEAD/packages/integrations/cloudflare) | `12.6.12` | `13.1.1` |
| [@astrojs/language-server](https://github.com/withastro/astro/tree/HEAD/packages/language-tools/language-server) | `2.16.3` | `2.16.4` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `4.4.2` | `5.0.0` |
| [@astrojs/rss](https://github.com/withastro/astro/tree/HEAD/packages/astro-rss) | `4.0.15` | `4.0.17` |
| [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.7.0` | `3.7.1` |
| [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.37.7` | `0.38.1` |
| [@astrojs/starlight-docsearch](https://github.com/withastro/starlight/tree/HEAD/packages/docsearch) | `0.6.1` | `0.7.0` |
| [@astrojs/ts-plugin](https://github.com/withastro/astro/tree/HEAD/packages/language-tools/ts-plugin) | `1.10.6` | `1.10.7` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.18.0` | `6.0.4` |
| [starlight-image-zoom](https://github.com/HiDeoo/starlight-image-zoom/tree/HEAD/packages/starlight-image-zoom) | `0.13.2` | `0.14.1` |
| [starlight-links-validator](https://github.com/HiDeoo/starlight-links-validator/tree/HEAD/packages/starlight-links-validator) | `0.19.2` | `0.20.1` |
| [starlight-llms-txt](https://github.com/delucis/starlight-llms-txt/tree/HEAD/packages/starlight-llms-txt) | `0.7.0` | `0.8.0` |



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)

Updates `@astrojs/cloudflare` from 12.6.12 to 13.1.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/cloudflare/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/cloudflare@13.1.1/packages/integrations/cloudflare)

Updates `@astrojs/language-server` from 2.16.3 to 2.16.4
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/language-tools/language-server/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro-vscode@2.16.4/packages/language-tools/language-server)

Updates `@astrojs/react` from 4.4.2 to 5.0.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/react/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/react@5.0.0/packages/integrations/react)

Updates `@astrojs/rss` from 4.0.15 to 4.0.17
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro-rss/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/rss@4.0.17/packages/astro-rss)

Updates `@astrojs/sitemap` from 3.7.0 to 3.7.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/sitemap@3.7.1/packages/integrations/sitemap)

Updates `@astrojs/starlight` from 0.37.7 to 0.38.1
- [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.38.1/packages/starlight)

Updates `@astrojs/starlight-docsearch` from 0.6.1 to 0.7.0
- [Release notes](https://github.com/withastro/starlight/releases)
- [Changelog](https://github.com/withastro/starlight/blob/main/packages/docsearch/CHANGELOG.md)
- [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight-docsearch@0.7.0/packages/docsearch)

Updates `@astrojs/ts-plugin` from 1.10.6 to 1.10.7
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/language-tools/ts-plugin/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/HEAD/packages/language-tools/ts-plugin)

Updates `astro` from 5.18.0 to 6.0.4
- [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.4/packages/astro)

Updates `starlight-image-zoom` from 0.13.2 to 0.14.1
- [Release notes](https://github.com/HiDeoo/starlight-image-zoom/releases)
- [Changelog](https://github.com/HiDeoo/starlight-image-zoom/blob/main/packages/starlight-image-zoom/CHANGELOG.md)
- [Commits](https://github.com/HiDeoo/starlight-image-zoom/commits/starlight-image-zoom@0.14.1/packages/starlight-image-zoom)

Updates `starlight-links-validator` from 0.19.2 to 0.20.1
- [Release notes](https://github.com/HiDeoo/starlight-links-validator/releases)
- [Changelog](https://github.com/HiDeoo/starlight-links-validator/blob/main/packages/starlight-links-validator/CHANGELOG.md)
- [Commits](https://github.com/HiDeoo/starlight-links-validator/commits/starlight-links-validator@0.20.1/packages/starlight-links-validator)

Updates `starlight-llms-txt` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/delucis/starlight-llms-txt/releases)
- [Changelog](https://github.com/delucis/starlight-llms-txt/blob/main/packages/starlight-llms-txt/CHANGELOG.md)
- [Commits](https://github.com/delucis/starlight-llms-txt/commits/starlight-llms-txt@0.8.0/packages/starlight-llms-txt)

---
updated-dependencies:
- dependency-name: "@astrojs/check"
  dependency-version: 0.9.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/cloudflare"
  dependency-version: 13.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: "@astrojs/language-server"
  dependency-version: 2.16.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/react"
  dependency-version: 5.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: "@astrojs/rss"
  dependency-version: 4.0.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.7.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/starlight"
  dependency-version: 0.38.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: astro
- dependency-name: "@astrojs/starlight-docsearch"
  dependency-version: 0.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: astro
- dependency-name: "@astrojs/ts-plugin"
  dependency-version: 1.10.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: astro
  dependency-version: 6.0.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: starlight-image-zoom
  dependency-version: 0.14.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: astro
- dependency-name: starlight-links-validator
  dependency-version: 0.20.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: astro
- dependency-name: starlight-llms-txt
  dependency-version: 0.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: astro
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/astro-f855a8001a branch from b05fd77 to db41ea9 Compare March 19, 2026 03:15
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 javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants