Skip to content

fix(deps): update ghcr.io/kiwigrid/k8s-sidecar docker tag 2.5.2 → 2.5.5 - autoclosed#1718

Closed
truecharts-admin wants to merge 1 commit intomainfrom
renovate/ghcr.io-kiwigrid-k8s-sidecar-2.5.x
Closed

fix(deps): update ghcr.io/kiwigrid/k8s-sidecar docker tag 2.5.2 → 2.5.5 - autoclosed#1718
truecharts-admin wants to merge 1 commit intomainfrom
renovate/ghcr.io-kiwigrid-k8s-sidecar-2.5.x

Conversation

@truecharts-admin
Copy link
Copy Markdown
Contributor

@truecharts-admin truecharts-admin commented Apr 2, 2026

This PR contains the following updates:

Package Update Change
ghcr.io/kiwigrid/k8s-sidecar patch 2.5.22.5.5

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

kiwigrid/k8s-sidecar (ghcr.io/kiwigrid/k8s-sidecar)

v2.5.5

Compare Source

📦 Dependencies

  • build(deps): bump actions/download-artifact from 8.0.0 to 8.0.1
  • build(deps): bump docker/build-push-action from 6.19.2 to 7.0.0
  • build(deps): bump docker/setup-buildx-action from 3.12.0 to 4.0.0
  • build(deps): bump actions/upload-artifact from 6.0.0 to 7.0.0
  • build(deps): bump docker/setup-qemu-action from 3.7.0 to 4.0.0
  • Pin python version

v2.5.4

Compare Source

Breaking Change: Removal of :latest Tag

Starting with version 2.5.4, we no longer publish the :latest Docker image tag. This is part of our move towards immutable artifacts to improve deployment stability and predictability.

Please update your configurations to use a specific version tag.

v2.5.3

Compare Source

📦 Dependencies

  • build(deps): bump github/codeql-action from 4.32.2 to 4.32.4
  • build(deps): bump actions/stale from 10.1.1 to 10.2.0
  • build(deps): bump docker/build-push-action from 6.18.0 to 6.19.2
  • build(deps): bump actions/download-artifact from 7.0.0 to 8.0.0
  • build(deps): bump helm/kind-action from 1.13.0 to 1.14.0

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.


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

This PR has been generated by Renovate Bot.

Copy link
Copy Markdown
Member

@Crow-Control Crow-Control left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Auto approved automated PR

@truecharts-admin truecharts-admin changed the title fix(deps): update ghcr.io/kiwigrid/k8s-sidecar docker tag 2.5.2 → 2.5.3 fix(deps): update ghcr.io/kiwigrid/k8s-sidecar docker tag 2.5.2 → 2.5.4 Apr 2, 2026
@truecharts-admin truecharts-admin force-pushed the renovate/ghcr.io-kiwigrid-k8s-sidecar-2.5.x branch from 9d5fbb9 to 882e9d1 Compare April 2, 2026 15:03
@truecharts-admin truecharts-admin force-pushed the renovate/ghcr.io-kiwigrid-k8s-sidecar-2.5.x branch from 882e9d1 to ae18e6d Compare April 7, 2026 12:03
@truecharts-admin truecharts-admin changed the title fix(deps): update ghcr.io/kiwigrid/k8s-sidecar docker tag 2.5.2 → 2.5.4 fix(deps): update ghcr.io/kiwigrid/k8s-sidecar docker tag 2.5.2 → 2.5.5 Apr 7, 2026
@truecharts-admin truecharts-admin force-pushed the renovate/ghcr.io-kiwigrid-k8s-sidecar-2.5.x branch 3 times, most recently from 80ad4b7 to 0c8ce16 Compare April 17, 2026 15:06
@truecharts-admin truecharts-admin force-pushed the renovate/ghcr.io-kiwigrid-k8s-sidecar-2.5.x branch from 0c8ce16 to cd4e65e Compare April 17, 2026 15:28
Crow-Control added a commit that referenced this pull request Apr 17, 2026
…1824)

Three open renovate version bumps were red because upstream changed the
build/packaging contract between releases. This PR rolls the bumps in
together with the minimal per-app adjustments to make CI green. Grocy
4.6.0 and the three BREAKING major-version bumps (duplicacy v3, Lychee
v7, cops v4) are deliberately deferred — each needs its own dedicated
effort.

### Changes

- **`apps/minisatip` (2.0.71 → 2.0.79)** — upstream replaced autotools
with CMake. Swap `./configure && make DDCI=1` for `cmake -B build . &&
cmake --build build -j…`, add `cmake` to the build/purge set, and move
the produced binary to `/app/satip/minisatip` where `start.sh` expects
it. `DDCI` is now auto-enabled in `CMakeLists.txt` when DVBCA
(libssl-dev) is detected, so no explicit flag.

- **`apps/jackett` (v0.24.1167 → v0.24.1614)** — the app starts and
listens on :9117 fine, but `/` no longer returns 302, so the Docker
healthcheck times out. Drop the explicit `statusCode: 302` from
`container-test.yaml`; the healthcheck helper then accepts any 2xx/3xx.

- **`apps/k8s-sidecar` (2.5.2 → 2.6.0, also supersedes #1718)** —
upstream moved dependency metadata from `src/requirements.txt` to a
top-level `pyproject.toml`. Stage the whole project for `pip install`,
then copy `src/*` into `/app` so the existing `CMD [ "python", "-u",
"/app/sidecar.py" ]` keeps working:

  ```dockerfile
  tar -xzf /tmp/release.tar.gz -C /tmp/src_temp \
      k8s-sidecar-${VERSION}/pyproject.toml \
      k8s-sidecar-${VERSION}/src && \
/app/venv/bin/pip install --no-cache-dir
/tmp/src_temp/k8s-sidecar-${VERSION} && \
  cp -r /tmp/src_temp/k8s-sidecar-${VERSION}/src/* /app/
  ```

### Deferred (not in this PR)

- **#1609 grocy 4.6.0** — upstream `composer.json` now requires `php
8.5.*`; base image ships 8.3. Fixing requires switching to a PHP
8.5-capable base (e.g. `ondrej/php` PPA), which isn't a minimal change.
- **#1641 duplicacy v3**, **#1643 Lychee v7**, **#1644 cops v4** — all
BREAKING upstream rewrites (new distribution URLs, new PHP extension
requirements, new composer flow). Each belongs in its own PR.

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Crow-Control <7613738+Crow-Control@users.noreply.github.com>
@truecharts-admin truecharts-admin changed the title fix(deps): update ghcr.io/kiwigrid/k8s-sidecar docker tag 2.5.2 → 2.5.5 fix(deps): update ghcr.io/kiwigrid/k8s-sidecar docker tag 2.5.2 → 2.5.5 - autoclosed Apr 17, 2026
auto-merge was automatically disabled April 17, 2026 16:33

Pull request was closed

@truecharts-admin truecharts-admin deleted the renovate/ghcr.io-kiwigrid-k8s-sidecar-2.5.x branch April 17, 2026 16:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants