Skip to content

build(deps): bump the astro group with 6 updates#4202

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

build(deps): bump the astro group with 6 updates#4202
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/astro-6973d9432b

Conversation

@dependabot
Copy link
Contributor

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

Bumps the astro group with 6 updates:

Package From To
@astrojs/cloudflare 12.6.12 13.0.2
@astrojs/markdown-remark 6.3.10 7.0.0
@astrojs/mdx 4.3.13 5.0.0
@astrojs/rss 4.0.15 4.0.17
@astrojs/vue 5.1.4 6.0.0
astro 5.18.0 6.0.2

Updates @astrojs/cloudflare from 12.6.12 to 13.0.2

Release notes

Sourced from @​astrojs/cloudflare's releases.

@​astrojs/cloudflare@​13.0.2

Patch Changes

  • #15832 95e12a2 Thanks @​Princesseuh! - Fixes return; syntax not working in the frontmatter correctly in certain contexts

  • #15803 e42b015 Thanks @​merlinnot! - Fixes the Cloudflare adapter adding a SESSION KV binding even when sessions are explicitly configured to use a different driver, such as unstorage/drivers/null.

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.1

@​astrojs/cloudflare@​13.0.0

Major Changes

  • #14306 141c4a2 Thanks @​ematipico! - Changes the API for creating a custom entrypoint, replacing the createExports() function with a direct export pattern.

    What should I do?

    If you're using a custom entryPoint in your Cloudflare adapter config, update your existing worker file that uses createExports() to reflect the new, simplified pattern:

    my-entry.ts

    import type { SSRManifest } from 'astro';
    import { App } from 'astro/app';
    import { handle } from '@astrojs/cloudflare/handler';
    import { DurableObject } from 'cloudflare:workers';
    class MyDurableObject extends DurableObject<Env> {
    constructor(ctx: DurableObjectState, env: Env) {
    super(ctx, env);
    }
    }
    export function createExports(manifest: SSRManifest) {
    const app = new App(manifest);
    return {
    default: {
    async fetch(request, env, ctx) {
    await env.MY_QUEUE.send('log');
    return handle(manifest, app, request, env, ctx);
    },
    async queue(batch, _env) {
    let messages = JSON.stringify(batch.messages);
    console.log(consumed from our queue: ${messages});
    },
    } satisfies ExportedHandler<Env>,
    MyDurableObject: MyDurableObject,
    };
    }

... (truncated)

Changelog

Sourced from @​astrojs/cloudflare's changelog.

13.0.2

Patch Changes

  • #15832 95e12a2 Thanks @​Princesseuh! - Fixes return; syntax not working in the frontmatter correctly in certain contexts

  • #15803 e42b015 Thanks @​merlinnot! - Fixes the Cloudflare adapter adding a SESSION KV binding even when sessions are explicitly configured to use a different driver, such as unstorage/drivers/null.

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.1

13.0.1

Patch Changes

  • Updated dependencies [e20474b]:
    • @​astrojs/underscore-redirects@​1.0.1

13.0.0

