Files
truecharts/charts/stable/dispatcharr/values.yaml
T
TrueCharts Bot 5e7adcd624 fix(dispatcharr): update image docker.io/dispatcharr/dispatcharr 0.20.1 → 0.20.2 (#45753)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/dispatcharr/dispatcharr](https://redirect.github.com/Dispatcharr/Dispatcharr)
| patch | `db8a9d3` → `116f7f4` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the [Dependency
Dashboard](../issues/18710) 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.20.2`](https://redirect.github.com/Dispatcharr/Dispatcharr/blob/HEAD/CHANGELOG.md#0202---2026-03-03)

[Compare
Source](https://redirect.github.com/Dispatcharr/Dispatcharr/compare/v0.20.1...v0.20.2)

##### Security

- Updated frontend npm dependencies to resolve 2 high-severity
vulnerabilities:
- Updated `minimatch` to ≥10.2.3, resolving **high** ReDoS via
matchOne() combinatorial backtracking with multiple non-adjacent
GLOBSTAR segments
([GHSA-7r86-cg39-jmmj](https://redirect.github.com/advisories/GHSA-7r86-cg39-jmmj))
- Updated `rollup` to ≥4.58.1, resolving **high** Arbitrary File Write
via Path Traversal
([GHSA-mw96-cpmx-2vgc](https://redirect.github.com/advisories/GHSA-mw96-cpmx-2vgc))

##### Fixed

- EPG filter regression in channel table (introduced in 0.20.0 channel
store refactor): The EPG filter dropdown was showing all EPG sources
regardless of whether they had any channels assigned, and the "No EPG"
option was never displayed. Fixed by annotating EPGSource records with a
`has_channels` flag (via a lightweight `EXISTS` subquery) so only active
EPG sources with at least one channel assigned appear as filter options.
"No EPG" now appears only when at least one channel globally has no EPG
assigned; this is determined by a second `EXISTS` query embedded
directly in the paginated channel response
(`has_unassigned_epg_channels`), avoiding any additional network
requests.
- Stale stream rows missing hover effect: Stale streams in the streams
table had no hover color change, unlike channels with no streams
assigned. Converted the inline `backgroundColor` style to a CSS class
(`stale-stream-row`) so the `:hover` rule can apply correctly. Applied
the same fix to the channel-streams sub-table, where the teal
expanded-row background caused the semi-transparent red tint to visually
mismatch; the sub-table now uses a pre-blended solid color via
`color-mix()` to match the appearance of stale rows in the main streams
table.
- Channel table onboarding shown when filter returns zero results: The
channel store refactor changed to loading only channel IDs instead of
full channel objects, leaving `Object.keys(channels).length` always `0`
and incorrectly triggering the onboarding state on any empty filter.
Fixed by checking `channelIds.length` instead.
- TV Guide scrolls to position 0 when a filter yields no results:
Applying any filter that temporarily empties the channel list (e.g.
switching directly between two channel groups, or typing a search query
that matches nothing) caused the guide to show a blank/empty view with
no programs visible. The `VariableSizeList` unmounts when
`filteredChannels` becomes empty, destroying its DOM node and resetting
`scrollLeft` to 0. On remount the scroll position was never restored
because `initialScrollComplete` was still `true`. Fixed by saving the
user's current scroll position when the channel list empties
mid-transition, then restoring it once new channels have loaded. On
first load the guide still scrolls to the current time as before.
- `debian_install.sh` regressions after `uv` migration on clean/minimal
Debian installs: fixed pip-less venv (`ensurepip`), missing `gunicorn`
for the systemd unit, and inconsistent `DJANGO_SECRET_KEY` availability
(now persisted to `.env` via `EnvironmentFile`). Docker unaffected. -
Thanks [@&#8203;marcinolek](https://redirect.github.com/marcinolek)

</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:eyJjcmVhdGVkSW5WZXIiOiI0My4yOS4yIiwidXBkYXRlZEluVmVyIjoiNDMuMjkuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvZGlzcGF0Y2hhcnIiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2026-03-03 05:21:52 +01:00

81 lines
2.7 KiB
YAML

# yaml-language-server: $schema=./values.schema.json
image:
pullPolicy: IfNotPresent
repository: docker.io/dispatcharr/dispatcharr
tag: 0.20.2@sha256:116f7f4ffa512afc4d196f2f1649bb5af55a3384097632c33203dd8feb37a91b
securityContext:
container:
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
targetPort: 9191
port: 9191
workload:
main:
podSpec:
initContainers:
setup-postgres-dirs:
enabled: true
type: init
name: setup-postgres-dirs
image: alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
command:
- /bin/sh
- -c
- |
echo "Setting up PostgreSQL directories..."
# Create and set permissions for /var/run/postgresql
mkdir -p /var/run/postgresql
chown 999:999 /var/run/postgresql
chmod 2775 /var/run/postgresql
echo "✓ /var/run/postgresql created (999:999, 2775)"
# Fix permissions for /data/db (restored from backup)
if [ -d /data/db ]; then
echo "Found existing /data/db, fixing permissions..."
# Recursively fix ownership of ALL files inside /data/db
chown -R 999:999 /data/db
# Set directory permissions to 0700
chmod 0700 /data/db
# Fix permissions on all subdirectories and files
find /data/db -type d -exec chmod 0700 {} \;
find /data/db -type f -exec chmod 0600 {} \;
echo "✓ /data/db permissions fixed recursively (999:999, 0700)"
else
echo "Creating /data/db..."
mkdir -p /data/db
chown 999:999 /data/db
chmod 0700 /data/db
echo "✓ /data/db created (999:999, 0700)"
fi
# Verify permissions
echo "Checking /data/db permissions:"
ls -la /data/db | head -10
ls -la /var/run/ | grep postgresql || echo "Warning: postgres dir not found"
echo "Setup complete."
containers:
main:
env:
DISPATCHARR_ENV: aio # Set to 'aio' for all-in-one mode with embedded PostgreSQL. Currently, only 'aio' is supported.
# DISPATCHARR_LOG_LEVEL: info
persistence:
data:
enabled: true
mountPath: /data
targetSelector:
main:
main:
mountPath: /data
setup-postgres-dirs:
mountPath: /data
postgres-run:
enabled: true
mountPath: /var/run/postgresql