Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/astro-668c81a0cf
Closed

build(deps-dev): bump the astro group across 1 directory with 5 updates#226
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/astro-668c81a0cf

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 9, 2025

Copy link
Copy Markdown
Contributor

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

Package From To
@astrojs/cloudflare 12.6.4 12.6.8
@astrojs/markdoc 0.15.5 0.15.6
@astrojs/react 4.3.0 4.3.1
@astrojs/sitemap 3.5.0 3.5.1
astro 5.13.2 5.13.6

Updates @astrojs/cloudflare from 12.6.4 to 12.6.8

Release notes

Sourced from @​astrojs/cloudflare's releases.

@​astrojs/cloudflare@​12.6.8

Patch Changes

@​astrojs/cloudflare@​12.6.7

Patch Changes

  • #14281 dfd88de Thanks @​ascorbic! - Fixes a regression that broke sites that used the compile image service without nodejs_compat set

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.0

@​astrojs/cloudflare@​12.6.6

Patch Changes

  • 9ecf359 Thanks @​alexanderniebuhr! - Improves the image proxy endpoint when using the default compile option to adhere to user configuration regarding the allowed remote domains

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.0

@​astrojs/cloudflare@​12.6.5

Patch Changes

  • #14259 02366e9 Thanks @​ascorbic! - Removes warning when using the adapter with a static build.

    The Cloudflare adapter now has several uses outside of on-demand rendered pages, so this warning is misleading. Similar warnings have already been removed from other adapters.

  • #14234 15b55f3 Thanks @​yanthomasdev! - Fixes an issue that could cause duplicate exports when configuring workerEntrypoint.namedExports

  • #14240 77b18fb Thanks @​delucis! - Increases the minimum supported version of Astro to 5.7.0

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.0
Changelog

Sourced from @​astrojs/cloudflare's changelog.

12.6.8

Patch Changes

12.6.7

Patch Changes

  • #14281 dfd88de Thanks @​ascorbic! - Fixes a regression that broke sites that used the compile image service without nodejs_compat set

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.0

12.6.6

Patch Changes

  • 9ecf359 Thanks @​alexanderniebuhr! - Improves the image proxy endpoint when using the default compile option to adhere to user configuration regarding the allowed remote domains

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.0

12.6.5

Patch Changes

  • #14259 02366e9 Thanks @​ascorbic! - Removes warning when using the adapter with a static build.

    The Cloudflare adapter now has several uses outside of on-demand rendered pages, so this warning is misleading. Similar warnings have already been removed from other adapters.

  • #14234 15b55f3 Thanks @​yanthomasdev! - Fixes an issue that could cause duplicate exports when configuring workerEntrypoint.namedExports

  • #14240 77b18fb Thanks @​delucis! - Increases the minimum supported version of Astro to 5.7.0

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.0
Commits

Updates @astrojs/markdoc from 0.15.5 to 0.15.6

Release notes

Sourced from @​astrojs/markdoc's releases.

@​astrojs/markdoc@​0.15.6

Patch Changes

Changelog

Sourced from @​astrojs/markdoc's changelog.

0.15.6

Patch Changes

Commits

Updates @astrojs/react from 4.3.0 to 4.3.1

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​4.3.1

Patch Changes

Changelog

Sourced from @​astrojs/react's changelog.

4.3.1

Patch Changes

Commits

Updates @astrojs/sitemap from 3.5.0 to 3.5.1

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.5.1

Patch Changes

  • #14233 896886c Thanks @​gouravkhunger! - Fixes the issue with the option lastmod where if it is defined it applies correctly to <url> entries in each sitemap-${i}.xml file but not the <sitemap> entries in the root sitemap-index.xml file.
Changelog

Sourced from @​astrojs/sitemap's changelog.

3.5.1

Patch Changes

  • #14233 896886c Thanks @​gouravkhunger! - Fixes the issue with the option lastmod where if it is defined it applies correctly to <url> entries in each sitemap-${i}.xml file but not the <sitemap> entries in the root sitemap-index.xml file.
Commits

Updates astro from 5.13.2 to 5.13.6

Release notes

Sourced from astro's releases.

astro@5.13.6

Patch Changes

astro@5.13.5

Patch Changes

  • #14286 09c5db3 Thanks @​ematipico! - BREAKING CHANGES only to the experimental CSP feature

    The following runtime APIs of the Astro global have been renamed:

    • Astro.insertDirective to Astro.csp.insertDirective
    • Astro.insertStyleResource to Astro.csp.insertStyleResource
    • Astro.insertStyleHash to Astro.csp.insertStyleHash
    • Astro.insertScriptResource to Astro.csp.insertScriptResource
    • Astro.insertScriptHash to Astro.csp.insertScriptHash

    The following runtime APIs of the APIContext have been renamed:

    • ctx.insertDirective to ctx.csp.insertDirective
    • ctx.insertStyleResource to ctx.csp.insertStyleResource
    • ctx.insertStyleHash to ctx.csp.insertStyleHash
    • ctx.insertScriptResource to ctx.csp.insertScriptResource
    • ctx.insertScriptHash to ctx.csp.insertScriptHash
  • #14283 3224637 Thanks @​ematipico! - Fixes an issue where CSP headers were incorrectly injected in the development server.

  • #14275 3e2f20d Thanks @​florian-lefebvre! - Adds support for experimental CSP when using experimental fonts

    Experimental fonts now integrate well with experimental CSP by injecting hashes for the styles it generates, as well as font-src directives.

    No action is required to benefit from it.

  • #14280 4b9fb73 Thanks @​ascorbic! - Fixes a bug that caused cookies to not be correctly set when using middleware sequences

  • #14276 77281c4 Thanks @​ArmandPhilippot! - Adds a missing export for resolveSrc, a documented image services utility.

