Update all non-major dependencies #30

Open
renovate-bot wants to merge 1 commit from renovate/all-minor-patch into main
Collaborator

This PR contains the following updates:

Package Type Update Change
docker/metadata-action action minor v5.9.0 -> v5.10.0
docker/setup-buildx-action action minor v3.11.1 -> v3.12.0
jasonlovesdoggo/caddy-defender minor v0.9.0 -> v0.10.0

Release Notes

docker/metadata-action (docker/metadata-action)

v5.10.0

Compare Source

Full Changelog: https://github.com/docker/metadata-action/compare/v5.9.0...v5.10.0

docker/setup-buildx-action (docker/setup-buildx-action)

v3.12.0

Compare Source

Full Changelog: https://github.com/docker/setup-buildx-action/compare/v3.11.1...v3.12.0

jasonlovesdoggo/caddy-defender (jasonlovesdoggo/caddy-defender)

v0.10.0: : Gaimon

Compare Source

What's Changed

This commit fixes a panic in the ASN fetcher caused by incorrect validation logic. The previous implementation used a fixed-length check, which failed for valid ASNs with more or fewer than 4 digits.

The validation has been updated to:

  1. Check for the "AS" prefix.
  2. Verify that the remainder of the string is a valid integer using strconv.Atoi.

This ensures that ASNs of any valid length are correctly processed, resolving the panic reported in issue #​91. by @​JasonLovesDoggo in JasonLovesDoggo#94

New Contributors

