Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 30, 2025

Bumps the dev-dependencies group with 7 updates:

Package From To
@astrojs/mdx 0.19.1 4.3.1
@astrojs/react 2.2.1 4.3.0
@astrojs/sitemap 1.3.1 3.4.2
astro 2.4.5 5.12.5
shiki 0.14.2 3.8.1
unist-builder 3.0.0 4.0.0
unist-util-visit 4.1.0 5.0.0

Updates @astrojs/mdx from 0.19.1 to 4.3.1

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​4.3.1

Patch Changes

  • Updated dependencies [6bd5f75]:
    • @​astrojs/markdown-remark@​6.3.3

@​astrojs/mdx@​4.3.0

Minor Changes

  • #13809 3c3b492 Thanks @​ascorbic! - Increases minimum Node.js version to 18.20.8

    Node.js 18 has now reached end-of-life and should not be used. For now, Astro will continue to support Node.js 18.20.8, which is the final LTS release of Node.js 18, as well as Node.js 20 and Node.js 22 or later. We will drop support for Node.js 18 in a future release, so we recommend upgrading to Node.js 22 as soon as possible. See Astro's Node.js support policy for more details.

    ⚠️ Important note for users of Cloudflare Pages: The current build image for Cloudflare Pages uses Node.js 18.17.1 by default, which is no longer supported by Astro. If you are using Cloudflare Pages you should override the default Node.js version to Node.js 22. This does not affect users of Cloudflare Workers, which uses Node.js 22 by default.

Patch Changes

  • Updated dependencies []:
    • @​astrojs/markdown-remark@​6.3.2

@​astrojs/mdx@​4.2.6

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

4.3.1

Patch Changes

  • Updated dependencies [6bd5f75]:
    • @​astrojs/markdown-remark@​6.3.3

4.3.0

Minor Changes

  • #13809 3c3b492 Thanks @​ascorbic! - Increases minimum Node.js version to 18.20.8

    Node.js 18 has now reached end-of-life and should not be used. For now, Astro will continue to support Node.js 18.20.8, which is the final LTS release of Node.js 18, as well as Node.js 20 and Node.js 22 or later. We will drop support for Node.js 18 in a future release, so we recommend upgrading to Node.js 22 as soon as possible. See Astro's Node.js support policy for more details.

    ⚠️ Important note for users of Cloudflare Pages: The current build image for Cloudflare Pages uses Node.js 18.17.1 by default, which is no longer supported by Astro. If you are using Cloudflare Pages you should override the default Node.js version to Node.js 22. This does not affect users of Cloudflare Workers, which uses Node.js 22 by default.

Patch Changes

  • Updated dependencies []:
    • @​astrojs/markdown-remark@​6.3.2

4.2.6

Patch Changes

4.2.5

Patch Changes

4.2.4

Patch Changes

4.2.3

Patch Changes

4.2.2

... (truncated)

Commits

Updates @astrojs/react from 2.2.1 to 4.3.0

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​4.3.0

Minor Changes

  • #13809 3c3b492 Thanks @​ascorbic! - Increases minimum Node.js version to 18.20.8

    Node.js 18 has now reached end-of-life and should not be used. For now, Astro will continue to support Node.js 18.20.8, which is the final LTS release of Node.js 18, as well as Node.js 20 and Node.js 22 or later. We will drop support for Node.js 18 in a future release, so we recommend upgrading to Node.js 22 as soon as possible. See Astro's Node.js support policy for more details.

    ⚠️ Important note for users of Cloudflare Pages: The current build image for Cloudflare Pages uses Node.js 18.17.1 by default, which is no longer supported by Astro. If you are using Cloudflare Pages you should override the default Node.js version to Node.js 22. This does not affect users of Cloudflare Workers, which uses Node.js 22 by default.

@​astrojs/react@​4.2.7

Patch Changes

@​astrojs/react@​4.2.6

Patch Changes

Changelog

Sourced from @​astrojs/react's changelog.

4.3.0

