chore(deps): update all digest updates #15

Merged
renovate[bot] merged 1 commits from renovate/all-digest into master 2026-02-26 04:03:16 +04:00
Collaborator

This PR contains the following updates:

Package Change Age Confidence
astro (source) 5.17.35.18.0 age confidence
autoprefixer 10.4.2410.4.27 age confidence
npm (source) 11.10.111.11.0 age confidence

Release Notes

withastro/astro (astro)

v5.18.0

Compare Source

Minor Changes
  • #​15589 b7dd447 Thanks @​qzio! - Adds a new security.actionBodySizeLimit option to configure the maximum size of Astro Actions request bodies.

    This lets you increase the default 1 MB limit when your actions need to accept larger payloads. For example, actions that handle file uploads or large JSON payloads can now opt in to a higher limit.

    If you do not set this option, Astro continues to enforce the 1 MB default to help prevent abuse.

    // astro.config.mjs
    export default defineConfig({
      security: {
        actionBodySizeLimit: 10 * 1024 * 1024, // set to 10 MB
      },
    });
    
Patch Changes
  • #​15594 efae11c Thanks @​qzio! - Fix X-Forwarded-Proto validation when allowedDomains includes both protocol and hostname fields. The protocol check no longer fails due to hostname mismatch against the hardcoded test URL.
postcss/autoprefixer (autoprefixer)

v10.4.27

Compare Source

  • Removed development key from package.json.

v10.4.26

Compare Source

  • Reduced package size.

v10.4.25

Compare Source

  • Fixed broken gradients on CSS Custom Properties (by @​serger777).
npm/cli (npm)

v11.11.0

Compare Source

