From 9e4e38535f864bce2c37dcd4adfd837d0612dd04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Scoma=C3=A7=C3=A3o=20do=20Nascimento?= Date: Tue, 11 Aug 2026 10:36:31 -0300 Subject: [PATCH] fix(radarr): bump version so Home Assistant offers the rebuilt image (#2958) * fix(radarr): bump version so HA offers the rebuilt ls313 image The `6.3.0.10514` image tag was rebuilt and re-pushed on 2026-08-03 and now ships LinuxServer.io ls313, while installations made before that date still run the ls311 build they originally pulled. Because build.json tracks the floating `lscr.io/linuxserver/radarr:*-latest` tags, a rebuild silently changes the image contents without changing the add-on version. The Supervisor decides whether an update exists purely by comparing the `version` string in config.yaml against the installed one -- it does not compare image digests -- so an unchanged string means the update is never offered and the new image is never pulled. Add the local patch counter documented in CLAUDE.md to make the rebuild visible to the Supervisor. Radarr itself is unchanged at 6.3.0.10514, so updater.json keeps upstream_version as-is; the updater bot only rewrites config.yaml when the upstream version moves, matching how lidarr (3.1.0.4875 -> 3.1.0.4875.1) and bazarr (1.6.0 -> 1.6.0.2) already work. The dotted `.1` form is required rather than `-1`: AwesomeVersion parses `6.3.0.10514-1` as an unknown strategy and raises on comparison, whereas `6.3.0.10514.1` compares as SimpleVer and sorts above `6.3.0.10514`. * chore(sonarr,prowlarr): update to latest upstream releases Sonarr 4.0.19.2997 -> 4.0.19.3001 (develop-4.0.19.3001-ls184, 2026-08-11) Prowlarr 2.6.2.5517.9 -> 2.6.2.5534.9 (nightly-2.6.2.5534-ls9, 2026-08-08) Both add-ons track a prerelease channel (github_beta), and their build.json files pin the floating `-develop` / `-nightly` LinuxServer.io tags, so the rebuild picks up the matching base image on merge. Unlike radarr, neither add-on was affected by the stale-image problem: the published images match the versions they claim (sonarr ships ls183 for 4.0.19.2997, prowlarr ships ls9 for 2.6.2.5517), so these are ordinary version bumps that the weekly updater bot would otherwise pick up. Sonarr also records the upstream version in ARG BUILD_UPSTREAM, updated here to match. Prowlarr has no BUILD_UPSTREAM line. --- prowlarr/CHANGELOG.md | 4 ++++ prowlarr/config.yaml | 2 +- prowlarr/updater.json | 4 ++-- radarr/CHANGELOG.md | 4 ++++ radarr/config.yaml | 2 +- sonarr/CHANGELOG.md | 4 ++++ sonarr/Dockerfile | 2 +- sonarr/config.yaml | 2 +- sonarr/updater.json | 4 ++-- 9 files changed, 20 insertions(+), 8 deletions(-) diff --git a/prowlarr/CHANGELOG.md b/prowlarr/CHANGELOG.md index 72f53cb612..a128ff7c84 100644 --- a/prowlarr/CHANGELOG.md +++ b/prowlarr/CHANGELOG.md @@ -1,4 +1,8 @@ +## 2.6.2.5534.9 (2026-08-11) +- Update to latest version from linuxserver/docker-prowlarr (changelog : https://github.com/linuxserver/docker-prowlarr/releases) +- Upstream tag : nightly-2.6.2.5534-ls9 + ## 2.6.2.5517.9 (2026-08-02) - Update to latest version from linuxserver/docker-prowlarr (changelog : https://github.com/linuxserver/docker-prowlarr/releases) - Upstream tag : nightly-2.6.2.5517-ls9 diff --git a/prowlarr/config.yaml b/prowlarr/config.yaml index 98ab647003..e7848b2a3a 100644 --- a/prowlarr/config.yaml +++ b/prowlarr/config.yaml @@ -110,4 +110,4 @@ schema: slug: prowlarr udev: true url: https://github.com/alexbelgium/hassio-addons -version: "2.6.2.5517.9" +version: "2.6.2.5534.9" diff --git a/prowlarr/updater.json b/prowlarr/updater.json index cb8177b3de..3c4bad12bb 100644 --- a/prowlarr/updater.json +++ b/prowlarr/updater.json @@ -1,10 +1,10 @@ { "github_beta": "true", "github_fulltag": "true", - "last_update": "2026-08-02", + "last_update": "2026-08-11", "repository": "alexbelgium/hassio-addons", "slug": "prowlarr", "source": "github", "upstream_repo": "linuxserver/docker-prowlarr", - "upstream_version": "nightly-2.6.2.5517-ls9" + "upstream_version": "nightly-2.6.2.5534-ls9" } diff --git a/radarr/CHANGELOG.md b/radarr/CHANGELOG.md index 313eea27be..b01d557ea7 100644 --- a/radarr/CHANGELOG.md +++ b/radarr/CHANGELOG.md @@ -1,4 +1,8 @@ +## 6.3.0.10514.1 (2026-08-11) + +- Bump the addon version so Home Assistant offers the rebuilt image. The `6.3.0.10514` tag was rebuilt on 2026-08-03 and now ships LinuxServer.io `ls313` instead of the `ls311` build that existing installations pulled, but because the addon version string was unchanged the Supervisor saw nothing new and never offered the update. Radarr itself is still 6.3.0.10514 — only the LinuxServer.io base image moved + ## 6.3.0.10514 (2026-07-13) - Update to latest version from linuxserver/docker-radarr (changelog : https://github.com/linuxserver/docker-radarr/releases) diff --git a/radarr/config.yaml b/radarr/config.yaml index 511c83995d..ab9aa95fa4 100644 --- a/radarr/config.yaml +++ b/radarr/config.yaml @@ -108,4 +108,4 @@ schema: slug: radarr_nas udev: true url: https://github.com/alexbelgium/hassio-addons/tree/master/radarr -version: "6.3.0.10514" +version: "6.3.0.10514.1" diff --git a/sonarr/CHANGELOG.md b/sonarr/CHANGELOG.md index 11485349c4..388e3c4fc7 100644 --- a/sonarr/CHANGELOG.md +++ b/sonarr/CHANGELOG.md @@ -1,4 +1,8 @@ +## 4.0.19.3001 (2026-08-11) +- Update to latest version from linuxserver/docker-sonarr (changelog : https://github.com/linuxserver/docker-sonarr/releases) +- Upstream tag : develop-4.0.19.3001-ls184 + ## 4.0.19.2997 (2026-08-08) - Update to latest version from linuxserver/docker-sonarr (changelog : https://github.com/linuxserver/docker-sonarr/releases) diff --git a/sonarr/Dockerfile b/sonarr/Dockerfile index f47d899aa8..6b04a9f01b 100644 --- a/sonarr/Dockerfile +++ b/sonarr/Dockerfile @@ -16,7 +16,7 @@ ARG BUILD_FROM ARG BUILD_VERSION -ARG BUILD_UPSTREAM="4.0.19.2997" +ARG BUILD_UPSTREAM="4.0.19.3001" FROM ${BUILD_FROM} ################## diff --git a/sonarr/config.yaml b/sonarr/config.yaml index 1efb1cc804..a5c0f415d6 100644 --- a/sonarr/config.yaml +++ b/sonarr/config.yaml @@ -110,4 +110,4 @@ schema: slug: sonarr_nas udev: true url: https://github.com/alexbelgium/hassio-addons/tree/master/sonarr -version: "4.0.19.2997" +version: "4.0.19.3001" diff --git a/sonarr/updater.json b/sonarr/updater.json index e5f88e3b40..a4ae3aab81 100644 --- a/sonarr/updater.json +++ b/sonarr/updater.json @@ -1,9 +1,9 @@ { "github_beta": true, - "last_update": "2026-08-08", + "last_update": "2026-08-11", "repository": "alexbelgium/hassio-addons", "slug": "sonarr", "source": "github", "upstream_repo": "linuxserver/docker-sonarr", - "upstream_version": "4.0.19.2997" + "upstream_version": "4.0.19.3001" }