Skip to content

chore(deps): Bump the astro group across 1 directory with 4 updates#908

Merged
wrsmith108 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/astro-2cced5605c
May 14, 2026
Merged

chore(deps): Bump the astro group across 1 directory with 4 updates#908
wrsmith108 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/astro-2cced5605c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 3, 2026

Bumps the astro group with 4 updates in the / directory: astro, @astrojs/check, @astrojs/sitemap and @astrojs/vercel.

Updates astro from 6.1.9 to 6.3.2

Release notes

Sourced from astro's releases.

astro@6.3.2

Patch Changes

  • #16675 11d4592 Thanks @​ascorbic! - Fixes a regression where Astro.cache was undefined when experimental.cache was not configured.

    The previous documented behavior is for Astro.cache to always be defined as a no-op shim: cache.set() warns once, cache.invalidate() throws and cache.enabled can be used to gate. This allows library and user code can call cache methods without conditional checks. The cache provider registration was being gated at the call site on experimental.cache being configured, which meant the disabled shim branch inside the provider was unreachable and the Astro.cache getter was never attached to the context.

  • #16691 0f0a4ce Thanks @​matthewp! - Fixes HTMLElement is not defined error during HMR when using components with client-side scripts (e.g. Starlight <Tabs>) and the Cloudflare adapter

  • #16562 07529ec Thanks @​matthewp! - Fixes non-prerendered routes failing when a dynamic prerendered route exists in the same project with prerenderEnvironment: 'node'

  • #16638 272185b Thanks @​ematipico! - Fixes a bug where the Astro compiler wasn't freed at the end of the build. After the fix, the memory used by the compiler is now correctly freed at the end of the build.

  • #16544 d365c97 Thanks @​matthewp! - Tightens isRemotePath() to reject control characters after a leading slash and fixes the dev image endpoint origin check

  • #16685 889e748 Thanks @​farrosfr! - Improve validation messages for security.csp.directives when script-src or style-src are incorrectly placed in the directives array.

  • #16605 772f13a Thanks @​rururux! - Fixes assetsPrefix not being available on build from astro:config/server.

  • #16556 f38dec7 Thanks @​matthewp! - Rejects double-encoded URL paths with a 400 response instead of silently falling back to partial decoding

  • #16659 38bcb25 Thanks @​jsparkdev! - Fixes & characters appearing as raw entity strings (e.g. &[#38](https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/38);) in <meta> tags when viewed in link previews or raw HTML.

  • Updated dependencies [d365c97, 9256345]:

    • @​astrojs/internal-helpers@​0.9.1
    • @​astrojs/markdown-remark@​7.1.2

astro@6.3.1

Patch Changes

  • #16646 15fbc41 Thanks @​matthewp! - Fixes local images returning 404 on non-prerendered pages when using the generic image endpoint

astro@6.3.0

Minor Changes

  • #16366 d69f858 Thanks @​matthewp! - Adds a new experimental.advancedRouting option that lets you take full control of Astro's request handling pipeline by creating a src/app.ts file in your project.

    Today, Astro handles every incoming request through a fixed internal pipeline: trailing slash normalization, redirects, actions, middleware, page rendering, i18n, and so on. That pipeline works great for most sites, but as projects grow you often want to run your own logic between those steps — an auth check before rendering, a rate limiter before actions, custom logging around the whole stack. Advanced routing gives you that control.

    When enabled, Astro looks for a src/app.ts file in your project. If it finds one, that file becomes the entrypoint for all server-rendered requests. You compose the pipeline yourself using the handlers Astro provides, and you can slot your own logic anywhere in the chain.

    Enabling advanced routing

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    advancedRouting: true,

... (truncated)

Changelog

Sourced from astro's changelog.

6.3.2

Patch Changes

  • #16675 11d4592 Thanks @​ascorbic! - Fixes a regression where Astro.cache was undefined when experimental.cache was not configured.

    The previous documented behavior is for Astro.cache to always be defined as a no-op shim: cache.set() warns once, cache.invalidate() throws and cache.enabled can be used to gate. This allows library and user code can call cache methods without conditional checks. The cache provider registration was being gated at the call site on experimental.cache being configured, which meant the disabled shim branch inside the provider was unreachable and the Astro.cache getter was never attached to the context.

  • #16691 0f0a4ce Thanks @​matthewp! - Fixes HTMLElement is not defined error during HMR when using components with client-side scripts (e.g. Starlight <Tabs>) and the Cloudflare adapter

  • #16562 07529ec Thanks @​matthewp! - Fixes non-prerendered routes failing when a dynamic prerendered route exists in the same project with prerenderEnvironment: 'node'

  • #16638 272185b Thanks @​ematipico! - Fixes a bug where the Astro compiler wasn't freed at the end of the build. After the fix, the memory used by the compiler is now correctly freed at the end of the build.

  • #16544 d365c97 Thanks @​matthewp! - Tightens isRemotePath() to reject control characters after a leading slash and fixes the dev image endpoint origin check

  • #16685 889e748 Thanks @​farrosfr! - Improve validation messages for security.csp.directives when script-src or style-src are incorrectly placed in the directives array.

  • #16605 772f13a Thanks @​rururux! - Fixes assetsPrefix not being available on build from astro:config/server.

  • #16556 f38dec7 Thanks @​matthewp! - Rejects double-encoded URL paths with a 400 response instead of silently falling back to partial decoding

  • #16659 38bcb25 Thanks @​jsparkdev! - Fixes & characters appearing as raw entity strings (e.g. &[#38](https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/38);) in <meta> tags when viewed in link previews or raw HTML.

  • Updated dependencies [d365c97, 9256345]:

    • @​astrojs/internal-helpers@​0.9.1
    • @​astrojs/markdown-remark@​7.1.2

6.3.1

Patch Changes

  • #16646 15fbc41 Thanks @​matthewp! - Fixes local images returning 404 on non-prerendered pages when using the generic image endpoint

6.3.0

Minor Changes

  • #16366 d69f858 Thanks @​matthewp! - Adds a new experimental.advancedRouting option that lets you take full control of Astro's request handling pipeline by creating a src/app.ts file in your project.

    Today, Astro handles every incoming request through a fixed internal pipeline: trailing slash normalization, redirects, actions, middleware, page rendering, i18n, and so on. That pipeline works great for most sites, but as projects grow you often want to run your own logic between those steps — an auth check before rendering, a rate limiter before actions, custom logging around the whole stack. Advanced routing gives you that control.

    When enabled, Astro looks for a src/app.ts file in your project. If it finds one, that file becomes the entrypoint for all server-rendered requests. You compose the pipeline yourself using the handlers Astro provides, and you can slot your own logic anywhere in the chain.

    Enabling advanced routing

    // astro.config.mjs
    import { defineConfig } from 'astro/config';

... (truncated)

Commits

Updates @astrojs/check from 0.9.8 to 0.9.9

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.9

Patch Changes

Changelog

Sourced from @​astrojs/check's changelog.

0.9.9

Patch Changes

Commits

Updates @astrojs/sitemap from 3.7.0 to 3.7.2

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.7.2

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.7.2

Patch Changes

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/vercel from 10.0.4 to 10.0.7

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​10.0.7

Patch Changes

  • Updated dependencies [d365c97]:
    • @​astrojs/internal-helpers@​0.9.1

@​astrojs/vercel@​10.0.6

Patch Changes

  • #16486 0bae1a5 Thanks @​cyphercodes! - Fix forwarded serverless requests with streamed bodies by preserving the required duplex: 'half' option when rewriting middleware paths.

@​astrojs/vercel@​10.0.5

Patch Changes

Changelog

Sourced from @​astrojs/vercel's changelog.

10.0.7

Patch Changes

  • Updated dependencies [d365c97]:
    • @​astrojs/internal-helpers@​0.9.1

10.0.6

Patch Changes

  • #16486 0bae1a5 Thanks @​cyphercodes! - Fix forwarded serverless requests with streamed bodies by preserving the required duplex: 'half' option when rewriting middleware paths.

10.0.5

Patch Changes

Commits

[skip-impl-check]

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 3, 2026

Labels

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

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

@vercel
Copy link
Copy Markdown

vercel Bot commented May 3, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
website Ready Ready Preview, Comment May 14, 2026 5:43am

Request Review

@dependabot dependabot Bot changed the title chore(deps): Bump the astro group with 4 updates chore(deps): Bump the astro group across 1 directory with 4 updates May 4, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from 484e6fd to 6a1c179 Compare May 4, 2026 03:18
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from 6a1c179 to a76ffa5 Compare May 4, 2026 12:21
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from a76ffa5 to e9335fa Compare May 4, 2026 15:11
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from e9335fa to c5a0048 Compare May 5, 2026 15:08
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from c5a0048 to c4d1cee Compare May 5, 2026 16:42
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from c4d1cee to 8e0c33a Compare May 5, 2026 16:51
@dependabot dependabot Bot changed the title chore(deps): Bump the astro group across 1 directory with 4 updates chore(deps): bump the astro group across 1 directory with 4 updates May 6, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from 8e0c33a to 8ef8c8a Compare May 6, 2026 03:31
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from 8ef8c8a to 42e854a Compare May 7, 2026 01:23
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from 42e854a to b17d0f8 Compare May 7, 2026 21:27
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from b17d0f8 to 6bf3eb6 Compare May 8, 2026 19:12
@dependabot dependabot Bot changed the title chore(deps): bump the astro group across 1 directory with 4 updates chore(deps): Bump the astro group across 1 directory with 4 updates May 11, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from 6bf3eb6 to 950be7e Compare May 11, 2026 03:15
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from 950be7e to da15a74 Compare May 11, 2026 15:36
Bumps the astro group with 4 updates in the / directory: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [@astrojs/check](https://github.com/withastro/astro/tree/HEAD/packages/language-tools/astro-check), [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) and [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel).

Updates `astro` from 6.1.9 to 6.3.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.3.2/packages/astro)

Updates `@astrojs/check` from 0.9.8 to 0.9.9
- [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.9/packages/language-tools/astro-check)

Updates `@astrojs/sitemap` from 3.7.0 to 3.7.2
- [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.2/packages/integrations/sitemap)

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

---
updated-dependencies:
- dependency-name: "@astrojs/check"
  dependency-version: 0.9.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/vercel"
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: astro
  dependency-version: 6.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: astro
...

Signed-off-by: dependabot[bot] <support@github.com>
@wrsmith108 wrsmith108 force-pushed the dependabot/npm_and_yarn/astro-2cced5605c branch from f7fafb0 to 494fa0c Compare May 14, 2026 05:42
@wrsmith108 wrsmith108 merged commit 57200a4 into main May 14, 2026
40 checks passed
@wrsmith108 wrsmith108 deleted the dependabot/npm_and_yarn/astro-2cced5605c branch May 14, 2026 05:56
@github-actions
Copy link
Copy Markdown

E2E Test Results

E2E Test Results - May 14, 2026

Summary

  • Status: ✅ PASSED
  • Total Duration: 0.00s
  • Generated: 2026-05-14T05:58:27.617Z

Test Results

Phase Status Duration
CLI E2E ⏭️ Skipped -
MCP E2E ⏭️ Skipped -

Generated by skillsmith E2E test suite

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.

1 participant