Features
Bug Fixes
Documentation
Dependencies

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [astro](https://astro.build) ([source](https://github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.17.3` → `5.18.0`](https://renovatebot.com/diffs/npm/astro/5.17.3/5.18.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.18.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.17.3/5.18.0?slim=true) | | [autoprefixer](https://github.com/postcss/autoprefixer) | [`10.4.24` → `10.4.27`](https://renovatebot.com/diffs/npm/autoprefixer/10.4.24/10.4.27) | ![age](https://developer.mend.io/api/mc/badges/age/npm/autoprefixer/10.4.27?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/autoprefixer/10.4.24/10.4.27?slim=true) | | [npm](https://docs.npmjs.com/) ([source](https://github.com/npm/cli)) | [`11.10.1` → `11.11.0`](https://renovatebot.com/diffs/npm/npm/11.10.1/11.11.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/npm/11.11.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/npm/11.10.1/11.11.0?slim=true) | --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.18.0`](https://github.com/withastro/astro/releases/tag/astro%405.18.0) [Compare Source](https://github.com/withastro/astro/compare/astro@5.17.3...astro@5.18.0) ##### Minor Changes - [#&#8203;15589](https://github.com/withastro/astro/pull/15589) [`b7dd447`](https://github.com/withastro/astro/commit/b7dd447e319a7b435c01ccd69347e5261bd9dc14) Thanks [@&#8203;qzio](https://github.com/qzio)! - Adds a new `security.actionBodySizeLimit` option to configure the maximum size of Astro Actions request bodies. This lets you increase the default 1 MB limit when your actions need to accept larger payloads. For example, actions that handle file uploads or large JSON payloads can now opt in to a higher limit. If you do not set this option, Astro continues to enforce the 1 MB default to help prevent abuse. ```js // astro.config.mjs export default defineConfig({ security: { actionBodySizeLimit: 10 * 1024 * 1024, // set to 10 MB }, }); ``` ##### Patch Changes - [#&#8203;15594](https://github.com/withastro/astro/pull/15594) [`efae11c`](https://github.com/withastro/astro/commit/efae11cef1ebe1f2f54ceb55db0d1ff1938351c6) Thanks [@&#8203;qzio](https://github.com/qzio)! - Fix X-Forwarded-Proto validation when allowedDomains includes both protocol and hostname fields. The protocol check no longer fails due to hostname mismatch against the hardcoded test URL. </details> <details> <summary>postcss/autoprefixer (autoprefixer)</summary> ### [`v10.4.27`](https://github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10427) [Compare Source](https://github.com/postcss/autoprefixer/compare/10.4.26...10.4.27) - Removed development key from `package.json`. ### [`v10.4.26`](https://github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10426) [Compare Source](https://github.com/postcss/autoprefixer/compare/10.4.25...10.4.26) - Reduced package size. ### [`v10.4.25`](https://github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10425) [Compare Source](https://github.com/postcss/autoprefixer/compare/10.4.24...10.4.25) - Fixed broken gradients on CSS Custom Properties (by [@&#8203;serger777](https://github.com/serger777)). </details> <details> <summary>npm/cli (npm)</summary> ### [`v11.11.0`](https://github.com/npm/cli/blob/HEAD/CHANGELOG.md#11110-2026-02-25) [Compare Source](https://github.com/npm/cli/compare/v11.10.1...v11.11.0) ##### Features - [`4fcd352`](https://github.com/npm/cli/commit/4fcd352c553fdc0f13a87ad71ef66d7515c11886) [#&#8203;9017](https://github.com/npm/cli/pull/9017) add :type(registry) to query selector syntax ([#&#8203;9017](https://github.com/npm/cli/issues/9017)) ([@&#8203;wraithgar](https://github.com/wraithgar)) - [`e1b21f0`](https://github.com/npm/cli/commit/e1b21f03e20dfd7b9cc1e631041027a013721df4) [#&#8203;8909](https://github.com/npm/cli/pull/8909) adds circleci to trust command ([#&#8203;8909](https://github.com/npm/cli/issues/8909)) ([@&#8203;owlstronaut](https://github.com/owlstronaut)) - [`9a33ad0`](https://github.com/npm/cli/commit/9a33ad03c0ac2a3feed2db5f8a84c25635865186) [#&#8203;8925](https://github.com/npm/cli/pull/8925) adds circleci to oidc ([#&#8203;8925](https://github.com/npm/cli/issues/8925)) ([@&#8203;owlstronaut](https://github.com/owlstronaut)) ##### Bug Fixes - [`4426411`](https://github.com/npm/cli/commit/4426411bda7807afbb47aa01d8bf789e8c91eaff) [#&#8203;9026](https://github.com/npm/cli/pull/9026) npm audit signatures for keyless attestation registries ([#&#8203;9026](https://github.com/npm/cli/issues/9026)) ([@&#8203;ajayk](https://github.com/ajayk)) - [`658b323`](https://github.com/npm/cli/commit/658b32373e3490c72826b0bbcc6c1b74129e3ced) [#&#8203;9010](https://github.com/npm/cli/pull/9010) handle legacy licenses array in sbom output ([#&#8203;9010](https://github.com/npm/cli/issues/9010)) ([@&#8203;JNC4](https://github.com/JNC4)) ##### Documentation - [`143f8cd`](https://github.com/npm/cli/commit/143f8cdf4c6503240cc655b383ba865c0b9ea599) [#&#8203;9007](https://github.com/npm/cli/pull/9007) docs shouldn't wrap yaml description ([#&#8203;9007](https://github.com/npm/cli/issues/9007)) ([@&#8203;owlstronaut](https://github.com/owlstronaut)) ##### Dependencies - [`7798b6e`](https://github.com/npm/cli/commit/7798b6e3a9515b6114d4143c3b692e21242307fb) [#&#8203;9027](https://github.com/npm/cli/pull/9027) `@gar/promise-retry@1.0.2` - [`4838864`](https://github.com/npm/cli/commit/4838864bd0693897a3059d13b1297b941454b3d7) [#&#8203;9027](https://github.com/npm/cli/pull/9027) `balanced-match@4.0.4` - [`0c200dd`](https://github.com/npm/cli/commit/0c200ddca74c7b57c526d6742451f4104a0f5af1) [#&#8203;9027](https://github.com/npm/cli/pull/9027) `brace-expansion@5.0.3` - [`f0606bb`](https://github.com/npm/cli/commit/f0606bbfb06de39ce230afaa0f1f167fd1e10124) [#&#8203;9027](https://github.com/npm/cli/pull/9027) `spdx-license-ids@3.0.23` - [`d43f350`](https://github.com/npm/cli/commit/d43f35071cbef1d9ed9841684a5c32503727ed12) [#&#8203;9027](https://github.com/npm/cli/pull/9027) `make-fetch-happen@15.0.4` - [`4d0918a`](https://github.com/npm/cli/commit/4d0918a913bf60766c37c178f41693c75b29f6a3) [#&#8203;9027](https://github.com/npm/cli/pull/9027) `@npmcli/git@7.0.2` - [`8912ca7`](https://github.com/npm/cli/commit/8912ca7488f9e0e78bf7fcb51bf4dbe98b51eb5b) [#&#8203;9027](https://github.com/npm/cli/pull/9027) `minipass-fetch@5.0.2` - [`450ff35`](https://github.com/npm/cli/commit/450ff35d9cc70f5196040c31221cce0601d8a3a1) [#&#8203;9027](https://github.com/npm/cli/pull/9027) `npm-packlist@10.0.4` - [`20ef5a5`](https://github.com/npm/cli/commit/20ef5a5b6596891ba632410d97cdf5cb90b17bb3) [#&#8203;9027](https://github.com/npm/cli/pull/9027) `pacote@21.4.0` - [`60f332c`](https://github.com/npm/cli/commit/60f332c9df28e736f510ef8ac1f207175687dcad) [#&#8203;9008](https://github.com/npm/cli/pull/9008) remove promise-retry - [`cb8b9c7`](https://github.com/npm/cli/commit/cb8b9c7a45d81883ada7891f492afbf998574d10) [#&#8203;9008](https://github.com/npm/cli/pull/9008) add `@gar/promise-retry@1.0.0` - [workspace](https://github.com/npm/cli/releases/tag/arborist-v9.4.0): `@npmcli/arborist@9.4.0` - [workspace](https://github.com/npm/cli/releases/tag/libnpmdiff-v8.1.3): `libnpmdiff@8.1.3` - [workspace](https://github.com/npm/cli/releases/tag/libnpmexec-v10.2.3): `libnpmexec@10.2.3` - [workspace](https://github.com/npm/cli/releases/tag/libnpmfund-v7.0.17): `libnpmfund@7.0.17` - [workspace](https://github.com/npm/cli/releases/tag/libnpmpack-v9.1.3): `libnpmpack@9.1.3` </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNS43IiwidXBkYXRlZEluVmVyIjoiNDMuMjUuNyIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWF0ZWQiLCJkZXBlbmRlbmNpZXMiXX0=-->
renovate[bot] added 1 commit 2026-02-26 04:03:15 +04:00
chore(deps): update all digest updates
All checks were successful
Test / npm test (pull_request) Successful in 46s
RenovateBot / renovate (push) Successful in 24s
Test / npm test (push) Successful in 48s
2fa0f979bb
renovate[bot] scheduled this pull request to auto merge when all checks succeed 2026-02-26 04:03:15 +04:00
renovate[bot] merged commit 2fa0f979bb into master 2026-02-26 04:03:16 +04:00
renovate[bot] deleted branch renovate/all-digest 2026-02-26 04:03:16 +04:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: valentineus/popov.link#15