Add deprecated module to Dockerfile and update CHANGELOG for Jellyseerr deprecation

Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-19 10:02:08 +00:00
parent 43a35f7bd6
commit 77851a97cf
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
## v2.7.3-archived (2026-02-19)
- Mark add-on as deprecated in favor of the new Seerr add-on.
- Move add-on folder to `zzz_archived_jellyseerr`.
- Pause automated upstream updates.
- Enable deprecated startup warning module in Dockerfile.
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## v2.7.3 (2025-08-16)

View File

@@ -53,7 +53,7 @@ RUN if [ ! -f /bin/sh ] && [ -f /usr/bin/sh ]; then ln -s /usr/bin/sh /bin/sh; f
if [ ! -f /bin/bash ] && [ -f /usr/bin/bash ]; then ln -s /usr/bin/bash /bin/bash; fi
# Modules
ARG MODULES="00-banner.sh 01-custom_script.sh 00-local_mounts.sh 00-smb_mounts.sh"
ARG MODULES="00-banner.sh 01-custom_script.sh 00-local_mounts.sh 00-smb_mounts.sh 00-deprecated.sh"
# Automatic modules download
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_automodules.sh" "/ha_automodules.sh"