Major Changes

  • #14306 141c4a2 Thanks @​ematipico! - Changes the API for creating a custom entrypoint, replacing the createExports() function with a direct export pattern.

    What should I do?

    If you're using a custom entryPoint in your Cloudflare adapter config, update your existing worker file that uses createExports() to reflect the new, simplified pattern:

    my-entry.ts

    import type { SSRManifest } from 'astro';
    import { App } from 'astro/app';
    import { handle } from '@astrojs/cloudflare/handler';
    import { DurableObject } from 'cloudflare:workers';
    class MyDurableObject extends DurableObject<Env> {
    constructor(ctx: DurableObjectState, env: Env) {
    super(ctx, env);
    }
    }
    export function createExports(manifest: SSRManifest) {
    const app = new App(manifest);
    return {
    default: {
    async fetch(request, env, ctx) {
    await env.MY_QUEUE.send('log');
    return handle(manifest, app, request, env, ctx);
    },

... (truncated)

Commits

Updates @astrojs/markdown-remark from 6.3.10 to 7.0.0

Release notes

Sourced from @​astrojs/markdown-remark's releases.

@​astrojs/markdown-remark@​7.0.0

Major Changes

Minor Changes

  • #15277 cb99214 Thanks @​ematipico! - Fixes an issue where the function createShikiHighlighter would always create a new Shiki highlighter instance. Now the function returns a cached version of the highlighter based on the Shiki options. This should improve the performance for sites that heavily rely on Shiki and code in their pages.

  • #15332 7c55f80 Thanks @​matthewp! - Exposes the fileURL option in MarkdownProcessorRenderOptions, allowing callers to specify the file URL for resolving relative image paths.

Patch Changes

@​astrojs/markdown-remark@​7.0.0-beta.11

Patch Changes

@​astrojs/markdown-remark@​7.0.0-beta.10

Patch Changes

  • Updated dependencies [745e632]:
    • @​astrojs/internal-helpers@​0.8.0-beta.2

@​astrojs/markdown-remark@​7.0.0-beta.9

Major Changes

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/markdown-remark's changelog.

7.0.0

Major Changes

Minor Changes

  • #15277 cb99214 Thanks @​ematipico! - Fixes an issue where the function createShikiHighlighter would always create a new Shiki highlighter instance. Now the function returns a cached version of the highlighter based on the Shiki options. This should improve the performance for sites that heavily rely on Shiki and code in their pages.

  • #15332 7c55f80 Thanks @​matthewp! - Exposes the fileURL option in MarkdownProcessorRenderOptions, allowing callers to specify the file URL for resolving relative image paths.

Patch Changes

7.0.0-beta.11

Patch Changes

7.0.0-beta.10

Patch Changes

  • Updated dependencies [745e632]:
    • @​astrojs/internal-helpers@​0.8.0-beta.2

7.0.0-beta.9

Major Changes

... (truncated)

Commits

Updates @astrojs/mdx from 4.3.13 to 5.0.0

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​5.0.0

Major Changes

Patch Changes

@​astrojs/mdx@​5.0.0-beta.12

Patch Changes

  • Updated dependencies []:
    • @​astrojs/markdown-remark@​7.0.0-beta.11

@​astrojs/mdx@​5.0.0-beta.11

Patch Changes

  • Updated dependencies []:
    • @​astrojs/markdown-remark@​7.0.0-beta.10

@​astrojs/mdx@​5.0.0-beta.10

Patch Changes

@​astrojs/mdx@​5.0.0-beta.9

Patch Changes

  • Updated dependencies [1fa4177]:
    • @​astrojs/markdown-remark@​7.0.0-beta.8

@​astrojs/mdx@​5.0.0-beta.8

Major Changes

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/mdx's changelog.

5.0.0

Major Changes

Patch Changes

5.0.0-beta.12

Patch Changes

  • Updated dependencies []:
    • @​astrojs/markdown-remark@​7.0.0-beta.11

5.0.0-beta.11

Patch Changes

  • Updated dependencies []:
    • @​astrojs/markdown-remark@​7.0.0-beta.10

5.0.0-beta.10

Patch Changes

5.0.0-beta.9

Patch Changes

  • Updated dependencies [1fa4177]:
    • @​astrojs/markdown-remark@​7.0.0-beta.8

5.0.0-beta.8

... (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/vue from 5.1.4 to 6.0.0

Release notes

Sourced from @​astrojs/vue's releases.

@​astrojs/vue@​6.0.0

Major Changes

Minor Changes

  • #15425 0317e99 Thanks @​ocavue! - Updates @vitejs/plugin-vue to v6, @vitejs/plugin-vue-jsx to v5, and vite-plugin-vue-devtools to v8. No changes are needed from users.

Patch Changes

Changelog

Sourced from @​astrojs/vue's changelog.

6.0.0

Major Changes

Minor Changes

  • #15425 0317e99 Thanks @​ocavue! - Updates @vitejs/plugin-vue to v6, @vitejs/plugin-vue-jsx to v5, and vite-plugin-vue-devtools to v8. No changes are needed from users.

Patch Changes

6.0.0-beta.1

Minor Changes

  • #15425 0317e99 Thanks @​ocavue! - Updates @vitejs/plugin-vue to v6, @vitejs/plugin-vue-jsx to v5, and vite-plugin-vue-devtools to v8. No changes are needed from users.

6.0.0-beta.0

Patch Changes

6.0.0-alpha.1

Patch Changes

  • #15045 31074fc Thanks @​ematipico! - Fixes an issue where using the Vue integration with the Cloudflare adapter resulted in some runtime errors.

6.0.0-alpha.0

Major Changes

Patch Changes

Commits

Updates astro from 5.18.0 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'
    })
    Description has been truncated

@dependabot dependabot bot added area/frontend Needs frontend code changes dependency-upgrade Dependency upgrade is needed labels Mar 11, 2026
@github-project-automation github-project-automation bot moved this to To review in Pull Requests Mar 11, 2026
Bumps the astro group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/cloudflare](https://github.com/withastro/astro/tree/HEAD/packages/integrations/cloudflare) | `12.6.12` | `13.0.2` |
| [@astrojs/markdown-remark](https://github.com/withastro/astro/tree/HEAD/packages/markdown/remark) | `6.3.10` | `7.0.0` |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `4.3.13` | `5.0.0` |
| [@astrojs/rss](https://github.com/withastro/astro/tree/HEAD/packages/astro-rss) | `4.0.15` | `4.0.17` |
| [@astrojs/vue](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vue) | `5.1.4` | `6.0.0` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.18.0` | `6.0.2` |


Updates `@astrojs/cloudflare` from 12.6.12 to 13.0.2
- [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.0.2/packages/integrations/cloudflare)

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

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

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/vue` from 5.1.4 to 6.0.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/vue/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/vue@6.0.0/packages/integrations/vue)

Updates `astro` from 5.18.0 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)

---
updated-dependencies:
- dependency-name: "@astrojs/cloudflare"
  dependency-version: 13.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: "@astrojs/markdown-remark"
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: "@astrojs/mdx"
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: "@astrojs/rss"
  dependency-version: 4.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/vue"
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: astro
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: astro
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/astro-6973d9432b branch from 6ffe34a to 13e8b13 Compare March 12, 2026 09:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/frontend Needs frontend code changes dependency-upgrade Dependency upgrade is needed

Projects

Status: To review

Development

Successfully merging this pull request may close these issues.

0 participants