251927ece3
chore(deps): update ghcr.io/gethomepage/homepage docker tag to v1.12.2 ( #5315 )
lint-test-helm / lint-helm (push) Successful in 22s
lint-test-docker / lint-docker-compose (push) Successful in 26s
lint-test-helm / validate-kubeconform (push) Has been skipped
renovate / renovate (push) Successful in 19m2s
2026-03-31 15:07:25 +00:00
859059a996
chore(deps): update favonia/cloudflare-ddns docker tag to v1.16.0 ( #5301 )
...
lint-test-docker / lint-docker-compose (push) Successful in 32s
renovate / renovate (push) Has been cancelled
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [favonia/cloudflare-ddns](https://github.com/favonia/cloudflare-ddns ) | minor | `1.15.1` → `1.16.0` |
---
### Release Notes
<details>
<summary>favonia/cloudflare-ddns (favonia/cloudflare-ddns)</summary>
### [`v1.16.0`](https://github.com/favonia/cloudflare-ddns/blob/HEAD/CHANGELOG.markdown#1160-2026-03-30 )
[Compare Source](https://github.com/favonia/cloudflare-ddns/compare/v1.15.1...v1.16.0 )
Despite the gap of over a year since the last release, we are not aware of any security vulnerability affecting the default configuration. As always, please review the changelog and watch for warnings or errors when upgrading.
#### Highlights
1. **WAF lists now support /128 IPv6 entries.** Cloudflare’s API now accepts individual IPv6 addresses in WAF lists. New `IP4_DEFAULT_PREFIX_LEN` (default `/32`) and `IP6_DEFAULT_PREFIX_LEN` (default `/64`) control how bare addresses are stored in WAF lists. Users can now set `IP6_DEFAULT_PREFIX_LEN` to `128` for per-address granularity. DNS records currently ignore prefix lengths, but will use these in the future.
2. **Multi-instance support via comment-based selection.** New `MANAGED_RECORDS_COMMENT_REGEX` and `MANAGED_WAF_LIST_ITEMS_COMMENT_REGEX` let multiple updater instances safely share the same domain or WAF list, each managing only records or items with matching comments. New `WAF_LIST_ITEM_COMMENT` provides a fallback comment for WAF list items, similar to how `RECORD_COMMENT` serves as a fallback for DNS records.
3. **Multi-IP detection and reconciliation.** Providers now return multiple IP addresses, each with a CIDR prefix length, and the reconciliation algorithm has been redesigned to handle them correctly. The experimental `local.iface` provider now collects all matching global unicast addresses from the specified interface, instead of just the first one. Multi-address support in `url:` and `file:` providers is also experimental.
4. **New `file:` provider.** Reads IP addresses from a local file, re-reading each detection cycle. This enables integration with external scripts or monitoring systems without restarting the updater. (Multi-address support is experimental.)
5. **New variants of `url:` (`url.via4:` and `url.via6:`) for transport overrides.** By default, `url:<url>` connects using the same IP family as the address being detected. Override the IP family used to connect with `url.via4:<url>` or `url.via6:<url>` (e.g., get an IPv6 address over an IPv4 connection). (Multi-address support in URL-based providers is experimental.)
6. **Rewritten user-facing messages.** Many log messages have been reworded into clearer, more natural English.
#### Your Feedback Wanted
The IP prefix length work in this release lays the groundwork for several upcoming features. We’d love your input on the proposed configuration syntax:
- **Per-domain IPv6 host IDs** ([#​764](https://github.com/favonia/cloudflare-ddns/issues/764 )):
- `IP6_DOMAINS=sub.example.com{hostid6=::2}`
- `IP6_DOMAINS=sub.example.com{hostid6=preserve}` (keep the detected host IDs)
- `IP6_DOMAINS=sub.example.com{hostid6=mac(77:cc:a7:f9:45:94)}` (compute an [EUI-64](https://en.wikipedia.org/wiki/IPv6_address#Modified_EUI-64 ) host ID from a MAC address)
- `DOMAINS=sub1.example.com{hostid6=::aad1},sub2.example.com{hostid6=preserve}`
- **Detection IP filtering** ([#​1138](https://github.com/favonia/cloudflare-ddns/issues/1138 )):
- `IP6_DETECTION_FILTER=keep-all`
- `IP6_DETECTION_FILTER=!addr-in(fc00::/7)`
- `IP6_DETECTION_FILTER=subnet-in(2001:db8:abcd::/48)`
- `IP4_DETECTION_FILTER=!addr-in(10.0.0.0/8) && !addr-in(192.168.0.0/16)`
- `IP6_DETECTION_FILTER=contains(2002:dead:beef::/100) || contains(2005:dead:beef::/100)`
| input | `addr-in(1.1.0.0/16)` | `subnet-in(1.1.0.0/16)` | `contains(1.1.0.0/16)` |
| ------------ | ---------------------------------- | ----------------------- | ---------------------- |
| `1.1.1.1/8` | ✔️ | ❌ ️ | ✔️ |
| `1.1.1.1/16` | ✔️ | ✔️ | ✔️ |
| `1.1.1.1/24` | ✔️ | ✔️ | ❌ ️ |
| `1.2.2.2/8` | ❌ ️ (`1.2.2.2` not in `1.1.0.0/16`) | ❌ ️ | ✔️ |
Also planned: a linter for boolean expressions targeting advanced usage of `PROXIED` and the upcoming `IP4/6_DETECTION_FILTER`, and further robustness improvements to the default `cloudflare.trace` provider.
#### Reminder from the Past
As a reminder, since 1.13.0, **the updater no longer drops privileges internally, and `PUID` and `PGID` are ignored.** Please use Docker’s built-in mechanism to drop privileges. The old Docker Compose template may grant unneeded privileges to the new updater, which is not recommended. Please review the new, simpler, and more secure template in [README](./README.markdown). In a nutshell, **remove the `cap_add` attribute and replace the environment variables `PUID` and `PGID` with the [`user: "UID:GID"` attribute](https://docs.docker.com/reference/compose-file/services/#user )**. Similar options may exist for systems not using Docker Compose.
#### Other Notes
**Shoutrrr support is no longer experimental.** The shoutrrr notification integration, introduced in 1.12.0, is now considered stable.
#### Detailed Changes
##### Features
- The detection model has been redesigned so that providers return multiple IP addresses, each with a CIDR prefix length. New `IP4_DEFAULT_PREFIX_LEN` and `IP6_DEFAULT_PREFIX_LEN` settings control how bare addresses are stored in WAF lists. ([#​1144](https://github.com/favonia/cloudflare-ddns/issues/1144 )) ([#​1156](https://github.com/favonia/cloudflare-ddns/issues/1156 ))
- The reconciliation algorithm has been redesigned to handle complex metadata mismatches when multiple IP addresses result in multiple records. ([#​1015](https://github.com/favonia/cloudflare-ddns/issues/1015 )) ([#​1020](https://github.com/favonia/cloudflare-ddns/issues/1020 )) ([#​1022](https://github.com/favonia/cloudflare-ddns/issues/1022 )) ([#​1115](https://github.com/favonia/cloudflare-ddns/issues/1115 ))
- New `file:` provider reads IP addresses from a local file. ([#​1148](https://github.com/favonia/cloudflare-ddns/issues/1148 ))
- New `static:<ip1>,<ip2>,...` and `static.empty` providers have been added. `static.empty` actively clears managed content for a given IP family. ([#​1102](https://github.com/favonia/cloudflare-ddns/issues/1102 )) ([#​1135](https://github.com/favonia/cloudflare-ddns/issues/1135 ))
- The `url:`, `file:`, and `static:` providers now accept addresses in CIDR notation (e.g., `198.51.100.1/24`). ([#​1159](https://github.com/favonia/cloudflare-ddns/issues/1159 )) ([#​1169](https://github.com/favonia/cloudflare-ddns/issues/1169 ))
- The experimental `local.iface` provider now collects all matching global unicast addresses. ([#​1095](https://github.com/favonia/cloudflare-ddns/issues/1095 ))
- New `MANAGED_RECORDS_COMMENT_REGEX` selects only DNS records whose comments match a regex. ([#​1103](https://github.com/favonia/cloudflare-ddns/issues/1103 ))
- New `MANAGED_WAF_LIST_ITEMS_COMMENT_REGEX` and `WAF_LIST_ITEM_COMMENT` provide the same comment-based selection for WAF list items. ([#​1106](https://github.com/favonia/cloudflare-ddns/issues/1106 ))
- New `url.via4:<url>` and `url.via6:<url>` providers override the IP family used to connect to a custom URL. ([#​1131](https://github.com/favonia/cloudflare-ddns/issues/1131 ))
- The updater now warns about likely misconfigured `SHOUTRRR` values. ([#​1111](https://github.com/favonia/cloudflare-ddns/issues/1111 ))
##### Bug Fixes
- The configuration parser now warns about extra commas in lists (e.g., `a,,b`) except for trailing commas, which were silently ignored. ([#​1177](https://github.com/favonia/cloudflare-ddns/issues/1177 ))
- The updater now exits gracefully when `EMOJI` or `QUIET` is invalid. ([#​1174](https://github.com/favonia/cloudflare-ddns/issues/1174 ))
- The updater invalidates relevant zone search cache entries when a zone cannot be found for faster recovery. ([#​1125](https://github.com/favonia/cloudflare-ddns/issues/1125 ))
- API token verification is now stricter, catching malformed tokens before any update attempts. ([#​1126](https://github.com/favonia/cloudflare-ddns/issues/1126 ))
- Providers (especially `cloudflare.trace` and `cloudflare.doh`) now validate detected IP addresses more strictly. ([#​1097](https://github.com/favonia/cloudflare-ddns/issues/1097 )) ([#​1099](https://github.com/favonia/cloudflare-ddns/issues/1099 )) ([#​1101](https://github.com/favonia/cloudflare-ddns/issues/1101 )) ([#​1151](https://github.com/favonia/cloudflare-ddns/issues/1151 ))
- WAF list entries in the configuration are now deduplicated. ([#​1091](https://github.com/favonia/cloudflare-ddns/issues/1091 ))
- The updater now warns when a configured domain does not look like a fully qualified domain name. ([#​1019](https://github.com/favonia/cloudflare-ddns/issues/1019 ))
- The updater now warns when DNS records and WAF list items for the same domain have mixed ownership (some managed, some not). ([#​1173](https://github.com/favonia/cloudflare-ddns/issues/1173 ))
</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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjEwMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkb2NrZXIiXX0=-->
Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/5301
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-03-31 01:23:36 +00:00
9619d79c91
chore(deps): update ghcr.io/gethomepage/homepage docker tag to v1.12.1 ( #5246 )
lint-test-helm / lint-helm (push) Successful in 20s
lint-test-docker / lint-docker-compose (push) Successful in 24s
lint-test-helm / validate-kubeconform (push) Has been skipped
renovate / renovate (push) Successful in 2m1s
2026-03-29 00:43:48 +00:00
77efef53ce
chore(deps): update ghcr.io/traefik/traefik docker tag to v3.6.12 ( #5213 )
lint-test-docker / lint-docker-compose (push) Successful in 17s
renovate / renovate (push) Has been cancelled
2026-03-28 01:41:19 +00:00
387e6d38b3
chore(deps): update ghcr.io/gethomepage/homepage docker tag to v1.12.0 ( #5203 )
...
renovate / renovate (push) Has been cancelled
lint-test-docker / lint-docker-compose (push) Successful in 1m17s
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/gethomepage/homepage](https://github.com/gethomepage/homepage ) | minor | `v1.11.0` → `v1.12.0` |
---
### Release Notes
<details>
<summary>gethomepage/homepage (ghcr.io/gethomepage/homepage)</summary>
### [`v1.12.0`](https://github.com/gethomepage/homepage/releases/tag/v1.12.0 )
[Compare Source](https://github.com/gethomepage/homepage/compare/v1.11.0...v1.12.0 )
##### What's Changed
##### 🚀 Features
- Feature: UniFi Drive (UNAS) service widget ([#​6461](https://github.com/gethomepage/homepage/issues/6461 )) [@​stevenharris-dev](https://github.com/stevenharris-dev )
- Chore: make unifi proxy more generic ([#​6469](https://github.com/gethomepage/homepage/issues/6469 )) [@​shamoon](https://github.com/shamoon )
- Enhancement: better support for raw values in block highlighting ([#​6434](https://github.com/gethomepage/homepage/issues/6434 )) [@​shamoon](https://github.com/shamoon )
- Tweak: sanitize calendar integration URLs from markup ([#​6431](https://github.com/gethomepage/homepage/issues/6431 )) [@​shamoon](https://github.com/shamoon )
##### 🐛 Fixes
- Fix: remove trailing space from Watchtower widget loading label ([#​6448](https://github.com/gethomepage/homepage/issues/6448 )) [@​toytag](https://github.com/toytag )
- Fix: revert changes to qbittorrent widget endpoints ([#​6467](https://github.com/gethomepage/homepage/issues/6467 )) [@​shamoon](https://github.com/shamoon )
##### 🧰 Maintenance
- Chore(deps): Bump picomatch from 2.3.1 to 2.3.2 in the npm\_and\_yarn group across 1 directory ([#​6460](https://github.com/gethomepage/homepage/issues/6460 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore: return to gh runners ([#​6462](https://github.com/gethomepage/homepage/issues/6462 )) [@​shamoon](https://github.com/shamoon )
- Chore(deps): Bump the npm\_and\_yarn group across 1 directory with 5 updates ([#​6445](https://github.com/gethomepage/homepage/issues/6445 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore(deps-dev): Bump eslint-plugin-prettier from 5.5.4 to 5.5.5 ([#​6442](https://github.com/gethomepage/homepage/issues/6442 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore(deps): Bump urbackup-server-api from 0.91.0 to 0.92.2 ([#​6444](https://github.com/gethomepage/homepage/issues/6444 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore(deps): Bump react-icons from 5.5.0 to 5.6.0 ([#​6443](https://github.com/gethomepage/homepage/issues/6443 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore(deps): Bump swr from 2.4.0 to 2.4.1 ([#​6441](https://github.com/gethomepage/homepage/issues/6441 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore(deps): Bump flatted from 3.3.3 to 3.4.2 in the npm\_and\_yarn group across 1 directory ([#​6439](https://github.com/gethomepage/homepage/issues/6439 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore(deps): Bump next from 15.5.11 to 16.1.7 in the npm\_and\_yarn group across 1 directory ([#​6438](https://github.com/gethomepage/homepage/issues/6438 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore(deps): Bump pnpm/action-setup from 4 to 5 ([#​6436](https://github.com/gethomepage/homepage/issues/6436 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore(deps): Bump release-drafter/release-drafter from 6 to 7 ([#​6429](https://github.com/gethomepage/homepage/issues/6429 )) @​[dependabot\[bot\]](https://github.com/apps/dependabot )
- Chore: add release drafter ([#​6424](https://github.com/gethomepage/homepage/issues/6424 )) [@​shamoon](https://github.com/shamoon )
##### 🌐 Translations
- New Crowdin translations by GitHub Action ([#​6433](https://github.com/gethomepage/homepage/issues/6433 )) @​[github-actions\[bot\]](https://github.com/apps/github-actions )
- New Crowdin translations by GitHub Action ([#​6292](https://github.com/gethomepage/homepage/issues/6292 )) @​[github-actions\[bot\]](https://github.com/apps/github-actions )
##### 📚 Documentation
- Documentation: fix kubernetes config examples ([#​6468](https://github.com/gethomepage/homepage/issues/6468 )) [@​mylegitches](https://github.com/mylegitches )
</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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0My45Ni4wIiwidXBkYXRlZEluVmVyIjoiNDMuOTYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZG9ja2VyIl19-->
Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/5203
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-03-28 01:24:07 +00:00
3a9183035b
feat: update compose
lint-test-docker / lint-docker-compose (push) Successful in 16s
renovate / renovate (push) Successful in 2m12s
2026-03-24 14:38:53 -05:00
f3dcecdd51
feat: upgrade to v2 ( #5075 )
...
lint-test-helm / lint-helm (push) Successful in 16s
lint-test-helm / validate-kubeconform (push) Has been skipped
lint-test-docker / lint-docker-compose (push) Successful in 25s
renovate / renovate (push) Successful in 3m27s
Reviewed-on: #5075
2026-03-24 19:04:24 +00:00
46922a6230
chore(deps): pin dependencies ( #4968 )
...
renovate / renovate (push) Failing after 7s
lint-test-docker / lint-docker-compose (push) Successful in 43s
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [GuillaumeFalourd/branch-exists](https://github.com/GuillaumeFalourd/branch-exists ) | action | pinDigest | → `0092904` |
| [actions/cache](https://github.com/actions/cache ) | action | pinDigest | → `6682284` |
| [actions/checkout](https://github.com/actions/checkout ) | action | pinDigest | → `de0fac2` |
| [actions/setup-node](https://github.com/actions/setup-node ) | action | pinDigest | → `53b8394` |
| [azure/k8s-set-context](https://github.com/azure/k8s-set-context ) | action | pinDigest | → `ae59a72` |
| [azure/setup-helm](https://github.com/azure/setup-helm ) | action | pinDigest | → `1a275c3` |
| docker.io/postgres | | pinDigest | → `44d837e` |
| dxflrs/garage | | pinDigest | → `45a61ce` |
| [favonia/cloudflare-ddns](https://github.com/favonia/cloudflare-ddns ) | | pinDigest | → `a4e2089` |
| [ghcr.io/0xerr0r/blocky](https://github.com/0xERR0R/blocky ) | | pinDigest | → `a6d99f3` |
| ghcr.io/ai-dock/stable-diffusion-webui | | pinDigest | → `bc4b2b1` |
| [ghcr.io/dmunozv04/isponsorblocktv](https://github.com/dmunozv04/iSponsorBlockTV ) | | pinDigest | → `5458565` |
| ghcr.io/gabe565/castsponsorskip | | pinDigest | → `f556d27` |
| [ghcr.io/gethomepage/homepage](https://github.com/gethomepage/homepage ) | | pinDigest | → `b129cb0` |
| ghcr.io/moghtech/komodo-periphery | | pinDigest | → `bd79cf9` |
| [ghcr.io/renovatebot/renovate](https://renovatebot.com ) ([source](https://github.com/renovatebot/renovate )) | container | pinDigest | → `9228574` |
| [ghcr.io/tailscale/tailscale](https://tailscale.com/kb/1282/docker ) ([source](https://github.com/tailscale/tailscale )) | | pinDigest | → `95e5287` |
| ghcr.io/tailscale/tailscale | | pinDigest | → `95e5287` |
| [ghcr.io/tecnativa/docker-socket-proxy](https://github.com/Tecnativa/docker-socket-proxy ) | | pinDigest | → `1f3a6f3` |
| [ghcr.io/traefik/traefik](https://hub.docker.com/_/traefik ) ([source](https://github.com/traefik/traefik-library-image )) | | pinDigest | → `acfc806` |
| [gitea/gitea](https://github.com/go-gitea/gitea ) | | pinDigest | → `f846d26` |
| khairul169/garage-webui | | pinDigest | → `17c7935` |
| ollama/ollama | | pinDigest | → `5a5d014` |
| quay.io/prometheus/node-exporter | | pinDigest | → `337ff1d` |
---
### 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 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:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4yIiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=-->
Reviewed-on: #4968
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-03-22 03:06:54 +00:00
f15632c561
chore(deps): update ghcr.io/traefik/traefik docker tag to v3.6.11 ( #4908 )
lint-test-docker / lint-docker-compose (push) Successful in 32s
renovate / renovate (push) Has been cancelled
2026-03-20 01:17:03 +00:00
d9fcb0c864
chore(deps): update ghcr.io/gabe565/castsponsorskip docker tag to v0.8.3 ( #4812 )
lint-test-docker / lint-docker-compose (push) Successful in 19s
renovate / renovate (push) Has been cancelled
2026-03-17 20:57:17 +00:00
d92659d146
chore(deps): update ghcr.io/gethomepage/homepage docker tag to v1.11.0 ( #4728 )
...
lint-test-docker / lint-docker-compose (push) Successful in 52s
renovate / renovate (push) Has been cancelled
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/gethomepage/homepage](https://github.com/gethomepage/homepage ) | minor | `v1.10.1` → `v1.11.0` |
---
### Release Notes
<details>
<summary>gethomepage/homepage (ghcr.io/gethomepage/homepage)</summary>
### [`v1.11.0`](https://github.com/gethomepage/homepage/releases/tag/v1.11.0 )
[Compare Source](https://github.com/gethomepage/homepage/compare/v1.10.1...v1.11.0 )
##### What's Changed
- Chore(deps): Bump actions/checkout from 4 to 6 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6284](https://github.com/gethomepage/homepage/pull/6284 )
- Chore(deps): Bump actions/setup-node from 4 to 6 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6285](https://github.com/gethomepage/homepage/pull/6285 )
- Feature: add Tracearr widget for displaying active Plex streams by [@​Bothari](https://github.com/Bothari ) in [#​6306](https://github.com/gethomepage/homepage/pull/6306 )
- Improvement: better handle highlighting with units by [@​shamoon](https://github.com/shamoon ) in [#​6318](https://github.com/gethomepage/homepage/pull/6318 )
- Chore: rename Jellyseerr widget to Seerr and update references by [@​shamoon](https://github.com/shamoon ) in [#​6322](https://github.com/gethomepage/homepage/pull/6322 )
- Enhancement: jellyseer completed by [@​shamoon](https://github.com/shamoon ) in [#​6329](https://github.com/gethomepage/homepage/pull/6329 )
- Chore: merge Overseerr into Seerr, add aliases by [@​shamoon](https://github.com/shamoon ) in [#​6330](https://github.com/gethomepage/homepage/pull/6330 )
- Enhancement: add "Temperature" label to list of possible CPU sensors by [@​shamoon](https://github.com/shamoon ) in [#​6331](https://github.com/gethomepage/homepage/pull/6331 )
- Enhancement: cover more basic statuses in containers list by [@​shamoon](https://github.com/shamoon ) in [#​6334](https://github.com/gethomepage/homepage/pull/6334 )
- Feature: sparkyfitness service widget by [@​shamoon](https://github.com/shamoon ) in [#​6346](https://github.com/gethomepage/homepage/pull/6346 )
- Enhancement: fallback for missing si network stats by [@​shamoon](https://github.com/shamoon ) in [#​6367](https://github.com/gethomepage/homepage/pull/6367 )
- Fix: Await async proxy handlers by [@​shamoon](https://github.com/shamoon ) in [#​6371](https://github.com/gethomepage/homepage/pull/6371 )
- Fix: small fixes for Omada proxy by [@​shamoon](https://github.com/shamoon ) in [#​6372](https://github.com/gethomepage/homepage/pull/6372 )
- Chore: add security context, liveness probe and config mount to k8s deployment example by [@​hugosxm](https://github.com/hugosxm ) in [#​6375](https://github.com/gethomepage/homepage/pull/6375 )
- Enhancement: use lighter endpoints for qbittorrent by [@​shamoon](https://github.com/shamoon ) in [#​6388](https://github.com/gethomepage/homepage/pull/6388 )
- Chore(deps-dev): Bump prettier from 3.7.3 to 3.8.1 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6379](https://github.com/gethomepage/homepage/pull/6379 )
- Chore(deps-dev): Bump jsdom from 26.1.0 to 28.1.0 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6378](https://github.com/gethomepage/homepage/pull/6378 )
- Chore(deps): Bump ical.js from 2.1.0 to 2.2.1 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6377](https://github.com/gethomepage/homepage/pull/6377 )
- Chore(deps): Bump docker/login-action from 3 to 4 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6385](https://github.com/gethomepage/homepage/pull/6385 )
- Chore(deps): Bump next-i18next from 12.1.0 to 15.4.3 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6376](https://github.com/gethomepage/homepage/pull/6376 )
- Chore(deps): Bump react and react-dom by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6380](https://github.com/gethomepage/homepage/pull/6380 )
- Chore(deps): Bump docker/setup-qemu-action from 3.7.0 to 4.0.0 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6386](https://github.com/gethomepage/homepage/pull/6386 )
- Chore(deps): Bump docker/metadata-action from 5 to 6 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6399](https://github.com/gethomepage/homepage/pull/6399 )
- Chore(deps): Bump docker/setup-buildx-action from 3 to 4 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6398](https://github.com/gethomepage/homepage/pull/6398 )
- Chore(deps): Bump docker/build-push-action from 6 to 7 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6397](https://github.com/gethomepage/homepage/pull/6397 )
- Change: use byterate for beszel network field by [@​shamoon](https://github.com/shamoon ) in [#​6402](https://github.com/gethomepage/homepage/pull/6402 )
- Enhancement: better Crowdsec auth parsing, caching, and retries by [@​shamoon](https://github.com/shamoon ) in [#​6419](https://github.com/gethomepage/homepage/pull/6419 )
##### New Contributors
- [@​Bothari](https://github.com/Bothari ) made their first contribution in [#​6306](https://github.com/gethomepage/homepage/pull/6306 )
- [@​hugosxm](https://github.com/hugosxm ) made their first contribution in [#​6375](https://github.com/gethomepage/homepage/pull/6375 )
**Full Changelog**: <https://github.com/gethomepage/homepage/compare/v1.10.1...v1.11.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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4yIiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=-->
Reviewed-on: #4728
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-03-14 20:49:28 +00:00
b61abdf681
chore(deps): update gitea/gitea docker tag to v1.25.5 ( #4722 )
renovate / renovate (push) Has been cancelled
lint-test-docker / lint-docker-compose (push) Successful in 1m7s
2026-03-14 04:02:46 +00:00
d140610598
feat: add trackjs to ignore lists
lint-test-helm / lint-helm (push) Successful in 12s
lint-test-docker / lint-docker-compose (push) Successful in 27s
render-manifests-push / render-manifests-push (push) Successful in 36s
renovate / renovate (push) Successful in 2m49s
2026-03-08 17:35:52 -05:00
7a81264a7d
chore(deps): update ghcr.io/traefik/traefik docker tag to v3.6.10 ( #4512 )
lint-test-docker / lint-docker-compose (push) Successful in 29s
render-manifests-dispatch / render-manifests-dispatch (push) Successful in 19m47s
renovate / renovate (push) Successful in 1m45s
2026-03-07 02:03:03 +00:00
3fe6a5a5da
chore(deps): update ghcr.io/0xerr0r/blocky docker tag to v0.29.0 ( #4283 )
...
lint-test-docker / lint-docker-compose (push) Successful in 31s
renovate / renovate (push) Has been cancelled
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/0xerr0r/blocky](https://github.com/0xERR0R/blocky ) | minor | `v0.28.2` → `v0.29.0` |
---
### Release Notes
<details>
<summary>0xERR0R/blocky (ghcr.io/0xerr0r/blocky)</summary>
### [`v0.29.0`](https://github.com/0xERR0R/blocky/releases/tag/v0.29.0 )
[Compare Source](https://github.com/0xERR0R/blocky/compare/v0.28.2...v0.29.0 )
#### Changelog
##### Features
- [`0c35f21`](0c35f21b85 ): feat: add RFC 7239 Forwarded header support for client IP parsing ([#​1941](https://github.com/0xERR0R/blocky/issues/1941 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`011e3eb`](011e3eb500 ): feat: implement DNS64 support ([#​1933](https://github.com/0xERR0R/blocky/issues/1933 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`e199445`](e199445bcd ): feat: improve IP parsing from X-Forwarded-For header ([#​1940](https://github.com/0xERR0R/blocky/issues/1940 )) ([@​0xERR0R](https://github.com/0xERR0R ))
##### Bug fixes
- [`257fe07`](257fe07f31 ): fix: Incorrect rate data shown on Grafana dashboards ([#​1948](https://github.com/0xERR0R/blocky/issues/1948 )) ([@​mattdy](https://github.com/mattdy ))
- [`1a4d22d`](1a4d22d3d8 ): fix: db automigration with timescaledb ([#​1975](https://github.com/0xERR0R/blocky/issues/1975 )) ([@​manofthepeace](https://github.com/manofthepeace ))
- [`9874212`](98742121da ): fix: use context based versions of net.Listen and net.Dial ([#​1952](https://github.com/0xERR0R/blocky/issues/1952 )) ([@​sonjek](https://github.com/sonjek ))
##### Build and dependencies
- [`fe67404`](fe674044da ): build(deps): bump actions/checkout from 5 to 6 ([#​1943](https://github.com/0xERR0R/blocky/issues/1943 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`4752061`](4752061443 ): build(deps): bump actions/download-artifact from 6 to 7 ([#​1961](https://github.com/0xERR0R/blocky/issues/1961 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`d459311`](d459311378 ): build(deps): bump actions/download-artifact from 7 to 8 ([#​2000](https://github.com/0xERR0R/blocky/issues/2000 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`fa1614b`](fa1614bbbe ): build(deps): bump actions/upload-artifact from 5 to 6 ([#​1960](https://github.com/0xERR0R/blocky/issues/1960 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`11b6f92`](11b6f92387 ): build(deps): bump actions/upload-artifact from 6 to 7 ([#​1998](https://github.com/0xERR0R/blocky/issues/1998 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`e83805c`](e83805c987 ): build(deps): bump filippo.io/edwards25519 from 1.1.0 to 1.1.1 ([#​1992](https://github.com/0xERR0R/blocky/issues/1992 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`4f62ec8`](4f62ec8009 ): build(deps): bump github.com/alicebob/miniredis/v2 from 2.35.0 to 2.36.0 ([#​1976](https://github.com/0xERR0R/blocky/issues/1976 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`16644c5`](16644c5659 ): build(deps): bump github.com/alicebob/miniredis/v2 from 2.36.0 to 2.36.1 ([#​1978](https://github.com/0xERR0R/blocky/issues/1978 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`36ae188`](36ae188e72 ): build(deps): bump github.com/alicebob/miniredis/v2 from 2.36.1 to 2.37.0 ([#​1996](https://github.com/0xERR0R/blocky/issues/1996 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`4733c6b`](4733c6bb52 ): build(deps): bump github.com/breml/rootcerts from 0.3.3 to 0.3.4 ([#​1987](https://github.com/0xERR0R/blocky/issues/1987 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`e4f7462`](e4f746218f ): build(deps): bump github.com/go-chi/chi/v5 from 5.2.3 to 5.2.4 ([#​1972](https://github.com/0xERR0R/blocky/issues/1972 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`f9dd4d2`](f9dd4d294a ): build(deps): bump github.com/go-chi/chi/v5 from 5.2.4 to 5.2.5 ([#​1985](https://github.com/0xERR0R/blocky/issues/1985 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`e66a29d`](e66a29d874 ): build(deps): bump github.com/miekg/dns from 1.1.68 to 1.1.69 ([#​1959](https://github.com/0xERR0R/blocky/issues/1959 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`8e69355`](8e693558d7 ): build(deps): bump github.com/miekg/dns from 1.1.69 to 1.1.70 ([#​1968](https://github.com/0xERR0R/blocky/issues/1968 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`5e8b555`](5e8b555984 ): build(deps): bump github.com/miekg/dns from 1.1.70 to 1.1.72 ([#​1977](https://github.com/0xERR0R/blocky/issues/1977 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`ef5dc97`](ef5dc97ddf ): build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.2 to 2.27.3 ([#​1956](https://github.com/0xERR0R/blocky/issues/1956 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`670542b`](670542bacf ): build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.3 to 2.27.4 ([#​1966](https://github.com/0xERR0R/blocky/issues/1966 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`e062742`](e062742259 ): build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.4 to 2.27.5 ([#​1970](https://github.com/0xERR0R/blocky/issues/1970 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`4926d16`](4926d161fe ): build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.5 to 2.28.1 ([#​1981](https://github.com/0xERR0R/blocky/issues/1981 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`ca0da10`](ca0da10f7c ): build(deps): bump github.com/onsi/gomega from 1.38.2 to 1.38.3 ([#​1955](https://github.com/0xERR0R/blocky/issues/1955 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`567a738`](567a73887b ): build(deps): bump github.com/onsi/gomega from 1.38.3 to 1.39.0 ([#​1967](https://github.com/0xERR0R/blocky/issues/1967 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`c3aab87`](c3aab87e1d ): build(deps): bump github.com/onsi/gomega from 1.39.0 to 1.39.1 ([#​1982](https://github.com/0xERR0R/blocky/issues/1982 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`ef79a67`](ef79a6789a ): build(deps): bump github.com/sirupsen/logrus from 1.9.3 to 1.9.4 ([#​1974](https://github.com/0xERR0R/blocky/issues/1974 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`6775759`](67757591e5 ): build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2 ([#​1953](https://github.com/0xERR0R/blocky/issues/1953 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`71c39fc`](71c39fc132 ): build(deps): bump golang.org/x/crypto from 0.44.0 to 0.45.0 ([#​1939](https://github.com/0xERR0R/blocky/issues/1939 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`be31648`](be316486ac ): build(deps): bump golang.org/x/net from 0.47.0 to 0.48.0 ([#​1957](https://github.com/0xERR0R/blocky/issues/1957 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`a574078`](a5740782ea ): build(deps): bump golang.org/x/net from 0.48.0 to 0.49.0 ([#​1971](https://github.com/0xERR0R/blocky/issues/1971 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`6f3f295`](6f3f2959d3 ): build(deps): bump golang.org/x/net from 0.49.0 to 0.50.0 ([#​1988](https://github.com/0xERR0R/blocky/issues/1988 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`6a75afb`](6a75afb480 ): build(deps): bump golang.org/x/net from 0.50.0 to 0.51.0 ([#​1997](https://github.com/0xERR0R/blocky/issues/1997 )) ([@​dependabot](https://github.com/dependabot )\[bot])
##### Misc
- [`439e99b`](439e99b193 ): Add Blocky Visor to web UIs section in installation.md ([#​1993](https://github.com/0xERR0R/blocky/issues/1993 )) ([@​JCHHeilmann](https://github.com/JCHHeilmann ))
- [`ced469f`](ced469f479 ): refactor: centralize DNS response creation logic with helper functions ([#​1942](https://github.com/0xERR0R/blocky/issues/1942 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`3075c38`](3075c3810c ): refactor: clean up obsolete Go syntax ([#​1951](https://github.com/0xERR0R/blocky/issues/1951 )) ([@​sonjek](https://github.com/sonjek ))
- [`9fe42a8`](9fe42a8621 ): refactor: simplify code for improved readability and maintainability ([#​1945](https://github.com/0xERR0R/blocky/issues/1945 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`6581668`](65816682cc ): refactor: use mockery for mocks ([#​1944](https://github.com/0xERR0R/blocky/issues/1944 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`55ab95e`](55ab95ed4d ): test(metrics): Prometheus metrics ([#​1868](https://github.com/0xERR0R/blocky/issues/1868 )) ([@​zeilenschubser](https://github.com/zeilenschubser ))
</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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0My4yNS44IiwidXBkYXRlZEluVmVyIjoiNDMuMjUuOCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=-->
Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/4283
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-02-27 18:04:52 +00:00
ba590d0d42
chore(deps): update ghcr.io/traefik/traefik docker tag to v3.6.9 ( #4199 )
lint-test-docker / lint-docker-compose (push) Successful in 1m5s
render-manifests-dispatch / render-manifests-dispatch (push) Successful in 42m20s
renovate / renovate (push) Successful in 2m13s
2026-02-24 02:33:52 +00:00
879a7390de
chore(deps): update ghcr.io/tailscale/tailscale docker tag to v1.94.2 ( #3994 )
...
lint-test-docker / lint-docker-compose (push) Successful in 36s
render-manifests-dispatch / render-manifests-dispatch (push) Successful in 22m31s
renovate / renovate (push) Successful in 3m35s
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/tailscale/tailscale](https://tailscale.com/kb/1282/docker ) ([source](https://github.com/tailscale/tailscale )) | patch | `v1.94.1` → `v1.94.2` |
---
### Release Notes
<details>
<summary>tailscale/tailscale (ghcr.io/tailscale/tailscale)</summary>
### [`v1.94.2`](https://github.com/tailscale/tailscale/compare/v1.94.1...v1.94.2 )
[Compare Source](https://github.com/tailscale/tailscale/compare/v1.94.1...v1.94.2 )
</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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0My4zLjYiLCJ1cGRhdGVkSW5WZXIiOiI0My4zLjYiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsImltYWdlIl19-->
Reviewed-on: #3994
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-02-15 23:17:21 +00:00
0f7ecf6905
chore(deps): update ghcr.io/traefik/traefik docker tag to v3.6.8 ( #3934 )
...
lint-test-docker / lint-docker-compose (push) Successful in 29s
renovate / renovate (push) Has been cancelled
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/traefik/traefik](https://hub.docker.com/_/traefik ) ([source](https://github.com/traefik/traefik-library-image )) | patch | `v3.6.7` → `v3.6.8` |
---
### Release Notes
<details>
<summary>traefik/traefik-library-image (ghcr.io/traefik/traefik)</summary>
### [`v3.6.8`](https://github.com/traefik/traefik-library-image/compare/v3.6.8...v3.6.8 )
[Compare Source](https://github.com/traefik/traefik-library-image/compare/v3.6.8...v3.6.8 )
### [`v3.6.8`](https://github.com/traefik/traefik-library-image/compare/v3.6.7...v3.6.8 )
[Compare Source](https://github.com/traefik/traefik-library-image/compare/v3.6.7...v3.6.8 )
</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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0My4zLjYiLCJ1cGRhdGVkSW5WZXIiOiI0My4zLjYiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsImltYWdlIl19-->
Reviewed-on: #3934
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-02-15 23:16:49 +00:00
6fe8cfc07f
chore(deps): update ghcr.io/tailscale/tailscale docker tag to v1.94.1 ( #3736 )
...
lint-test-docker / lint-docker-compose (push) Successful in 53s
renovate / renovate (push) Has been cancelled
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/tailscale/tailscale](https://tailscale.com/kb/1282/docker ) ([source](https://github.com/tailscale/tailscale )) | minor | `v1.92.5` → `v1.94.1` |
---
### Release Notes
<details>
<summary>tailscale/tailscale (ghcr.io/tailscale/tailscale)</summary>
### [`v1.94.1`](https://github.com/tailscale/tailscale/releases/tag/v1.94.1 )
[Compare Source](https://github.com/tailscale/tailscale/compare/v1.92.5...v1.94.1 )
Please refer to the changelog available at <https://tailscale.com/changelog >
</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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0My4zLjYiLCJ1cGRhdGVkSW5WZXIiOiI0My4zLjYiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImltYWdlIl19-->
Reviewed-on: #3736
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-02-05 20:04:37 +00:00
973f2f4be4
chore(deps): update ghcr.io/gethomepage/homepage docker tag to v1.10.1 ( #3735 )
...
lint-test-docker / lint-docker-compose (push) Successful in 1m38s
renovate / renovate (push) Has been cancelled
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/gethomepage/homepage](https://github.com/gethomepage/homepage ) | minor | `v1.9.0` → `v1.10.1` |
---
> ⚠️ **Warning**
>
> Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
---
### Release Notes
<details>
<summary>gethomepage/homepage (ghcr.io/gethomepage/homepage)</summary>
### [`v1.10.1`](https://github.com/gethomepage/homepage/releases/tag/v1.10.1 )
[Compare Source](https://github.com/gethomepage/homepage/compare/v1.10.0...v1.10.1 )
##### What's Changed
- Chore: move to Zensical docs by [@​shamoon](https://github.com/shamoon ) in [#​6279](https://github.com/gethomepage/homepage/pull/6279 )
- Enhancement: better display of Arcane widget errors by [@​shamoon](https://github.com/shamoon ) in [#​6281](https://github.com/gethomepage/homepage/pull/6281 )
**Full Changelog**: <https://github.com/gethomepage/homepage/compare/v1.10.0...v1.10.1 >
### [`v1.10.0`](https://github.com/gethomepage/homepage/releases/tag/v1.10.0 )
[Compare Source](https://github.com/gethomepage/homepage/compare/v1.9.0...v1.10.0 )
##### What's Changed
- Feature: dockhand service widget by [@​shamoon](https://github.com/shamoon ) in [#​6229](https://github.com/gethomepage/homepage/pull/6229 )
- Enhancement: handle Vikunja v1rc4 breaking changes by [@​shamoon](https://github.com/shamoon ) in [#​6234](https://github.com/gethomepage/homepage/pull/6234 )
- Enhancement: Add support for PWA icons and shortcuts by [@​kpau](https://github.com/kpau ) in [#​6235](https://github.com/gethomepage/homepage/pull/6235 )
- Feature: Dispatcharr widget by [@​muertocaloh](https://github.com/muertocaloh ) in [#​6035](https://github.com/gethomepage/homepage/pull/6035 )
- Enhancement: support jellyfin 10.12 breaking API changes by [@​shamoon](https://github.com/shamoon ) in [#​6252](https://github.com/gethomepage/homepage/pull/6252 )
- Fix: fix authentik widget login counts for v2 api by [@​jeliozver](https://github.com/jeliozver ) in [#​6257](https://github.com/gethomepage/homepage/pull/6257 )
- Chore(deps): Bump swr from 2.3.3 to 2.4.0 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6260](https://github.com/gethomepage/homepage/pull/6260 )
- Chore(deps): Bump winston from 3.17.0 to 3.19.0 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6264](https://github.com/gethomepage/homepage/pull/6264 )
- Chore(deps-dev): Bump next-js and eslint-config-next from 15.2.4 to 15.5.11 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6261](https://github.com/gethomepage/homepage/pull/6261 )
- Chore(deps-dev): Bump tailwindcss from 4.0.9 to 4.1.18 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6262](https://github.com/gethomepage/homepage/pull/6262 )
- Chore(deps): Bump i18next from 25.5.3 to 25.8.0 by [@​dependabot](https://github.com/dependabot )\[bot] in [#​6263](https://github.com/gethomepage/homepage/pull/6263 )
- Chore: move to eslint by [@​shamoon](https://github.com/shamoon ) in [#​6270](https://github.com/gethomepage/homepage/pull/6270 )
- Enhancement: DNS fallback for Alpine/musl compatibility by [@​lexfrei](https://github.com/lexfrei ) in [#​6265](https://github.com/gethomepage/homepage/pull/6265 )
- Feature: arcane service widget by [@​kmendell](https://github.com/kmendell ) in [#​6274](https://github.com/gethomepage/homepage/pull/6274 )
- Chore: homepage tests by [@​shamoon](https://github.com/shamoon ) in [#​6278](https://github.com/gethomepage/homepage/pull/6278 )
- New Crowdin translations by GitHub Action by [@​github-actions](https://github.com/github-actions )\[bot] in [#​6220](https://github.com/gethomepage/homepage/pull/6220 )
##### New Contributors
- [@​kpau](https://github.com/kpau ) made their first contribution in [#​6235](https://github.com/gethomepage/homepage/pull/6235 )
- [@​muertocaloh](https://github.com/muertocaloh ) made their first contribution in [#​6035](https://github.com/gethomepage/homepage/pull/6035 )
- [@​jeliozver](https://github.com/jeliozver ) made their first contribution in [#​6257](https://github.com/gethomepage/homepage/pull/6257 )
- [@​lexfrei](https://github.com/lexfrei ) made their first contribution in [#​6265](https://github.com/gethomepage/homepage/pull/6265 )
- [@​kmendell](https://github.com/kmendell ) made their first contribution in [#​6274](https://github.com/gethomepage/homepage/pull/6274 )
**Full Changelog**: <https://github.com/gethomepage/homepage/compare/v1.9.0...v1.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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0My4zLjYiLCJ1cGRhdGVkSW5WZXIiOiI0My4zLjYiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImltYWdlIl19-->
Reviewed-on: #3735
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-02-05 19:32:55 +00:00
9983ab5ff6
feat: remove watchtower
lint-test-docker / lint-docker-compose (push) Failing after 26s
renovate / renovate (push) Has been cancelled
2026-02-05 02:01:17 +00:00
5a226b3241
chore(deps): update dxflrs/garage docker tag to v2.2.0 ( #3469 )
...
render-manifests-push / render-manifests-push (push) Has been skipped
lint-test-helm / lint-helm (push) Successful in 13s
lint-test-docker / lint-docker-compose (push) Successful in 18s
renovate / renovate (push) Has been cancelled
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| dxflrs/garage | minor | `v2.1.0` → `v2.2.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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=-->
Reviewed-on: #3469
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-01-24 17:47:25 +00:00
cd7840d4f6
chore(deps): update gitea/gitea docker tag to v1.25.4 ( #3380 )
lint-test-helm / lint-helm (push) Successful in 15s
render-manifests-push / render-manifests-push (push) Has been skipped
lint-test-docker / lint-docker-compose (push) Successful in 21s
renovate / renovate (push) Successful in 2m14s
2026-01-23 03:02:08 +00:00
daf583fd8c
Update ghcr.io/gethomepage/homepage Docker tag to v1.9.0 ( #3328 )
render-manifests-push / render-manifests-push (push) Has been skipped
lint-test-helm / lint-helm (push) Successful in 18s
lint-test-docker / lint-docker-compose (push) Successful in 47s
renovate / renovate (push) Successful in 2m37s
2026-01-19 19:03:45 +00:00
097e70cabf
Update ghcr.io/traefik/traefik Docker tag to v3.6.7 ( #3264 )
...
lint-test-docker / lint-docker-compose (push) Successful in 26s
renovate / renovate (push) Successful in 1m33s
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/traefik/traefik](https://hub.docker.com/_/traefik ) ([source](https://github.com/traefik/traefik-library-image )) | patch | `v3.6.6` → `v3.6.7` |
---
> ⚠️ **Warning**
>
> Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
---
### Release Notes
<details>
<summary>traefik/traefik-library-image (ghcr.io/traefik/traefik)</summary>
### [`v3.6.7`](https://github.com/traefik/traefik-library-image/compare/v3.6.7...v3.6.7 )
[Compare Source](https://github.com/traefik/traefik-library-image/compare/v3.6.7...v3.6.7 )
### [`v3.6.7`](https://github.com/traefik/traefik-library-image/compare/v3.6.6...v3.6.7 )
[Compare Source](https://github.com/traefik/traefik-library-image/compare/v3.6.6...v3.6.7 )
</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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwiaW1hZ2UiXX0=-->
Reviewed-on: #3264
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-01-18 20:39:41 +00:00
7c9d2e366d
remove from list
lint-test-helm / lint-helm (push) Successful in 18s
lint-test-docker / lint-docker-compose (push) Successful in 24s
render-manifests-push / render-manifests-push (push) Successful in 30s
renovate / renovate (push) Successful in 1m9s
2026-01-10 12:14:20 -06:00
e4565a8ef8
remove errant
lint-test-docker / lint-docker-compose (push) Successful in 21s
renovate / renovate (push) Successful in 1m12s
2026-01-10 12:05:18 -06:00
1f341b4549
change wildcard
lint-test-docker / lint-docker-compose (push) Successful in 21s
renovate / renovate (push) Has been cancelled
2026-01-10 12:04:45 -06:00
352415eb25
update dns groups
lint-test-docker / lint-docker-compose (push) Successful in 37s
renovate / renovate (push) Successful in 1m26s
2026-01-10 12:03:13 -06:00
c3d24d62c3
remove config
lint-test-docker / lint-docker-compose (push) Successful in 19s
renovate / renovate (push) Successful in 2m52s
2026-01-09 14:10:14 -06:00
1f8da87617
add isponsorblocktv
lint-test-docker / lint-docker-compose (push) Successful in 33s
renovate / renovate (push) Successful in 1m26s
2026-01-08 22:46:53 -06:00
efe7d68b38
fix version
lint-test-docker / lint-docker-compose (push) Successful in 20s
renovate / renovate (push) Successful in 1m46s
2026-01-08 22:18:03 -06:00
3165dc13fe
use castsponsorskip
lint-test-docker / lint-docker-compose (push) Failing after 22s
renovate / renovate (push) Successful in 1m6s
2026-01-08 22:08:05 -06:00
2ff6d8bdff
update lists
lint-test-docker / lint-docker-compose (push) Successful in 21s
renovate / renovate (push) Successful in 1m45s
2026-01-08 22:03:26 -06:00
0169cc5055
add discord to allow
lint-test-docker / lint-docker-compose (push) Successful in 25s
lint-test-helm / lint-helm (push) Successful in 23s
render-manifests-push / render-manifests-push (push) Successful in 54s
renovate / renovate (push) Successful in 1m53s
2026-01-08 14:16:17 -06:00
b8cd1a4bb1
Update ghcr.io/tailscale/tailscale Docker tag to v1.92.5 ( #3078 )
...
lint-test-docker / lint-docker-compose (push) Successful in 47s
renovate / renovate (push) Has been cancelled
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/tailscale/tailscale](https://tailscale.com/kb/1282/docker ) ([source](https://github.com/tailscale/tailscale )) | patch | `v1.92.4` → `v1.92.5` |
---
### Release Notes
<details>
<summary>tailscale/tailscale (ghcr.io/tailscale/tailscale)</summary>
### [`v1.92.5`](https://github.com/tailscale/tailscale/releases/tag/v1.92.5 )
[Compare Source](https://github.com/tailscale/tailscale/compare/v1.92.4...v1.92.5 )
Please refer to the changelog available at <https://tailscale.com/changelog >
</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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwiaW1hZ2UiXX0=-->
Reviewed-on: #3078
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-01-07 02:05:42 +00:00
8b6d783903
Update ghcr.io/traefik/traefik Docker tag to v3.6.6 ( #2993 )
renovate / renovate (push) Has been cancelled
lint-test-docker / lint-docker-compose (push) Successful in 21s
2025-12-30 22:23:17 +00:00
fa5df93973
Update ghcr.io/tailscale/tailscale Docker tag to v1.92.4 ( #2731 )
lint-test-docker / lint-docker-compose (push) Successful in 38s
renovate / renovate (push) Has been cancelled
2025-12-20 01:03:45 +00:00
df4bb9465b
Update gitea/gitea Docker tag to v1.25.3 ( #2717 )
render-manifests-push / render-manifests-push (push) Has been skipped
lint-test-helm / lint-helm (push) Successful in 12s
lint-test-docker / lint-docker-compose (push) Successful in 19s
renovate / renovate (push) Successful in 1m36s
2025-12-19 20:02:21 +00:00
f73737e265
Update ghcr.io/tecnativa/docker-socket-proxy Docker tag to v0.4.2 ( #2646 )
...
lint-test-docker / lint-docker-compose (push) Successful in 15s
renovate / renovate (push) Successful in 1m3s
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/tecnativa/docker-socket-proxy](https://github.com/Tecnativa/docker-socket-proxy ) | patch | `v0.4.1` -> `v0.4.2` |
---
### Release Notes
<details>
<summary>Tecnativa/docker-socket-proxy (ghcr.io/tecnativa/docker-socket-proxy)</summary>
### [`v0.4.2`](https://github.com/Tecnativa/docker-socket-proxy/releases/tag/v0.4.2 )
[Compare Source](https://github.com/Tecnativa/docker-socket-proxy/compare/v0.4.1...v0.4.2 )
#### What's Changed
- Add touch command to create /var/lib/haproxy/server-state by [@​esabol](https://github.com/esabol ) in [#​163](https://github.com/Tecnativa/docker-socket-proxy/pull/163 )
#### New Contributors
- [@​esabol](https://github.com/esabol ) made their first contribution in [#​163](https://github.com/Tecnativa/docker-socket-proxy/pull/163 )
**Full Changelog**: <https://github.com/Tecnativa/docker-socket-proxy/compare/v0.4.1...v0.4.2 >
</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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zOS4xIiwidXBkYXRlZEluVmVyIjoiNDIuMzkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwiaW1hZ2UiXX0=-->
Reviewed-on: #2646
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-12-18 02:34:05 +00:00
844f726332
Update ghcr.io/tailscale/tailscale Docker tag to v1.92.3 ( #2667 )
...
renovate / renovate (push) Has been cancelled
lint-test-docker / lint-docker-compose (push) Successful in 33s
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/tailscale/tailscale](https://tailscale.com/kb/1282/docker ) ([source](https://github.com/tailscale/tailscale )) | minor | `v1.90.9` -> `v1.92.3` |
---
### Release Notes
<details>
<summary>tailscale/tailscale (ghcr.io/tailscale/tailscale)</summary>
### [`v1.92.3`](https://github.com/tailscale/tailscale/releases/tag/v1.92.3 )
[Compare Source](https://github.com/tailscale/tailscale/compare/v1.90.9...v1.92.3 )
Please refer to the changelog available at <https://tailscale.com/changelog >
</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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zOS4xIiwidXBkYXRlZEluVmVyIjoiNDIuMzkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=-->
Reviewed-on: #2667
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-12-18 02:32:04 +00:00
7112304d64
Update ghcr.io/traefik/traefik Docker tag to v3.6.5 ( #2647 )
lint-test-docker / lint-docker-compose (push) Successful in 20s
renovate / renovate (push) Has been cancelled
2025-12-17 16:03:55 +00:00
24049368df
enable
lint-test-docker / lint-docker-compose (push) Successful in 14s
renovate / renovate (push) Successful in 1m1s
2025-12-11 14:53:36 -06:00
cdb06621eb
disable
lint-test-docker / lint-docker-compose (push) Successful in 19s
renovate / renovate (push) Successful in 1m17s
2025-12-11 14:51:40 -06:00
ef4f5d5fa7
update image
lint-test-docker / lint-docker-compose (push) Successful in 20s
renovate / renovate (push) Successful in 1m19s
2025-12-11 14:40:11 -06:00
6d15f76163
Update ghcr.io/gethomepage/homepage Docker tag to v1.8.0 ( #2367 )
render-manifests-push / render-manifests-push (push) Has been skipped
lint-test-helm / lint-helm (push) Successful in 15s
lint-test-docker / lint-docker-compose (push) Successful in 22s
renovate / renovate (push) Successful in 1m27s
2025-12-10 21:03:47 +00:00
6b0f4f1f11
Update ghcr.io/traefik/traefik Docker tag to v3.6.4 ( #2295 )
...
renovate / renovate (push) Successful in 2m2s
lint-test-docker / lint-docker-compose (push) Successful in 11s
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/traefik/traefik](https://hub.docker.com/_/traefik ) ([source](https://github.com/traefik/traefik-library-image )) | patch | `v3.6.2` -> `v3.6.4` |
---
### Release Notes
<details>
<summary>traefik/traefik-library-image (ghcr.io/traefik/traefik)</summary>
### [`v3.6.4`](https://github.com/traefik/traefik-library-image/compare/v3.6.4...v3.6.4 )
[Compare Source](https://github.com/traefik/traefik-library-image/compare/v3.6.4...v3.6.4 )
### [`v3.6.4`](https://github.com/traefik/traefik-library-image/compare/v3.6.2...v3.6.4 )
[Compare Source](https://github.com/traefik/traefik-library-image/compare/v3.6.2...v3.6.4 )
</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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zOS4xIiwidXBkYXRlZEluVmVyIjoiNDIuMzkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwiaW1hZ2UiXX0=-->
Co-authored-by: Alex Lebens <alexanderlebens@gmail.com >
Reviewed-on: #2295
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-12-07 18:41:52 +00:00
8ba9ee874c
Update ghcr.io/tailscale/tailscale Docker tag to v1.90.9 ( #2199 )
renovate / renovate (push) Has been cancelled
lint-test-docker / docker-lint (push) Successful in 9s
2025-12-03 06:07:51 +00:00
b58b3a3ed0
increase compression
lint-test-docker / docker-lint (push) Successful in 8s
renovate / renovate (push) Has been cancelled
2025-11-28 22:55:08 -06:00
b78769e062
Update ghcr.io/0xerr0r/blocky Docker tag to v0.28.2 ( #2100 )
...
lint-test-docker / docker-lint (push) Successful in 11s
lint-test-helm / helm-lint (push) Successful in 19s
renovate / renovate (push) Successful in 1m44s
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/0xerr0r/blocky](https://github.com/0xERR0R/blocky ) | minor | `v0.27.0` -> `v0.28.2` |
---
### Release Notes
<details>
<summary>0xERR0R/blocky (ghcr.io/0xerr0r/blocky)</summary>
### [`v0.28.2`](https://github.com/0xERR0R/blocky/releases/tag/v0.28.2 )
[Compare Source](https://github.com/0xERR0R/blocky/compare/v0.28.1...v0.28.2 )
##### Changelog
##### Features
- [`26ac90c`](26ac90c0e2 ): feat: add MIPS architecture builds ([#​1929](https://github.com/0xERR0R/blocky/issues/1929 )) ([@​0xERR0R](https://github.com/0xERR0R ))
##### Bug fixes
- [`605a361`](605a36199d ): fix: handle DNSSEC validation for large RSA exponents and improve DNSKEY matching ([#​1935](https://github.com/0xERR0R/blocky/issues/1935 )) ([@​0xERR0R](https://github.com/0xERR0R ))
##### Misc
- [`b776ae5`](b776ae57bc ): refactor: remove duplicated code patterns in resolver and cmd packages ([#​1932](https://github.com/0xERR0R/blocky/issues/1932 )) ([@​Copilot](https://github.com/Copilot ))
### [`v0.28.1`](https://github.com/0xERR0R/blocky/releases/tag/v0.28.1 )
[Compare Source](https://github.com/0xERR0R/blocky/compare/v0.28.0...v0.28.1 )
##### Changelog
##### Bug fixes
- [`5657ce8`](5657ce8f0d ): fix: resolve DNSSEC validation issue for CNAMEs in unsigned zones ([#​1930](https://github.com/0xERR0R/blocky/issues/1930 )) ([@​0xERR0R](https://github.com/0xERR0R ))
##### Build and dependencies
- [`f4b6b75`](f4b6b75457 ): build: Update regex for bug fixes in goreleaser config ([@​0xERR0R](https://github.com/0xERR0R ))
##### Misc
- [`0a3c724`](0a3c72441f ): refactor: remove unused code ([#​1928](https://github.com/0xERR0R/blocky/issues/1928 )) ([@​0xERR0R](https://github.com/0xERR0R ))
### [`v0.28.0`](https://github.com/0xERR0R/blocky/releases/tag/v0.28.0 )
[Compare Source](https://github.com/0xERR0R/blocky/compare/v0.27.0...v0.28.0 )
##### Changelog
##### Features
- [`77578da`](77578dafdf ): feat: add DNSSEC validation ([#​1914](https://github.com/0xERR0R/blocky/issues/1914 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`b29eab4`](b29eab48ac ): feat: add SOA records to NXDOMAIN responses for RFC 2308 compliance ([#​1895](https://github.com/0xERR0R/blocky/issues/1895 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`d0681ae`](d0681ae6d3 ): feat: enhance error messages with more context ([#​1894](https://github.com/0xERR0R/blocky/issues/1894 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`ac8ca7d`](ac8ca7dc1f ): feat: respect NO\_COLOR environment variable ([#​1911](https://github.com/0xERR0R/blocky/issues/1911 )) ([@​aanderse](https://github.com/aanderse ))
- [`629b4f0`](629b4f069e ): feat: support DNS Stamp upstream format ([#​1922](https://github.com/0xERR0R/blocky/issues/1922 )) ([@​0xERR0R](https://github.com/0xERR0R ))
##### Bugfixes
- [`8aad53e`](8aad53ea47 ): fix: TCP response truncation ([#​1904](https://github.com/0xERR0R/blocky/issues/1904 )) ([@​TimQuelch](https://github.com/TimQuelch ))
- [`9d4a58c`](9d4a58c72d ): fix: allow list group initialization with partial source failures ([#​1889](https://github.com/0xERR0R/blocky/issues/1889 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`0993a17`](0993a170a8 ): fix: ensure HTTP response bodies are drained before closing for connection reuse ([#​1924](https://github.com/0xERR0R/blocky/issues/1924 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`1a98cda`](1a98cda2c5 ): fix: ensure conditional upstreams initialize independently of default upstreams ([#​1890](https://github.com/0xERR0R/blocky/issues/1890 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`0804760`](0804760319 ): fix: resolve panic when CNAME points to external domain ([#​1867](https://github.com/0xERR0R/blocky/issues/1867 )) ([#​1884](https://github.com/0xERR0R/blocky/issues/1884 )) ([@​0xERR0R](https://github.com/0xERR0R ))
##### Build and dependencies
- [`0cd5be8`](0cd5be80d4 ): build(deps): bump actions/download-artifact from 5 to 6 ([#​1907](https://github.com/0xERR0R/blocky/issues/1907 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`5db30c4`](5db30c408d ): build(deps): bump actions/upload-artifact from 4 to 5 ([#​1908](https://github.com/0xERR0R/blocky/issues/1908 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`fc7ebe3`](fc7ebe323a ): build(deps): bump amannn/action-semantic-pull-request from 5 to 6 ([#​1897](https://github.com/0xERR0R/blocky/issues/1897 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`6a4d411`](6a4d4111c1 ): build(deps): bump github.com/avast/retry-go/v4 from 4.6.1 to 4.7.0 ([#​1888](https://github.com/0xERR0R/blocky/issues/1888 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`9e293c0`](9e293c0e82 ): build(deps): bump github.com/breml/rootcerts from 0.3.1 to 0.3.2 ([#​1886](https://github.com/0xERR0R/blocky/issues/1886 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`e81bf41`](e81bf416fa ): build(deps): bump github.com/breml/rootcerts from 0.3.2 to 0.3.3 ([#​1912](https://github.com/0xERR0R/blocky/issues/1912 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`073c8bf`](073c8bfcd7 ): build(deps): bump github.com/docker/docker from 28.5.1+incompatible to 28.5.2+incompatible ([#​1915](https://github.com/0xERR0R/blocky/issues/1915 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`2dac748`](2dac748963 ): build(deps): bump github.com/onsi/ginkgo/v2 from 2.26.0 to 2.27.1 ([#​1906](https://github.com/0xERR0R/blocky/issues/1906 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`8f534e6`](8f534e6f54 ): build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.1 to 2.27.2 ([#​1909](https://github.com/0xERR0R/blocky/issues/1909 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`7fa1c78`](7fa1c78316 ): build(deps): bump github.com/testcontainers/testcontainers-go from 0.39.0 to 0.40.0 ([#​1916](https://github.com/0xERR0R/blocky/issues/1916 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`5b147cc`](5b147cc12e ): build(deps): bump github.com/testcontainers/testcontainers-go/modules/mariadb from 0.39.0 to 0.40.0 ([#​1918](https://github.com/0xERR0R/blocky/issues/1918 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`80aeaa9`](80aeaa9316 ): build(deps): bump github.com/testcontainers/testcontainers-go/modules/postgres from 0.39.0 to 0.40.0 ([#​1917](https://github.com/0xERR0R/blocky/issues/1917 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`1cdaf72`](1cdaf728ed ): build(deps): bump github.com/testcontainers/testcontainers-go/modules/redis from 0.39.0 to 0.40.0 ([#​1919](https://github.com/0xERR0R/blocky/issues/1919 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`7663b7d`](7663b7d6c5 ): build(deps): bump golang.org/x/net from 0.46.0 to 0.47.0 ([#​1925](https://github.com/0xERR0R/blocky/issues/1925 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`8a212de`](8a212debcc ): build(deps): bump gorm.io/gorm from 1.31.0 to 1.31.1 ([#​1913](https://github.com/0xERR0R/blocky/issues/1913 )) ([@​dependabot](https://github.com/dependabot )\[bot])
- [`157f91f`](157f91f5ef ): build(release): Add changelog groups for features and fixes ([@​0xERR0R](https://github.com/0xERR0R ))
- [`d3e8b3b`](d3e8b3bb35 ): build: add pr title validation workflow ([#​1893](https://github.com/0xERR0R/blocky/issues/1893 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`44074e4`](44074e457a ): build: cache Go dependencies in Docker builds ([#​1899](https://github.com/0xERR0R/blocky/issues/1899 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`21a65de`](21a65de090 ): build: enable dependabot automerge ([#​1891](https://github.com/0xERR0R/blocky/issues/1891 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`8bf91c4`](8bf91c49fc ): build: remove unused tools ([#​1900](https://github.com/0xERR0R/blocky/issues/1900 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`4656429`](4656429c80 ): build: simplify build ([#​1892](https://github.com/0xERR0R/blocky/issues/1892 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`ab77fd5`](ab77fd57cc ): build: update tool dependencies ([#​1898](https://github.com/0xERR0R/blocky/issues/1898 )) ([@​0xERR0R](https://github.com/0xERR0R ))
- [`824ca3e`](824ca3eecd ): build: use Docker for mkdocs-material documentation server ([@​0xERR0R](https://github.com/0xERR0R ))
</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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41LjAiLCJ1cGRhdGVkSW5WZXIiOiI0Mi41LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImltYWdlIl19-->
Reviewed-on: #2100
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-11-24 17:37:08 +00:00