This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[docker.io/dispatcharr/dispatcharr](https://redirect.github.com/Dispatcharr/Dispatcharr)
| minor | `231587c` -> `023af84` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Release Notes
<details>
<summary>Dispatcharr/Dispatcharr
(docker.io/dispatcharr/dispatcharr)</summary>
###
[`v0.17.0`](https://redirect.github.com/Dispatcharr/Dispatcharr/blob/HEAD/CHANGELOG.md#0170---2026-01-13)
[Compare
Source](https://redirect.github.com/Dispatcharr/Dispatcharr/compare/v0.16.0...v0.17.0)
##### Added
- Loading feedback for all confirmation dialogs: Extended visual loading
indicators across all confirmation dialogs throughout the application.
Delete, cleanup, and bulk operation dialogs now show an animated dots
loader and disabled state during async operations, providing consistent
user feedback for backups (restore/delete), channels, EPGs, logos, VOD
logos, M3U accounts, streams, users, groups, filters, profiles, batch
operations, and network access changes.
- Channel profile edit and duplicate functionality: Users can now rename
existing channel profiles and create duplicates with automatic channel
membership cloning. Each profile action (edit, duplicate, delete) in the
profile dropdown for quick access.
- ProfileModal component extracted for improved code organization and
maintainability of channel profile management operations.
- Frontend unit tests for pages and utilities: Added comprehensive unit
test coverage for frontend components within pages/ and JS files within
utils/, along with a GitHub Actions workflow (`frontend-tests.yml`) to
automatically run tests on commits and pull requests - Thanks
[@​nick4810](https://redirect.github.com/nick4810)
- Channel Profile membership control for manual channel creation and
bulk operations: Extended the existing `channel_profile_ids` parameter
from `POST /api/channels/from-stream/` to also support `POST
/api/channels/` (manual creation) and bulk creation tasks with the same
flexible semantics:
- Omitted parameter (default): Channels are added to ALL profiles
(preserves backward compatibility)
- Empty array `[]`: Channels are added to NO profiles
- Sentinel value `[0]`: Channels are added to ALL profiles (explicit)
- Specific IDs `[1, 2, ...]`: Channels are added only to the specified
profiles
This allows API consumers to control profile membership across all
channel creation methods without requiring all channels to be added to
every profile by default.
- Channel profile selection in creation modal: Users can now choose
which profiles to add channels to when creating channels from streams
(both single and bulk operations). Options include adding to all
profiles, no profiles, or specific profiles with mutual exclusivity
between special options ("All Profiles", "None") and specific profile
selections. Profile selection defaults to the current table filter for
intuitive workflow.
- Group retention policy for M3U accounts: Groups now follow the same
stale retention logic as streams, using the account's
`stale_stream_days` setting. Groups that temporarily disappear from an
M3U source are retained for the configured retention period instead of
being immediately deleted, preserving user settings and preventing data
loss when providers temporarily remove/re-add groups. (Closes
[#​809](https://redirect.github.com/Dispatcharr/Dispatcharr/issues/809))
- Visual stale indicators for streams and groups: Added `is_stale` field
to Stream and both `is_stale` and `last_seen` fields to
ChannelGroupM3UAccount models to track items in their retention grace
period. Stale groups display with orange buttons and a warning tooltip,
while stale streams show with a red background color matching the visual
treatment of empty channels.
##### Changed
- Settings architecture refactored to use grouped JSON storage: Migrated
from individual CharField settings to grouped JSONField settings for
improved performance, maintainability, and type safety. Settings are now
organized into logical groups (stream\_settings, dvr\_settings,
backup\_settings, system\_settings, proxy\_settings, network\_access)
with automatic migration handling. Backend provides helper methods
(`get_stream_settings()`, `get_default_user_agent_id()`, etc.) for easy
access. Frontend simplified by removing complex key mapping logic and
standardizing on underscore-based field names throughout.
- Docker setup enhanced for legacy CPU support: Added `USE_LEGACY_NUMPY`
environment variable to enable custom-built NumPy with no CPU baseline,
allowing Dispatcharr to run on older CPUs (circa 2009) that lack support
for newer baseline CPU features. When set to `true`, the entrypoint
script will install the legacy NumPy build instead of the standard
distribution.
- VOD upstream read timeout reduced from 30 seconds to 10 seconds to
minimize lock hold time when clients disconnect during connection phase
- Form management refactored across application: Migrated Channel,
Stream, M3U Profile, Stream Profile, Logo, and User Agent forms from
Formik to React Hook Form (RHF) with Yup validation for improved form
handling, better validation feedback, and enhanced code maintainability
- Stats and VOD pages refactored for clearer separation of concerns:
extracted Stream/VOD connection cards (StreamConnectionCard,
VodConnectionCard, VODCard, SeriesCard), moved page logic into dedicated
utils, and lazy-loaded heavy components with ErrorBoundary fallbacks to
improve readability and maintainability - Thanks
[@​nick4810](https://redirect.github.com/nick4810)
- Channel creation modal refactored: Extracted and unified channel
numbering dialogs from StreamsTable into a dedicated CreateChannelModal
component that handles both single and bulk channel creation with
cleaner, more maintainable implementation and integrated profile
selection controls.
##### Fixed
- Fixed bulk channel profile membership update endpoint silently
ignoring channels without existing membership records. The endpoint now
creates missing memberships automatically (matching single-channel
endpoint behavior), validates that all channel IDs exist before
processing, and provides detailed response feedback including counts of
updated vs. created memberships. Added comprehensive Swagger
documentation with request/response schemas.
- Fixed bulk channel edit endpoint crashing with `ValueError: Field
names must be given to bulk_update()` when the first channel in the
update list had no actual field changes. The endpoint now collects all
unique field names from all channels being updated instead of only
looking at the first channel, properly handling cases where different
channels update different fields or when some channels have no changes -
Thanks [@​mdellavo](https://redirect.github.com/mdellavo) (Fixes
[#​804](https://redirect.github.com/Dispatcharr/Dispatcharr/issues/804))
- Fixed PostgreSQL backup restore not completely cleaning database
before restoration. The restore process now drops and recreates the
entire `public` schema before running `pg_restore`, ensuring a truly
clean restore that removes all tables, functions, and other objects not
present in the backup file. This prevents leftover database objects from
persisting when restoring backups from older branches or versions. Added
`--no-owner` flag to `pg_restore` to avoid role permission errors when
the backup was created by a different PostgreSQL user.
- Fixed TV Guide loading overlay not disappearing after navigating from
DVR page. The `fetchRecordings()` function in the channels store was
setting `isLoading: true` on start but never resetting it to `false` on
successful completion, causing the Guide page's loading overlay to
remain visible indefinitely when accessed after the DVR page.
- Fixed stream profile parameters not properly handling quoted
arguments. Switched from basic `.split()` to `shlex.split()` for parsing
command-line parameters, allowing proper handling of multi-word
arguments in quotes (e.g., OAuth tokens in HTTP headers like
`"--twitch-api-header=Authorization=OAuth token123"`). This ensures
external streaming tools like Streamlink and FFmpeg receive correctly
formatted arguments when using stream profiles with complex parameters -
Thanks
[@​justinforlenza](https://redirect.github.com/justinforlenza)
(Fixes
[#​833](https://redirect.github.com/Dispatcharr/Dispatcharr/issues/833))
- Fixed bulk and manual channel creation not refreshing channel profile
memberships in the UI for all connected clients. WebSocket
`channels_created` event now calls `fetchChannelProfiles()` to ensure
profile membership updates are reflected in real-time for all users
without requiring a page refresh.
- Fixed Channel Profile filter incorrectly applying profile membership
filtering even when "Show Disabled" was enabled, preventing all channels
from being displayed. Profile filter now only applies when hiding
disabled channels. (Fixes
[#​825](https://redirect.github.com/Dispatcharr/Dispatcharr/issues/825))
- Fixed manual channel creation not adding channels to channel profiles.
Manually created channels are now added to the selected profile if one
is active, or to all profiles if "All" is selected, matching the
behavior of channels created from streams.
- Fixed VOD streams disappearing from stats page during playback by
adding `socket-timeout = 600` to production uWSGI config. The missing
directive caused uWSGI to use its default 4-second timeout, triggering
premature cleanup when clients buffered content. Now matches the
existing `http-timeout = 600` value and prevents timeout errors during
normal client buffering - Thanks
[@​patchy8736](https://redirect.github.com/patchy8736)
- Fixed Channels table EPG column showing "Not Assigned" on initial load
for users with large EPG datasets. Added `tvgsLoaded` flag to EPG store
to track when EPG data has finished loading, ensuring the table waits
for EPG data before displaying. EPG cells now show animated skeleton
placeholders while loading instead of incorrectly showing "Not
Assigned". (Fixes
[#​810](https://redirect.github.com/Dispatcharr/Dispatcharr/issues/810))
- Fixed VOD profile connection count not being decremented when stream
connection fails (timeout, 404, etc.), preventing profiles from reaching
capacity limits and rejecting valid stream requests
- Fixed React warning in Channel form by removing invalid
`removeTrailingZeros` prop from NumberInput component
- Release workflow Docker tagging: Fixed issue where `latest` and
version tags (e.g., `0.16.0`) were creating separate manifests instead
of pointing to the same image digest, which caused old `latest` tags to
become orphaned/untagged after new releases. Now creates a single
multi-arch manifest with both tags, maintaining proper tag relationships
and download statistics visibility on GitHub.
- Fixed onboarding message appearing in the Channels Table when filtered
results are empty. The onboarding message now only displays when there
are no channels created at all, not when channels exist but are filtered
out by current filters.
- Fixed `M3UMovieRelation.get_stream_url()` and
`M3UEpisodeRelation.get_stream_url()` to use XC client's
`_normalize_url()` method instead of simple `rstrip('/')`. This properly
handles malformed M3U account URLs (e.g., containing `/player_api.php`
or query parameters) before constructing VOD stream endpoints, matching
behavior of live channel URL building. (Closes
[#​722](https://redirect.github.com/Dispatcharr/Dispatcharr/issues/722))
- Fixed bulk\_create and bulk\_update errors during VOD content refresh
by pre-checking object existence with optimized bulk queries (3 queries
total instead of N per batch) before creating new objects. This ensures
all movie/series objects have primary keys before relation operations,
preventing "prohibited to prevent data loss due to unsaved related
object" errors. Additionally fixed duplicate key constraint violations
by treating TMDB/IMDB ID values of `0` or `'0'` as invalid (some
providers use this to indicate "no ID"), converting them to NULL to
prevent multiple items from incorrectly sharing the same ID. (Fixes
[#​813](https://redirect.github.com/Dispatcharr/Dispatcharr/issues/813))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvZGlzcGF0Y2hhcnIiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [clickhouse](https://truecharts.org/charts/stable/clickhouse)
([source](https://clickhouse.com/)) | patch | `16.19.2` -> `16.19.4` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvcGxhdXNpYmxlIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9wYXRjaCJdfQ==-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[ghcr.io/connorgallopo/tracearr](https://redirect.github.com/connorgallopo/Tracearr)
| patch | `87eb8e3` -> `71cd7e1` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Release Notes
<details>
<summary>connorgallopo/Tracearr
(ghcr.io/connorgallopo/tracearr)</summary>
###
[`v1.4.5`](https://redirect.github.com/connorgallopo/Tracearr/releases/tag/v1.4.5)
[Compare
Source](https://redirect.github.com/connorgallopo/Tracearr/compare/v1.4.4...v1.4.5)
### Tracearr v1.4.5
hotfix
[#​178](https://redirect.github.com/connorgallopo/Tracearr/issues/178)
and
[#​179](https://redirect.github.com/connorgallopo/Tracearr/issues/179)
###
[`v1.4.4`](https://redirect.github.com/connorgallopo/Tracearr/releases/tag/v1.4.4)
[Compare
Source](https://redirect.github.com/connorgallopo/Tracearr/compare/v1.4.3...v1.4.4)
### Tracearr v1.4.4 - Notification Overhaul, Activity Tracking, and
Various Fixes!
##### Notification Agents
- Completely rebuilt notification system with modular agent
architecture. Each service (Discord, Pushover, Webhooks) is now a
self-contained card you can configure independently.
- **Pushover support**
##### User Activity Tracking
- Server users now show their last activity date based on most recent
stream. See it in the Users table and User Detail view.
##### Server Logs in UI
- View and search server logs directly from Settings (Supervised
Installs)
##### Bandwidth Sorting
- Stats/Bandwidth page now lets you sort by data usage.
##### Translation
- Portuguese (PT-PT) added!
##### Fixes
- **Emby transcode display** - Source resolution was showing transcoded
values instead of original. A 4K→1080p transcode now correctly shows 4K
as the source, not 1080p.
- **Cinemascope labeling** - 1920x800 content (2.40:1 movies) was
incorrectly labeled as 720p. Now correctly shows as 1080p based on
width.
- **Stream termination** - Messages now properly propagate to
Jellyfin/Emby clients. Added custom message support.
- **Version checker** - Was ignoring newer release versions when on
beta.
- **Import resilience** - Tautulli/JellyStat imports no longer fail
completely on bad data. Skips bad records and continues.
- **JellyStat transcodes** - Fixed transcode detection logic for
imports.
- **Settings save race condition** - Debounced save was occasionally
losing changes.
- **Form validation** - Refactored for consistent behavior across
settings pages.
##### Improvements
- Combined settings pages for cleaner organization
- Standardized Mbps display formatting across the app
- Normalized framerate values
- Fixed sorting on data tables where it would only sort the page, not
all records
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvdHJhY2VhcnIiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/orcaslicer](https://redirect.github.com/linuxserver/docker-orcaslicer/packages)
([source](https://redirect.github.com/linuxserver/docker-orcaslicer)) |
digest | `8962928` -> `6a6968e` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvb3JjYXNsaWNlciIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [docker.io/sourcegraph/server](https://sourcegraph.com/)
([source](https://redirect.github.com/sourcegraph/sourcegraph)) | minor
| `3a786f6` -> `21d5231` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvc291cmNlZ3JhcGgiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [docker.io/jgraph/drawio](https://www.drawio.com)
([source](https://redirect.github.com/jgraph/docker-drawio)) | minor |
`fff32eb` -> `7dceba5` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Release Notes
<details>
<summary>jgraph/docker-drawio (docker.io/jgraph/drawio)</summary>
###
[`v29.3.0`](https://redirect.github.com/jgraph/docker-drawio/compare/v29.2.9...v29.3.0)
[Compare
Source](https://redirect.github.com/jgraph/docker-drawio/compare/v29.2.9...v29.3.0)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvZHJhd2lvIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9taW5vciJdfQ==-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[docker.io/automaticrippingmachine/automatic-ripping-machine](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine)
| digest | `30791d1` -> `478a67e` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvYXV0b21hdGljLXJpcHBpbmctbWFjaGluZSIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| docker.io/docuseal/docuseal | digest | `7d73120` -> `694d8be` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvZG9jdXNlYWwiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| chronograf | digest | `563fec8` -> `858f06c` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvY2hyb25vZ3JhZiIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| ghcr.io/mintplex-labs/anything-llm | digest | `262bd81` -> `db95c4e` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvYW55dGhpbmctbGxtIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9kaWdlc3QiXX0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| docker.io/tracksapp/tracks | digest | `0b913ff` -> `fe6a276` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvdHJhY2tzIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9kaWdlc3QiXX0=-->
---------
Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| ghcr.io/atuinsh/atuin | minor | `4a29fed` -> `18dba89` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, 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://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvYXR1aW4iLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->