Full Changelog: https://github.com/JasonLovesDoggo/caddy-defender/compare/v0.9.0...v0.10.0


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 | Type | Update | Change | |---|---|---|---| | [docker/metadata-action](https://github.com/docker/metadata-action) | action | minor | `v5.9.0` -> `v5.10.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | action | minor | `v3.11.1` -> `v3.12.0` | | [jasonlovesdoggo/caddy-defender](https://github.com/jasonlovesdoggo/caddy-defender) | | minor | `v0.9.0` -> `v0.10.0` | --- ### Release Notes <details> <summary>docker/metadata-action (docker/metadata-action)</summary> ### [`v5.10.0`](https://github.com/docker/metadata-action/releases/tag/v5.10.0) [Compare Source](https://github.com/docker/metadata-action/compare/v5.9.0...v5.10.0) - Bump [@&#8203;docker/actions-toolkit](https://github.com/docker/actions-toolkit) from 0.66.0 to 0.68.0 in [#&#8203;559](https://github.com/docker/metadata-action/pull/559) [#&#8203;569](https://github.com/docker/metadata-action/pull/569) - Bump js-yaml from 3.14.1 to 3.14.2 in [#&#8203;564](https://github.com/docker/metadata-action/pull/564) **Full Changelog**: <https://github.com/docker/metadata-action/compare/v5.9.0...v5.10.0> </details> <details> <summary>docker/setup-buildx-action (docker/setup-buildx-action)</summary> ### [`v3.12.0`](https://github.com/docker/setup-buildx-action/releases/tag/v3.12.0) [Compare Source](https://github.com/docker/setup-buildx-action/compare/v3.11.1...v3.12.0) - Deprecate `install` input by [@&#8203;crazy-max](https://github.com/crazy-max) in [#&#8203;455](https://github.com/docker/setup-buildx-action/pull/455) - Bump [@&#8203;docker/actions-toolkit](https://github.com/docker/actions-toolkit) from 0.62.1 to 0.63.0 in [#&#8203;434](https://github.com/docker/setup-buildx-action/pull/434) - Bump brace-expansion from 1.1.11 to 1.1.12 in [#&#8203;436](https://github.com/docker/setup-buildx-action/pull/436) - Bump form-data from 2.5.1 to 2.5.5 in [#&#8203;432](https://github.com/docker/setup-buildx-action/pull/432) - Bump undici from 5.28.4 to 5.29.0 in [#&#8203;435](https://github.com/docker/setup-buildx-action/pull/435) **Full Changelog**: <https://github.com/docker/setup-buildx-action/compare/v3.11.1...v3.12.0> </details> <details> <summary>jasonlovesdoggo/caddy-defender (jasonlovesdoggo/caddy-defender)</summary> ### [`v0.10.0`](https://github.com/JasonLovesDoggo/caddy-defender/releases/tag/v0.10.0): : Gaimon [Compare Source](https://github.com/jasonlovesdoggo/caddy-defender/compare/v0.9.0...v0.10.0) #### What's Changed - chore(deps): bump github.com/gaissmai/bart from 0.20.4 to 0.20.5 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#88](https://github.com/JasonLovesDoggo/caddy-defender/pull/88) - chore(deps): bump github.com/gaissmai/bart from 0.20.5 to 0.23.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#89](https://github.com/JasonLovesDoggo/caddy-defender/pull/89) - chore(deps): bump github.com/gaissmai/bart from 0.23.0 to 0.23.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#90](https://github.com/JasonLovesDoggo/caddy-defender/pull/90) - Feat: Document and Improve ASN/Tor Build Process by [@&#8203;google-labs-jules](https://github.com/google-labs-jules)\[bot] in [JasonLovesDoggo#92](https://github.com/JasonLovesDoggo/caddy-defender/pull/92) - fix: Correct ASN validation logic This commit fixes a panic in the ASN fetcher caused by incorrect validation logic. The previous implementation used a fixed-length check, which failed for valid ASNs with more or fewer than 4 digits. The validation has been updated to: 1. Check for the "AS" prefix. 2. Verify that the remainder of the string is a valid integer using `strconv.Atoi`. This ensures that ASNs of any valid length are correctly processed, resolving the panic reported in issue [#&#8203;91](https://github.com/jasonlovesdoggo/caddy-defender/issues/91). by [@&#8203;JasonLovesDoggo](https://github.com/JasonLovesDoggo) in [JasonLovesDoggo#94](https://github.com/JasonLovesDoggo/caddy-defender/pull/94) - chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#103](https://github.com/JasonLovesDoggo/caddy-defender/pull/103) - chore(deps): bump github.com/caddyserver/caddy/v2 from 2.9.1 to 2.10.2 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#99](https://github.com/JasonLovesDoggo/caddy-defender/pull/99) - chore(deps): bump github.com/gaissmai/bart from 0.23.1 to 0.25.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#104](https://github.com/JasonLovesDoggo/caddy-defender/pull/104) - chore(deps): bump github.com/quic-go/quic-go from 0.54.0 to 0.54.1 in the go\_modules group across 1 directory by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#108](https://github.com/JasonLovesDoggo/caddy-defender/pull/108) - chore(deps): bump github.com/slackhq/nebula from 1.9.5 to 1.9.7 in the go\_modules group across 1 directory by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#111](https://github.com/JasonLovesDoggo/caddy-defender/pull/111) - 112 custom status codes by [@&#8203;stardothosting](https://github.com/stardothosting) in [JasonLovesDoggo#114](https://github.com/JasonLovesDoggo/caddy-defender/pull/114) - chore(deps): bump golang.org/x/crypto from 0.40.0 to 0.45.0 in the go\_modules group across 1 directory by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#115](https://github.com/JasonLovesDoggo/caddy-defender/pull/115) - chore(deps): bump go.uber.org/zap from 1.27.0 to 1.27.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#116](https://github.com/JasonLovesDoggo/caddy-defender/pull/116) - fix: Resolve whitelist not working with blocked ranges by [@&#8203;JasonLovesDoggo](https://github.com/JasonLovesDoggo) in [JasonLovesDoggo#102](https://github.com/JasonLovesDoggo/caddy-defender/pull/102) - chore(deps): bump github.com/smallstep/certificates from 0.28.4 to 0.29.0 in the go\_modules group across 1 directory by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#117](https://github.com/JasonLovesDoggo/caddy-defender/pull/117) - chore(deps): bump github.com/quic-go/quic-go from 0.54.1 to 0.57.0 in the go\_modules group across 1 directory by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#119](https://github.com/JasonLovesDoggo/caddy-defender/pull/119) - chore: Update Go version to 1.25.5 and bump dependencies by [@&#8203;JasonLovesDoggo](https://github.com/JasonLovesDoggo) in [JasonLovesDoggo#120](https://github.com/JasonLovesDoggo/caddy-defender/pull/120) - feat: Add Huawei Cloud IP range fetcher by [@&#8203;JasonLovesDoggo](https://github.com/JasonLovesDoggo) in [JasonLovesDoggo#121](https://github.com/JasonLovesDoggo/caddy-defender/pull/121) - chore(deps): bump github.com/smallstep/certificates from 0.28.4 to 0.29.0 in the go\_modules group across 1 directory by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [JasonLovesDoggo#122](https://github.com/JasonLovesDoggo/caddy-defender/pull/122) #### New Contributors - [@&#8203;google-labs-jules](https://github.com/google-labs-jules)\[bot] made their first contribution in [JasonLovesDoggo#92](https://github.com/JasonLovesDoggo/caddy-defender/pull/92) - [@&#8203;stardothosting](https://github.com/stardothosting) made their first contribution in [JasonLovesDoggo#114](https://github.com/JasonLovesDoggo/caddy-defender/pull/114) **Full Changelog**: <https://github.com/JasonLovesDoggo/caddy-defender/compare/v0.9.0...v0.10.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, 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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Ny40IiwidXBkYXRlZEluVmVyIjoiNDEuODcuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVhZHkgZm9yIHJldmlldyJdfQ==-->
Update docker/metadata-action action to v5.10.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
8798be74a2
renovate-bot force-pushed renovate/all-minor-patch from 8798be74a2
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
to 1c3a03bb1c 2025-12-19 23:30:27 +13:00
Compare
renovate-bot force-pushed renovate/all-minor-patch from 1c3a03bb1c to afd481694f
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
2025-12-30 19:00:33 +13:00
Compare
renovate-bot changed title from Update docker/metadata-action action to v5.10.0 to Update all non-major dependencies 2026-01-16 04:15:28 +13:00
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all-minor-patch:renovate/all-minor-patch
git switch renovate/all-minor-patch

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/all-minor-patch
git switch renovate/all-minor-patch
git rebase main
git switch main
git merge --ff-only renovate/all-minor-patch
git switch renovate/all-minor-patch
git rebase main
git switch main
git merge --no-ff renovate/all-minor-patch
git switch main
git merge --squash renovate/all-minor-patch
git switch main
git merge --ff-only renovate/all-minor-patch
git switch main
git merge renovate/all-minor-patch
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
alex/caddy!30
No description provided.