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.
This commit is contained in:
Rodrigo Scomação do Nascimento
2026-08-11 10:36:31 -03:00
committed by GitHub
parent 96380fdf5f
commit 9e4e38535f
9 changed files with 20 additions and 8 deletions

View File

@@ -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

View File

@@ -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"

View File

@@ -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"
}

View File

@@ -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)

View File

@@ -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"

View File

@@ -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)

View File

@@ -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}
##################

View File

@@ -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"

View File

@@ -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"
}