astro@5.13.4

Patch Changes

  • #14260 86a1e40 Thanks @​jp-knj! - Fixes Astro.url.pathname to respect trailingSlash: 'never' configuration when using a base path. Previously, the root path with a base would incorrectly return /base/ instead of /base when trailingSlash was set to 'never'.

  • #14248 e81c4bd Thanks @​julesyoungberg! - Fixes a bug where actions named 'apply' do not work due to being a function prototype method.

... (truncated)

Changelog

Sourced from astro's changelog.

5.13.6

Patch Changes

5.13.5

Patch Changes

  • #14286 09c5db3 Thanks @​ematipico! - BREAKING CHANGES only to the experimental CSP feature

    The following runtime APIs of the Astro global have been renamed:

    • Astro.insertDirective to Astro.csp.insertDirective
    • Astro.insertStyleResource to Astro.csp.insertStyleResource
    • Astro.insertStyleHash to Astro.csp.insertStyleHash
    • Astro.insertScriptResource to Astro.csp.insertScriptResource
    • Astro.insertScriptHash to Astro.csp.insertScriptHash

    The following runtime APIs of the APIContext have been renamed:

    • ctx.insertDirective to ctx.csp.insertDirective
    • ctx.insertStyleResource to ctx.csp.insertStyleResource
    • ctx.insertStyleHash to ctx.csp.insertStyleHash
    • ctx.insertScriptResource to ctx.csp.insertScriptResource
    • ctx.insertScriptHash to ctx.csp.insertScriptHash
  • #14283 3224637 Thanks @​ematipico! - Fixes an issue where CSP headers were incorrectly injected in the development server.

  • #14275 3e2f20d Thanks @​florian-lefebvre! - Adds support for experimental CSP when using experimental fonts

    Experimental fonts now integrate well with experimental CSP by injecting hashes for the styles it generates, as well as font-src directives.

    No action is required to benefit from it.

  • #14280 4b9fb73 Thanks @​ascorbic! - Fixes a bug that caused cookies to not be correctly set when using middleware sequences

  • #14276 77281c4 Thanks @​ArmandPhilippot! - Adds a missing export for resolveSrc, a documented image services utility.

5.13.4

Patch Changes

  • #14260 86a1e40 Thanks @​jp-knj! - Fixes Astro.url.pathname to respect trailingSlash: 'never' configuration when using a base path. Previously, the root path with a base would incorrectly return /base/ instead of /base when trailingSlash was set to 'never'.

... (truncated)

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

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 9, 2025
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Sep 9, 2025

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

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

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
developer-sumup-com fc0f4d9 Commit Preview URL

Branch Preview URL
Sep 12 2025, 03:18 AM

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-668c81a0cf branch from 265eda1 to 7cf0252 Compare September 11, 2025 03:16
Bumps the astro group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/cloudflare](https://github.com/withastro/astro/tree/HEAD/packages/integrations/cloudflare) | `12.6.4` | `12.6.8` |
| [@astrojs/markdoc](https://github.com/withastro/astro/tree/HEAD/packages/integrations/markdoc) | `0.15.5` | `0.15.6` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `4.3.0` | `4.3.1` |
| [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.5.0` | `3.5.1` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.13.2` | `5.13.6` |



Updates `@astrojs/cloudflare` from 12.6.4 to 12.6.8
- [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@12.6.8/packages/integrations/cloudflare)

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

Updates `@astrojs/react` from 4.3.0 to 4.3.1
- [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@4.3.1/packages/integrations/react)

Updates `@astrojs/sitemap` from 3.5.0 to 3.5.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.5.1/packages/integrations/sitemap)

Updates `astro` from 5.13.2 to 5.13.6
- [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@5.13.6/packages/astro)

---
updated-dependencies:
- dependency-name: "@astrojs/cloudflare"
  dependency-version: 12.6.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/markdoc"
  dependency-version: 0.15.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/react"
  dependency-version: 4.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.5.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: astro
  dependency-version: 5.13.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/astro-668c81a0cf branch from 7cf0252 to fc0f4d9 Compare September 12, 2025 03:13
@dependabot @github

dependabot Bot commented on behalf of github Sep 15, 2025

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 15, 2025
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/astro-668c81a0cf branch September 15, 2025 03: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