Commit Graph

43897 Commits

Author SHA1 Message Date
TrueCharts Bot d25df1313f chore(helm): update jupyter 2025-05-30 → 2025-06-02 (minor) (#35914)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| quay.io/jupyter/all-spark-notebook | minor | `a3df2ba` -> `949c3fd` |
| quay.io/jupyter/base-notebook | minor | `da04e89` -> `81f4e00` |
| quay.io/jupyter/datascience-notebook | minor | `c3157a0` -> `2014f3b`
|
| quay.io/jupyter/minimal-notebook | minor | `b1e5df5` -> `23c62f4` |
| quay.io/jupyter/pyspark-notebook | minor | `aae5290` -> `0dbd92e` |
| quay.io/jupyter/r-notebook | minor | `7d87c57` -> `1cfec87` |
| quay.io/jupyter/scipy-notebook | minor | `da02c43` -> `08e4c32` |
| quay.io/jupyter/tensorflow-notebook | minor | `5923539` -> `fcd5454` |

---

> [!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 these
updates 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-03 01:42:07 +02:00
TrueCharts Bot 5054d69dfb chore(container): update ghcr.io/actions/actions-runner docker tag to v2.325.0 (#35890)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[ghcr.io/actions/actions-runner](https://redirect.github.com/actions/runner)
| stage | minor | `2.324.0` -> `2.325.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>actions/runner (ghcr.io/actions/actions-runner)</summary>

###
[`v2.325.0`](https://redirect.github.com/actions/runner/releases/tag/v2.325.0)

[Compare
Source](https://redirect.github.com/actions/runner/compare/v2.324.0...v2.325.0)

#### What's Changed

- Create schedule workflow to upgrade docker and buildx version. by
[@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in
[https://github.com/actions/runner/pull/3859](https://redirect.github.com/actions/runner/pull/3859)
- Update dotnet sdk to latest version
[@&#8203;8](https://redirect.github.com/8).0.409 by
[@&#8203;github-actions](https://redirect.github.com/github-actions) in
[https://github.com/actions/runner/pull/3860](https://redirect.github.com/actions/runner/pull/3860)
- Allow runner to use authv2 during config. by
[@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in
[https://github.com/actions/runner/pull/3866](https://redirect.github.com/actions/runner/pull/3866)
- show helpful error message when resolving actions directly with launch
by [@&#8203;aiqiaoy](https://redirect.github.com/aiqiaoy) in
[https://github.com/actions/runner/pull/3874](https://redirect.github.com/actions/runner/pull/3874)
- Update dotnet sdk to latest version
[@&#8203;8](https://redirect.github.com/8).0.410 by
[@&#8203;github-actions](https://redirect.github.com/github-actions) in
[https://github.com/actions/runner/pull/3871](https://redirect.github.com/actions/runner/pull/3871)
- Update Docker to v28.2.1 and Buildx to v0.24.0 by
[@&#8203;github-actions](https://redirect.github.com/github-actions) in
[https://github.com/actions/runner/pull/3881](https://redirect.github.com/actions/runner/pull/3881)
- Allow NO_SSL_VERIFY in RawHttpMessageHandler. by
[@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in
[https://github.com/actions/runner/pull/3883](https://redirect.github.com/actions/runner/pull/3883)

**Full Changelog**:
https://github.com/actions/runner/compare/v2.324.0...v2.325.0

*Note: Actions Runner follows a progressive release policy, so the
latest release might not be available to your enterprise, organization,
or repository yet.
To confirm which version of the Actions Runner you should expect, please
view the download instructions for your enterprise, organization, or
repository.
See
https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners*

#### Windows x64

We recommend configuring the runner in a root folder of the Windows
drive (e.g. "C:\actions-runner"). This will help avoid issues related to
service identity folder permissions and long file path restrictions on
Windows.

The following snipped needs to be run on `powershell`:

```powershell

### Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

### Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-win-x64-2.325.0.zip -OutFile actions-runner-win-x64-2.325.0.zip

### Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.325.0.zip", "$PWD")
```

#### Windows arm64

We recommend configuring the runner in a root folder of the Windows
drive (e.g. "C:\actions-runner"). This will help avoid issues related to
service identity folder permissions and long file path restrictions on
Windows.

The following snipped needs to be run on `powershell`:

```powershell

### Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

### Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-win-arm64-2.325.0.zip -OutFile actions-runner-win-arm64-2.325.0.zip

### Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.325.0.zip", "$PWD")
```

#### OSX x64

```bash

### Create a folder
mkdir actions-runner && cd actions-runner

### Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-osx-x64-2.325.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-osx-x64-2.325.0.tar.gz
```

#### OSX arm64 (Apple silicon)

```bash

### Create a folder
mkdir actions-runner && cd actions-runner

### Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-osx-arm64-2.325.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-osx-arm64-2.325.0.tar.gz
```

#### Linux x64

```bash

### Create a folder
mkdir actions-runner && cd actions-runner

### Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-x64-2.325.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-x64-2.325.0.tar.gz
```

#### Linux arm64

```bash

### Create a folder
mkdir actions-runner && cd actions-runner

### Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-arm64-2.325.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm64-2.325.0.tar.gz
```

#### Linux arm

```bash

### Create a folder
mkdir actions-runner && cd actions-runner

### Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-arm-2.325.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm-2.325.0.tar.gz
```

#### Using your self hosted runner

For additional details about configuring, running, or shutting down the
runner please check out our [product
docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)

#### SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown
below:

- actions-runner-win-x64-2.325.0.zip <!-- BEGIN SHA win-x64
-->8601aa56828c084b29bdfda574af1fcde0943ce275fdbafb3e6d4a8611245b1b<!--
END SHA win-x64 -->
- actions-runner-win-arm64-2.325.0.zip <!-- BEGIN SHA win-arm64
-->bc57c7bd5c07310481654bc8516fd42000a9bc0f2e2f8e588b6ea46c3391eb45<!--
END SHA win-arm64 -->
- actions-runner-osx-x64-2.325.0.tar.gz <!-- BEGIN SHA osx-x64
-->0562bd934b27ca0c6d8a357df00809fbc7b4d5524d4aeb6ec152e14fd520a4c3<!--
END SHA osx-x64 -->
- actions-runner-osx-arm64-2.325.0.tar.gz <!-- BEGIN SHA osx-arm64
-->155cc00c217bdc3a74f1c0534e8e3bde1a2d9e2186f01f68a9dec185628fe749<!--
END SHA osx-arm64 -->
- actions-runner-linux-x64-2.325.0.tar.gz <!-- BEGIN SHA linux-x64
-->5020da7139d85c776059f351e0de8fdec753affc9c558e892472d43ebeb518f4<!--
END SHA linux-x64 -->
- actions-runner-linux-arm64-2.325.0.tar.gz <!-- BEGIN SHA linux-arm64
-->0e916ad0d354089d320011c132d46bdbe3353c8b925a2e1056c7c8e85d2f2490<!--
END SHA linux-arm64 -->
- actions-runner-linux-arm-2.325.0.tar.gz <!-- BEGIN SHA linux-arm
-->f74f77c6437c6de3d2921e4b26a6e2e31c21cbdeb309f86648d1f4e5fa0c3eca<!--
END SHA linux-arm -->

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-03 01:40:08 +02:00
TrueCharts Bot 3d82fdf1c1 chore(helm): update image ghcr.io/linuxserver/davos digest to 3290cb0 (#35846)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/davos](https://redirect.github.com/linuxserver/docker-davos/packages)
([source](https://redirect.github.com/linuxserver/docker-davos)) |
digest | `06eca36` -> `3290cb0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:37:59 +02:00
TrueCharts Bot 4508ef17e3 chore(helm): update image ghcr.io/home-operations/radarr digest to f4e472b (#35841)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/home-operations/radarr](https://ghcr.io/home-operations/radarr)
([source](https://redirect.github.com/Radarr/Radarr)) | digest |
`512dee5` -> `f4e472b` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:36:39 +02:00
TrueCharts Bot 68c7236964 chore(helm): update image ghcr.io/home-operations/bazarr digest to dbc87e5 (#35838)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/home-operations/bazarr](https://ghcr.io/home-operations/bazarr)
([source](https://redirect.github.com/morpheus65535/bazarr)) | digest |
`e569e3d` -> `dbc87e5` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:35:51 +02:00
TrueCharts Bot cbad22c356 chore(container): update alpine docker tag to v3.22.0 (#35888)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| alpine | final | minor | `3.21.3` -> `3.22.0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-03 01:35:05 +02:00
TrueCharts Bot d7c0c20731 chore(helm): update image docker.io/flowiseai/flowise 3.0.0 → 3.0.1 (#35879)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/flowiseai/flowise | patch | `2091efc` -> `ec8e926` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-03 01:33:28 +02:00
TrueCharts Bot 4c76992655 chore(helm): update image docker.io/wiserain/flexget 3.16.0 → 3.16.3 (#35882)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/wiserain/flexget](https://redirect.github.com/linuxserver/docker-baseimage-alpine/packages)
([source](https://redirect.github.com/wiserain/docker-flexget)) | patch
| `547dc1c` -> `0c7eb5c` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-03 01:33:16 +02:00
TrueCharts Bot 6499b8adbb chore(helm): update image ghcr.io/linuxserver/sickchill digest to 9a53d95 (#35856)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/sickchill](https://redirect.github.com/linuxserver/docker-sickchill/packages)
([source](https://redirect.github.com/linuxserver/docker-sickchill)) |
digest | `cca3a49` -> `9a53d95` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:28:14 +02:00
TrueCharts Bot 802a7adef3 chore(helm): update image ghcr.io/chroma-core/chroma 1.0.10 → 1.0.12 (#35884)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/chroma-core/chroma | patch | `82ee6ab` -> `28a3b2c` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-03 01:27:34 +02:00
TrueCharts Bot 6bf7255a20 chore(helm): update image docker.io/jeessy/ddns-go v6.9.3 → v6.9.4 (#35880)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/jeessy/ddns-go | patch | `4b485f6` -> `a753418` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-03 01:25:52 +02:00
TrueCharts Bot 2ba631fdc1 chore(helm): update image ghcr.io/home-operations/qbittorrent digest to 37aefd7 (#35840) 2025-06-03 01:25:37 +02:00
TrueCharts Bot 098c260f44 chore(helm): update image lscr.io/linuxserver/mylar3 digest to 1de23b6 (#35865)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[lscr.io/linuxserver/mylar3](https://redirect.github.com/linuxserver/docker-mylar3/packages)
([source](https://redirect.github.com/linuxserver/docker-mylar3)) |
digest | `2bd3fc7` -> `1de23b6` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:24:01 +02:00
TrueCharts Bot e313123f87 fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.26 → v3.0.28 (clustertool) (#35887)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/budimanjojo/talhelper/v3](https://redirect.github.com/budimanjojo/talhelper)
| require | patch | `v3.0.26` -> `v3.0.28` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>budimanjojo/talhelper
(github.com/budimanjojo/talhelper/v3)</summary>

###
[`v3.0.28`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.28)

[Compare
Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.27...v3.0.28)

#### Changelog

-
[`2281235`](https://redirect.github.com/budimanjojo/talhelper/commit/2281235af0c24cc839ca418e55373d54f8d1095f)
chore(container): update alpine docker tag to v3.22.0
-
[`8438dfc`](https://redirect.github.com/budimanjojo/talhelper/commit/8438dfcf12e2e7755aa1ba62730670cd7bac5004)
chore(container): update ghcr.io/siderolabs/talosctl docker tag to
v1.10.3
-
[`802dd26`](https://redirect.github.com/budimanjojo/talhelper/commit/802dd26339d595781f232512c0136a612d1a9d3d)
chore(container): update
mcr.microsoft.com/devcontainers/go:1.24-bookworm docker digest to
[`f7a7406`](https://redirect.github.com/budimanjojo/talhelper/commit/f7a7406)
([#&#8203;1034](https://redirect.github.com/budimanjojo/talhelper/issues/1034))
-
[`9d633c0`](https://redirect.github.com/budimanjojo/talhelper/commit/9d633c00cc3bf7e3fd1c87621ff6ad177f9c9316)
chore(deps): update dependency siderolabs/talos to v1.10.3
-
[`f1b5af8`](https://redirect.github.com/budimanjojo/talhelper/commit/f1b5af8ce8337f0d5daad810c4634c60718d448f)
chore(schema): update talos-extensions.yaml JSON schema
([#&#8203;1033](https://redirect.github.com/budimanjojo/talhelper/issues/1033))
-
[`ca3c538`](https://redirect.github.com/budimanjojo/talhelper/commit/ca3c538aad9d2a23bac7600b9e65ff2aa3d7e877)
feat(CI): update script to show error and fix deprecation warnings
-
[`bddb0d4`](https://redirect.github.com/budimanjojo/talhelper/commit/bddb0d4617a3f7889b32af67a8a80f8efd60ca1c)
feat: update Scoop for talhelper version v3.0.27
-
[`c0d8ba2`](https://redirect.github.com/budimanjojo/talhelper/commit/c0d8ba2a2748068aa402d969fd0516e0c6d00bb6)
feat: update flake
([#&#8203;1029](https://redirect.github.com/budimanjojo/talhelper/issues/1029))
-
[`066762d`](https://redirect.github.com/budimanjojo/talhelper/commit/066762d6471f09bd3126085433bfe652abbb52ea)
fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.27

###
[`v3.0.27`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.27)

[Compare
Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.26...v3.0.27)

#### Changelog

-
[`6eb6ea2`](https://redirect.github.com/budimanjojo/talhelper/commit/6eb6ea2811e05165d550edd3d61799e31dc9d13e)
chore(deps): update dependency go to v1.24.3
-
[`26b8783`](https://redirect.github.com/budimanjojo/talhelper/commit/26b878340943972983886a6a0fae5a8a28c75161)
chore(github-action): update renovatebot/github-action action to v42.0.4
-
[`03f359a`](https://redirect.github.com/budimanjojo/talhelper/commit/03f359a000fb5bd8f1a2480d29818e3b0425947c)
chore(schema): update talos-extensions.yaml JSON schema
-
[`3d6dfbd`](https://redirect.github.com/budimanjojo/talhelper/commit/3d6dfbdecf3073f95cdab58939e37b8a6594094e)
chore(schema): update talos-extensions.yaml JSON schema
([#&#8203;1025](https://redirect.github.com/budimanjojo/talhelper/issues/1025))
-
[`81cdda5`](https://redirect.github.com/budimanjojo/talhelper/commit/81cdda529837c4429a2b0b0bc298c4972d528afe)
feat(CI): update script to show error and fix depreciation warnings
-
[`78abc58`](https://redirect.github.com/budimanjojo/talhelper/commit/78abc58c76dfa5ed532c95b01806a77dab685b1a)
feat(flake): update flake
-
[`3d13d5a`](https://redirect.github.com/budimanjojo/talhelper/commit/3d13d5a70a360bb4552bfd3ecf3adc5845f4ab20)
feat: update Scoop for talhelper version v3.0.26
-
[`ba2680f`](https://redirect.github.com/budimanjojo/talhelper/commit/ba2680f60c18252928a47ed893abbd865842c3fa)
feat: update flake
([#&#8203;1022](https://redirect.github.com/budimanjojo/talhelper/issues/1022))
-
[`84f37f6`](https://redirect.github.com/budimanjojo/talhelper/commit/84f37f62d285e5ac9a1781a03e13cccdd804a0dd)
fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.26
-
[`6796720`](https://redirect.github.com/budimanjojo/talhelper/commit/6796720cf600c58c106c590b376f3939a9fa7c3a)
fix(deps): update module github.com/gookit/validate to v1.5.5
-
[`8a387f5`](https://redirect.github.com/budimanjojo/talhelper/commit/8a387f58ef00b4b4cb41d6863d5c2557c3dceb5c)
fix(deps): update module github.com/siderolabs/image-factory to v0.7.1

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-03 01:23:57 +02:00
TrueCharts Bot 9bd88879d8 chore(helm): update image ghcr.io/linuxserver/openvscode-server digest to 1f36b9a (#35854)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/openvscode-server](https://redirect.github.com/linuxserver/docker-openvscode-server/packages)
([source](https://redirect.github.com/linuxserver/docker-openvscode-server))
| digest | `d55edc4` -> `1f36b9a` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:22:56 +02:00
TrueCharts Bot 5ebcb526fb chore(helm): update image ghcr.io/home-operations/sabnzbd digest to d57f89b (#35842)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/home-operations/sabnzbd](https://ghcr.io/home-operations/sabnzbd)
([source](https://redirect.github.com/sabnzbd/sabnzbd)) | digest |
`fb8b35e` -> `d57f89b` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:22:41 +02:00
TrueCharts Bot 248ce8519b chore(container): update public.ecr.aws/docker/library/alpine docker tag to v3.22.0 (#35891)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[public.ecr.aws/docker/library/alpine](https://hub.docker.com/_/alpine)
([source](https://redirect.github.com/alpinelinux/docker-alpine)) |
stage | minor | `3.21.3` -> `3.22.0` |
|
[public.ecr.aws/docker/library/alpine](https://hub.docker.com/_/alpine)
([source](https://redirect.github.com/alpinelinux/docker-alpine)) |
final | minor | `3.21.3` -> `3.22.0` |

---

> [!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 these
updates 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-03 01:21:42 +02:00
TrueCharts Bot 52c606110b chore(container): update docker.io/renovate/renovate docker tag to v40.33.9 (#35874)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [docker.io/renovate/renovate](https://renovatebot.com)
([source](https://redirect.github.com/renovatebot/renovate)) | final |
patch | `40.33.8-full` -> `40.33.9-full` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>renovatebot/renovate (docker.io/renovate/renovate)</summary>

###
[`v40.33.9`](https://redirect.github.com/renovatebot/renovate/releases/tag/40.33.9)

[Compare
Source](https://redirect.github.com/renovatebot/renovate/compare/40.33.8...40.33.9)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.70.8
(main)
([#&#8203;36204](https://redirect.github.com/renovatebot/renovate/issues/36204))
([259387e](https://redirect.github.com/renovatebot/renovate/commit/259387eee5f45427ef5cdf7e6ac0cecca9bc463f))

##### Build System

- **deps:** update dependency zod to v3.25.17 (main)
([#&#8203;36203](https://redirect.github.com/renovatebot/renovate/issues/36203))
([756c11e](https://redirect.github.com/renovatebot/renovate/commit/756c11ed67f21202e5af8972289a8c923b16bf6d))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-03 01:18:12 +02:00
TrueCharts Bot 812e6516ba chore(helm): update image ghcr.io/home-operations/sonarr digest to 5126f7a (#35843)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/home-operations/sonarr](https://ghcr.io/home-operations/sonarr)
([source](https://redirect.github.com/Sonarr/Sonarr)) | digest |
`95c3d63` -> `5126f7a` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:16:24 +02:00
TrueCharts Bot 209de2db59 fix(deps): update module helm.sh/helm/v3 v3.17.3 → v3.18.2 (clustertool) (#35915)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [helm.sh/helm/v3](https://redirect.github.com/helm/helm) | require |
minor | `v3.17.3` -> `v3.18.2` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>helm/helm (helm.sh/helm/v3)</summary>

###
[`v3.18.2`](https://redirect.github.com/helm/helm/releases/tag/v3.18.2):
Helm 3.18.2

[Compare
Source](https://redirect.github.com/helm/helm/compare/v3.18.1...v3.18.2)

Helm v3.18.2 is a patch release. Users are encouraged to upgrade for the
best experience. Users are encouraged to upgrade for the best
experience.

The community keeps growing, and we'd love to see you there!

- Join the discussion in [Kubernetes
Slack](https://kubernetes.slack.com):
    -   for questions and just to hang out
    -   for discussing PRs, code, and bugs
- Hang out at the Public Developer Call: Thursday, 9:30 Pacific via
[Zoom](https://zoom.us/j/696660622)
- Test, debug, and contribute charts:
[ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)

#### Installation and Upgrading

Download Helm v3.18.2. The common platform binaries are here:

- [MacOS amd64](https://get.helm.sh/helm-v3.18.2-darwin-amd64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.2-darwin-amd64.tar.gz.sha256sum)
/ 8bfc850d4451dccecb01c73bdc844cb1b3ed2f1b90a89fc47e7b1670e1f369ec)
- [MacOS arm64](https://get.helm.sh/helm-v3.18.2-darwin-arm64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.2-darwin-arm64.tar.gz.sha256sum)
/ d82a30d654862668ae1e58dbbba5ea6ed5f84312da59666ef628bf73b2188d39)
- [Linux amd64](https://get.helm.sh/helm-v3.18.2-linux-amd64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.2-linux-amd64.tar.gz.sha256sum)
/ c5deada86fe609deefdf40e9cbbe3da2f8cf3f6a4551a0ebe7886dc8fcf98bce)
- [Linux arm](https://get.helm.sh/helm-v3.18.2-linux-arm.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.2-linux-arm.tar.gz.sha256sum)
/ a848c9db5e51f7cc4975bcfbba415c30cdfb67e141b6efc0e8b3a66cd89e8607)
- [Linux arm64](https://get.helm.sh/helm-v3.18.2-linux-arm64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.2-linux-arm64.tar.gz.sha256sum)
/ 03181a494a0916b370a100a5b2536104963b095be53fb23d1e29b2afb1c7de8d)
- [Linux i386](https://get.helm.sh/helm-v3.18.2-linux-386.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.2-linux-386.tar.gz.sha256sum)
/ dae13caca7a24d0adff3f59183a269275522964d75c1e4cbdb0ffaddc659e7bc)
- [Linux ppc64le](https://get.helm.sh/helm-v3.18.2-linux-ppc64le.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.2-linux-ppc64le.tar.gz.sha256sum)
/ 1d21b2acdd79a13d20585b61fe90bababdd3f7047530d66aad650869c772b5c3)
- [Linux s390x](https://get.helm.sh/helm-v3.18.2-linux-s390x.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.2-linux-s390x.tar.gz.sha256sum)
/ 382920a48a0800cf2bb67bf6ab403aab15f7631b369bed9df9bdcfdd5ebd5ae9)
- [Linux riscv64](https://get.helm.sh/helm-v3.18.2-linux-riscv64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.2-linux-riscv64.tar.gz.sha256sum)
/ d702db0191e6a4091d631760aded83f809d8d7edf962d5252f1ea46804183ebf)
- [Windows amd64](https://get.helm.sh/helm-v3.18.2-windows-amd64.zip)
([checksum](https://get.helm.sh/helm-v3.18.2-windows-amd64.zip.sha256sum)
/ 49fc2d74a351974ebf544f8252a4e43d7e5f9e0137472415393178c2d3996e9f)
- [Windows arm64](https://get.helm.sh/helm-v3.18.2-windows-arm64.zip)
([checksum](https://get.helm.sh/helm-v3.18.2-windows-arm64.zip.sha256sum)
/ 6ecdf10aa6f356ebb841d1732225437100e65fdb90f99170e1b2e5726e4fd10d)

This release was signed with ` 672C 657B E06B 4B30 969C 4A57 4614 49C2
5E36 B98E ` and can be found at
[@&#8203;mattfarina](https://redirect.github.com/mattfarina) [keybase
account](https://keybase.io/mattfarina). Please use the attached
signatures for verifying this release using `gpg`.

The [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get
you going from there. For **upgrade instructions** or detailed
installation notes, check the [install
guide](https://helm.sh/docs/intro/install/). You can also use a [script
to
install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3)
on any system with `bash`.

#### What's Next

-   3.17.3 is the next patch release and will be on July 09, 2025
-   3.18.0 is the next minor release and will be on September 11, 2025

#### Changelog

- fix: legacy docker support broken for login
[`04cad46`](https://redirect.github.com/helm/helm/commit/04cad4610054e5d546aa5c5d9c1b1d5cf68ec1f8)
(Terry Howe)
- Handle an empty registry config file.
[`bc9f8a2`](https://redirect.github.com/helm/helm/commit/bc9f8a2d8baad5a54f7b421275f44c04117eb5cb)
(Matt Farina)

###
[`v3.18.1`](https://redirect.github.com/helm/helm/releases/tag/v3.18.1):
Helm v3.18.1

[Compare
Source](https://redirect.github.com/helm/helm/compare/v3.18.0...v3.18.1)

Helm v3.18.1 is a patch release. Users are encouraged to upgrade for the
best experience. Users are encouraged to upgrade for the best
experience.

Notes:

- This release fixes regressions around template generation and OCI
registry interaction in 3.18.0
- There are at least 2 known regressions unaddressed in this release.
They are being worked on.
- Empty registry configuration files. When the file exists but it is
empty.
    -   Login to Docker Hub on some domains fails.

The community keeps growing, and we'd love to see you there!

- Join the discussion in [Kubernetes
Slack](https://kubernetes.slack.com):
    -   for questions and just to hang out
    -   for discussing PRs, code, and bugs
- Hang out at the Public Developer Call: Thursday, 9:30 Pacific via
[Zoom](https://zoom.us/j/696660622)
- Test, debug, and contribute charts:
[ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)

#### Installation and Upgrading

Download Helm v3.18.1. The common platform binaries are here:

- [MacOS amd64](https://get.helm.sh/helm-v3.18.1-darwin-amd64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.1-darwin-amd64.tar.gz.sha256sum)
/ 3973bda1863d74614e1dca69ee65050928a80b88f6d10ec514fa7886a02de309)
- [MacOS arm64](https://get.helm.sh/helm-v3.18.1-darwin-arm64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.1-darwin-arm64.tar.gz.sha256sum)
/ 93562d2a0e34a505954e5b9556e319f390bc5bd07bed754ddc038b09cfe6fbd9)
- [Linux amd64](https://get.helm.sh/helm-v3.18.1-linux-amd64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.1-linux-amd64.tar.gz.sha256sum)
/ b1c7e8e261fd30f34c617282813ecafc63628fcd59a255a9fc51b1fe43394c05)
- [Linux arm](https://get.helm.sh/helm-v3.18.1-linux-arm.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.1-linux-arm.tar.gz.sha256sum)
/ 6a58bf4091f798ac1a6fa7e21ea142fe138f5b688f2e3af0c49147f99210fff6)
- [Linux arm64](https://get.helm.sh/helm-v3.18.1-linux-arm64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.1-linux-arm64.tar.gz.sha256sum)
/ 5ddc8fbd4b17857754a95be799543ceafa5aa9532b05f738ee590a76bb049988)
- [Linux i386](https://get.helm.sh/helm-v3.18.1-linux-386.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.1-linux-386.tar.gz.sha256sum)
/ 890bfd82f9fc8fe829f33c80e3d31463fc22d0f3605aaf3b009b3d7a616ba9cc)
- [Linux ppc64le](https://get.helm.sh/helm-v3.18.1-linux-ppc64le.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.1-linux-ppc64le.tar.gz.sha256sum)
/ 4d03617f742e4774ddf2170840ec385c67abf0db93e5df1aa9a036bb1275988e)
- [Linux s390x](https://get.helm.sh/helm-v3.18.1-linux-s390x.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.1-linux-s390x.tar.gz.sha256sum)
/ e17b3574bdd4152ed8962089e3c0143e660db64e828a90a20127c9e5f48ab932)
- [Linux riscv64](https://get.helm.sh/helm-v3.18.1-linux-riscv64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.1-linux-riscv64.tar.gz.sha256sum)
/ 225bdea665c5313e48c0219b39b6f0daea3288b1567f4825c540063784113214)
- [Windows amd64](https://get.helm.sh/helm-v3.18.1-windows-amd64.zip)
([checksum](https://get.helm.sh/helm-v3.18.1-windows-amd64.zip.sha256sum)
/ d0f74d2043dae67992d4dcdd430844aa4817e4735a42ef9ecb4d2f042e2ed2bb)
- [Windows arm64](https://get.helm.sh/helm-v3.18.1-windows-arm64.zip)
([checksum](https://get.helm.sh/helm-v3.18.1-windows-arm64.zip.sha256sum)
/ 486f2eabae7b497afc4643e54464b700de6fbc509f4b5b31ca108979a11ba5fd)

The [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get
you going from there. For **upgrade instructions** or detailed
installation notes, check the [install
guide](https://helm.sh/docs/intro/install/). You can also use a [script
to
install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3)
on any system with `bash`.

#### What's Next

-   3.18.2 will contain only bug fixes.
-   3.19.0 on September 11th, 2025 is the next feature release.

#### Changelog

- fix(client): skipnode utilization for PreCopy
[`f6f8700`](https://redirect.github.com/helm/helm/commit/f6f8700a539c18101509434f3b59e6a21402a1b2)
(Brandt Keller)
- fix(client): layers now returns manifest - remove duplicate from
descriptors
[`4da7015`](https://redirect.github.com/helm/helm/commit/4da701593f8c8a137fc36a95f9e9ecfe1d01528f)
(Brandt Keller)
- fix(client): return nil on non-allowed media types
[`1a8507f`](https://redirect.github.com/helm/helm/commit/1a8507fd5ad910f466accfd1c784ed0c333c343a)
(Brandt Keller)
- Prevent fetching newReference again as we have in calling method
[`015531c`](https://redirect.github.com/helm/helm/commit/015531ca4f386a6fee6c9f48eae63124d19c76a7)
(Benoit Tigeot)
- Prevent failure when resolving version tags in oras memory store
[`9db1a12`](https://redirect.github.com/helm/helm/commit/9db1a120f9f7404044cc4619ea7379b430004e36)
(Benoit Tigeot)
- Update pkg/plugin/plugin.go
[`e8bfa0e`](https://redirect.github.com/helm/helm/commit/e8bfa0eed689ee822c6ba9b4bcae45ecdb36b671)
(Benoit Tigeot)
- Update pkg/plugin/plugin.go
[`24b4490`](https://redirect.github.com/helm/helm/commit/24b44902a266f911617105273d4afd16f25f4aaf)
(Benoit Tigeot)
- Wait for Helm v4 before raising when platformCommand and Command are
set
[`7e8f534`](https://redirect.github.com/helm/helm/commit/7e8f53421a184125cf988814206237ce01d95139)
(Benoit Tigeot)
- Fix 3.18.0 regression: registry login with scheme
[`ea04cea`](https://redirect.github.com/helm/helm/commit/ea04cea48bf2b312e506ae03c412c6fd95929c5c)
(Scott Rigby)
- Revert "fix (helm) : toToml\` renders int as float \[ backport to v3
]"
[`bec6609`](https://redirect.github.com/helm/helm/commit/bec66098fdb4ac37298f46701a2d5b28e5776b72)
(Matt Farina)

###
[`v3.18.0`](https://redirect.github.com/helm/helm/releases/tag/v3.18.0):
Helm v3.18.0

[Compare
Source](https://redirect.github.com/helm/helm/compare/v3.17.3...v3.18.0)

Helm v3.18.0 is a feature release. Users are encouraged to upgrade for
the best experience.

The community keeps growing, and we'd love to see you there!

- Join the discussion in [Kubernetes
Slack](https://kubernetes.slack.com):
    -   for questions and just to hang out
    -   for discussing PRs, code, and bugs
- Hang out at the Public Developer Call: Thursday, 9:30 Pacific via
[Zoom](https://zoom.us/j/696660622)
- Test, debug, and contribute charts:
[ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)

#### Notable Changes

-   Add support for JSON Schema 2020
-   Enabled cpu and memory profiling
-   Add hook annotation to output hook logs to client on error

#### Installation and Upgrading

Download Helm v3.18.0. The common platform binaries are here:

- [MacOS amd64](https://get.helm.sh/helm-v3.18.0-darwin-amd64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.0-darwin-amd64.tar.gz.sha256sum)
/ 2be99836549413c2f0212d644e8740abd8ba5d7f55484c29d3363cea339891d9)
- [MacOS arm64](https://get.helm.sh/helm-v3.18.0-darwin-arm64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.0-darwin-arm64.tar.gz.sha256sum)
/ 4ce30bd86a3fc4f31d297827a5bf5b10ced8c4da2ff810bf9f53f561dbed7d10)
- [Linux amd64](https://get.helm.sh/helm-v3.18.0-linux-amd64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.0-linux-amd64.tar.gz.sha256sum)
/ 961e587fc2c03807f8a99ac25ef063fa9e6915f1894729399cbb95d2a79af931)
- [Linux arm](https://get.helm.sh/helm-v3.18.0-linux-arm.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.0-linux-arm.tar.gz.sha256sum)
/ 88f6264801fd9c5bb3d2d24c7b3da4e239d137b39bacd18d25b22823e6bd31f7)
- [Linux arm64](https://get.helm.sh/helm-v3.18.0-linux-arm64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.0-linux-arm64.tar.gz.sha256sum)
/ 489c9d2d3ea4e095331249d74b4407fb5ac1d338c28429d70cdedccfe6e2b029)
- [Linux i386](https://get.helm.sh/helm-v3.18.0-linux-386.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.0-linux-386.tar.gz.sha256sum)
/ 3302c90957e259897d238feee65e05abb3fc586ab80a49cb577fd123b2e94cb3)
- [Linux ppc64le](https://get.helm.sh/helm-v3.18.0-linux-ppc64le.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.0-linux-ppc64le.tar.gz.sha256sum)
/ 559036fe183593488275a19796ca0b13f56e9d586b697a0d968e8b1e24472d7c)
- [Linux s390x](https://get.helm.sh/helm-v3.18.0-linux-s390x.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.0-linux-s390x.tar.gz.sha256sum)
/ ab0e347751b425ed9c4b619159a9ffeb85a82e07f7333921dec1a26780195a72)
- [Linux riscv64](https://get.helm.sh/helm-v3.18.0-linux-riscv64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.0-linux-riscv64.tar.gz.sha256sum)
/ ae98c3d9d352ac91909d28dbb03d91fc506cafcce647cfbd1954a02ef84f91d1)
- [Windows amd64](https://get.helm.sh/helm-v3.18.0-windows-amd64.zip)
([checksum](https://get.helm.sh/helm-v3.18.0-windows-amd64.zip.sha256sum)
/ ae6a1b832043e3433d2823fc42692057dbf007efad34292708130b412c169a94)
- [Windows arm64](https://get.helm.sh/helm-v3.18.0-windows-arm64.zip)
([checksum](https://get.helm.sh/helm-v3.18.0-windows-arm64.zip.sha256sum)
/ f354f0bdf725a0530162754632bc54fed2c56ad11a899b031702ee1c70ecb5fc)

The [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get
you going from there. For **upgrade instructions** or detailed
installation notes, check the [install
guide](https://helm.sh/docs/intro/install/). You can also use a [script
to
install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3)
on any system with `bash`.

#### What's Next

-   3.18.1 on June 11th, 2025 will contain only bug fixes.
-   3.19.0 on September 11th, 2025 is the next feature release.

#### Changelog

- build(deps): bump the k8s-io group with 7 updates
[`cc58e3f`](https://redirect.github.com/helm/helm/commit/cc58e3f5a3aa615c6a86275e6f4444b5fdd3cc4e)
(dependabot\[bot])
- fix: govulncheck workflow
[`bf1436b`](https://redirect.github.com/helm/helm/commit/bf1436baf3c235cb1b689a016b7162d0cddd3947)
(Matthieu MOREL)
- bump version to v3.18.0
[`d8edc2a`](https://redirect.github.com/helm/helm/commit/d8edc2aebc2e5ad624640b56a22258b9bbec9099)
(Robert Sirchia)
- fix:add proxy support when mTLS configured
[`48377fe`](https://redirect.github.com/helm/helm/commit/48377fe4515cc6a5bf5ac92ea6086090e7b82798)
(Rongrong Liu)
- docs: Note about http fallback for OCI registries
[`cdd7c10`](https://redirect.github.com/helm/helm/commit/cdd7c105a60929d733c1b67d4fe5062ff5619ac2)
(Terry Howe)
- Bump net package to avoid CVE on dev-v3
[`f9ab8f7`](https://redirect.github.com/helm/helm/commit/f9ab8f772a01ff918d4a54febe18d4cc6899f2e2)
(Benoit Tigeot)
- Bump toml
[`087fa18`](https://redirect.github.com/helm/helm/commit/087fa18276033d37648deaf082de6b3ea635fb88)
(Benoit Tigeot)
- backport #&#8203;30677to dev3
[`2a5f83b`](https://redirect.github.com/helm/helm/commit/2a5f83b960738cc58f090e67ac108418ac4dedf2)
(dongjiang)
- build(deps): bump github.com/rubenv/sql-migrate from 1.7.2 to 1.8.0
[`5df2f30`](https://redirect.github.com/helm/helm/commit/5df2f3018a6ac20db369390fed142463d97b487f)
(dependabot\[bot])
- Add install test for TakeOwnership flag
[`0906fe7`](https://redirect.github.com/helm/helm/commit/0906fe7f6b201d9aa73eb22f518366ea75c57937)
(Evans Mungai)
- Fix --take-ownership
[`4ee3a19`](https://redirect.github.com/helm/helm/commit/4ee3a19e9a98e3b58eb4579f019666e834408ca3)
(Patrick Seidensal)
- build(deps): bump github.com/rubenv/sql-migrate from 1.7.1 to 1.7.2
[`3538c2a`](https://redirect.github.com/helm/helm/commit/3538c2a677809308821c18bdc309e5954f822211)
(dependabot\[bot])
- build(deps): bump golang.org/x/crypto from 0.36.0 to 0.37.0
[`6fa95c8`](https://redirect.github.com/helm/helm/commit/6fa95c805e449eb7332059cc4aee837a9358f334)
(dependabot\[bot])
- build(deps): bump golang.org/x/term from 0.30.0 to 0.31.0
[`741b5be`](https://redirect.github.com/helm/helm/commit/741b5beeb95b0858b1809a625870310a509a4d61)
(dependabot\[bot])
- Testing text bump
[`017f9fa`](https://redirect.github.com/helm/helm/commit/017f9fad2b2b51f1292c73922f0857b93d2fb233)
(Benoit Tigeot)
- Permit more Go version and not only 1.23.8
[`6667252`](https://redirect.github.com/helm/helm/commit/666725202b2c7da205fe0c34a1ac5812e88d2500)
(Benoit Tigeot)
- Bumps github.com/distribution/distribution/v3 from 3.0.0-rc.3 to 3.0.0
[`4ad1ccd`](https://redirect.github.com/helm/helm/commit/4ad1ccd8fb8bbf4ffec8ccab411f2ee57360824d)
(Benoit Tigeot)
- Unarchiving fix
[`3ce10e4`](https://redirect.github.com/helm/helm/commit/3ce10e4f81e064a3807098c3d466c33f2ece8a18)
(Matt Farina)
- Fix typo
[`422c58e`](https://redirect.github.com/helm/helm/commit/422c58e4a2d7a00e2275916be1bfda0b28efba82)
(Benoit Tigeot)
- Report as debug log, the time spent waiting for resources
[`5e7f12d`](https://redirect.github.com/helm/helm/commit/5e7f12d4c3e2e37fa4bc065fddde8e191c336a15)
(Benoit Tigeot)
- build(deps): bump github.com/containerd/containerd from 1.7.26 to
1.7.27
[`dcc286c`](https://redirect.github.com/helm/helm/commit/dcc286ca562e91bc5ea052d734d11e4bf2905e19)
(dependabot\[bot])
- Update pkg/registry/fallback.go
[`1435ec7`](https://redirect.github.com/helm/helm/commit/1435ec7c7717a147fb17701fd0da3992f7a44bb6)
(Terry Howe)
- automatic fallback to http
[`674e882`](https://redirect.github.com/helm/helm/commit/674e882c88535c75b672cb6986df8fc23ad21dad)
(Terry Howe)
- chore(oci): upgrade to ORAS v2
[`c188441`](https://redirect.github.com/helm/helm/commit/c188441757c66e8e863969c5cb1b27be61482a22)
(Terry Howe)
- Updating to 0.37.0 for x/net
[`2b12490`](https://redirect.github.com/helm/helm/commit/2b12490c329e5a61c79f6f71cee8b450770b0752)
(Matt Farina)
- build(deps): bump the k8s-io group with 7 updates
[`0648918`](https://redirect.github.com/helm/helm/commit/0648918abbc894b035351353a2af82b5c8b161c8)
(dependabot\[bot])
- build(deps): bump golang.org/x/crypto from 0.35.0 to 0.36.0
[`0911b9c`](https://redirect.github.com/helm/helm/commit/0911b9c7b0f29bd49905865cd77509c2d84c4479)
(dependabot\[bot])
- build(deps): bump github.com/opencontainers/image-spec
[`2f22d55`](https://redirect.github.com/helm/helm/commit/2f22d5544c78b3e81de95bac061515630cb5d157)
(dependabot\[bot])
- build(deps): bump github.com/containerd/containerd from 1.7.25 to
1.7.26
[`89361c9`](https://redirect.github.com/helm/helm/commit/89361c905aae85cf0a20ec68df2fdd52103847ed)
(dependabot\[bot])
- build(deps): bump golang.org/x/crypto from 0.33.0 to 0.35.0
[`6d64160`](https://redirect.github.com/helm/helm/commit/6d64160ab65863892ef1cec022b5391b17147c6d)
(dependabot\[bot])
- Fix cherry-pick helm.sh/helm/v4 -> helm.sh/helm/v3
[`bcb83e4`](https://redirect.github.com/helm/helm/commit/bcb83e465f4487b481b8843f4d5dfe4f26472c55)
(Scott Rigby)
- Refactor based on review comment
[`2aa90b8`](https://redirect.github.com/helm/helm/commit/2aa90b8f2603f033479278eb99993d2efe39624c)
(Chris Berry)
- Refactor based on review comment
[`5739197`](https://redirect.github.com/helm/helm/commit/5739197faa75b3e2c7d32a999c3e17bd8949756d)
(Chris Berry)
- Add HookOutputFunc and generic yaml unmarshaller
[`b8e1387`](https://redirect.github.com/helm/helm/commit/b8e13878fcf542aff465a90635b4d29f93dfb434)
(Chris Berry)
- clarify fix error message
[`97b0e11`](https://redirect.github.com/helm/helm/commit/97b0e11871252ad99054d911d92666f84fdac79a)
(Scott Rigby)
- fix err check
[`2f79afb`](https://redirect.github.com/helm/helm/commit/2f79afb0a3c506fd41ea89f13efcfa4379f88b5f)
(Scott Rigby)
- remove comments about previous functionality
[`c77f4ec`](https://redirect.github.com/helm/helm/commit/c77f4ec6c41db7d5641da723eb6f67d1b8b0e606)
(Scott Rigby)
- add short circuit return
[`3cd6afe`](https://redirect.github.com/helm/helm/commit/3cd6afe845c905d2bc1dfa259e2ab4b571c19234)
(Scott Rigby)
- Update based on review comments
[`5367001`](https://redirect.github.com/helm/helm/commit/5367001f4fa283ffb4dd15741c2dff053b5dfb52)
(Chris Berry)
- Update based on review comments
[`3c44515`](https://redirect.github.com/helm/helm/commit/3c445158d85b1bec417803f418f0b686188b2399)
(Chris Berry)
- Fix lint
[`4cb639e`](https://redirect.github.com/helm/helm/commit/4cb639ed4edab7729859328d443b102d05a4b32d)
(Chris Berry)
- Tidy up imports
[`20f859c`](https://redirect.github.com/helm/helm/commit/20f859c9ffb5e0a7b48c8331093250bd162e3ee0)
(Chris)
- Add hook annotations to output pod logs to client on success and fail
[`ca90972`](https://redirect.github.com/helm/helm/commit/ca90972b3d81acb1ad9d6f80bb1770113776f06a)
(Chris Berry)
- chore: use \[]error instead of \[]string
[`a9e2075`](https://redirect.github.com/helm/helm/commit/a9e20757c6b348da7db789f81a874cdb5b315e9f)
(Evans Mungai)
- Update cmd/helm/profiling.go
[`996ad84`](https://redirect.github.com/helm/helm/commit/996ad8445379b44bbefc9116e8b5a0cdd9bce259)
(Evans Mungai)
- chore: update profiling doc in CONTRIBUTING.md
[`867c97e`](https://redirect.github.com/helm/helm/commit/867c97e70d42f523a223973770149c7faeb6f04f)
(Evans Mungai)
- Update CONTRIBUTING guide
[`af24101`](https://redirect.github.com/helm/helm/commit/af2410192d0854f1431efaa9858b2d830f3312c4)
(Evans Mungai)
- Prefer environment variables to CLI flags
[`c7dfa87`](https://redirect.github.com/helm/helm/commit/c7dfa87f9d5640ed07b76bfda24dd1e3db635690)
(Evans Mungai)
- Fix linter warning
[`b39411a`](https://redirect.github.com/helm/helm/commit/b39411a66829d711168de543fa823cbd5e749ca4)
(Evans Mungai)
- Move pprof paths to HELM_PPROF env variable
[`4c50f01`](https://redirect.github.com/helm/helm/commit/4c50f01046be19467eb99495cbce51319700b81a)
(Evans Mungai)
- Update CONTRIBUTING.md
[`3b43f7b`](https://redirect.github.com/helm/helm/commit/3b43f7be60c54edc3ea7d76d6253bb5d12eece32)
(Evans Mungai)
- Update CONTRIBUTING.md
[`a32e11b`](https://redirect.github.com/helm/helm/commit/a32e11bdc3af0250a10ce6bbb8a2dc566f66cd3d)
(Evans Mungai)
- Additional review fixes from PR
[`483ebf9`](https://redirect.github.com/helm/helm/commit/483ebf915da5ab2c2bbdb46644bca2fe22ae51f9)
(Evans Mungai)
- feat: Add flags to enable CPU and memory profiling
[`461197f`](https://redirect.github.com/helm/helm/commit/461197f9c62f4c37ad2b727962db95378c3f3073)
(Evans Mungai)
- build(deps): bump github.com/distribution/distribution/v3
[`e7fa545`](https://redirect.github.com/helm/helm/commit/e7fa545819dbb51c8f94a1936174ee48b52db694)
(dependabot\[bot])
- build(deps): bump github.com/spf13/cobra from 1.8.1 to 1.9.1
[`d1687ba`](https://redirect.github.com/helm/helm/commit/d1687ba8d9c94c711215dc49ad88117585c9c765)
(dependabot\[bot])
- Moving to SetOut and SetErr for Cobra
[`4c2f88b`](https://redirect.github.com/helm/helm/commit/4c2f88b2abb53ee04d6003e67d6efa44b29eb832)
(Matt Farina)
- build(deps): bump the k8s-io group with 7 updates
[`a2413aa`](https://redirect.github.com/helm/helm/commit/a2413aa26dd873a782b8f96cac424991b223c3da)
(dependabot\[bot])
- build(deps): bump golang.org/x/crypto from 0.32.0 to 0.33.0
[`959d643`](https://redirect.github.com/helm/helm/commit/959d643b977b2b1571fe3ccd21d8e9cbfe1b4ea3)
(dependabot\[bot])
- build(deps): bump golang.org/x/term from 0.28.0 to 0.29.0
[`3a87c68`](https://redirect.github.com/helm/helm/commit/3a87c684e77eef5fcd5bb3b2c51f8e739b871a7c)
(dependabot\[bot])
- build(deps): bump golang.org/x/text from 0.21.0 to 0.22.0
[`711cef8`](https://redirect.github.com/helm/helm/commit/711cef8d1c0602a949b39be4c6eafe118e2fc30c)
(dependabot\[bot])
- build(deps): bump github.com/spf13/pflag from 1.0.5 to 1.0.6
[`7680623`](https://redirect.github.com/helm/helm/commit/76806237ad36e527d2e6158f80ab84f237c52ec3)
(dependabot\[bot])
- build(deps): bump github.com/cyphar/filepath-securejoin
[`03747d9`](https://redirect.github.com/helm/helm/commit/03747d963f7e51e7fd1eac8a768f2791bf25a7e3)
(dependabot\[bot])
- build(deps): bump github.com/evanphx/json-patch
[`f1db83f`](https://redirect.github.com/helm/helm/commit/f1db83f78f06ee017492b471bb2c19ff2249aacd)
(dependabot\[bot])
- build(deps): bump the k8s-io group with 7 updates
[`3bc3751`](https://redirect.github.com/helm/helm/commit/3bc3751f7019d2a1f5b922421d398f9ddd880106)
(dependabot\[bot])
- fix: check group for resource info match
[`2ebce78`](https://redirect.github.com/helm/helm/commit/2ebce786ba295a3ca7a281c3ffd78086cf561f89)
(Jiasheng Zhu)
- Bump github.com/cyphar/filepath-securejoin from 0.3.6 to 0.4.0
[`8e86e76`](https://redirect.github.com/helm/helm/commit/8e86e76d50a9f365e79b6211100dd4308289da6c)
(dependabot\[bot])
- add test for nullifying nested global value
[`326c1e3`](https://redirect.github.com/helm/helm/commit/326c1e3f6782a7ed53980ac010c44689c0ae4fb6)
(Ryan Hockstad)
- Ensuring the file paths are clean prior to passing to securejoin
[`fba9d08`](https://redirect.github.com/helm/helm/commit/fba9d08dced3583ef88fc235b307995830173aa9)
(Matt Farina)
- Bump github.com/containerd/containerd from 1.7.24 to 1.7.25
[`a79be7d`](https://redirect.github.com/helm/helm/commit/a79be7d5d348525257ea3be3305f7343522bb083)
(dependabot\[bot])
- Bump golang.org/x/crypto from 0.31.0 to 0.32.0
[`b029d74`](https://redirect.github.com/helm/helm/commit/b029d74a52009d4e14d406bcc952d2191e0200f0)
(dependabot\[bot])
- Bump golang.org/x/term from 0.27.0 to 0.28.0
[`a1c0ae8`](https://redirect.github.com/helm/helm/commit/a1c0ae88a7ccbda9b5915bac196db54e677fd1d2)
(dependabot\[bot])
- bump version to v3.17.0
[`d6db69e`](https://redirect.github.com/helm/helm/commit/d6db69ed66a3b127a96e3339a00ea84586310868)
(Matt Farina)
- Bump github.com/moby/term from 0.5.0 to 0.5.2
[`54ffefb`](https://redirect.github.com/helm/helm/commit/54ffefbcf79b5d835c29a730ea7aef6afd9109ee)
(dependabot\[bot])
- Add test case for removing an entire object
[`ef2eb55`](https://redirect.github.com/helm/helm/commit/ef2eb552837446fe8a5a91bc68abf4d9eab685a8)
(Ryan Hockstad)
- Tests for bugfix: Override subcharts with null values
[#&#8203;12879](https://redirect.github.com/helm/helm/issues/12879)
[`60fcce1`](https://redirect.github.com/helm/helm/commit/60fcce18d1646e266dfe8191e25a85dcdb7b0038)
(Scott Rigby)
- feat: Added multi-platform plugin hook support to v3 Signed-off-by:
Steve Hipwell <steve.hipwell@gmail.com>
[`83dddb1`](https://redirect.github.com/helm/helm/commit/83dddb183946266289e55eb3c3d8c8a35b24b34a)
(Andrew Block)
- This commit fixes the issue where the yaml.Unmarshaller converts all
int values into float64, this passes in option to decoder, which enables
conversion of int into .
[`0a6834f`](https://redirect.github.com/helm/helm/commit/0a6834fdf060b4fbc4e1ea4bcb85908891539d48)
(Althaf M)
- merge null child chart objects
[`5a58751`](https://redirect.github.com/helm/helm/commit/5a58751a053ea59b88399487a5f0f8f5c27b9461)
(Ryan Hockstad)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-03 01:15:49 +02:00
TrueCharts Bot 5403c2fefa chore(flux): update image kube-prometheus-stack 72.8.0 → 72.9.1 (clustertool) (#35892)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[kube-prometheus-stack](https://redirect.github.com/prometheus-operator/kube-prometheus)
([source](https://redirect.github.com/prometheus-community/helm-charts))
| minor | `72.8.0` -> `72.9.1` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>prometheus-community/helm-charts
(kube-prometheus-stack)</summary>

###
[`v72.9.1`](https://redirect.github.com/prometheus-community/helm-charts/releases/tag/kube-prometheus-stack-72.9.1)

[Compare
Source](https://redirect.github.com/prometheus-community/helm-charts/compare/kube-prometheus-stack-72.9.0...kube-prometheus-stack-72.9.1)

kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards,
and Prometheus rules combined with documentation and scripts to provide
easy to operate end-to-end Kubernetes cluster monitoring with Prometheus
using the Prometheus Operator.

#### What's Changed

- \[kube-prometheus-stack] Add the possibility to specify
matchConditions for admissionWebhooks objects by
[@&#8203;MauritsMonteyne](https://redirect.github.com/MauritsMonteyne)
in
[https://github.com/prometheus-community/helm-charts/pull/5723](https://redirect.github.com/prometheus-community/helm-charts/pull/5723)

#### New Contributors

- [@&#8203;MauritsMonteyne](https://redirect.github.com/MauritsMonteyne)
made their first contribution in
[https://github.com/prometheus-community/helm-charts/pull/5723](https://redirect.github.com/prometheus-community/helm-charts/pull/5723)

**Full Changelog**:
https://github.com/prometheus-community/helm-charts/compare/kube-state-metrics-5.35.0...kube-prometheus-stack-72.9.1

###
[`v72.9.0`](https://redirect.github.com/prometheus-community/helm-charts/releases/tag/kube-prometheus-stack-72.9.0)

[Compare
Source](https://redirect.github.com/prometheus-community/helm-charts/compare/kube-prometheus-stack-72.8.0...kube-prometheus-stack-72.9.0)

kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards,
and Prometheus rules combined with documentation and scripts to provide
easy to operate end-to-end Kubernetes cluster monitoring with Prometheus
using the Prometheus Operator.

#### What's Changed

- \[kube-prometheus-stack] Update kube-prometheus-stack dependency
non-major updates by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/prometheus-community/helm-charts/pull/5717](https://redirect.github.com/prometheus-community/helm-charts/pull/5717)

**Full Changelog**:
https://github.com/prometheus-community/helm-charts/compare/prometheus-27.18.0...kube-prometheus-stack-72.9.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-03 01:15:35 +02:00
TrueCharts Bot cf1348e5ea chore(helm): update image hello-world digest to 0b6a027 (#35862)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| hello-world | digest | `dd01f97` -> `0b6a027` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:14:05 +02:00
TrueCharts Bot 5fc03de737 chore(helm): update image twinproduction/gatus v5.17.0 → v5.18.1 (#35913)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [twinproduction/gatus](https://redirect.github.com/TwiN/gatus) | minor
| `a8c53f9` -> `9752556` |

---

> [!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>TwiN/gatus (twinproduction/gatus)</summary>

###
[`v5.18.1`](https://redirect.github.com/TwiN/gatus/releases/tag/v5.18.1)

[Compare
Source](https://redirect.github.com/TwiN/gatus/compare/v5.18.0...v5.18.1)

#### What's Changed

- revert: fix(client): Use libcap to fix icmp by
[@&#8203;TwiN](https://redirect.github.com/TwiN) in
[https://github.com/TwiN/gatus/pull/1127](https://redirect.github.com/TwiN/gatus/pull/1127)

**Full Changelog**:
https://github.com/TwiN/gatus/compare/v5.18.0...v5.18.1

###
[`v5.18.0`](https://redirect.github.com/TwiN/gatus/releases/tag/v5.18.0)

[Compare
Source](https://redirect.github.com/TwiN/gatus/compare/v5.17.0...v5.18.0)

#### What's Changed

- feat: Make maximum number of results and events configurable by
[@&#8203;TwiN](https://redirect.github.com/TwiN) in
[https://github.com/TwiN/gatus/pull/1110](https://redirect.github.com/TwiN/gatus/pull/1110)
- feat(api): Add endpoint to retrieve response time by
[@&#8203;aalmenar](https://redirect.github.com/aalmenar) in
[https://github.com/TwiN/gatus/pull/1070](https://redirect.github.com/TwiN/gatus/pull/1070)
- feat(alerting): Add optional ttl parameter to pushover notifications
by [@&#8203;aalmenar](https://redirect.github.com/aalmenar) in
[https://github.com/TwiN/gatus/pull/1050](https://redirect.github.com/TwiN/gatus/pull/1050)
- feat(alerting): Add device support for pushover alerts by
[@&#8203;twiesing](https://redirect.github.com/twiesing) in
[https://github.com/TwiN/gatus/pull/1089](https://redirect.github.com/TwiN/gatus/pull/1089)
- fix(client): Correctly parse hostname for ICMP endpoint when using
IPv6 by [@&#8203;TwiN](https://redirect.github.com/TwiN) in
[https://github.com/TwiN/gatus/pull/1043](https://redirect.github.com/TwiN/gatus/pull/1043)
- fix(ci,deps): Bump Go version to 1.24.1 and update some dependencies
by [@&#8203;TwiN](https://redirect.github.com/TwiN) in
[https://github.com/TwiN/gatus/pull/1047](https://redirect.github.com/TwiN/gatus/pull/1047)
- fix(client): Use libcap to fix icmp not working in containers as
non-root by
[@&#8203;thequailman](https://redirect.github.com/thequailman) in
[https://github.com/TwiN/gatus/pull/1056](https://redirect.github.com/TwiN/gatus/pull/1056)
- fix(alerting): Escape custom result errors by
[@&#8203;daragao](https://redirect.github.com/daragao) in
[https://github.com/TwiN/gatus/pull/1095](https://redirect.github.com/TwiN/gatus/pull/1095)
- fix(alerting): Support Twilio overrides for `text-twilio-triggered`
and `text-twilio-resolved` by
[@&#8203;imrelaszlo](https://redirect.github.com/imrelaszlo) in
[https://github.com/TwiN/gatus/pull/1120](https://redirect.github.com/TwiN/gatus/pull/1120)
- fix(alerting): Gitea issues not being closed by
[@&#8203;miggland](https://redirect.github.com/miggland) in
[https://github.com/TwiN/gatus/pull/1122](https://redirect.github.com/TwiN/gatus/pull/1122)
- fix(api): Escape endpoint key in URL by
[@&#8203;dpkrane](https://redirect.github.com/dpkrane) in
[https://github.com/TwiN/gatus/pull/1114](https://redirect.github.com/TwiN/gatus/pull/1114)
- perf(sqlite): Create indices to fix performance issue by
[@&#8203;g-hodgson-tup](https://redirect.github.com/g-hodgson-tup) in
[https://github.com/TwiN/gatus/pull/1106](https://redirect.github.com/TwiN/gatus/pull/1106)
- docs: Update list of characters sanitised in endpoint key by
[@&#8203;mloskot](https://redirect.github.com/mloskot) in
[https://github.com/TwiN/gatus/pull/1099](https://redirect.github.com/TwiN/gatus/pull/1099)

#### New Contributors

- [@&#8203;thequailman](https://redirect.github.com/thequailman) made
their first contribution in
[https://github.com/TwiN/gatus/pull/1056](https://redirect.github.com/TwiN/gatus/pull/1056)
- [@&#8203;aalmenar](https://redirect.github.com/aalmenar) made their
first contribution in
[https://github.com/TwiN/gatus/pull/1050](https://redirect.github.com/TwiN/gatus/pull/1050)
- [@&#8203;twiesing](https://redirect.github.com/twiesing) made their
first contribution in
[https://github.com/TwiN/gatus/pull/1089](https://redirect.github.com/TwiN/gatus/pull/1089)
- [@&#8203;daragao](https://redirect.github.com/daragao) made their
first contribution in
[https://github.com/TwiN/gatus/pull/1095](https://redirect.github.com/TwiN/gatus/pull/1095)
- [@&#8203;mloskot](https://redirect.github.com/mloskot) made their
first contribution in
[https://github.com/TwiN/gatus/pull/1099](https://redirect.github.com/TwiN/gatus/pull/1099)
- [@&#8203;g-hodgson-tup](https://redirect.github.com/g-hodgson-tup)
made their first contribution in
[https://github.com/TwiN/gatus/pull/1106](https://redirect.github.com/TwiN/gatus/pull/1106)
- [@&#8203;imrelaszlo](https://redirect.github.com/imrelaszlo) made
their first contribution in
[https://github.com/TwiN/gatus/pull/1120](https://redirect.github.com/TwiN/gatus/pull/1120)
- [@&#8203;miggland](https://redirect.github.com/miggland) made their
first contribution in
[https://github.com/TwiN/gatus/pull/1122](https://redirect.github.com/TwiN/gatus/pull/1122)
- [@&#8203;dpkrane](https://redirect.github.com/dpkrane) made their
first contribution in
[https://github.com/TwiN/gatus/pull/1114](https://redirect.github.com/TwiN/gatus/pull/1114)

**Full Changelog**:
https://github.com/TwiN/gatus/compare/v5.17.0...v5.18.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-03 01:13:13 +02:00
TrueCharts Bot bf111accbe chore(helm): update image ghcr.io/open-webui/open-webui digest to 4583b43 (#35859)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/open-webui/open-webui | digest | `a73dcd1` -> `4583b43` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:12:07 +02:00
TrueCharts Bot 6af7f05c76 chore(helm): update webtop (#35873) 2025-06-03 01:10:58 +02:00
TrueCharts Bot 7dc15c332f chore(helm): update image ghcr.io/linuxserver/lazylibrarian digest to 3be817a (#35851) 2025-06-03 01:10:56 +02:00
TrueCharts Bot 21e7b5925e chore(helm): update image ghcr.io/linuxserver/remmina digest to 0905dc6 (#35855)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/remmina](https://redirect.github.com/linuxserver/docker-remmina/packages)
([source](https://redirect.github.com/linuxserver/docker-remmina)) |
digest | `f2b2eab` -> `0905dc6` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:10:48 +02:00
TrueCharts Bot 361a656f89 chore(helm): update image docker.io/searxng/searxng digest to 5d35e8e (#35837)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/searxng/searxng | digest | `0979700` -> `5d35e8e` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:09:42 +02:00
TrueCharts Bot bef240923b chore(helm): update image public.ecr.aws/bitnami/solr digest to 4361394 (#35870)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[public.ecr.aws/bitnami/solr](https://redirect.github.com/bitnami/containers)
([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/solr))
| digest | `003e411` -> `4361394` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 01:05:12 +02:00
TrueCharts Bot 4f7264ed1e chore(flux): update image ghcr.io/fluxcd/flux-manifests v2.6.0 → v2.6.1 (clustertool) (#35875)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/fluxcd/flux-manifests](https://redirect.github.com/fluxcd/flux2)
| patch | `v2.6.0` -> `v2.6.1` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>fluxcd/flux2 (ghcr.io/fluxcd/flux-manifests)</summary>

###
[`v2.6.1`](https://redirect.github.com/fluxcd/flux2/releases/tag/v2.6.1)

[Compare
Source](https://redirect.github.com/fluxcd/flux2/compare/v2.6.0...v2.6.1)

#### Highlights

Flux v2.6.1 is a patch release that comes with various fixes. Users are
encouraged to upgrade for the best experience.

Fixes:

- Fix a bug introduced in image-reflector-controller v0.35.0 that was
causing spurious error events for policies during image repository
reconciliation.
- Fix excessive logging in image-reflector-controller after a restart
when the image tags cache is empty.

#### Components changelog

- image-reflector-controller
[v0.35.1](https://redirect.github.com/fluxcd/image-reflector-controller/blob/v0.35.1/CHANGELOG.md)

#### What's Changed

- \[release/v2.6.x] Update image-reflector-controller to v0.35.1 by
[@&#8203;fluxcdbot](https://redirect.github.com/fluxcdbot) in
[https://github.com/fluxcd/flux2/pull/5382](https://redirect.github.com/fluxcd/flux2/pull/5382)
- \[release/v2.6.x] Add digest pinning to image automation testing by
[@&#8203;fluxcdbot](https://redirect.github.com/fluxcdbot) in
[https://github.com/fluxcd/flux2/pull/5384](https://redirect.github.com/fluxcd/flux2/pull/5384)

**Full Changelog**:
https://github.com/fluxcd/flux2/compare/v2.6.0...v2.6.1

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-03 01:01:48 +02:00
TrueCharts Bot c825ec4b3b chore(helm): update image ghcr.io/home-operations/prowlarr digest to fc2bf7c (#35839)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/home-operations/prowlarr](https://ghcr.io/home-operations/prowlarr)
([source](https://redirect.github.com/Prowlarr/Prowlarr)) | digest |
`a7d3dd2` -> `fc2bf7c` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:58:36 +02:00
TrueCharts Bot 47c153215e chore(helm): update image ghcr.io/alexta69/metube 2025-05-27 → 2025-05-30 (#35883)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/alexta69/metube | patch | `35b8e48` -> `5f1f5cf` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-03 00:58:16 +02:00
TrueCharts Bot d82a18df15 chore(helm): update image lscr.io/linuxserver/blender digest to d466705 (#35863)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/blender | digest | `dc91075` -> `d466705` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:57:28 +02:00
TrueCharts Bot a8ab6ae975 chore(helm): update image public.ecr.aws/bitnami/memcached digest to 4a1ccf9 (#35867) 2025-06-03 00:57:08 +02:00
TrueCharts Bot ed99e328ac chore(helm): update image ghcr.io/linuxserver/deluge digest to 1356404 (#35847)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/deluge](https://redirect.github.com/linuxserver/docker-deluge/packages)
([source](https://redirect.github.com/linuxserver/docker-deluge)) |
digest | `4fac136` -> `1356404` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-02 22:57:01 +00:00
TrueCharts Bot c1e7fcc268 chore(helm): update image ghcr.io/linuxserver/medusa digest to 80974e1 (#35852)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/medusa](https://redirect.github.com/linuxserver/docker-medusa/packages)
([source](https://redirect.github.com/linuxserver/docker-medusa)) |
digest | `5460d39` -> `80974e1` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:56:47 +02:00
TrueCharts Bot b1a62c4247 chore(helm): update image ghcr.io/mintplex-labs/anything-llm digest to 7856329 (#35858)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/mintplex-labs/anything-llm | digest | `801b457` -> `7856329` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:55:57 +02:00
TrueCharts Bot aef8a7b65c chore(helm): update image docker.io/revenz/fileflows digest to bcf1852 (#35836)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/revenz/fileflows | digest | `90263cb` -> `bcf1852` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:55:36 +02:00
TrueCharts Bot 08fb6cf16c chore(helm): update image docker.io/diygod/rsshub digest to 7ba593a (#35827) 2025-06-03 00:53:41 +02:00
TrueCharts Bot d61ddaa3c9 chore(helm): update image docker.io/machines/filestash digest to e4c0c05 (#35834)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/machines/filestash | digest | `ef88115` -> `e4c0c05` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:53:38 +02:00
TrueCharts Bot 5e043a2b5e chore(helm): update image docker.io/itzg/mc-backup digest to 66d3b39 (#35830)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/itzg/mc-backup | digest | `f163c0b` -> `66d3b39` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:53:22 +02:00
TrueCharts Bot a67016acf3 chore(helm): update image docker.io/alpine/socat digest to bebc61b (#35824) 2025-06-03 00:51:12 +02:00
TrueCharts Bot cae9c8c635 chore(helm): update image docker.io/nginxinc/nginx-unprivileged digest to fe7beb9 (#35835)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/nginxinc/nginx-unprivileged](https://redirect.github.com/nginx/docker-nginx-unprivileged)
| digest | `4261dc9` -> `fe7beb9` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:51:06 +02:00
TrueCharts Bot b7a3e7692c chore(helm): update image docker.io/foxxmd/multi-scrobbler digest to 9f5eed9 (#35829) 2025-06-03 00:50:06 +02:00
TrueCharts Bot 3c8515103d chore(helm): update image docker.io/clamav/clamav digest to a3885ee (#35826) 2025-06-03 00:49:59 +02:00
TrueCharts Bot 9cd51b7be5 chore(helm): update image docker.io/factoriotools/factorio digest to d984b83 (#35828) 2025-06-03 00:49:45 +02:00
TrueCharts Bot e3c9f007e6 chore(helm): update image docker.io/automaticrippingmachine/automatic-ripping-machine digest to 5dc2cdb (#35825) 2025-06-03 00:48:17 +02:00
TrueCharts Bot 39b50bc824 chore(helm): update image docker.io/jgraph/drawio digest to 4f9f6cd (#35831)
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)) | digest |
`600e581` -> `4f9f6cd` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:48:10 +02:00
TrueCharts Bot 01d20ad227 chore(container): update alpine docker digest to 8a1f59f (#35821) 2025-06-03 00:40:32 +02:00
TrueCharts Bot 31f4d34a5f chore(container): update golang:1.24.3 docker digest to 81bf592 (#35822)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| golang | final | digest | `4c0a181` -> `81bf592` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-06-03 00:33:25 +02:00