Commit Graph

44183 Commits

Author SHA1 Message Date
TrueCharts Bot f5c5fc7b37 chore(helm): update image ghcr.io/elfhosted/lidarr 2.11.2.4629 → 2.12.4.4658 (#36169) 2025-06-10 02:12:58 +02:00
TrueCharts Bot 897b568c92 chore(helm): update image ghcr.io/linuxserver/znc 1.9.1 → 1.10.0 (#36171) 2025-06-10 02:12:56 +02:00
TrueCharts Bot 0471983bf9 chore(helm): update image ghcr.io/hotio/whisparr v3-3.0.0.1075 → v3-3.0.0.1097 (#36168) 2025-06-10 02:12:52 +02:00
TrueCharts Bot 6e84eb77f3 chore(helm): update image ghcr.io/mintplex-labs/anything-llm digest to 0cb4ee8 (#36166) 2025-06-10 02:12:44 +02:00
TrueCharts Bot dbe311e5a7 chore(helm): update image ghcr.io/emberstack/kubernetes-reflector 9.1.10 → 9.1.11 (#36167)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/emberstack/kubernetes-reflector](https://redirect.github.com/emberstack/kubernetes-reflector)
| patch | `fecba2f` -> `bb51c11` |

---

> [!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>emberstack/kubernetes-reflector
(ghcr.io/emberstack/kubernetes-reflector)</summary>

###
[`v9.1.11`](https://redirect.github.com/emberstack/kubernetes-reflector/releases/tag/v9.1.11)

[Compare
Source](https://redirect.github.com/emberstack/kubernetes-reflector/compare/v9.1.10...v9.1.11)

The release process is automated.

#### What's Changed

- Bump the all-dependencies group with 8 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/emberstack/kubernetes-reflector/pull/517](https://redirect.github.com/emberstack/kubernetes-reflector/pull/517)

**Full Changelog**:
https://github.com/emberstack/kubernetes-reflector/compare/v9.1.10...v9.1.11

</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-10 02:12:37 +02:00
TrueCharts Bot 32b31b81ea fix(website): update astro 5.9.1 → 5.9.2 (#36143)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.9.1` ->
`5.9.2`](https://renovatebot.com/diffs/npm/astro/5.9.1/5.9.2) |

---

> [!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>withastro/astro (astro)</summary>

###
[`v5.9.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#592)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.9.1...astro@5.9.2)

##### Patch Changes

-
[#&#8203;13919](https://redirect.github.com/withastro/astro/pull/13919)
[`423fe60`](https://redirect.github.com/withastro/astro/commit/423fe6048dfb4c24d198611f60a5815459efacd3)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where Astro added quotes to the CSP resources.

Only certain resources require quotes (e.g. `'self'` but not
`https://cdn.example.com`), so Astro no longer adds quotes to any
resources. You must now provide the quotes yourself for resources such
as `'self'` when necessary:

    ```diff
    export default defineConfig({
      experimental: {
        csp: {
          styleDirective: {
            resources: [
    -          "self",
    +          "'self'",
              "https://cdn.example.com"
            ]
          }
        }
      }
    })
    ```

-
[#&#8203;13914](https://redirect.github.com/withastro/astro/pull/13914)
[`76c5480`](https://redirect.github.com/withastro/astro/commit/76c5480ac0ab1f64df38c23a848f8d28f7640562)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
**BREAKING CHANGE to the experimental Content Security Policy feature
only**

Removes support for experimental Content Security Policy (CSP) when
using the `<ClientRouter />` component for view transitions.

It is no longer possible to enable experimental CSP while using Astro's
view transitions. Support was already unstable with the `<ClientRouter
/>` because CSP required making its underlying implementation
asynchronous. This caused breaking changes for several users and
therefore, this PR removes support completely.

If you are currently using the component for view transitions, please
remove the experimental CSP flag as they cannot be used together.

    ```diff
    import { defineConfig } from 'astro/config';

    export default defineConfig({
      experimental: {
    -   csp: true
       }
    });
    ```

Alternatively, to continue using experimental CSP in your project, you
can [consider migrating to the browser native View Transition
API](https://events-3bg.pages.dev/jotter/astro-view-transitions/) and
remove the `<ClientRouter />` from your project. You may be able to
achieve similar results if you are not using Astro's enhancements to the
native View Transitions and Navigation APIs.

Support might be reintroduced in future releases. You can follow this
experimental feature's development in [the CSP
RFC](https://redirect.github.com/withastro/roadmap/blob/feat/rfc-csp/proposals/0055-csp.md).

</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-10 00:11:37 +00:00
TrueCharts Bot 04b4a21bba chore(website): lock file maintenance (#36165)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

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

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-09 20:30:48 +02:00
TrueCharts Bot 9bc7f53e96 fix(website): update @astrojs/tailwind 5.1.5 → 6.0.2 (#36163)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[@astrojs/tailwind](https://docs.astro.build/en/guides/integrations-guide/tailwind/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind))
| dependencies | major | [`5.1.5` ->
`6.0.2`](https://renovatebot.com/diffs/npm/@astrojs%2ftailwind/5.1.5/6.0.2)
|

---

> [!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>withastro/astro (@&#8203;astrojs/tailwind)</summary>

###
[`v6.0.2`](https://redirect.github.com/withastro/astro/releases/tag/%40astrojs/tailwind%406.0.2)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/tailwind@6.0.1...@astrojs/tailwind@6.0.2)

##### Patch Changes

-
[#&#8203;13505](https://redirect.github.com/withastro/astro/pull/13505)
[`a98ae5b`](https://redirect.github.com/withastro/astro/commit/a98ae5b8f5c33900379012e9e253a755c0a8927e)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Updates the dependency `vite` to the latest.

###
[`v6.0.1`](https://redirect.github.com/withastro/astro/releases/tag/%40astrojs/tailwind%406.0.1)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/tailwind@6.0.0...@astrojs/tailwind@6.0.1)

##### Patch Changes

-
[#&#8203;13471](https://redirect.github.com/withastro/astro/pull/13471)
[`020c542`](https://redirect.github.com/withastro/astro/commit/020c54247909fadc2c80c89b226ba59565d12cbf)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Updates
the README to indicate that the Tailwind integration is deprecated

###
[`v6.0.0`](https://redirect.github.com/withastro/astro/releases/tag/%40astrojs/tailwind%406.0.0)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/tailwind@5.1.5...@astrojs/tailwind@6.0.0)

##### Major Changes

-
[#&#8203;13049](https://redirect.github.com/withastro/astro/pull/13049)
[`2ed4bd9`](https://redirect.github.com/withastro/astro/commit/2ed4bd90f25a3e5a183d0bc862e3b359b8289b93)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Deprecates the integration

Tailwind CSS now offers a Vite plugin which is the preferred way to use
Tailwind 4 in Astro. Please uninstall `@astrojs/tailwind` and follow the
[Tailwind documentation for manual
installation](https://tailwindcss.com/docs/installation/framework-guides/astro).

This updated major version is only provided as a convenience for
existing projects until they are able to migrate to the new plugin. It
offers no additional functionality and is no longer recommended, but may
continue to be used in your projects until it is removed entirely.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
2025-06-09 20:30:21 +02:00
TrueCharts Bot 92e9355fcd fix(deps): update module github.com/knadh/koanf/parsers/yaml v0.1.0 → v1.0.0 (clustertool) (#36161)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/knadh/koanf/parsers/yaml](https://redirect.github.com/knadh/koanf)
| require | major | `v0.1.0` -> `v1.0.0` |

---

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

---

### Release Notes

<details>
<summary>knadh/koanf (github.com/knadh/koanf/parsers/yaml)</summary>

###
[`v1.0.0`](https://redirect.github.com/knadh/koanf/releases/tag/v1.0.0)

[Compare
Source](https://redirect.github.com/knadh/koanf/compare/v0.1.0...v1.0.0)

- [`deea8ad`](https://redirect.github.com/knadh/koanf/commit/deea8ad)
Upgrade deps

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
2025-06-09 20:27:25 +02:00
TrueCharts Bot 5a8085eb55 chore(github-action): update golangci/golangci-lint-action action v7 → v8 (#36154)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[golangci/golangci-lint-action](https://redirect.github.com/golangci/golangci-lint-action)
| action | major | `9fae48a` -> `4afd733` |

---

> [!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>golangci/golangci-lint-action
(golangci/golangci-lint-action)</summary>

###
[`v8`](https://redirect.github.com/golangci/golangci-lint-action/compare/v7...v8)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint-action/compare/v7...v8)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvbWFqb3IiXX0=-->
2025-06-09 20:26:09 +02:00
TrueCharts Bot eecf2c4c84 chore(helm): update image docker.io/f0rc3/gokapi v1.9.6 → v2.0.1 (#36155)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/f0rc3/gokapi | major | `ae9094a` -> `2278851` |

---

> [!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**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
2025-06-09 20:24:21 +02:00
TrueCharts Bot 8f548c214b fix(deps): update module github.com/rs/zerolog v1.33.0 → v1.34.0 (clustertool) (#36147) 2025-06-09 20:20:01 +02:00
TrueCharts Bot f8b7f1af0a chore(helm): update image ghcr.io/ellite/wallos 3.2.0 → 3.3.0 (#36146) 2025-06-09 20:18:38 +02:00
TrueCharts Bot 9b5c989cc8 chore(helm): update image ghcr.io/mintplex-labs/anything-llm digest to 820e129 (#36140) 2025-06-09 20:17:57 +02:00
TrueCharts Bot 4fbb51f228 chore(helm): update image docker.io/diygod/rsshub digest to c55b7c2 (#36138) 2025-06-09 20:17:51 +02:00
TrueCharts Bot f47734cd9e chore(helm): update image docker.io/machines/filestash digest to bdcc804 (#36139) 2025-06-09 20:17:39 +02:00
TrueCharts Bot c672cb40b4 chore(helm): update image docker.io/cthulhoo/ttrss-web-nginx digest to bc96117 (#36137)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/cthulhoo/ttrss-web-nginx | digest | `c949431` -> `bc96117` |

---

> [!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-09 20:17:37 +02:00
TrueCharts Bot 1079320cf9 fix(deps): update module sigs.k8s.io/controller-runtime v0.20.4 → v0.21.0 (clustertool) (#36148)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[sigs.k8s.io/controller-runtime](https://redirect.github.com/kubernetes-sigs/controller-runtime)
| require | minor | `v0.20.4` -> `v0.21.0` |

---

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

---

### Release Notes

<details>
<summary>kubernetes-sigs/controller-runtime
(sigs.k8s.io/controller-runtime)</summary>

###
[`v0.21.0`](https://redirect.github.com/kubernetes-sigs/controller-runtime/releases/tag/v0.21.0)

[Compare
Source](https://redirect.github.com/kubernetes-sigs/controller-runtime/compare/v0.20.4...v0.21.0)

#### Highlights

-   Bump to Kubernetes v1.33 libraries
- Improvements for priority queue
([#&#8203;2374](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2374))
- envtest now has an option to download envtest binaries (can be used to
replace setup-envtest depending on use case)
- Metric improvements: native histograms, all Go runtime metrics are
enabled now
-   Various bug fixes
- New reviewers:
[@&#8203;troy0820](https://redirect.github.com/troy0820),
[@&#8203;JoelSpeed](https://redirect.github.com/JoelSpeed)!!

#### ⚠️ Breaking Changes

- Bump to k8s.io/\* v0.33.0 and Go 1.24
([#&#8203;3104](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3104)
[#&#8203;3142](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3142)
[#&#8203;3161](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3161)
[#&#8203;3204](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3204)
[#&#8203;3215](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3215))
- config: Stop enabling client-side ratelimiter by default
([#&#8203;3119](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3119))
- Previous behavior can be preserved by setting QPS 20 and Burst 30 on
the rest.Config
- controller: NewUnmanaged/NewTypedUnmanaged: Stop requiring a manager
([#&#8203;3141](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3141))
- reconcile: Deprecate `Result.Requeue`
([#&#8203;3107](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3107))

####  New Features

-   controller: priority queue:
- Add debug logging for the state of the priority queue
([#&#8203;3075](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3075))
- Add priority label to queue depth metric
([#&#8203;3156](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3156))
- Leverage IsInInitialList
([#&#8203;3162](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3162))
- Remove redundant WithLowPriorityWhenUnchanged in builder
([#&#8203;3168](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3168))
- Retain the priority after Reconcile
([#&#8203;3167](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3167))
- Set priority automatically in handlers
([#&#8203;3111](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3111)
[#&#8203;3152](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3152)
[#&#8203;3160](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3160)
[#&#8203;3174](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3174))
- envtest: Add Environment.KubeConfig field
([#&#8203;2278](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2278))
- envtest: Add option to download envtest binaries
([#&#8203;3135](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3135)
[#&#8203;3137](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3137))
- events: Add IsInInitialList to TypedCreateEvent
([#&#8203;3162](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3162))
- log/zap: Enable panic log level
([#&#8203;3186](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3186))
- logging: Adopt WarningHandlerWithContext
([#&#8203;3176](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3176))
- logging: Improve logging by adopting contextual logging
([#&#8203;3149](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3149))
- metrics: Adopt native histograms
([#&#8203;3165](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3165))
- metrics: Expose all Go runtime metrics
([#&#8203;3070](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3070))

#### 🐛 Bug Fixes

- apiutil: restmapper: Respect preferred version
([#&#8203;3151](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3151))
- builder: webhook: Fix custom path for webhook conflicts
([#&#8203;3102](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3102))
- cache: Clone maps to prevent data races when concurrently creating
caches using the same options
([#&#8203;3078](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3078))
- cache: Stop accumulating lists in multi-namespace cache implementation
([#&#8203;3195](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3195))
- cache: List out of global cache when present and necessary
([#&#8203;3126](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3126))
- client: Return error if pagination is used with the cached client
([#&#8203;3134](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3134))
- controller: Support WaitForSync in TypedSyncingSource
([#&#8203;3084](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3084))
- controller: priority queue: Fix behavior of rate limit option in
priorityqueue.AddWithOpts
([#&#8203;3103](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3103))
- controller: priority queue: Yet another queue_depth metric fix
([#&#8203;3085](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3085))
- controllerutil: CreateOrUpdate: Avoid panic when the MutateFn is nil
([#&#8203;2828](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2828))
- envtest: Fix nil pointer exception in Stop()
([#&#8203;3153](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3153))
- fake client: Fix data races when writing to the scheme
([#&#8203;3143](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3143))
- fake client: Use k8s.io/apimachinery/pkg/util/json to unmarshal in
fake client
([#&#8203;3208](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3208))
- log/zap: Fix verbose info lost on KubeAwareEncoder.Clone
([#&#8203;3209](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3209))
- logging: controller: Use fmt.Stringer from custom source for logging
(if available)
([#&#8203;3068](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3068))
- webhook: MultiMutatingHandler/MultiValidatingHandler: return warnings
on webhook response
([#&#8203;3223](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3223))

#### 🌱 Others

- Add troy0820 to reviewers
([#&#8203;3099](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3099))
- Add JoelSpeed to reviewers
([#&#8203;3097](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3097))
- client: Validate that unstructured objects don't require scheme
registration
([#&#8203;3138](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3138))
- controller: Mention the SkipNameValidation option in the name
validation error
([#&#8203;3170](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3170))
- docs: Clarify that controller-runtime is not a kubebuilder subproject
([#&#8203;3185](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3185))
- envtest: Export envtest.ReadCRDFiles
([#&#8203;3129](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3129))
- golangci-lint: Bump golangci-lint to v1.63.4
([#&#8203;3076](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3076))
- golangci-lint: Bump golangci-lint to v2.1.6
([#&#8203;3187](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3187))
- manager: Fix race in unit test
([#&#8203;3150](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3150))
- setup-envtest: Add RELEASE_TAG to show binary version with version
command
([#&#8203;3166](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3166))
- setup-envtest: Fix Godoc for version.Version
([#&#8203;3177](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3177))
- tests: Fix: make test fails with make: \*\*\* \[Makefile:73: test]
Error 1
([#&#8203;3125](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3125))

📖 Additionally, there have been 4 contributions to our
documentation.
([#&#8203;3116](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3116),
[#&#8203;3118](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3118),
[#&#8203;3169](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3169),
[#&#8203;3181](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3181),
[#&#8203;3193](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3193),
[#&#8203;3225](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3225))

#### Dependencies

##### Added

- github.com/klauspost/compress:
[v1.18.0](https://redirect.github.com/klauspost/compress/tree/v1.18.0)
- github.com/kylelemons/godebug:
[v1.1.0](https://redirect.github.com/kylelemons/godebug/tree/v1.1.0)
- github.com/planetscale/vtprotobuf:
[0393e58](https://redirect.github.com/planetscale/vtprotobuf/tree/0393e58)
-   go.opentelemetry.io/auto/sdk: v1.1.0
-   gopkg.in/go-jose/go-jose.v2: v2.6.3
-   sigs.k8s.io/randfill: v1.0.0

##### Changed

-   cel.dev/expr: v0.18.0 → v0.19.1
-   cloud.google.com/go/compute/metadata: v0.3.0 → v0.5.0
- github.com/cncf/xds/go: [555b57e →
b4127c9](https://redirect.github.com/cncf/xds/compare/555b57e...b4127c9)
- github.com/coreos/go-oidc: [v2.2.1+incompatible →
v2.3.0+incompatible](https://redirect.github.com/coreos/go-oidc/compare/v2.2.1...v2.3.0)
- github.com/davecgh/go-spew: [d8f796a →
v1.1.1](https://redirect.github.com/davecgh/go-spew/compare/d8f796a...v1.1.1)
- github.com/envoyproxy/go-control-plane: [v0.12.0 →
v0.13.0](https://redirect.github.com/envoyproxy/go-control-plane/compare/v0.12.0...v0.13.0)
- github.com/envoyproxy/protoc-gen-validate: [v1.0.4 →
v1.1.0](https://redirect.github.com/envoyproxy/protoc-gen-validate/compare/v1.0.4...v1.1.0)
- github.com/evanphx/json-patch/v5: [v5.9.0 →
v5.9.11](https://redirect.github.com/evanphx/json-patch/compare/v5.9.0...v5.9.11)
- github.com/golang-jwt/jwt/v4: [v4.5.0 →
v4.5.2](https://redirect.github.com/golang-jwt/jwt/compare/v4.5.0...v4.5.2)
- github.com/golang/glog: [v1.2.1 →
v1.2.2](https://redirect.github.com/golang/glog/compare/v1.2.1...v1.2.2)
- github.com/google/cel-go: [v0.22.0 →
v0.23.2](https://redirect.github.com/google/cel-go/compare/v0.22.0...v0.23.2)
- github.com/google/gnostic-models: [v0.6.8 →
v0.6.9](https://redirect.github.com/google/gnostic-models/compare/v0.6.8...v0.6.9)
- github.com/google/go-cmp: [v0.6.0 →
v0.7.0](https://redirect.github.com/google/go-cmp/compare/v0.6.0...v0.7.0)
- github.com/gorilla/websocket: [v1.5.0 →
e064f32](https://redirect.github.com/gorilla/websocket/compare/v1.5.0...e064f32)
- github.com/grpc-ecosystem/grpc-gateway/v2: [v2.20.0 →
v2.24.0](https://redirect.github.com/grpc-ecosystem/grpc-gateway/compare/v2.20.0...v2.24.0)
- github.com/jessevdk/go-flags: [v1.4.0 →
v1.6.1](https://redirect.github.com/jessevdk/go-flags/compare/v1.4.0...v1.6.1)
- github.com/onsi/ginkgo/v2: [v2.21.0 →
v2.22.0](https://redirect.github.com/onsi/ginkgo/compare/v2.21.0...v2.22.0)
- github.com/onsi/gomega: [v1.35.1 →
v1.36.1](https://redirect.github.com/onsi/gomega/compare/v1.35.1...v1.36.1)
- github.com/pmezard/go-difflib: [5d4384e →
v1.0.0](https://redirect.github.com/pmezard/go-difflib/compare/5d4384e...v1.0.0)
- github.com/prometheus/client_golang: [v1.19.1 →
v1.22.0](https://redirect.github.com/prometheus/client_golang/compare/v1.19.1...v1.22.0)
- github.com/prometheus/common: [v0.55.0 →
v0.62.0](https://redirect.github.com/prometheus/common/compare/v0.55.0...v0.62.0)
- github.com/rogpeppe/go-internal: [v1.12.0 →
v1.13.1](https://redirect.github.com/rogpeppe/go-internal/compare/v1.12.0...v1.13.1)
- github.com/stretchr/objx: [v0.5.0 →
v0.5.2](https://redirect.github.com/stretchr/objx/compare/v0.5.0...v0.5.2)
- github.com/stretchr/testify: [v1.9.0 →
v1.10.0](https://redirect.github.com/stretchr/testify/compare/v1.9.0...v1.10.0)
-   go.etcd.io/etcd/api/v3: v3.5.16 → v3.5.21
-   go.etcd.io/etcd/client/pkg/v3: v3.5.16 → v3.5.21
-   go.etcd.io/etcd/client/v2: v2.305.16 → v2.305.21
-   go.etcd.io/etcd/client/v3: v3.5.16 → v3.5.21
-   go.etcd.io/etcd/pkg/v3: v3.5.16 → v3.5.21
-   go.etcd.io/etcd/raft/v3: v3.5.16 → v3.5.21
-   go.etcd.io/etcd/server/v3: v3.5.16 → v3.5.21
-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc:
v0.53.0 → v0.58.0
- go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp: v0.53.0
→ v0.58.0
- go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc:
v1.27.0 → v1.33.0
-   go.opentelemetry.io/otel/exporters/otlp/otlptrace: v1.28.0 → v1.33.0
-   go.opentelemetry.io/otel/metric: v1.28.0 → v1.33.0
-   go.opentelemetry.io/otel/sdk: v1.28.0 → v1.33.0
-   go.opentelemetry.io/otel/trace: v1.28.0 → v1.33.0
-   go.opentelemetry.io/otel: v1.28.0 → v1.33.0
-   go.opentelemetry.io/proto/otlp: v1.3.1 → v1.4.0
-   golang.org/x/crypto: v0.28.0 → v0.36.0
-   golang.org/x/net: v0.30.0 → v0.38.0
-   golang.org/x/oauth2: v0.23.0 → v0.27.0
-   golang.org/x/sync: v0.8.0 → v0.12.0
-   golang.org/x/sys: v0.26.0 → v0.31.0
-   golang.org/x/term: v0.25.0 → v0.30.0
-   golang.org/x/text: v0.19.0 → v0.23.0
-   golang.org/x/time: v0.7.0 → v0.9.0
- google.golang.org/genproto/googleapis/api:
[`f6391c0`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/f6391c0)
→
[`e6fa225`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/e6fa225)
- google.golang.org/genproto/googleapis/rpc:
[`f6391c0`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/f6391c0)
→
[`e6fa225`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/e6fa225)
-   google.golang.org/grpc: v1.65.0 → v1.68.1
-   google.golang.org/protobuf: v1.35.1 → v1.36.5
-   k8s.io/api: v0.32.0 → v0.33.0
-   k8s.io/apiextensions-apiserver: v0.32.0 → v0.33.0
-   k8s.io/apimachinery: v0.32.0 → v0.33.0
-   k8s.io/apiserver: v0.32.0 → v0.33.0
-   k8s.io/client-go: v0.32.0 → v0.33.0
-   k8s.io/code-generator: v0.32.0 → v0.33.0
-   k8s.io/component-base: v0.32.0 → v0.33.0
- k8s.io/gengo/v2:
[`2b36238`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/2b36238)
→
[`1244d31`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/1244d31)
-   k8s.io/kms: v0.32.0 → v0.33.0
- k8s.io/kube-openapi:
[`32ad38e`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/32ad38e)
→
[`c8a335a`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/c8a335a)
- sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.31.0 →
v0.31.2
-   sigs.k8s.io/structured-merge-diff/v4: v4.4.2 → v4.6.0

##### Removed

- github.com/asaskevich/govalidator:
[f61b66f](https://redirect.github.com/asaskevich/govalidator/tree/f61b66f)
- github.com/go-kit/log:
[v0.2.1](https://redirect.github.com/go-kit/log/tree/v0.2.1)
- github.com/go-logfmt/logfmt:
[v0.5.1](https://redirect.github.com/go-logfmt/logfmt/tree/v0.5.1)
-   google.golang.org/appengine: v1.6.7
-   gopkg.in/square/go-jose.v2: v2.6.0

*Thanks to all our contributors!* 😊

</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-09 20:16:59 +02:00
TrueCharts Bot 00ea2fcdd9 fix(website): update astro-better-image-service 2.1.5 → 2.1.6 (#36144) 2025-06-09 20:14:51 +02:00
TrueCharts Bot 9567cb9d6f fix(deps): update module github.com/knadh/koanf/v2 v2.2.0 → v2.2.1 (clustertool) (#36142)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/knadh/koanf/v2](https://redirect.github.com/knadh/koanf) |
require | patch | `v2.2.0` -> `v2.2.1` |

---

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

---

### Release Notes

<details>
<summary>knadh/koanf (github.com/knadh/koanf/v2)</summary>

###
[`v2.2.1`](https://redirect.github.com/knadh/koanf/releases/tag/v2.2.1)

[Compare
Source](https://redirect.github.com/knadh/koanf/compare/v2.2.0...v2.2.1)

#### What's Changed

- Bump github.com/nats-io/nats-server/v2 from 2.9.23 to 2.10.27 in
/providers/nats by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/knadh/koanf/pull/350](https://redirect.github.com/knadh/koanf/pull/350)
- Bump golang.org/x/net from 0.36.0 to 0.38.0 in /providers/consul by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/knadh/koanf/pull/351](https://redirect.github.com/knadh/koanf/pull/351)
- Bump golang.org/x/net from 0.37.0 to 0.38.0 in /examples by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/knadh/koanf/pull/353](https://redirect.github.com/knadh/koanf/pull/353)
- changing cliflagv2 to support variadic forcedinclude parameter by
[@&#8203;kooroo](https://redirect.github.com/kooroo) in
[https://github.com/knadh/koanf/pull/357](https://redirect.github.com/knadh/koanf/pull/357)
- adds urfave/cli/v3 parser by
[@&#8203;n0cloud](https://redirect.github.com/n0cloud) in
[https://github.com/knadh/koanf/pull/361](https://redirect.github.com/knadh/koanf/pull/361)
- add toggle to split nats kv on "." delimiter by
[@&#8203;nickchomey](https://redirect.github.com/nickchomey) in
[https://github.com/knadh/koanf/pull/355](https://redirect.github.com/knadh/koanf/pull/355)

#### New Contributors

- [@&#8203;kooroo](https://redirect.github.com/kooroo) made their first
contribution in
[https://github.com/knadh/koanf/pull/357](https://redirect.github.com/knadh/koanf/pull/357)
- [@&#8203;n0cloud](https://redirect.github.com/n0cloud) made their
first contribution in
[https://github.com/knadh/koanf/pull/361](https://redirect.github.com/knadh/koanf/pull/361)
- [@&#8203;nickchomey](https://redirect.github.com/nickchomey) made
their first contribution in
[https://github.com/knadh/koanf/pull/355](https://redirect.github.com/knadh/koanf/pull/355)

**Full Changelog**:
https://github.com/knadh/koanf/compare/v2.2.0...v2.2.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-09 20:11:10 +02:00
TrueCharts Bot 59d80e833e chore(deps): update ghcr.io/siderolabs/kubelet docker tag to v1.33.1 (clustertool) (#35401)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/siderolabs/kubelet](https://redirect.github.com/siderolabs/kubelet)
| patch | `v1.33.0` -> `v1.33.1` |

---

### Release Notes

<details>
<summary>siderolabs/kubelet (ghcr.io/siderolabs/kubelet)</summary>

###
[`v1.33.1`](https://redirect.github.com/siderolabs/kubelet/compare/v1.33.0...v1.33.1)

[Compare
Source](https://redirect.github.com/siderolabs/kubelet/compare/v1.33.0...v1.33.1)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInN5c3RlbS11cGdyYWRlIiwidHlwZS9wYXRjaCJdfQ==-->
2025-06-09 16:53:08 +02:00
TrueCharts Bot 33a0195381 chore(deps): update ghcr.io/siderolabs/installer docker tag to v1.10.3 (clustertool) (#35404)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/siderolabs/installer | patch | `v1.10.1` -> `v1.10.3` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInN5c3RlbS11cGdyYWRlIiwidHlwZS9wYXRjaCJdfQ==-->
2025-06-09 16:52:50 +02:00
TrueCharts Bot 8c6d08d822 chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1999 → 0.22.2002 (#36130)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/jackett | patch | `8ba80f6` -> `f318837` |

---

> [!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-09 14:27:08 +02:00
TrueCharts Bot 099882c3af chore(helm): update image public.ecr.aws/bitnami/wordpress digest to 6de96c1 (#36125) 2025-06-09 14:25:21 +02:00
TrueCharts Bot 02a1716718 chore(helm): update image public.ecr.aws/docker/library/odoo digest to 9ed1354 (#36126) 2025-06-09 14:25:20 +02:00
TrueCharts Bot b9e05e47d4 chore(helm): update image ghcr.io/taxel/plextraktsync 0.34.10 → 0.34.11 (#36133)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/taxel/plextraktsync](https://redirect.github.com/Taxel/PlexTraktSync)
| patch | `aa39f34` -> `ea2ffc8` |

---

> [!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>Taxel/PlexTraktSync (ghcr.io/taxel/plextraktsync)</summary>

###
[`v0.34.11`](https://redirect.github.com/Taxel/PlexTraktSync/compare/0.34.10...0.34.11)

[Compare
Source](https://redirect.github.com/Taxel/PlexTraktSync/compare/0.34.10...0.34.11)

</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-09 14:25:14 +02:00
TrueCharts Bot e08bc10ba8 chore(helm): update webtop (#36129)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/webtop | digest | `a5bd987` -> `b8982c6` |
| lscr.io/linuxserver/webtop | digest | `fb3aac8` -> `3939a21` |
| lscr.io/linuxserver/webtop | digest | `64a9a9e` -> `71b3566` |
| lscr.io/linuxserver/webtop | digest | `0f63500` -> `922e1ed` |
| lscr.io/linuxserver/webtop | digest | `1335d5f` -> `0faa8ef` |
| lscr.io/linuxserver/webtop | digest | `250c46a` -> `a74d1a4` |

---

> [!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.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- 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-09 14:25:07 +02:00
TrueCharts Bot 8f429ce4e3 chore(helm): update image ghcr.io/linuxserver/healthchecks 3.10.20250526 → 3.10.20250609 (#36132)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/healthchecks](https://redirect.github.com/linuxserver/docker-healthchecks/packages)
([source](https://redirect.github.com/linuxserver/docker-healthchecks))
| patch | `ac500ff` -> `97d6cc4` |

---

> [!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-09 14:24:23 +02:00
TrueCharts Bot 986a8f989c chore(helm): update image ghcr.io/elfhosted/nzbhydra2 7.14.1 → 7.14.2 (#36131)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/elfhosted/nzbhydra2](https://redirect.github.com/theotherp/nzbhydra2)
| patch | `271176f` -> `742e74a` |

---

> [!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>theotherp/nzbhydra2 (ghcr.io/elfhosted/nzbhydra2)</summary>

###
[`v7.14.2`](https://redirect.github.com/theotherp/nzbhydra2/blob/HEAD/changelog.md#v7142-2025-06-09)

[Compare
Source](https://redirect.github.com/theotherp/nzbhydra2/compare/v7.14.1...v7.14.2)

**Fixed** Increased checking delay for nzb.su/life even more as some
users were still rate limited. See <a
href="https://redirect.github.com/theotherp/nzbhydra2/issues/990">[#&#8203;990](https://redirect.github.com/theotherp/nzbhydra2/issues/990)</a>

**Fixed** Increased timeout when sending NZBs to Torbox. The initial
value was too low because I didn't consider that sending NZBs for huge
files would take longer for a downloader that's not on the local
network. The timeout is now a generous 90 seconds which should allow
uploading an NZB for a 75GB result with 1MBit/s. If that's now enough
what are you even doing?

</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-09 14:23:36 +02:00
TrueCharts Bot 4ce9094d4b chore(helm): update image ghcr.io/home-operations/theme-park 1.20.1 → 1.21.0 (#36135)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/home-operations/theme-park](https://ghcr.io/home-operations/theme-park)
([source](https://redirect.github.com/themepark-dev/theme.park)) | minor
| `810bc35` -> `f4be0ed` |

---

> [!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>themepark-dev/theme.park
(ghcr.io/home-operations/theme-park)</summary>

###
[`v1.21.0`](https://redirect.github.com/themepark-dev/theme.park/releases/tag/1.21.0)

[Compare
Source](https://redirect.github.com/themepark-dev/theme.park/compare/1.20.1...1.21.0)

<!-- Release notes generated using configuration in .github/release.yml
at master -->

#### What's Changed

#### Added

- [Adding support for
Docmost](https://redirect.github.com/themepark-dev/theme.park/commit/983cbf709d52867f4dd8245039eedd54494a9e61)

https://docmost.com/


![image](https://redirect.github.com/user-attachments/assets/498cebb4-a12c-485e-8e95-6f42b126ce5b)

#### Fixed

- 💄Fixing CSS Issues in sabnzbd-base.css by
[@&#8203;zdhoward](https://redirect.github.com/zdhoward) in
[https://github.com/themepark-dev/theme.park/pull/680](https://redirect.github.com/themepark-dev/theme.park/pull/680)
- 💄[Fix for radarr info label colors on the /movie/xxxx
pages.](https://redirect.github.com/themepark-dev/theme.park/commit/98dff13cefb5cce83ed919813dbcfebcff71de34)

#### New Contributors

- [@&#8203;zdhoward](https://redirect.github.com/zdhoward) made their
first contribution in
[https://github.com/themepark-dev/theme.park/pull/680](https://redirect.github.com/themepark-dev/theme.park/pull/680)

**Full Changelog**:
https://github.com/themepark-dev/theme.park/compare/1.20.1...1.21.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-09 14:23:27 +02:00
TrueCharts Bot d5c67e5416 chore(helm): update image ghcr.io/manyfold3d/manyfold 0.111.2 → 0.112.0 (#36136)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/manyfold3d/manyfold](https://redirect.github.com/manyfold3d/manyfold)
| minor | `ac59d83` -> `b3a2426` |

---

> [!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>manyfold3d/manyfold (ghcr.io/manyfold3d/manyfold)</summary>

###
[`v0.112.0`](https://redirect.github.com/manyfold3d/manyfold/releases/tag/v0.112.0)

[Compare
Source](https://redirect.github.com/manyfold3d/manyfold/compare/v0.111.2...v0.112.0)

This release brings improvements to ActivityPub federation, making it
easier to browse and follow content on other servers, whether you're in
Manyfold or on another Fediverse platform like Mastodon. We have a brand
new translation into Japanese, and there's also a new option to hide
Problems in bulk, which will should make managing large collections a
bit easier.

#### What's Changed

#####  New Features 

- Hide all selected problems at once by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4285](https://redirect.github.com/manyfold3d/manyfold/pull/4285)
- Render previews for remote models by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4294](https://redirect.github.com/manyfold3d/manyfold/pull/4294)
- Show previews for remote collections by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4295](https://redirect.github.com/manyfold3d/manyfold/pull/4295)
- Show Creators and Collection on preview cards for federated items by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4302](https://redirect.github.com/manyfold3d/manyfold/pull/4302)
- Post ActivityPub Notes for publishing models and collections, updating
models, and adding models to collections by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4316](https://redirect.github.com/manyfold3d/manyfold/pull/4316)
- Add copy buttons for fediverse handle by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4319](https://redirect.github.com/manyfold3d/manyfold/pull/4319)
- New Japanese Translation by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4321](https://redirect.github.com/manyfold3d/manyfold/pull/4321)

##### 🐛 Bug Fixes 🐛

- Restrict creator/collection choice in forms to be editable ones only
by [@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4286](https://redirect.github.com/manyfold3d/manyfold/pull/4286)
- Fix image mime type in activitypub previews by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4291](https://redirect.github.com/manyfold3d/manyfold/pull/4291)
- Fix incorrect syntax in oembed iframes by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4292](https://redirect.github.com/manyfold3d/manyfold/pull/4292)
- Add space between title and sensitive content icon by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4299](https://redirect.github.com/manyfold3d/manyfold/pull/4299)
- Fix Y-up in refactored renderer by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4301](https://redirect.github.com/manyfold3d/manyfold/pull/4301)
- Add summary field to ActivityPub Notes so that Mastodon CWs work by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4303](https://redirect.github.com/manyfold3d/manyfold/pull/4303)
- Ensure post-create activity jobs are unique by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4304](https://redirect.github.com/manyfold3d/manyfold/pull/4304)
- Fix ActivityPub hashtag syntax by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4306](https://redirect.github.com/manyfold3d/manyfold/pull/4306)
- Fix problem with uppercase filenames in model previews by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4310](https://redirect.github.com/manyfold3d/manyfold/pull/4310)
- Fix hashtag display in Mastodon compatibility Notes by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4314](https://redirect.github.com/manyfold3d/manyfold/pull/4314)
- Fix remote follow buttons by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4318](https://redirect.github.com/manyfold3d/manyfold/pull/4318)

##### 🛠️ Other Improvements 🛠️

- Refresh file metadata when fixing nil file sizes by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4230](https://redirect.github.com/manyfold3d/manyfold/pull/4230)
- Add more common subfolders for automatic merging by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4231](https://redirect.github.com/manyfold3d/manyfold/pull/4231)
- Collapse ignored problems by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4284](https://redirect.github.com/manyfold3d/manyfold/pull/4284)
- Include preview image/video/html in Activitypub actors by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4290](https://redirect.github.com/manyfold3d/manyfold/pull/4290)
- Include name and caption in ActivityPub preview objects by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4293](https://redirect.github.com/manyfold3d/manyfold/pull/4293)
- Refactor renderer partial by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4298](https://redirect.github.com/manyfold3d/manyfold/pull/4298)
- Add more creator/collection details to ActivityPub actors that have
them by [@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4300](https://redirect.github.com/manyfold3d/manyfold/pull/4300)
- Translation updates across all current languages by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/4320](https://redirect.github.com/manyfold3d/manyfold/pull/4320)

**Full Changelog**:
https://github.com/manyfold3d/manyfold/compare/v0.111.2...v0.112.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-09 14:20:54 +02:00
TrueCharts Bot 3805e93ef4 fix(deps): update module github.com/go-git/go-git/v5 v5.16.1 → v5.16.2 (clustertool) (#36134)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/go-git/go-git/v5](https://redirect.github.com/go-git/go-git)
| require | patch | `v5.16.1` -> `v5.16.2` |

---

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

---

### Release Notes

<details>
<summary>go-git/go-git (github.com/go-git/go-git/v5)</summary>

###
[`v5.16.2`](https://redirect.github.com/go-git/go-git/releases/tag/v5.16.2)

[Compare
Source](https://redirect.github.com/go-git/go-git/compare/v5.16.1...v5.16.2)

#### What's Changed

- utils: fix diff so subpaths work for sparse checkouts, fixes 1455 to
releases/v5.x by [@&#8203;kane8n](https://redirect.github.com/kane8n) in
[https://github.com/go-git/go-git/pull/1567](https://redirect.github.com/go-git/go-git/pull/1567)

**Full Changelog**:
https://github.com/go-git/go-git/compare/v5.16.1...v5.16.2

</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-09 14:19:45 +02:00
TrueCharts Bot 605a3d724f chore(helm): update image tccr.io/tccr/nextcloud-fpm digest to 181a0a0 (#36128)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[tccr.io/tccr/nextcloud-fpm](https://redirect.github.com/truecharts/public)
| digest | `ba0ee2a` -> `181a0a0` |

---

> [!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-09 14:17:05 +02:00
TrueCharts Bot e42998ca8f chore(helm): update image lscr.io/linuxserver/calibre-web digest to 0b1eec4 (#36123) 2025-06-09 14:15:59 +02:00
TrueCharts Bot a783864ff5 chore(helm): update image seaduboi/broadcast-box digest to 735d1ea (#36127) 2025-06-09 14:15:58 +02:00
TrueCharts Bot cd9505cc45 chore(helm): update image public.ecr.aws/bitnami/matomo digest to 58d2b5d (#36124)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[public.ecr.aws/bitnami/matomo](https://redirect.github.com/bitnami/containers)
([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/matomo))
| digest | `2191294` -> `58d2b5d` |

---

> [!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-09 14:15:53 +02:00
TrueCharts Bot 520aadd7ba chore(helm): update image ghcr.io/linuxserver/openvscode-server digest to 4c299c2 (#36122)
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 | `1f36b9a` -> `4c299c2` |

---

> [!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-09 14:15:41 +02:00
TrueCharts Bot 9b9f82dfc8 chore(helm): update image ghcr.io/linuxserver/ombi digest to 82d3d08 (#36121) 2025-06-09 14:14:52 +02:00
TrueCharts Bot 015b89dfdb chore(helm): update image ghcr.io/hotio/rflood digest to e34b352 (#36120)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/hotio/rflood | digest | `af7bb43` -> `e34b352` |

---

> [!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-09 14:14:48 +02:00
TrueCharts Bot 549b1d35be chore(helm): update image docker.io/diygod/rsshub digest to 53a5ea9 (#36118)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/diygod/rsshub | digest | `91a4780` -> `53a5ea9` |

---

> [!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-09 14:14:29 +02:00
TrueCharts Bot 97e8c6fccd chore(helm): update image docker.io/edgd1er/webnut digest to 89c32c6 (#36119)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/edgd1er/webnut | digest | `cb2c70e` -> `89c32c6` |

---

> [!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-09 14:13:50 +02:00
TrueCharts Bot 405f5566b3 chore(helm): update image docker.io/cthulhoo/ttrss-web-nginx digest to c949431 (#36117)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/cthulhoo/ttrss-web-nginx | digest | `2e06ec4` -> `c949431` |

---

> [!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-09 14:12:32 +02:00
TrueCharts Bot 04acef8903 chore(website): lock file maintenance (#36116)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

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

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-09 08:57:38 +02:00
TrueCharts Bot c29d8e4a48 chore(helm): update image docker.io/automaticrippingmachine/automatic-ripping-machine 2.15.0 → 2.15.1 (#36106)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/automaticrippingmachine/automatic-ripping-machine](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine)
| patch | `bd1877b` -> `e4db067` |

---

> [!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>automatic-ripping-machine/automatic-ripping-machine
(docker.io/automaticrippingmachine/automatic-ripping-machine)</summary>

###
[`v2.15.1`](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine/releases/tag/2.15.1)

[Compare
Source](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine/compare/2.15.0...2.15.1)

#### What's Changed

- \[BUGFIX] Change makemkv filename handling to handle leading and
trailing whitespace by
[@&#8203;tjdavey](https://redirect.github.com/tjdavey) in
[https://github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1397](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1397)

**Full Changelog**:
https://github.com/automatic-ripping-machine/automatic-ripping-machine/compare/2.15.0...2.15.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-09 06:08:06 +00:00
TrueCharts Bot 8fc4db1663 chore(container): update docker.io/renovate/renovate docker tag to v40.48.4 (#36110)
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 |
minor | `40.42.5-full` -> `40.48.4-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.48.4`](https://redirect.github.com/renovatebot/renovate/releases/tag/40.48.4)

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

##### Build System

- **deps:** update dependency zod to v3.25.46 (main)
([#&#8203;36379](https://redirect.github.com/renovatebot/renovate/issues/36379))
([42366e7](https://redirect.github.com/renovatebot/renovate/commit/42366e79566f9d12b4e477bbeeec6e69c9295a7f))

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

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

##### Build System

- **deps:** update dependency zod to v3.25.45 (main)
([#&#8203;36377](https://redirect.github.com/renovatebot/renovate/issues/36377))
([b907a13](https://redirect.github.com/renovatebot/renovate/commit/b907a13d7bdd5efafc983f886edff569acd31f8f))

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

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

##### Build System

- **deps:** update dependency zod to v3.25.44 (main)
([#&#8203;36376](https://redirect.github.com/renovatebot/renovate/issues/36376))
([4047d64](https://redirect.github.com/renovatebot/renovate/commit/4047d64bc06f101956275db9c2750c6e07a4861f))

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

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

##### Build System

- **deps:** update dependency zod to v3.25.43 (main)
([#&#8203;36375](https://redirect.github.com/renovatebot/renovate/issues/36375))
([e285866](https://redirect.github.com/renovatebot/renovate/commit/e285866b72562d36e179333888642588eac78a2f))

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

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

##### Features

- **bazel:** Add tag support for `git_repository` rules
([#&#8203;36370](https://redirect.github.com/renovatebot/renovate/issues/36370))
([22b232d](https://redirect.github.com/renovatebot/renovate/commit/22b232d34e0f87a9575ba4c8325df3ad417962b7))

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

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

##### Bug Fixes

- **ci:** Skip coverage jobs when tests are failed
([#&#8203;36371](https://redirect.github.com/renovatebot/renovate/issues/36371))
([a8e694e](https://redirect.github.com/renovatebot/renovate/commit/a8e694edf7030ef5e5098ace2be7db6f97ceb92c))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v3.10.42
(main)
([#&#8203;36369](https://redirect.github.com/renovatebot/renovate/issues/36369))
([1e65b51](https://redirect.github.com/renovatebot/renovate/commit/1e65b51d7be07a337c7a0f1ebbd2fa5d332bb382))

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

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

##### Features

- add support of Gitlab's sections for CODEOWNERS
([#&#8203;32061](https://redirect.github.com/renovatebot/renovate/issues/32061))
([743ef8f](https://redirect.github.com/renovatebot/renovate/commit/743ef8f29c3f0b52812d8e52f0beadbdab98d0b0))

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

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

##### Features

- **manager/cargo:** support git dependencies
([#&#8203;36289](https://redirect.github.com/renovatebot/renovate/issues/36289))
([7209da4](https://redirect.github.com/renovatebot/renovate/commit/7209da49b9987bb998f7a70c3de8a15306ed4876))
- **presets:** disable currently not supported gradle replacement PRs
([#&#8203;36357](https://redirect.github.com/renovatebot/renovate/issues/36357))
([3592fa0](https://redirect.github.com/renovatebot/renovate/commit/3592fa02cee82b9d261e1028a8082dcfc9905139))

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.71.12
(main)
([#&#8203;36368](https://redirect.github.com/renovatebot/renovate/issues/36368))
([1776522](https://redirect.github.com/renovatebot/renovate/commit/1776522aecc297fe389b0053385c18995af586b8))

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

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.71.11
(main)
([#&#8203;36366](https://redirect.github.com/renovatebot/renovate/issues/36366))
([ab14aa3](https://redirect.github.com/renovatebot/renovate/commit/ab14aa3e49c71b2b67634dd9a35b168f18105ffb))

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

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.71.10
(main)
([#&#8203;36365](https://redirect.github.com/renovatebot/renovate/issues/36365))
([ad52f18](https://redirect.github.com/renovatebot/renovate/commit/ad52f189bd8f7368ce6fefa640323b7781e573ac))

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

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.71.9
(main)
([#&#8203;36364](https://redirect.github.com/renovatebot/renovate/issues/36364))
([95d4b4c](https://redirect.github.com/renovatebot/renovate/commit/95d4b4cdfc658a49997610f4e4ba5fdac6604329))

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

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.71.8
(main)
([#&#8203;36363](https://redirect.github.com/renovatebot/renovate/issues/36363))
([4acc1bd](https://redirect.github.com/renovatebot/renovate/commit/4acc1bd26d2801c46869aac36596f180847b9278))

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

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.71.6
(main)
([#&#8203;36361](https://redirect.github.com/renovatebot/renovate/issues/36361))
([9047db9](https://redirect.github.com/renovatebot/renovate/commit/9047db9d1c39d12d549d0f8af49538bded831448))

##### Miscellaneous Chores

- **deps:** update dependency
[@&#8203;types/node](https://redirect.github.com/types/node) to
v22.15.29 (main)
([#&#8203;36355](https://redirect.github.com/renovatebot/renovate/issues/36355))
([d0d1655](https://redirect.github.com/renovatebot/renovate/commit/d0d1655e5acb712ebea9b76f822f74c87ab89e84))
- **deps:** update dependency eslint-import-resolver-typescript to
v4.4.2 (main)
([#&#8203;36359](https://redirect.github.com/renovatebot/renovate/issues/36359))
([f19e326](https://redirect.github.com/renovatebot/renovate/commit/f19e326e4fb47a29365adee9b00c8d8c0b4d3602))
- **deps:** update dependency nock to v14.0.5 (main)
([#&#8203;36356](https://redirect.github.com/renovatebot/renovate/issues/36356))
([65df35c](https://redirect.github.com/renovatebot/renovate/commit/65df35c40393c8c517261a6d709bf177c6e25f49))
- **deps:** update linters to v9.28.0 (main)
([#&#8203;36358](https://redirect.github.com/renovatebot/renovate/issues/36358))
([a362e17](https://redirect.github.com/renovatebot/renovate/commit/a362e17cb96aab650cefd814f72e9a30cec1bf35))

##### Build System

- **deps:** update dependency ignore to v7.0.5 (main)
([#&#8203;36362](https://redirect.github.com/renovatebot/renovate/issues/36362))
([1367e68](https://redirect.github.com/renovatebot/renovate/commit/1367e68e834bb1b38c0fca2757c2d436d61feda8))

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

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

##### Features

- **manager/mise:** committed, hk, lefthook and ruff shortnames
([#&#8203;36252](https://redirect.github.com/renovatebot/renovate/issues/36252))
([95dac96](https://redirect.github.com/renovatebot/renovate/commit/95dac96f0dc45c0c94c660a90add5ed8bb066807))

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

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

##### Bug Fixes

- **manager/docker-compose:** update images used as anchors
([#&#8203;35844](https://redirect.github.com/renovatebot/renovate/issues/35844))
([72bc1fb](https://redirect.github.com/renovatebot/renovate/commit/72bc1fba7c45caff2aa229f30c8a96dac9ce779a))

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

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

##### Features

- **manager:** CNB support for Spring Boot maven plugin
([#&#8203;35183](https://redirect.github.com/renovatebot/renovate/issues/35183))
([c9c87fc](https://redirect.github.com/renovatebot/renovate/commit/c9c87fcc68315211e57019b539299851154e34e2))

##### Build System

- **deps:** update dependency zod to v3.25.42 (main)
([#&#8203;36348](https://redirect.github.com/renovatebot/renovate/issues/36348))
([dae2f1f](https://redirect.github.com/renovatebot/renovate/commit/dae2f1ffea657d801b62b6be9e661240db4c8fad))

</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-09 06:05:48 +00:00
TrueCharts Bot d0adb82f9a chore(helm): update image docker.io/ronivay/xen-orchestra 5.178.1 → 5.178.2 (#36108)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/ronivay/xen-orchestra | patch | `dbde4ed` -> `29a97a5` |

---

> [!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-09 03:02:04 +02:00
TrueCharts Bot 85ffc1b5fb chore(helm): update image tccr.io/tccr/db-wait-redis digest to 13b78f5 (#36102)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[tccr.io/tccr/db-wait-redis](https://redirect.github.com/truecharts/public)
| digest | `819717e` -> `13b78f5` |

---

> [!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-09 03:01:51 +02:00
TrueCharts Bot 304b4e5acf chore(helm): update image docker.io/acockburn/appdaemon 4.5.8 → 4.5.10 (#36105)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/acockburn/appdaemon](https://redirect.github.com/AppDaemon/appdaemon)
| patch | `9dc67ea` -> `55bfe7c` |

---

> [!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>AppDaemon/appdaemon (docker.io/acockburn/appdaemon)</summary>

###
[`v4.5.10`](https://redirect.github.com/AppDaemon/appdaemon/releases/tag/4.5.10)

[Compare
Source](https://redirect.github.com/AppDaemon/appdaemon/compare/4.5.8...4.5.10)

#### 4.5.10

**Features**

- Added "log_level" directive to `appdaemon'yaml` to allow global log
level setting

**Fixes**

-   Upgrading pip version to latest in Dockerfile
-   Passing through `timeout` kwarg in `dash_navigate` and `fire_event`
-   Fixed a bug with `parse_timedelta` in cases like `"00:2.5"`
-   Minor type fixes
- Added missing `name` attributes to some classes that use
`run_in_executor`
-   Fixed `diable_apps`
- Fix for constrain_input_select when it is a string contributed by
[Xavi Moreno](https://redirect.github.com/xaviml)

**Breaking Changes**

None

**Changes in Behavior**

None

</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-09 03:01:35 +02:00
TrueCharts Bot 8051f5a376 chore(helm): update image docker.io/thomst08/requestrr v2.1.7 → v2.1.8 (#36109) 2025-06-09 03:01:09 +02:00
TrueCharts Bot ad1f61f761 chore(helm): update image docker.io/inovector/mixpost v2.2.0 → v2.3.0 (#36113)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/inovector/mixpost | minor | `f819c18` -> `849e042` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-09 03:01:07 +02:00