Commit Graph

364 Commits

Author SHA1 Message Date
859059a996 chore(deps): update favonia/cloudflare-ddns docker tag to v1.16.0 (#5301)
Some checks failed
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** ([#&#8203;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** ([#&#8203;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. ([#&#8203;1144](https://github.com/favonia/cloudflare-ddns/issues/1144)) ([#&#8203;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. ([#&#8203;1015](https://github.com/favonia/cloudflare-ddns/issues/1015)) ([#&#8203;1020](https://github.com/favonia/cloudflare-ddns/issues/1020)) ([#&#8203;1022](https://github.com/favonia/cloudflare-ddns/issues/1022)) ([#&#8203;1115](https://github.com/favonia/cloudflare-ddns/issues/1115))
- New `file:` provider reads IP addresses from a local file. ([#&#8203;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. ([#&#8203;1102](https://github.com/favonia/cloudflare-ddns/issues/1102)) ([#&#8203;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`). ([#&#8203;1159](https://github.com/favonia/cloudflare-ddns/issues/1159)) ([#&#8203;1169](https://github.com/favonia/cloudflare-ddns/issues/1169))
- The experimental `local.iface` provider now collects all matching global unicast addresses. ([#&#8203;1095](https://github.com/favonia/cloudflare-ddns/issues/1095))
- New `MANAGED_RECORDS_COMMENT_REGEX` selects only DNS records whose comments match a regex. ([#&#8203;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. ([#&#8203;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. ([#&#8203;1131](https://github.com/favonia/cloudflare-ddns/issues/1131))
- The updater now warns about likely misconfigured `SHOUTRRR` values. ([#&#8203;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. ([#&#8203;1177](https://github.com/favonia/cloudflare-ddns/issues/1177))
- The updater now exits gracefully when `EMOJI` or `QUIET` is invalid. ([#&#8203;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. ([#&#8203;1125](https://github.com/favonia/cloudflare-ddns/issues/1125))
- API token verification is now stricter, catching malformed tokens before any update attempts. ([#&#8203;1126](https://github.com/favonia/cloudflare-ddns/issues/1126))
- Providers (especially `cloudflare.trace` and `cloudflare.doh`) now validate detected IP addresses more strictly. ([#&#8203;1097](https://github.com/favonia/cloudflare-ddns/issues/1097)) ([#&#8203;1099](https://github.com/favonia/cloudflare-ddns/issues/1099)) ([#&#8203;1101](https://github.com/favonia/cloudflare-ddns/issues/1101)) ([#&#8203;1151](https://github.com/favonia/cloudflare-ddns/issues/1151))
- WAF list entries in the configuration are now deduplicated. ([#&#8203;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. ([#&#8203;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). ([#&#8203;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)
All checks were successful
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)
Some checks failed
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)
Some checks failed
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 ([#&#8203;6461](https://github.com/gethomepage/homepage/issues/6461)) [@&#8203;stevenharris-dev](https://github.com/stevenharris-dev)
- Chore: make unifi proxy more generic ([#&#8203;6469](https://github.com/gethomepage/homepage/issues/6469)) [@&#8203;shamoon](https://github.com/shamoon)
- Enhancement: better support for raw values in block highlighting ([#&#8203;6434](https://github.com/gethomepage/homepage/issues/6434)) [@&#8203;shamoon](https://github.com/shamoon)
- Tweak: sanitize calendar integration URLs from markup ([#&#8203;6431](https://github.com/gethomepage/homepage/issues/6431)) [@&#8203;shamoon](https://github.com/shamoon)

##### 🐛 Fixes

- Fix: remove trailing space from Watchtower widget loading label ([#&#8203;6448](https://github.com/gethomepage/homepage/issues/6448)) [@&#8203;toytag](https://github.com/toytag)
- Fix: revert changes to qbittorrent widget endpoints ([#&#8203;6467](https://github.com/gethomepage/homepage/issues/6467)) [@&#8203;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 ([#&#8203;6460](https://github.com/gethomepage/homepage/issues/6460)) @&#8203;[dependabot\[bot\]](https://github.com/apps/dependabot)
- Chore: return to gh runners ([#&#8203;6462](https://github.com/gethomepage/homepage/issues/6462)) [@&#8203;shamoon](https://github.com/shamoon)
- Chore(deps): Bump the npm\_and\_yarn group across 1 directory with 5 updates ([#&#8203;6445](https://github.com/gethomepage/homepage/issues/6445)) @&#8203;[dependabot\[bot\]](https://github.com/apps/dependabot)
- Chore(deps-dev): Bump eslint-plugin-prettier from 5.5.4 to 5.5.5 ([#&#8203;6442](https://github.com/gethomepage/homepage/issues/6442)) @&#8203;[dependabot\[bot\]](https://github.com/apps/dependabot)
- Chore(deps): Bump urbackup-server-api from 0.91.0 to 0.92.2 ([#&#8203;6444](https://github.com/gethomepage/homepage/issues/6444)) @&#8203;[dependabot\[bot\]](https://github.com/apps/dependabot)
- Chore(deps): Bump react-icons from 5.5.0 to 5.6.0 ([#&#8203;6443](https://github.com/gethomepage/homepage/issues/6443)) @&#8203;[dependabot\[bot\]](https://github.com/apps/dependabot)
- Chore(deps): Bump swr from 2.4.0 to 2.4.1 ([#&#8203;6441](https://github.com/gethomepage/homepage/issues/6441)) @&#8203;[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 ([#&#8203;6439](https://github.com/gethomepage/homepage/issues/6439)) @&#8203;[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 ([#&#8203;6438](https://github.com/gethomepage/homepage/issues/6438)) @&#8203;[dependabot\[bot\]](https://github.com/apps/dependabot)
- Chore(deps): Bump pnpm/action-setup from 4 to 5 ([#&#8203;6436](https://github.com/gethomepage/homepage/issues/6436)) @&#8203;[dependabot\[bot\]](https://github.com/apps/dependabot)
- Chore(deps): Bump release-drafter/release-drafter from 6 to 7 ([#&#8203;6429](https://github.com/gethomepage/homepage/issues/6429)) @&#8203;[dependabot\[bot\]](https://github.com/apps/dependabot)
- Chore: add release drafter ([#&#8203;6424](https://github.com/gethomepage/homepage/issues/6424)) [@&#8203;shamoon](https://github.com/shamoon)

##### 🌐 Translations

- New Crowdin translations by GitHub Action ([#&#8203;6433](https://github.com/gethomepage/homepage/issues/6433)) @&#8203;[github-actions\[bot\]](https://github.com/apps/github-actions)
- New Crowdin translations by GitHub Action ([#&#8203;6292](https://github.com/gethomepage/homepage/issues/6292)) @&#8203;[github-actions\[bot\]](https://github.com/apps/github-actions)

##### 📚 Documentation

- Documentation: fix kubernetes config examples ([#&#8203;6468](https://github.com/gethomepage/homepage/issues/6468)) [@&#8203;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
All checks were successful
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)
All checks were successful
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
36ac6266ca tmp/booklore (#5034)
All checks were successful
lint-test-docker / lint-docker-compose (push) Successful in 23s
lint-test-helm / lint-helm (push) Successful in 26s
lint-test-helm / validate-kubeconform (push) Has been skipped
renovate / renovate (push) Successful in 2m0s
Reviewed-on: #5034
2026-03-24 03:44:24 +00:00
1b61891d18 Add Grimmory as separate from Booklore (#5020)
All checks were successful
lint-test-helm / lint-helm (push) Successful in 53s
lint-test-helm / validate-kubeconform (push) Has been skipped
lint-test-docker / lint-docker-compose (push) Successful in 1m17s
renovate / renovate (push) Successful in 1m15s
Reviewed-on: #5020
2026-03-24 01:50:24 +00:00
5e102d7b19 tmp/folder (#4978)
All checks were successful
lint-test-docker / lint-docker-compose (push) Successful in 17s
lint-test-helm / lint-helm (push) Successful in 17s
lint-test-helm / validate-kubeconform (push) Has been skipped
renovate / renovate (push) Successful in 2m8s
Reviewed-on: #4978
2026-03-22 17:49:42 +00:00
bef2ff5c44 feat: give plex an lb (#4969)
Some checks failed
lint-test-helm / lint-helm (push) Successful in 1m16s
lint-test-helm / validate-kubeconform (push) Has been skipped
renovate / renovate (push) Has been cancelled
lint-test-docker / lint-docker-compose (push) Successful in 1m11s
Reviewed-on: #4969
2026-03-22 03:23:36 +00:00
46922a6230 chore(deps): pin dependencies (#4968)
Some checks failed
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
85b5c73c32 tmp/hound (#4942)
Some checks failed
lint-test-helm / lint-helm (push) Successful in 19s
lint-test-docker / lint-docker-compose (push) Successful in 22s
lint-test-helm / validate-kubeconform (push) Has been skipped
renovate / renovate (push) Has been cancelled
Reviewed-on: #4942
2026-03-21 00:37:28 +00:00
6b8c2826f5 tmp/lang (#4938)
All checks were successful
lint-test-docker / lint-docker-compose (push) Successful in 17s
lint-test-helm / lint-helm (push) Successful in 22s
lint-test-helm / validate-kubeconform (push) Has been skipped
renovate / renovate (push) Successful in 1m5s
Reviewed-on: #4938
2026-03-20 22:54:46 +00:00
f15632c561 chore(deps): update ghcr.io/traefik/traefik docker tag to v3.6.11 (#4908)
Some checks failed
lint-test-docker / lint-docker-compose (push) Successful in 32s
renovate / renovate (push) Has been cancelled
2026-03-20 01:17:03 +00:00
0bed6ebbe0 Add medialyze (#4816)
All checks were successful
lint-test-helm / lint-helm (push) Successful in 40s
lint-test-helm / validate-kubeconform (push) Has been skipped
lint-test-docker / lint-docker-compose (push) Successful in 1m18s
renovate / renovate (push) Successful in 5m7s
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Reviewed-on: #4816
2026-03-17 22:57:09 +00:00
d9fcb0c864 chore(deps): update ghcr.io/gabe565/castsponsorskip docker tag to v0.8.3 (#4812)
Some checks failed
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)
Some checks failed
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 [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6284](https://github.com/gethomepage/homepage/pull/6284)
- Chore(deps): Bump actions/setup-node from 4 to 6 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6285](https://github.com/gethomepage/homepage/pull/6285)
- Feature: add Tracearr widget for displaying active Plex streams by [@&#8203;Bothari](https://github.com/Bothari) in [#&#8203;6306](https://github.com/gethomepage/homepage/pull/6306)
- Improvement: better handle highlighting with units by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6318](https://github.com/gethomepage/homepage/pull/6318)
- Chore: rename Jellyseerr widget to Seerr and update references by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6322](https://github.com/gethomepage/homepage/pull/6322)
- Enhancement: jellyseer completed by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6329](https://github.com/gethomepage/homepage/pull/6329)
- Chore: merge Overseerr into Seerr, add aliases by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6330](https://github.com/gethomepage/homepage/pull/6330)
- Enhancement: add "Temperature" label to list of possible CPU sensors by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6331](https://github.com/gethomepage/homepage/pull/6331)
- Enhancement: cover more basic statuses in containers list by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6334](https://github.com/gethomepage/homepage/pull/6334)
- Feature: sparkyfitness service widget by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6346](https://github.com/gethomepage/homepage/pull/6346)
- Enhancement: fallback for missing si network stats by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6367](https://github.com/gethomepage/homepage/pull/6367)
- Fix: Await async proxy handlers by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6371](https://github.com/gethomepage/homepage/pull/6371)
- Fix: small fixes for Omada proxy by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6372](https://github.com/gethomepage/homepage/pull/6372)
- Chore: add security context, liveness probe and config mount to k8s deployment example by [@&#8203;hugosxm](https://github.com/hugosxm) in [#&#8203;6375](https://github.com/gethomepage/homepage/pull/6375)
- Enhancement: use lighter endpoints for qbittorrent by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6388](https://github.com/gethomepage/homepage/pull/6388)
- Chore(deps-dev): Bump prettier from 3.7.3 to 3.8.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6379](https://github.com/gethomepage/homepage/pull/6379)
- Chore(deps-dev): Bump jsdom from 26.1.0 to 28.1.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6378](https://github.com/gethomepage/homepage/pull/6378)
- Chore(deps): Bump ical.js from 2.1.0 to 2.2.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6377](https://github.com/gethomepage/homepage/pull/6377)
- Chore(deps): Bump docker/login-action from 3 to 4 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6385](https://github.com/gethomepage/homepage/pull/6385)
- Chore(deps): Bump next-i18next from 12.1.0 to 15.4.3 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6376](https://github.com/gethomepage/homepage/pull/6376)
- Chore(deps): Bump react and react-dom by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6380](https://github.com/gethomepage/homepage/pull/6380)
- Chore(deps): Bump docker/setup-qemu-action from 3.7.0 to 4.0.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6386](https://github.com/gethomepage/homepage/pull/6386)
- Chore(deps): Bump docker/metadata-action from 5 to 6 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6399](https://github.com/gethomepage/homepage/pull/6399)
- Chore(deps): Bump docker/setup-buildx-action from 3 to 4 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6398](https://github.com/gethomepage/homepage/pull/6398)
- Chore(deps): Bump docker/build-push-action from 6 to 7 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6397](https://github.com/gethomepage/homepage/pull/6397)
- Change: use byterate for beszel network field by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6402](https://github.com/gethomepage/homepage/pull/6402)
- Enhancement: better Crowdsec auth parsing, caching, and retries by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6419](https://github.com/gethomepage/homepage/pull/6419)

##### New Contributors

- [@&#8203;Bothari](https://github.com/Bothari) made their first contribution in [#&#8203;6306](https://github.com/gethomepage/homepage/pull/6306)
- [@&#8203;hugosxm](https://github.com/hugosxm) made their first contribution in [#&#8203;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)
Some checks failed
renovate / renovate (push) Has been cancelled
lint-test-docker / lint-docker-compose (push) Successful in 1m7s
2026-03-14 04:02:46 +00:00
bb2eb87f04 feat: add movie-routelette
All checks were successful
lint-test-docker / lint-docker-compose (push) Successful in 18s
lint-test-helm / lint-helm (push) Successful in 29s
render-manifests-push / render-manifests-push (push) Successful in 51s
renovate / renovate (push) Successful in 2m46s
2026-03-10 16:05:21 -05:00
d140610598 feat: add trackjs to ignore lists
All checks were successful
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)
All checks were successful
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
3603aed2ab feat: remove spotisub 2026-03-03 17:42:40 -06:00
ca21308ef4 feat: add dawarich
All checks were successful
lint-test-helm / lint-helm (push) Successful in 55s
lint-test-docker / lint-docker-compose (push) Successful in 1m15s
render-manifests-push / render-manifests-push (push) Successful in 1m17s
renovate / renovate (push) Successful in 8m29s
2026-03-03 16:17:44 -06:00
3fe6a5a5da chore(deps): update ghcr.io/0xerr0r/blocky docker tag to v0.29.0 (#4283)
Some checks failed
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 ([#&#8203;1941](https://github.com/0xERR0R/blocky/issues/1941)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`011e3eb`](011e3eb500): feat: implement DNS64 support ([#&#8203;1933](https://github.com/0xERR0R/blocky/issues/1933)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`e199445`](e199445bcd): feat: improve IP parsing from X-Forwarded-For header ([#&#8203;1940](https://github.com/0xERR0R/blocky/issues/1940)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))

##### Bug fixes

- [`257fe07`](257fe07f31): fix: Incorrect rate data shown on Grafana dashboards ([#&#8203;1948](https://github.com/0xERR0R/blocky/issues/1948)) ([@&#8203;mattdy](https://github.com/mattdy))
- [`1a4d22d`](1a4d22d3d8): fix: db automigration with timescaledb ([#&#8203;1975](https://github.com/0xERR0R/blocky/issues/1975)) ([@&#8203;manofthepeace](https://github.com/manofthepeace))
- [`9874212`](98742121da): fix: use context based versions of net.Listen and net.Dial ([#&#8203;1952](https://github.com/0xERR0R/blocky/issues/1952)) ([@&#8203;sonjek](https://github.com/sonjek))

##### Build and dependencies

- [`fe67404`](fe674044da): build(deps): bump actions/checkout from 5 to 6 ([#&#8203;1943](https://github.com/0xERR0R/blocky/issues/1943)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`4752061`](4752061443): build(deps): bump actions/download-artifact from 6 to 7 ([#&#8203;1961](https://github.com/0xERR0R/blocky/issues/1961)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`d459311`](d459311378): build(deps): bump actions/download-artifact from 7 to 8 ([#&#8203;2000](https://github.com/0xERR0R/blocky/issues/2000)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`fa1614b`](fa1614bbbe): build(deps): bump actions/upload-artifact from 5 to 6 ([#&#8203;1960](https://github.com/0xERR0R/blocky/issues/1960)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`11b6f92`](11b6f92387): build(deps): bump actions/upload-artifact from 6 to 7 ([#&#8203;1998](https://github.com/0xERR0R/blocky/issues/1998)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`e83805c`](e83805c987): build(deps): bump filippo.io/edwards25519 from 1.1.0 to 1.1.1 ([#&#8203;1992](https://github.com/0xERR0R/blocky/issues/1992)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`4f62ec8`](4f62ec8009): build(deps): bump github.com/alicebob/miniredis/v2 from 2.35.0 to 2.36.0 ([#&#8203;1976](https://github.com/0xERR0R/blocky/issues/1976)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`16644c5`](16644c5659): build(deps): bump github.com/alicebob/miniredis/v2 from 2.36.0 to 2.36.1 ([#&#8203;1978](https://github.com/0xERR0R/blocky/issues/1978)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`36ae188`](36ae188e72): build(deps): bump github.com/alicebob/miniredis/v2 from 2.36.1 to 2.37.0 ([#&#8203;1996](https://github.com/0xERR0R/blocky/issues/1996)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`4733c6b`](4733c6bb52): build(deps): bump github.com/breml/rootcerts from 0.3.3 to 0.3.4 ([#&#8203;1987](https://github.com/0xERR0R/blocky/issues/1987)) ([@&#8203;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 ([#&#8203;1972](https://github.com/0xERR0R/blocky/issues/1972)) ([@&#8203;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 ([#&#8203;1985](https://github.com/0xERR0R/blocky/issues/1985)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`e66a29d`](e66a29d874): build(deps): bump github.com/miekg/dns from 1.1.68 to 1.1.69 ([#&#8203;1959](https://github.com/0xERR0R/blocky/issues/1959)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`8e69355`](8e693558d7): build(deps): bump github.com/miekg/dns from 1.1.69 to 1.1.70 ([#&#8203;1968](https://github.com/0xERR0R/blocky/issues/1968)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`5e8b555`](5e8b555984): build(deps): bump github.com/miekg/dns from 1.1.70 to 1.1.72 ([#&#8203;1977](https://github.com/0xERR0R/blocky/issues/1977)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`ef5dc97`](ef5dc97ddf): build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.2 to 2.27.3 ([#&#8203;1956](https://github.com/0xERR0R/blocky/issues/1956)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`670542b`](670542bacf): build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.3 to 2.27.4 ([#&#8203;1966](https://github.com/0xERR0R/blocky/issues/1966)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`e062742`](e062742259): build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.4 to 2.27.5 ([#&#8203;1970](https://github.com/0xERR0R/blocky/issues/1970)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`4926d16`](4926d161fe): build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.5 to 2.28.1 ([#&#8203;1981](https://github.com/0xERR0R/blocky/issues/1981)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`ca0da10`](ca0da10f7c): build(deps): bump github.com/onsi/gomega from 1.38.2 to 1.38.3 ([#&#8203;1955](https://github.com/0xERR0R/blocky/issues/1955)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`567a738`](567a73887b): build(deps): bump github.com/onsi/gomega from 1.38.3 to 1.39.0 ([#&#8203;1967](https://github.com/0xERR0R/blocky/issues/1967)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`c3aab87`](c3aab87e1d): build(deps): bump github.com/onsi/gomega from 1.39.0 to 1.39.1 ([#&#8203;1982](https://github.com/0xERR0R/blocky/issues/1982)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`ef79a67`](ef79a6789a): build(deps): bump github.com/sirupsen/logrus from 1.9.3 to 1.9.4 ([#&#8203;1974](https://github.com/0xERR0R/blocky/issues/1974)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`6775759`](67757591e5): build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2 ([#&#8203;1953](https://github.com/0xERR0R/blocky/issues/1953)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`71c39fc`](71c39fc132): build(deps): bump golang.org/x/crypto from 0.44.0 to 0.45.0 ([#&#8203;1939](https://github.com/0xERR0R/blocky/issues/1939)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`be31648`](be316486ac): build(deps): bump golang.org/x/net from 0.47.0 to 0.48.0 ([#&#8203;1957](https://github.com/0xERR0R/blocky/issues/1957)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`a574078`](a5740782ea): build(deps): bump golang.org/x/net from 0.48.0 to 0.49.0 ([#&#8203;1971](https://github.com/0xERR0R/blocky/issues/1971)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`6f3f295`](6f3f2959d3): build(deps): bump golang.org/x/net from 0.49.0 to 0.50.0 ([#&#8203;1988](https://github.com/0xERR0R/blocky/issues/1988)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`6a75afb`](6a75afb480): build(deps): bump golang.org/x/net from 0.50.0 to 0.51.0 ([#&#8203;1997](https://github.com/0xERR0R/blocky/issues/1997)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])

##### Misc

- [`439e99b`](439e99b193): Add Blocky Visor to web UIs section in installation.md ([#&#8203;1993](https://github.com/0xERR0R/blocky/issues/1993)) ([@&#8203;JCHHeilmann](https://github.com/JCHHeilmann))
- [`ced469f`](ced469f479): refactor: centralize DNS response creation logic with helper functions ([#&#8203;1942](https://github.com/0xERR0R/blocky/issues/1942)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`3075c38`](3075c3810c): refactor: clean up obsolete Go syntax ([#&#8203;1951](https://github.com/0xERR0R/blocky/issues/1951)) ([@&#8203;sonjek](https://github.com/sonjek))
- [`9fe42a8`](9fe42a8621): refactor: simplify code for improved readability and maintainability ([#&#8203;1945](https://github.com/0xERR0R/blocky/issues/1945)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`6581668`](65816682cc): refactor: use mockery for mocks ([#&#8203;1944](https://github.com/0xERR0R/blocky/issues/1944)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`55ab95e`](55ab95ed4d): test(metrics): Prometheus metrics ([#&#8203;1868](https://github.com/0xERR0R/blocky/issues/1868)) ([@&#8203;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)
All checks were successful
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
9d87fa7880 feat: remove huntarr
All checks were successful
lint-test-helm / lint-helm (push) Successful in 35s
lint-test-docker / lint-docker-compose (push) Successful in 48s
render-manifests-push / render-manifests-push (push) Successful in 1m16s
renovate / renovate (push) Successful in 5m29s
2026-02-23 11:41:05 -06:00
225e047b91 feat: add music-grabber
All checks were successful
lint-test-docker / lint-docker-compose (push) Successful in 19s
lint-test-helm / lint-helm (push) Successful in 1m6s
renovate / renovate (push) Successful in 2m0s
render-manifests-push / render-manifests-push (push) Successful in 2m48s
2026-02-20 18:33:53 -06:00
879a7390de chore(deps): update ghcr.io/tailscale/tailscale docker tag to v1.94.2 (#3994)
All checks were successful
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)
Some checks failed
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
6bc95827c6 feat: remove overseerr
All checks were successful
lint-test-helm / lint-helm (push) Successful in 30s
lint-test-docker / lint-docker-compose (push) Successful in 36s
render-manifests-push / render-manifests-push (push) Successful in 1m28s
renovate / renovate (push) Successful in 2m25s
2026-02-15 16:01:11 -06:00
c5420495be feat: move directus to local endpoint
All checks were successful
lint-test-helm / lint-helm (push) Successful in 17s
lint-test-docker / lint-docker-compose (push) Successful in 29s
renovate / renovate (push) Successful in 1m59s
render-manifests-push / render-manifests-push (push) Successful in 2m7s
2026-02-09 16:51:07 -06:00
2c5df6cd11 feat: remove yubal playlist
All checks were successful
lint-test-helm / lint-helm (push) Successful in 18s
lint-test-docker / lint-docker-compose (push) Successful in 22s
render-manifests-push / render-manifests-push (push) Successful in 43s
renovate / renovate (push) Successful in 2m37s
2026-02-06 15:46:59 -06:00
fbe4d7c72d feat: add yubal
All checks were successful
lint-test-helm / lint-helm (push) Successful in 24s
render-manifests-push / render-manifests-push (push) Successful in 1m3s
lint-test-docker / lint-docker-compose (push) Successful in 1m34s
renovate / renovate (push) Successful in 2m3s
2026-02-06 13:54:37 -06:00
618aecb676 feat: add spotisub
Some checks failed
lint-test-helm / lint-helm (push) Successful in 21s
render-manifests-push / render-manifests-push (push) Successful in 1m26s
lint-test-docker / lint-docker-compose (push) Successful in 29s
renovate / renovate (push) Has been cancelled
2026-02-06 11:06:15 -06:00
0b877a1a8a feat: change endpoint
All checks were successful
lint-test-helm / lint-helm (push) Successful in 26s
lint-test-docker / lint-docker-compose (push) Successful in 35s
render-manifests-push / render-manifests-push (push) Successful in 44s
renovate / renovate (push) Successful in 2m44s
2026-02-05 14:41:52 -06:00
6fe8cfc07f chore(deps): update ghcr.io/tailscale/tailscale docker tag to v1.94.1 (#3736)
Some checks failed
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)
Some checks failed
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 [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6279](https://github.com/gethomepage/homepage/pull/6279)
- Enhancement: better display of Arcane widget errors by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;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 [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6229](https://github.com/gethomepage/homepage/pull/6229)
- Enhancement: handle Vikunja v1rc4 breaking changes by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6234](https://github.com/gethomepage/homepage/pull/6234)
- Enhancement: Add support for PWA icons and shortcuts by [@&#8203;kpau](https://github.com/kpau) in [#&#8203;6235](https://github.com/gethomepage/homepage/pull/6235)
- Feature: Dispatcharr widget by [@&#8203;muertocaloh](https://github.com/muertocaloh) in [#&#8203;6035](https://github.com/gethomepage/homepage/pull/6035)
- Enhancement: support jellyfin 10.12 breaking API changes by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6252](https://github.com/gethomepage/homepage/pull/6252)
- Fix: fix authentik widget login counts for v2 api by [@&#8203;jeliozver](https://github.com/jeliozver) in [#&#8203;6257](https://github.com/gethomepage/homepage/pull/6257)
- Chore(deps): Bump swr from 2.3.3 to 2.4.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6260](https://github.com/gethomepage/homepage/pull/6260)
- Chore(deps): Bump winston from 3.17.0 to 3.19.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;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 [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6261](https://github.com/gethomepage/homepage/pull/6261)
- Chore(deps-dev): Bump tailwindcss from 4.0.9 to 4.1.18 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6262](https://github.com/gethomepage/homepage/pull/6262)
- Chore(deps): Bump i18next from 25.5.3 to 25.8.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6263](https://github.com/gethomepage/homepage/pull/6263)
- Chore: move to eslint by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6270](https://github.com/gethomepage/homepage/pull/6270)
- Enhancement: DNS fallback for Alpine/musl compatibility by [@&#8203;lexfrei](https://github.com/lexfrei) in [#&#8203;6265](https://github.com/gethomepage/homepage/pull/6265)
- Feature: arcane service widget by [@&#8203;kmendell](https://github.com/kmendell) in [#&#8203;6274](https://github.com/gethomepage/homepage/pull/6274)
- Chore: homepage tests by [@&#8203;shamoon](https://github.com/shamoon) in [#&#8203;6278](https://github.com/gethomepage/homepage/pull/6278)
- New Crowdin translations by GitHub Action by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;6220](https://github.com/gethomepage/homepage/pull/6220)

##### New Contributors

- [@&#8203;kpau](https://github.com/kpau) made their first contribution in [#&#8203;6235](https://github.com/gethomepage/homepage/pull/6235)
- [@&#8203;muertocaloh](https://github.com/muertocaloh) made their first contribution in [#&#8203;6035](https://github.com/gethomepage/homepage/pull/6035)
- [@&#8203;jeliozver](https://github.com/jeliozver) made their first contribution in [#&#8203;6257](https://github.com/gethomepage/homepage/pull/6257)
- [@&#8203;lexfrei](https://github.com/lexfrei) made their first contribution in [#&#8203;6265](https://github.com/gethomepage/homepage/pull/6265)
- [@&#8203;kmendell](https://github.com/kmendell) made their first contribution in [#&#8203;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
19ffd3bb2f feat: switch gateway
All checks were successful
lint-test-helm / lint-helm (push) Successful in 16s
render-manifests-push / render-manifests-push (push) Successful in 50s
lint-test-docker / lint-docker-compose (push) Successful in 1m20s
renovate / renovate (push) Successful in 1m45s
2026-02-04 21:55:11 -06:00
9983ab5ff6 feat: remove watchtower
Some checks failed
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)
Some checks failed
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)
All checks were successful
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
6825eb5c61 remove lidatube
All checks were successful
lint-test-helm / lint-helm (push) Successful in 34s
render-manifests-push / render-manifests-push (push) Successful in 40s
lint-test-docker / lint-docker-compose (push) Successful in 50s
renovate / renovate (push) Successful in 2m33s
2026-01-21 16:34:57 -06:00
05c2ca2848 remove ephemera
All checks were successful
lint-test-helm / lint-helm (push) Successful in 28s
lint-test-docker / lint-docker-compose (push) Successful in 38s
render-manifests-push / render-manifests-push (push) Successful in 54s
renovate / renovate (push) Successful in 5m55s
2026-01-21 14:38:02 -06:00
daf583fd8c Update ghcr.io/gethomepage/homepage Docker tag to v1.9.0 (#3328)
All checks were successful
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
3b272fa9e1 remove tautulli
All checks were successful
lint-test-helm / lint-helm (push) Successful in 17s
render-manifests-push / render-manifests-push (push) Successful in 54s
lint-test-docker / lint-docker-compose (push) Successful in 1m12s
renovate / renovate (push) Successful in 3m7s
2026-01-18 17:33:32 -06:00
84008b5c03 remove listenarr
All checks were successful
lint-test-helm / lint-helm (push) Successful in 18s
lint-test-docker / lint-docker-compose (push) Successful in 27s
render-manifests-push / render-manifests-push (push) Successful in 49s
renovate / renovate (push) Successful in 1m26s
2026-01-18 17:25:29 -06:00
097e70cabf Update ghcr.io/traefik/traefik Docker tag to v3.6.7 (#3264)
All checks were successful
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
0b88420ff5 add excalidraw
All checks were successful
lint-test-helm / lint-helm (push) Successful in 1m28s
lint-test-docker / lint-docker-compose (push) Successful in 1m35s
render-manifests-push / render-manifests-push (push) Successful in 2m9s
renovate / renovate (push) Successful in 1m26s
render-manifests-dispatch / render-manifests-dispatch (push) Successful in 35m19s
2026-01-17 18:27:25 -06:00
d77aade354 remove fladder
All checks were successful
lint-test-docker / lint-docker-compose (push) Successful in 46s
render-manifests-push / render-manifests-push (push) Successful in 54s
renovate / renovate (push) Successful in 2m7s
lint-test-helm / lint-helm (push) Successful in 14s
2026-01-17 18:15:27 -06:00
6a010d4897 add shelfmark
All checks were successful
lint-test-helm / lint-helm (push) Successful in 37s
render-manifests-push / render-manifests-push (push) Successful in 48s
lint-test-docker / lint-docker-compose (push) Successful in 27s
renovate / renovate (push) Successful in 5m9s
2026-01-15 16:05:47 -06:00