Commit Graph

51485 Commits

Author SHA1 Message Date
TrueCharts Bot 87f64a6dd3 fix(openwebrxplus): update image docker.io/slechev/openwebrxplus-softmbe 1.2.103 → 1.2.104 (#43596) 2026-01-14 04:18:59 +01:00
TrueCharts Bot b71bcb27cd feat(dispatcharr): update image docker.io/dispatcharr/dispatcharr 0.16.0 → 0.17.0 (#43600)
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
[@&#8203;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
[#&#8203;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
[@&#8203;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 [@&#8203;mdellavo](https://redirect.github.com/mdellavo) (Fixes
[#&#8203;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
[@&#8203;justinforlenza](https://redirect.github.com/justinforlenza)
(Fixes
[#&#8203;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
[#&#8203;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
[@&#8203;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
[#&#8203;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
[#&#8203;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
[#&#8203;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-->
2026-01-14 04:18:52 +01:00
TrueCharts Bot 98d65b8f2c fix(helm-deps): update chart clickhouse 16.19.2 → 16.19.4 (#43594)
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==-->
2026-01-14 04:18:17 +01:00
TrueCharts Bot f3ca47c5ca fix(oscam): update image ghcr.io/linuxserver/oscam 11927-ls1 → 11929-ls1 (#43597) 2026-01-14 04:15:48 +01:00
TrueCharts Bot 2c558bc4b2 fix(tracearr): update image ghcr.io/connorgallopo/tracearr 1.4.3 → 1.4.5 (#43598)
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
[#&#8203;178](https://redirect.github.com/connorgallopo/Tracearr/issues/178)
and
[#&#8203;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-->
2026-01-14 04:15:42 +01:00
TrueCharts Bot 0c101dcb3e chore(orcaslicer): update image ghcr.io/linuxserver/orcaslicer digest to 6a6968e (#43590)
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-->
2026-01-14 04:15:02 +01:00
TrueCharts Bot 6065c0e3f4 chore(webtop): update webtop (#43593) 2026-01-14 04:14:19 +01:00
TrueCharts Bot 03dd9e25bd feat(sourcegraph): update image docker.io/sourcegraph/server 6.11.5639 → 6.12.0 (#43549)
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-->
2026-01-14 03:14:15 +00:00
TrueCharts Bot 373c4c398c chore(rustdesk): update image docker.io/rustdesk/rustdesk-server-s6 digest to dcf800f (#43592) 2026-01-14 04:14:04 +01:00
TrueCharts Bot e76e78d577 feat(drawio): update image docker.io/jgraph/drawio 29.2.9 → 29.3.0 (#43486)
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==-->
2026-01-14 03:13:56 +00:00
TrueCharts Bot fc74c8e307 chore(boinc): update image ghcr.io/linuxserver/boinc digest to 797e667 (#43583) 2026-01-14 04:13:28 +01:00
TrueCharts Bot 535bb2aa38 chore(lyrion-music-server): update image docker.io/lmscommunity/lyrionmusicserver digest to d61a8a0 (#43589) 2026-01-14 04:13:25 +01:00
TrueCharts Bot c42316fa0c chore(rflood): update image ghcr.io/hotio/rflood digest to 71ae28e (#43591) 2026-01-14 04:13:23 +01:00
TrueCharts Bot 53ec758b17 chore(changedetection-io): update image ghcr.io/dgtlmoon/changedetection.io digest to be32b3e (#43584) 2026-01-14 04:13:21 +01:00
TrueCharts Bot bafae01661 chore(filestash): update image docker.io/machines/filestash digest to a199636 (#43587) 2026-01-14 04:13:18 +01:00
TrueCharts Bot af87a8a7ae chore(automatic-ripping-machine): update image docker.io/automaticrippingmachine/automatic-ripping-machine digest to 478a67e (#43582)
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-->
2026-01-14 04:13:13 +01:00
TrueCharts Bot 1c96aba27d chore(docuseal): update image docker.io/docuseal/docuseal digest to 694d8be (#43586)
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==-->
2026-01-14 04:13:00 +01:00
TrueCharts Bot 19b3a4687b chore(chronograf): update image chronograf digest to 858f06c (#43585)
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-->
2026-01-14 04:12:21 +01:00
TrueCharts Bot 77cad5151a chore(filezilla): update image ghcr.io/linuxserver/filezilla digest to 79271c3 (#43588) 2026-01-14 04:11:50 +01:00
TrueCharts Bot a9bb4d651d chore(anything-llm): update image ghcr.io/mintplex-labs/anything-llm digest to db95c4e (#43581)
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=-->
2026-01-14 04:11:43 +01:00
TrueCharts Bot bf86505801 chore(tracks): update image docker.io/tracksapp/tracks digest to fe6a276 (#43499)
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>
2026-01-13 21:50:17 +00:00
TrueCharts Bot 75d040e454 feat(nexus-oss): update image docker.io/sonatype/nexus3 3.87.1 → 3.88.0 (#43559) 2026-01-13 22:50:10 +01:00
TrueCharts Bot a1656fe42b feat(nocodb): update image docker.io/nocodb/nocodb 0.265.1 → 0.301.0 (#43560) 2026-01-13 22:49:55 +01:00
TrueCharts Bot c8f984720f fix(xen-orchestra): update image docker.io/ronivay/xen-orchestra 5.194.5 → 5.194.6 (#43511) 2026-01-13 22:49:35 +01:00
TrueCharts Bot 80d3fed412 chore(webtop): update webtop (#43456) 2026-01-13 22:49:31 +01:00
TrueCharts Bot 34b6e445b7 fix(healthchecks): update image ghcr.io/linuxserver/healthchecks 3.13.20260104 → 3.13.20260112 (#43536) 2026-01-13 22:49:28 +01:00
TrueCharts Bot 4b1f2b3ef5 fix(docker): update image docker 29.1.3 → 29.1.4 (#43535) 2026-01-13 22:49:21 +01:00
TrueCharts Bot 884a6aa60c chore(minecraft-java): update image docker.io/itzg/mc-backup digest to 361289b (#43448) 2026-01-13 22:49:10 +01:00
TrueCharts Bot aa4715f674 fix(discordgsm): update image docker.io/discordgsm/discord-game-server-monitor 2.20.0 → 2.20.1 (#43489) 2026-01-13 22:49:09 +01:00
TrueCharts Bot dc8ed7b777 fix(netdata): update image ghcr.io/netdata/netdata v2.8.4 → v2.8.5 (#43538) 2026-01-13 22:49:03 +01:00
TrueCharts Bot b280f47ce9 chore(tubesync): update image ghcr.io/meeb/tubesync digest to 0031901 (#43557) 2026-01-13 22:49:01 +01:00
TrueCharts Bot 6ccad1914a chore(mariadb): update image docker.io/bitnamisecure/mariadb digest to fc61d7c (#43546) 2026-01-13 22:48:54 +01:00
TrueCharts Bot 433f52a316 chore(synclounge): update image ghcr.io/linuxserver/synclounge digest to 0f22134 (#43556) 2026-01-13 22:48:49 +01:00
TrueCharts Bot 2d2f42b8be fix(vocechat-server): update image docker.io/privoce/vocechat-server v0.5.8 → v0.5.9 (#43457) 2026-01-13 22:48:46 +01:00
TrueCharts Bot efc5075e8d chore(babybuddy): update image ghcr.io/linuxserver/babybuddy digest to 141d0d0 (#43444) 2026-01-13 22:48:39 +01:00
TrueCharts Bot 6372e0dbce chore(mylar): update image lscr.io/linuxserver/mylar3 digest to 6a5c265 (#43518) 2026-01-13 22:48:35 +01:00
TrueCharts Bot 46a56d02e9 chore(kitchenowl): update image docker.io/tombursch/kitchenowl digest to d026538 (#43530) 2026-01-13 22:48:28 +01:00
TrueCharts Bot c47fdb5873 fix(blocky): update image ghcr.io/k8s-gateway/k8s_gateway 1.6.1 → 1.6.2 (#43475) 2026-01-13 22:48:24 +01:00
TrueCharts Bot e6c032ed81 feat(atuin): update image ghcr.io/atuinsh/atuin v18.10.0 → v18.11.0 (#43548)
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-->
2026-01-13 21:48:15 +00:00
TrueCharts Bot cc33b1c9eb fix(node-red): update image docker.io/nodered/node-red 4.1.2 → 4.1.3 (#43466) 2026-01-13 22:48:09 +01:00
TrueCharts Bot 5e024cc46c feat(ombi): update image ghcr.io/linuxserver/ombi 4.47.1 → 4.53.4 (#43487) 2026-01-13 22:48:04 +01:00
TrueCharts Bot 822747b9bc chore(friendica): update image friendica digest to 0323b42 (#43528) 2026-01-13 22:48:02 +01:00
TrueCharts Bot 92a0bfa4e4 fix(monero-node): update image ghcr.io/sethforprivacy/simple-monerod v0.18.4.4 → v0.18.4.5 (#43537) 2026-01-13 22:47:57 +01:00
TrueCharts Bot 7d22bd4f89 fix(paperless-ngx): update image ghcr.io/paperless-ngx/paperless-ngx 2.20.3 → 2.20.4 (#43558) 2026-01-13 22:47:54 +01:00
TrueCharts Bot 7d1a8941f1 chore(mysql-workbench): update image ghcr.io/linuxserver/mysql-workbench digest to d6254bf (#43519) 2026-01-13 22:47:52 +01:00
TrueCharts Bot c154761cbf fix(wikijs): update image docker.io/requarks/wiki 2.5.310 → 2.5.311 (#43480) 2026-01-13 22:47:47 +01:00
TrueCharts Bot 5776b50df9 fix(traggo): update image docker.io/traggo/server 0.8.1 → 0.8.2 (#43485) 2026-01-13 22:47:43 +01:00
TrueCharts Bot 8037e36a25 feat(homarr): update image ghcr.io/homarr-labs/homarr v1.49.1 → v1.50.0 (#43506) 2026-01-13 22:47:40 +01:00
TrueCharts Bot 74a8d35255 chore(projectsend): update image ghcr.io/linuxserver/projectsend digest to 7768be8 (#43454) 2026-01-13 22:47:39 +01:00
TrueCharts Bot 8cf5c44597 fix(docuseal): update image docker.io/docuseal/docuseal 2.2.8 → 2.2.9 (#43542) 2026-01-13 22:47:36 +01:00