Minor Changes

  • #13809 3c3b492 Thanks @​ascorbic! - Increases minimum Node.js version to 18.20.8

    Node.js 18 has now reached end-of-life and should not be used. For now, Astro will continue to support Node.js 18.20.8, which is the final LTS release of Node.js 18, as well as Node.js 20 and Node.js 22 or later. We will drop support for Node.js 18 in a future release, so we recommend upgrading to Node.js 22 as soon as possible. See Astro's Node.js support policy for more details.

    ⚠️ Important note for users of Cloudflare Pages: The current build image for Cloudflare Pages uses Node.js 18.17.1 by default, which is no longer supported by Astro. If you are using Cloudflare Pages you should override the default Node.js version to Node.js 22. This does not affect users of Cloudflare Workers, which uses Node.js 22 by default.

4.2.7

Patch Changes

4.2.6

Patch Changes

4.2.5

Patch Changes

4.2.4

Patch Changes

4.2.3

Patch Changes

4.2.2

Patch Changes

4.2.1

... (truncated)

Commits

Updates @astrojs/sitemap from 1.3.1 to 3.4.2

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.4.2

Patch Changes

@​astrojs/sitemap@​3.4.1

Patch Changes

  • #13871 8a1e849 Thanks @​blimmer! - Uncaught errors in the filter method will now bubble, causing the astro build to fail.

@​astrojs/sitemap@​3.4.0

Minor Changes

  • #13753 90293de Thanks @​mattyoho! - Customize the filenames of sitemap XML files generated by the @astro/sitemap integration by setting filenameBase in the integration configuration settings. This may be useful when deploying an Astro site at a path on a domain with preexisting sitemap files.

    Generated sitemap files will appear at /sitemap-0.xml and /sitemap-index.xml by default, which may conflict with preexisting files. Set filenameBase to a custom value to avoid that if so:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    export default defineConfig({
    site: 'https://example.com',
    integrations: [
    sitemap({
    filenameBase: 'astronomy-sitemap',
    }),
    ],
    });

    This will yield sitemap and index files as https://example.com/astronomy-sitemap-0.xml and https://example.com/astronomy-sitemap-index.xml.

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.4.2

Patch Changes

3.4.1

Patch Changes

  • #13871 8a1e849 Thanks @​blimmer! - Uncaught errors in the filter method will now bubble, causing the astro build to fail.

3.4.0

Minor Changes

  • #13753 90293de Thanks @​mattyoho! - Customize the filenames of sitemap XML files generated by the @astro/sitemap integration by setting filenameBase in the integration configuration settings. This may be useful when deploying an Astro site at a path on a domain with preexisting sitemap files.

    Generated sitemap files will appear at /sitemap-0.xml and /sitemap-index.xml by default, which may conflict with preexisting files. Set filenameBase to a custom value to avoid that if so:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    export default defineConfig({
    site: 'https://example.com',
    integrations: [
    sitemap({
    filenameBase: 'astronomy-sitemap',
    }),
    ],
    });

    This will yield sitemap and index files as https://example.com/astronomy-sitemap-0.xml and https://example.com/astronomy-sitemap-index.xml.

3.3.1

Patch Changes

3.3.0

Minor Changes

3.2.1

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by matthewp, a new releaser for @​astrojs/sitemap since your current version.


Updates astro from 2.4.5 to 5.12.5

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

  • #14059 19f53eb Thanks @​benosmac! - Fixes a bug in i18n implementation, where Astro didn't emit the correct pages when fallback is enabled, and a locale uses a catch-all route, e.g. src/pages/es/[...catchAll].astro

  • #14155 31822c3 Thanks @​ascorbic! - Fixes a bug that caused an error "serverEntrypointModule[_start] is not a function" in some adapters

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #14119 14807a4 Thanks @​ascorbic! - Fixes a bug that caused builds to fail if a client directive was mistakenly added to an Astro component

  • #14001 4b03d9c Thanks @​dnek! - Fixes an issue where getImage() assigned the resized base URL to the srcset URL of ImageTransform, which matched the width, height, and format of the original image.

[email protected]

Patch Changes

... (truncated)

Changelog

Sourced from astro's changelog.

2.10.14

Patch Changes

2.10.13

Patch Changes

2.10.12

Patch Changes

  • #8144 04caa99c4 Thanks @​lilnasy! - Fixed an issue where data entries' id included backslashes instead of forward slashes on Windows.

2.10.11

Patch Changes

2.10.10

Patch Changes

... (truncated)

Commits

Updates shiki from 0.14.2 to 3.8.1

Release notes

Sourced from shiki's releases.

v3.8.1

   🐞 Bug Fixes

    View changes on GitHub

v3.8.0

   🚀 Features

    View changes on GitHub

v3.7.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.6.0

   🚀 Features

    View changes on GitHub

v3.5.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.4.2

   🚀 Features

... (truncated)

Commits

Updates unist-builder from 3.0.0 to 4.0.0

Release notes

Sourced from unist-builder's releases.

4.0.0

Change

  • a563fa1 Update @types/unist migrate: update too
  • 1a9fef4 Change to require Node.js 16 migrate: update too
  • dfdf244 Change to use export map migrate: don’t use private APIs

Full Changelog: syntax-tree/unist-builder@3.0.1...4.0.0

3.0.1

Misc

  • d30b30d 08a5c6f 2beb3f0 Add improved docs
  • fbbd4ba 497b867 3196283 Refactor code-style
  • 667beb8 1e875fd Update tsconfig.json

Full Changelog: syntax-tree/unist-builder@3.0.0...3.0.1

Commits

Updates unist-util-visit from 4.1.0 to 5.0.0

Release notes

Sourced from unist-util-visit's releases.

5.0.0

Change

  • 4dcff31 Update @types/unist migrate: update too
  • befc0b3 Change to require Node.js 16 migrate: update too
  • b5f36de Change to use export map migrate: don’t use private APIs
  • 89fc050 Change to remove complex-types.d.ts migrate: use main export
  • 12c9ee9 Change to pass undefined, not null migrate: change null to undefined

Fix

  • 3cb2732 Fix performance of InclusiveDescendant type

Full Changelog: syntax-tree/unist-util-visit@4.1.2...5.0.0

4.1.2

Misc

  • 332b6e0 Add improved docs
  • 754d038 9f4813b Refactor code-style
  • 69cbec6 Update tsconfig.json

Full Changelog: syntax-tree/unist-util-visit@4.1.1...4.1.2

4.1.1

Full Changelog: syntax-tree/unist-util-visit@4.1.0...4.1.1

Commits

You can trigger a rebase of this PR 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 30, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-66fbd2ff76 branch from 7b6ae85 to 05bd6d0 Compare August 21, 2025 13:37
Copy link
Author

dependabot bot commented on behalf of github Sep 16, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-66fbd2ff76 branch from 05bd6d0 to 7acb6a4 Compare September 18, 2025 13:04
Bumps the dev-dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `0.19.1` | `4.3.1` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `2.2.1` | `4.3.0` |
| [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `1.3.1` | `3.4.2` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `2.4.5` | `5.12.5` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `0.14.2` | `3.8.1` |
| [unist-builder](https://github.com/syntax-tree/unist-builder) | `3.0.0` | `4.0.0` |
| [unist-util-visit](https://github.com/syntax-tree/unist-util-visit) | `4.1.0` | `5.0.0` |


Updates `@astrojs/mdx` from 0.19.1 to 4.3.1
- [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/[email protected]/packages/integrations/mdx)

Updates `@astrojs/react` from 2.2.1 to 4.3.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/[email protected]/packages/integrations/react)

Updates `@astrojs/sitemap` from 1.3.1 to 3.4.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/[email protected]/packages/integrations/sitemap)

Updates `astro` from 2.4.5 to 5.12.5
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG-v2.md)
- [Commits](https://github.com/withastro/astro/commits/[email protected]/packages/astro)

Updates `shiki` from 0.14.2 to 3.8.1
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v3.8.1/packages/shiki)

Updates `unist-builder` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/syntax-tree/unist-builder/releases)
- [Commits](syntax-tree/unist-builder@3.0.0...4.0.0)

Updates `unist-util-visit` from 4.1.0 to 5.0.0
- [Release notes](https://github.com/syntax-tree/unist-util-visit/releases)
- [Commits](syntax-tree/unist-util-visit@4.1.0...5.0.0)

---
updated-dependencies:
- dependency-name: "@astrojs/mdx"
  dependency-version: 4.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@astrojs/react"
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.4.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: astro
  dependency-version: 5.12.5
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: shiki
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: unist-builder
  dependency-version: 4.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: unist-util-visit
  dependency-version: 5.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-66fbd2ff76 branch from 7acb6a4 to 8789d6c Compare September 18, 2025 15:18
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