Skip to content

feat(container): update image ghcr.io/dispatcharr/dispatcharr (0.18.1 → 0.19.0)#4436

Merged
drag0n141 merged 1 commit intomasterfrom
renovate/ghcr.io-dispatcharr-dispatcharr-0.x
Feb 11, 2026
Merged

feat(container): update image ghcr.io/dispatcharr/dispatcharr (0.18.1 → 0.19.0)#4436
drag0n141 merged 1 commit intomasterfrom
renovate/ghcr.io-dispatcharr-dispatcharr-0.x

Conversation

@drag0n141-bot
Copy link
Contributor

@drag0n141-bot drag0n141-bot bot commented Feb 10, 2026

This PR contains the following updates:

Package Update Change
ghcr.io/dispatcharr/dispatcharr minor 0.18.10.19.0

Release Notes

Dispatcharr/Dispatcharr (ghcr.io/dispatcharr/dispatcharr)

v0.19.0

Compare Source

Added
  • Add system notifications and update checks
    -Real-time notifications for system events and alerts
    -Per-user notification management and dismissal
    -Update check on startup and every 24 hours to notify users of available versions
    -Notification center UI component
    -Automatic cleanup of expired notifications
  • Network Access "Reset to Defaults" button: Added a "Reset to Defaults" button to the Network Access settings form, matching the functionality in Proxy Settings. Users can now quickly restore recommended network access settings with one click.
  • Streams table column visibility toggle: Added column menu to Streams table header allowing users to show/hide optional columns (TVG-ID, Stats) based on preference, with optional columns hidden by default for cleaner default view.
  • Streams table TVG-ID column with search filter and sort: Added TVG-ID column to streams table with search filtering and sort capability for better stream organization. (Closes #​866) - Thanks @​CodeBormen
  • Frontend now automatically refreshes streams and channels after a stream rehash completes, ensuring the UI is always up-to-date following backend merge operations.
  • Frontend Unit Tests: Added comprehensive unit tests for React hooks and Zustand stores, including:
    • useLocalStorage hook tests with localStorage mocking and error handling
    • useSmartLogos hook tests for logo loading and management
    • useTablePreferences hook tests for table settings persistence
    • useAuthStore tests for authentication flow and token management
    • useChannelsStore tests for channel data management
    • useUserAgentsStore tests for user agent CRUD operations
    • useUsersStore tests for user management functionality
    • useVODLogosStore tests for VOD logo operations
    • useVideoStore tests for video player state management
    • useWarningsStore tests for warning suppression functionality
    • Code refactoring for improved readability and maintainability - Thanks @​nick4810
  • EPG auto-matching: Added advanced options to strip prefixes, suffixes, and custom text from channel names to assist matching; default matching behavior and settings remain unchanged (Closes #​771) - Thanks @​CodeBormen
  • Redis authentication support for modular deployments: Added support for authentication when connecting to external Redis instances using either password-only authentication (Redis <6) or username + password authentication (Redis 6+ ACL). REDIS_PASSWORD and REDIS_USER environment variables with URL encoding for special characters. (Closes #​937) - Thanks @​CodeBormen
  • Plugin logos: if a plugin ZIP includes logo.png, it is surfaced in the Plugins UI and shown next to the plugin name.
  • Plugin manifests (plugin.json) for safe metadata discovery, plus legacy warnings and folder-name fallbacks when a manifest is missing.
  • Plugin stop hooks: Dispatcharr now calls a plugin's optional stop() method (or run("stop") action) when disabling, deleting, or reloading plugins to allow graceful shutdown.
  • Plugin action buttons can define button_label, button_variant, and button_color (e.g., Stop in red), falling back to “Run” for older plugins.
  • Plugin card metadata: plugins can specify author and help_url in plugin.json to show author and docs link in the UI.
  • Plugin cards can now be expanded/collapsed by clicking the header or chevron to hide settings and actions.
Changed
  • XtreamCodes Authentication Optimization: Reduced API calls during XC refresh by 50% by eliminating redundant authentication step. This should help reduce rate-limiting errors.
  • App initialization efficiency: Refactored app initialization to prevent redundant execution across multiple worker processes. Created dispatcharr.app_initialization utility module with should_skip_initialization() function that prevents custom initialization tasks (backup scheduler sync, developer notifications sync) from running during management commands, in worker processes, or in development servers. This significantly reduces startup overhead in multi-worker deployments (e.g., uWSGI with 10 workers now syncs the scheduler once instead of 10 times). Applied to both CoreConfig and BackupsConfig apps.
  • M3U/EPG Network Access Defaults: Updated default network access settings for M3U and EPG endpoints to only allow local/private networks by default (127.0.0.0/8, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, ::1/128, fc00::/7, fe80::/10). This improves security by preventing public internet access to these endpoints unless explicitly configured. Other endpoints (Streams, XC API, UI) remain open by default.
  • Modular deployments: Bumped modular Postgres image to 17 and added compatibility checks (PostgreSQL version and UTF-8 database encoding) when using external databases to prevent migration/encoding issues.
  • Stream Identity Stability: Added stream_id (provider stream identifier) and stream_chno (provider channel number) fields to Stream model. For XC accounts, the stream hash now uses the stable stream_id instead of the URL when hashing, ensuring XC streams maintain their identity and channel associations even when account credentials or server URLs change. Supports both XC num and M3U tvg-chno/channel-number attributes.
  • Swagger/OpenAPI Migration: Migrated from drf-yasg (OpenAPI 2.0) to drf-spectacular (OpenAPI 3.0) for API documentation. This provides:
    • Native Bearer token authentication support in Swagger UI - users can now enter just the JWT token and the "Bearer " prefix is automatically added
    • Modern OpenAPI 3.0 specification compliance
    • Better auto-generation of request/response schemas
    • Improved documentation accuracy with serializer introspection
  • Switched to uv for package management: Migrated from pip to uv (Astral's fast Python package installer) for improved dependency resolution speed and reliability. This includes updates to Docker build processes, installation scripts (debian_install.sh), and project configuration (pyproject.toml) to leverage uv's features like virtual environment management and lockfile generation. - Thanks @​tobimichael96 for getting it started!
  • Copy to Clipboard: Refactored copyToClipboard utility function to include notification handling internally, eliminating duplicate notification code across the frontend. The function now accepts optional parameters for customizing success/failure messages while providing consistent behavior across all copy operations.
Fixed
  • XC EPG Logic: Fixed EPG filtering issues where short EPG requests had no time-based filtering (returning expired programs) and regular EPG requests used start_time__gte (missing the currently playing program). Both now correctly use end_time__gt to show programs that haven't ended yet, with short EPG additionally limiting results. (Fixes #​915)
  • Automatic backups not enabled by default on new installations: Added backups app to INSTALLED_APPS and implemented automatic scheduler initialization in BackupsConfig.ready(). The backup scheduler now properly syncs the periodic task on startup, ensuring automatic daily backups are enabled and scheduled immediately on fresh database creation without requiring manual user intervention.
  • Fixed modular Docker Compose deployment and entrypoint/init scripts to properly support DISPATCHARR_ENV=modular, use external PostgreSQL/Redis services, and handle port, version, and encoding validation (Closes #​324, Fixes #​61, #​445, #​731) - Thanks @​CodeBormen
  • Stream rehash/merge logic now guarantees unique stream_hash and always preserves the stream with the best channel ordering and relationships. This prevents duplicate key errors and ensures the correct stream is retained when merging. (Fixes #​892)
  • Admin URL Conflict with XC Streams: Updated nginx configuration to only redirect exact /admin and /admin/ paths to login in production, preventing interference with stream URLs that use "admin" as a username (e.g., /admin/password/stream_id now properly routes to stream handling instead of being redirected).
  • EPG Channel ID XML Escaping: Fixed XML parsing errors in EPG output when channel IDs contain special characters (&, <, >, ") by properly escaping them in XML attributes. (Fixes #​765) - Thanks @​CodeBormen
  • Fixed NumPy baseline detection in Docker entrypoint. Now properly detects when NumPy crashes on import due to CPU baseline incompatibility and installs legacy NumPy version. Previously, if NumPy failed to import, the script would skip legacy installation assuming it was already compatible.
  • Backup Scheduler Test: Fixed test to correctly validate that automatic backups are enabled by default with a retention count of 3, matching the actual scheduler defaults. - Thanks @​jcasimir
  • Hardened plugin loading to avoid executing plugin code unless the plugin is enabled.
  • Prevented plugin package names from shadowing standard library or installed modules by namespacing plugin imports with safe aliases.
  • Added safety limits to plugin ZIP imports (file count and size caps) and sanitized plugin keys derived from uploads.
  • Enforced strict boolean parsing for plugin enable/disable requests to avoid accidental enables from truthy strings.
  • Applied plugin field defaults server-side when running actions so plugins receive expected settings even before a user saves.
  • Plugin settings UI improvements: render info/text fields, support input_type: password, show descriptions/placeholders, surface save failures, and keep settings in sync after refresh.
  • Disabled plugins now collapse settings/actions to match the closed state before first enable.
  • Plugin card header controls (delete/version/toggle) now stay right-aligned even with long descriptions.
  • Improved plugin logo resolution (case-insensitive paths + absolute URLs), fixing dev UI logo loading without a Vite proxy.
  • Plugin reload now hits the backend, clears module caches across workers, and refreshes the UI so code changes apply without a full backend restart.
  • Plugin loader now supports plugin.py without __init__.py, including folders with non-identifier names, by loading modules directly from file paths.
  • Plugin action handling stabilized: avoids registry race conditions and only shows loading on the active action.
  • Plugin enable/disable toggles now update immediately without requiring a full page refresh.

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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@drag0n141-bot drag0n141-bot bot added renovate/container type/minor area/kubernetes Changes made in the kubernetes directory labels Feb 10, 2026
@drag0n141-bot
Copy link
Contributor Author

drag0n141-bot bot commented Feb 10, 2026

--- kubernetes/apps/media/dispatcharr/app Kustomization: media/dispatcharr HelmRelease: media/dispatcharr

+++ kubernetes/apps/media/dispatcharr/app Kustomization: media/dispatcharr HelmRelease: media/dispatcharr

@@ -26,13 +26,13 @@

               DISPATCHARR_LOG_LEVEL: info
               DISPATCHARR_PORT: 9191
               REDIS_HOST: localhost
               TZ: Europe/Berlin
             image:
               repository: ghcr.io/dispatcharr/dispatcharr
-              tag: 0.18.1@sha256:425be855292df282db6f8daed0b3f0ac40a6dc451ddc66f7cbb299a4659e96da
+              tag: 0.19.0@sha256:8b53fbe12122e827034a6fb0a4ab9a9b8d31699587dca6d6d6394619d44dbb16
             resources:
               claims:
               - name: gpu
               limits:
                 memory: 3Gi
               requests:

@drag0n141-bot
Copy link
Contributor Author

drag0n141-bot bot commented Feb 10, 2026

--- HelmRelease: media/dispatcharr Deployment: media/dispatcharr

+++ HelmRelease: media/dispatcharr Deployment: media/dispatcharr

@@ -64,13 +64,13 @@

         - name: DISPATCHARR_PORT
           value: '9191'
         - name: REDIS_HOST
           value: localhost
         - name: TZ
           value: Europe/Berlin
-        image: ghcr.io/dispatcharr/dispatcharr:0.18.1@sha256:425be855292df282db6f8daed0b3f0ac40a6dc451ddc66f7cbb299a4659e96da
+        image: ghcr.io/dispatcharr/dispatcharr:0.19.0@sha256:8b53fbe12122e827034a6fb0a4ab9a9b8d31699587dca6d6d6394619d44dbb16
         name: app
         resources:
           claims:
           - name: gpu
           limits:
             memory: 3Gi

@drag0n141 drag0n141 merged commit a134259 into master Feb 11, 2026
8 checks passed
@drag0n141 drag0n141 deleted the renovate/ghcr.io-dispatcharr-dispatcharr-0.x branch February 11, 2026 06:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/kubernetes Changes made in the kubernetes directory renovate/container type/minor

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant