39569 Commits

Author SHA1 Message Date
TrueCharts Bot
b258f943af chore(helm): update chart cert-manager v1.16.3 → v1.17.0 (#31609)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [cert-manager](https://cert-manager.io)
([source](https://redirect.github.com/cert-manager/cert-manager)) |
minor | `v1.16.3` -> `v1.17.0` |

---

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

---

### Release Notes

<details>
<summary>cert-manager/cert-manager (cert-manager)</summary>

###
[`v1.17.0`](https://redirect.github.com/cert-manager/cert-manager/releases/tag/v1.17.0)

[Compare
Source](https://redirect.github.com/cert-manager/cert-manager/compare/v1.16.3...v1.17.0)

cert-manager is the easiest way to automatically manage certificates in
Kubernetes and OpenShift clusters.

v1.17.0 is a feature release with several improvements, including:

-   A helpful compliance change to RSA signatures on certificates
- An easier way to specify passwords for
[PKCS#12](https://redirect.github.com/PKCS/cert-manager/issues/12) and
JKS keystores
-   A few feature flag promotions (and a deprecation)
-   Dependency bumps and other smaller improvements

#### Major Themes

##### RSA Certificate Compliance

The United States Department of Defense published [a
memo](https://dl.dod.cyber.mil/wp-content/uploads/pki-pke/pdf/unclass-memo_dodcryptoalgorithms.pdf)
in 2022 which introduced some requirements on the kinds of cryptography
they require to be supported in software they use.

In effect, the memo requires that software be able to support larger RSA
keys (3072-bit and 4096-bit) and hashing algorithms (SHA-384 at a
minimum).

cert-manager supported large RSA keys long before the memo was
published, but a quirk in implementation meant that cert-manager always
used SHA-256 when signing with RSA.

In v1.17.0, cert-manager will choose a hash algorithm based on the RSA
key length: 3072-bit keys will use SHA-384, and 4096-bit keys will use
SHA-512. This matches similar behavior already present for ECDSA
signatures.

Our expectation is that this change will have minimal impact beyond a
slight increase to security and better compliance; we're not aware of
Kubernetes based environments which support RSA 2048 with SHA-256 but
fail with RSA 4096 and SHA-512. However, if you're using larger RSA
keys, you should be aware of the change.

##### Easier Keystore Passwords for
[PKCS#12](https://redirect.github.com/PKCS/cert-manager/issues/12) and
JKS

Specifying passwords on
[PKCS#12](https://redirect.github.com/PKCS/cert-manager/issues/12) and
JKS keystores is supported in cert-manager
for compatibility reasons with software which expects or requires
passwords to be set; however, these passwords are [not relevant to
security](https://cert-manager.io/docs/faq/#why-are-passwords-on-jks-or-pkcs12-files-not-helpful)
and never have been in cert-manager.

The initial implementation of the `keystores` feature required these
"passwords" to be stored in a Kubernetes secret, which would then be
read by cert-manager when creating the keystore after a certificate was
issued. This is cumbersome, especially when many passwords are set to
default values such as `changeit` or `password`.

In cert-manager v1.17, it's now possible to set a keystore password
using a literal string value inside the `Certificate` resource itself,
making this process much easier with no change to security.

For example:

```yaml
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
  name: my-cert-password
spec:
  secretName: my-cert-password
  issuerRef:
    name: my-issuer
    kind: ClusterIssuer
  keystores:
    jks:
      create: true
      password: "abc123"
    pkcs12:
      create: true
      password: "password"
  dnsNames:
  - example.com
```

The new `password` field is mutually exclusive with the
`passwordSecretRef` field, so be sure to only set one.

##### Feature Flag Promotions / Deprecations

cert-manager's feature flags allow for easier testing and adoption of
new features with a reduced risk of breaking changes. In cert-manager
v1.17, two feature gates have been promoted to "beta", and as such are
now enabled by default in all installations:

- `NameConstraints`, allowing users to specify the name constraints
extension which can be helpful when creating CA certificates for private
PKI
- `UseDomainQualifiedFinalizer`, which stops a Kubernetes warning from
being printed in logs

In addition, we added a new feature gate: `CAInjectorMerging`, which
intelligently combines certificates used by the
[`CAInjector`](../../concepts/ca-injector.md) component, making it safer
to use when issuing certificates are rotated. If you're making heavy use
of the CA injector, you should consider enabling this feature gate.

Finally, we deprecated the `ValidateCAA` feature gate which will be
removed entirely in cert-manager v1.18.0. This feature gate aimed to
validate the `CAA` DNS record during ACME issuance, but has seen low
adoption and limited testing since its introduction back in 2019.

##### Other Changes

There are many other PRs which were merged in this release cycle and
we'd encourage you to read the release notes below. One PR that's worth
highlighting is a change to add more structured logging information to
certain log lines.

If you were previously filtering logs using `grep` or similar tools
(which is highly discouraged!) be aware that some log lines have changed
format.

#### Community

As always, we'd like to thank all of the community members who helped in
this release cycle, including all below who merged a PR and anyone that
helped by commenting on issues, testing, or getting involved in
cert-manager meetings. We're lucky to have you involved.

A special thanks to:

-   [@&#8203;hawksight](https://redirect.github.com/hawksight)
-   [@&#8203;aidy](https://redirect.github.com/aidy)
-   [@&#8203;bashlion](https://redirect.github.com/bashlion)
-   [@&#8203;7ing](https://redirect.github.com/7ing)
-   [@&#8203;fadecore](https://redirect.github.com/fadecore)
-   [@&#8203;schedin](https://redirect.github.com/schedin)
-   [@&#8203;jkroepke](https://redirect.github.com/jkroepke)
-   [@&#8203;sdarwin](https://redirect.github.com/sdarwin)

for their contributions, comments and support!

Also, thanks to the cert-manager maintainer team for their help in this
release:

-   [@&#8203;inteon](https://redirect.github.com/inteon)
-   [@&#8203;erikgb](https://redirect.github.com/erikgb)
-   [@&#8203;SgtCoDFish](https://redirect.github.com/SgtCoDFish)
-   [@&#8203;ThatsMrTalbot](https://redirect.github.com/ThatsMrTalbot)
-   [@&#8203;munnerz](https://redirect.github.com/munnerz)
-   [@&#8203;maelvls](https://redirect.github.com/maelvls)

And finally, thanks to the cert-manager steering committee for their
feedback in this release cycle:

- [@&#8203;FlorianLiebhart](https://redirect.github.com/FlorianLiebhart)
-   [@&#8203;ssyno](https://redirect.github.com/ssyno)
-   [@&#8203;ianarsenault](https://redirect.github.com/ianarsenault)
-   [@&#8203;TrilokGeer](https://redirect.github.com/TrilokGeer)

#### Changes by Kind

##### Feature

- Potentially BREAKING: The CA and SelfSigned issuers now use SHA-512
when signing with RSA keys 4096 bits and above, and SHA-384 when signing
with RSA keys 3072 bits and above. If you were previously using a larger
RSA key as a CA, be sure to check that your systems support the new hash
algorithms.
([#&#8203;7368](https://redirect.github.com/cert-manager/cert-manager/issues/7368),
[@&#8203;SgtCoDFish](https://redirect.github.com/SgtCoDFish))
- Add CAInjectorMerging feature gate to the ca-injector, enabling this
will change the behaviour of the ca-injector to merge in new CA
certificates instead of outright replacing the existing one.
([#&#8203;7469](https://redirect.github.com/cert-manager/cert-manager/issues/7469),
[@&#8203;ThatsMrTalbot](https://redirect.github.com/ThatsMrTalbot))
- Added image pull secrets to deployments when service accounts aren't
created
([#&#8203;7411](https://redirect.github.com/cert-manager/cert-manager/issues/7411),
[@&#8203;TheHenrick](https://redirect.github.com/TheHenrick))
- Added the ability to customize client ID when using username/password
authentication for Venafi client
([#&#8203;7484](https://redirect.github.com/cert-manager/cert-manager/issues/7484),
[@&#8203;ilyesAj](https://redirect.github.com/ilyesAj))
- Helm: New value `webhook.extraEnv` allows you to set custom
environment variables in the webhook Pod.
Helm: New value `cainjector.extraEnv` allows you to set custom
environment variables in the cainjector Pod.
Helm: New value `startupapicheck.extraEnv` allows you to set custom
environment variables in the startupapicheck Pod.
([#&#8203;7317](https://redirect.github.com/cert-manager/cert-manager/issues/7317),
[@&#8203;wallrj](https://redirect.github.com/wallrj))
- Increase the amount of PEM data `pki.DecodeX509CertificateSetBytes` is
able to parse, to enable reading larger TLS trust bundles
([#&#8203;7464](https://redirect.github.com/cert-manager/cert-manager/issues/7464),
[@&#8203;SgtCoDFish](https://redirect.github.com/SgtCoDFish))
- New configuration option tenantID for the AzureDNS provider when using
managed identities with service principals. This enhancement allows
users to specify the tenant ID when using managed identities, offering
better flexibility in multi-tenant environments.
([#&#8203;7376](https://redirect.github.com/cert-manager/cert-manager/issues/7376),
[@&#8203;jochenrichter](https://redirect.github.com/jochenrichter))
- Promote the `UseDomainQualifiedFinalizer` feature to Beta.
([#&#8203;7488](https://redirect.github.com/cert-manager/cert-manager/issues/7488),
[@&#8203;jsoref](https://redirect.github.com/jsoref))
- Allow JKS/PKCS12 keystore passwords to be set as literal values in
Certificate resources, mutually exclusive with the existing
passwordSecretRef field
([#&#8203;6657](https://redirect.github.com/cert-manager/cert-manager/issues/6657),
[@&#8203;rquinio1A](https://redirect.github.com/rquinio1A))
- Allow templating ServiceAccount annotations by running the built-in
Helm `tpl` function on keys and values, to aid with workload identity
configuration
([#&#8203;7501](https://redirect.github.com/cert-manager/cert-manager/issues/7501),
[@&#8203;fcrespofastly](https://redirect.github.com/fcrespofastly))
- Promote CA NameConstraints feature gate to Beta (enabled by default)
([#&#8203;7494](https://redirect.github.com/cert-manager/cert-manager/issues/7494),
[@&#8203;tanujd11](https://redirect.github.com/tanujd11))

##### Documentation

- Add example for IPv6 in `--dns01-recursive-nameservers`
([#&#8203;7367](https://redirect.github.com/cert-manager/cert-manager/issues/7367),
[@&#8203;SgtCoDFish](https://redirect.github.com/SgtCoDFish))
- Updated the chart documentation to show `enableGatewayAPI` in the
config example.
([#&#8203;7354](https://redirect.github.com/cert-manager/cert-manager/issues/7354),
[@&#8203;puerco](https://redirect.github.com/puerco))

##### Bug or Regression

- BUGFIX: A change in v1.16.0 caused cert-manager's ACME ClusterIssuer
to look in the wrong namespace for resources required for the issuance
(eg. credential Secrets). This is now fixed in v1.16.1+ and v1.17.0+
([#&#8203;7339](https://redirect.github.com/cert-manager/cert-manager/issues/7339),
[@&#8203;inteon](https://redirect.github.com/inteon))
- BUGFIX: Helm will now accept percentages for the
`podDisruptionBudget.minAvailable` and
`podDisruptionBudget.maxAvailable` values.
([#&#8203;7343](https://redirect.github.com/cert-manager/cert-manager/issues/7343),
[@&#8203;inteon](https://redirect.github.com/inteon))
- Fix ACME HTTP-01 solver for IPv6 endpoints
([#&#8203;7391](https://redirect.github.com/cert-manager/cert-manager/issues/7391),
[@&#8203;Peac36](https://redirect.github.com/Peac36))
- Fix the behavior of `renewBeforePercentage` to comply with its spec
([#&#8203;7421](https://redirect.github.com/cert-manager/cert-manager/issues/7421),
[@&#8203;adam-sroka](https://redirect.github.com/adam-sroka))
- Helm: allow `enabled` to be set as a value to toggle cert-manager as a
dependency.
([#&#8203;7350](https://redirect.github.com/cert-manager/cert-manager/issues/7350),
[@&#8203;inteon](https://redirect.github.com/inteon))
- SECURITY (low risk): Limit maximum allowed PEM size to prevent
potential DoS in cert-manager controller from attacker-controlled PEM.
See
[GHSA-r4pg-vg54-wxx4](https://redirect.github.com/cert-manager/cert-manager/security/advisories/GHSA-r4pg-vg54-wxx4)
([#&#8203;7400](https://redirect.github.com/cert-manager/cert-manager/issues/7400),
[@&#8203;SgtCoDFish](https://redirect.github.com/SgtCoDFish))
- The Certificate object will no longer create CertificateRequest or
Secret objects while being deleted
([#&#8203;7361](https://redirect.github.com/cert-manager/cert-manager/issues/7361),
[@&#8203;ThatsMrTalbot](https://redirect.github.com/ThatsMrTalbot))
- The issuer will now more quickly retry when its linked Secret is
updated to fix an issue that caused a high back-off timeout.
([#&#8203;7455](https://redirect.github.com/cert-manager/cert-manager/issues/7455),
[@&#8203;inteon](https://redirect.github.com/inteon))
- Upgrades Venafi vCert library fixing a bug which caused the RSA 3072
bit key size for TPP certificate enrollment to not work.
([#&#8203;7498](https://redirect.github.com/cert-manager/cert-manager/issues/7498),
[@&#8203;inteon](https://redirect.github.com/inteon))

##### Other (Cleanup or Flake)

- ⚠️ Potentially BREAKING: Log messages that were not structured have
now been replaced with structured logs. If you were matching on specific
log strings, this could break your setup.
([#&#8203;7461](https://redirect.github.com/cert-manager/cert-manager/issues/7461),
[@&#8203;inteon](https://redirect.github.com/inteon))
- DEPRECATION: The `ValidateCAA` feature gate is now deprecated, with
removal scheduled for cert-manager 1.18. In 1.17, enabling this feature
gate will print a warning.
([#&#8203;7491](https://redirect.github.com/cert-manager/cert-manager/issues/7491),
[@&#8203;jsoref](https://redirect.github.com/jsoref))
- Remove `Neither --kubeconfig nor --master was specified` warning
message when the controller and the webhook services boot
([#&#8203;7457](https://redirect.github.com/cert-manager/cert-manager/issues/7457),
[@&#8203;Peac36](https://redirect.github.com/Peac36))
- Move 'live' DNS tests into a separate package to contain test
flakiness and improve developer UX
([#&#8203;7530](https://redirect.github.com/cert-manager/cert-manager/issues/7530),
[@&#8203;SgtCoDFish](https://redirect.github.com/SgtCoDFish))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9oZWxtIiwidHlwZS9taW5vciJdfQ==-->

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-02-04 08:13:10 +00:00
TrueCharts Bot
87d364108b chore(helm): update chart mongodb 15.3.1 → 15.3.2 (#31608) 2025-02-04 02:51:27 +01:00
TrueCharts Bot
ddc85d9b0f chore(helm): update image lscr.io/linuxserver/kdenlive digest to a50ff0d (#31605)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/kdenlive | digest | `ed29513` -> `a50ff0d` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-04 01:51:22 +00:00
TrueCharts Bot
981c2a4232 chore(helm): update image docker.io/machines/filestash digest to ebcd431 (#31603)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/machines/filestash | digest | `fb32598` -> `ebcd431` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-04 02:51:06 +01:00
TrueCharts Bot
286183e3a2 chore(helm): update image ghcr.io/meeb/tubesync digest to 7bd310a (#31604)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/meeb/tubesync | digest | `43f795e` -> `7bd310a` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-04 02:46:43 +01:00
TrueCharts Bot
eabb4aa0b2 chore(flux): update image jackett 23.3.9 → 23.3.10 (#31607)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [jackett](https://truecharts.org/charts/stable/jackett)
([source](https://ghcr.io/elfhosted/jackett)) | patch | `23.3.9` ->
`23.3.10` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-04 02:39:05 +01:00
TrueCharts Bot
e165afc168 chore(container): update tccr.io/tccr/devcontainer docker tag to v1.0.4 (#31606)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[tccr.io/tccr/devcontainer](https://redirect.github.com/truecharts/public)
| image | patch | `v1.0.1` -> `v1.0.4` |

---

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

---

### Release Notes

<details>
<summary>truecharts/public (tccr.io/tccr/devcontainer)</summary>

###
[`v1.0.4`](https://redirect.github.com/truecharts/public/releases/tag/v1.0.4):
clustertool-v1.0.4

[Compare
Source](https://redirect.github.com/truecharts/public/compare/v1.0.1...v1.0.4)

#### Changelog

-
[`fd981e9`](fd981e9e80)
chore(deps): update ghcr.io/siderolabs/installer docker tag to v1.9.3
(clustertool)
([#&#8203;31342](https://redirect.github.com/truecharts/public/issues/31342))
-
[`9e96576`](9e96576d01)
chore(flux): update helm release openebs 4.1.2 → 4.1.3 (clustertool)
([#&#8203;31366](https://redirect.github.com/truecharts/public/issues/31366))
-
[`442baf8`](442baf8839)
chore(flux): update image blocky 16.11.0 → 16.12.0 (clustertool)
([#&#8203;31196](https://redirect.github.com/truecharts/public/issues/31196))
-
[`c5cabbf`](c5cabbfa36)
chore(flux): update image blocky 16.12.0 → 16.13.0 (clustertool)
([#&#8203;31250](https://redirect.github.com/truecharts/public/issues/31250))
-
[`6d22a37`](6d22a37cac)
chore(flux): update image blocky 16.13.0 → 16.13.1 (clustertool)
([#&#8203;31294](https://redirect.github.com/truecharts/public/issues/31294))
-
[`8d29cfe`](8d29cfe322)
chore(flux): update image blocky 16.13.1 → 16.13.2 (clustertool)
([#&#8203;31343](https://redirect.github.com/truecharts/public/issues/31343))
-
[`4cd744d`](4cd744dd52)
chore(flux): update image cert-manager 6.4.1 → 6.4.2 (clustertool)
([#&#8203;31165](https://redirect.github.com/truecharts/public/issues/31165))
-
[`f14b405`](f14b4056a1)
chore(flux): update image cert-manager 6.4.2 → 6.5.1 (clustertool)
([#&#8203;31197](https://redirect.github.com/truecharts/public/issues/31197))
-
[`8802a0b`](8802a0b029)
chore(flux): update image cert-manager 6.5.1 → 6.5.2 (clustertool)
([#&#8203;31295](https://redirect.github.com/truecharts/public/issues/31295))
-
[`a47b25e`](a47b25ef3b)
chore(flux): update image clusterissuer 9.4.1 → 9.5.0 (clustertool)
([#&#8203;31198](https://redirect.github.com/truecharts/public/issues/31198))
-
[`5962237`](59622377be)
chore(flux): update image clusterissuer 9.5.0 → 9.5.1 (clustertool)
([#&#8203;31296](https://redirect.github.com/truecharts/public/issues/31296))
-
[`3b3ffd7`](3b3ffd7ce4)
chore(flux): update image kubelet-csr-approver 1.3.2 → 1.4.0
(clustertool)
([#&#8203;31200](https://redirect.github.com/truecharts/public/issues/31200))
-
[`112a337`](112a3378ce)
chore(flux): update image kubelet-csr-approver 1.4.0 → 1.4.1
(clustertool)
([#&#8203;31298](https://redirect.github.com/truecharts/public/issues/31298))
-
[`d5ceb56`](d5ceb5632c)
chore(flux): update image kubernetes-dashboard 1.12.1 → 1.13.0
(clustertool)
([#&#8203;31201](https://redirect.github.com/truecharts/public/issues/31201))
-
[`728f1ea`](728f1eafee)
chore(flux): update image kubernetes-dashboard 1.13.0 → 1.13.1
(clustertool)
([#&#8203;31299](https://redirect.github.com/truecharts/public/issues/31299))
-
[`c37cc7c`](c37cc7c37c)
chore(flux): update image kubernetes-dashboard 1.13.1 → 1.13.2
(clustertool)
([#&#8203;31345](https://redirect.github.com/truecharts/public/issues/31345))
-
[`c751abc`](c751abcd70)
chore(flux): update image kubernetes-reflector 6.4.0 → 6.5.0
(clustertool)
([#&#8203;31202](https://redirect.github.com/truecharts/public/issues/31202))
-
[`023921a`](023921aefd)
chore(flux): update image kubernetes-reflector 6.5.0 → 6.5.1
(clustertool)
([#&#8203;31300](https://redirect.github.com/truecharts/public/issues/31300))
-
[`955bd96`](955bd964c2)
chore(flux): update image metallb-config 8.4.1 → 8.5.0 (clustertool)
([#&#8203;31203](https://redirect.github.com/truecharts/public/issues/31203))
-
[`c45546d`](c45546dbda)
chore(flux): update image metallb-config 8.5.0 → 8.5.1 (clustertool)
([#&#8203;31301](https://redirect.github.com/truecharts/public/issues/31301))
-
[`44fa11e`](44fa11ec9a)
chore(flux): update image prometheus-operator 10.1.2 → 10.1.3
(clustertool)
([#&#8203;31303](https://redirect.github.com/truecharts/public/issues/31303))
-
[`8dda692`](8dda6925a7)
chore(flux): update image prometheus-operator 10.1.3 → 10.1.4
(clustertool)
([#&#8203;31368](https://redirect.github.com/truecharts/public/issues/31368))
-
[`22530e3`](22530e32d3)
chore(flux): update image prometheus-operator 9.4.0 → 10.1.2
(clustertool)
([#&#8203;31260](https://redirect.github.com/truecharts/public/issues/31260))
-
[`b0eb46c`](b0eb46c429)
chore(flux): update image snapshot-controller 3.6.0 → 3.7.0
(clustertool)
([#&#8203;31205](https://redirect.github.com/truecharts/public/issues/31205))
-
[`6b43197`](6b43197241)
chore(flux): update image snapshot-controller 3.7.0 → 3.7.1
(clustertool)
([#&#8203;31304](https://redirect.github.com/truecharts/public/issues/31304))
-
[`27ddd98`](27ddd981ad)
chore(flux): update image spegel 2.2.2 → 3.1.0 (clustertool)
([#&#8203;31261](https://redirect.github.com/truecharts/public/issues/31261))
-
[`6459b5d`](6459b5d8a0)
chore(flux): update image spegel 2.2.2 → 3.1.0 (clustertool)
([#&#8203;31261](https://redirect.github.com/truecharts/public/issues/31261))
-
[`8401e59`](8401e59886)
chore(flux): update image spegel 3.1.0 → 3.1.1 (clustertool)
([#&#8203;31305](https://redirect.github.com/truecharts/public/issues/31305))
-
[`3c4d944`](3c4d944e13)
chore(flux): update image traefik 30.3.2 → 30.4.1 (clustertool)
([#&#8203;31206](https://redirect.github.com/truecharts/public/issues/31206))
-
[`516fa16`](516fa1695b)
chore(flux): update image traefik 30.4.1 → 30.4.2 (clustertool)
([#&#8203;31346](https://redirect.github.com/truecharts/public/issues/31346))
-
[`d79b6d3`](d79b6d3c65)
chore(flux): update image traefik-crds 3.4.0 → 3.5.0 (clustertool)
([#&#8203;31207](https://redirect.github.com/truecharts/public/issues/31207))
-
[`658c745`](658c7451a1)
chore(flux): update image traefik-crds 3.5.0 → 3.5.1 (clustertool)
([#&#8203;31306](https://redirect.github.com/truecharts/public/issues/31306))
-
[`093aa18`](093aa18446)
chore(flux): update image volsync 2.7.0 → 2.8.0 (clustertool)
([#&#8203;31209](https://redirect.github.com/truecharts/public/issues/31209))
-
[`8833c65`](8833c65f10)
chore(flux): update image volsync 2.8.0 → 2.8.1 (clustertool)
([#&#8203;31308](https://redirect.github.com/truecharts/public/issues/31308))
-
[`be53f96`](be53f96af9)
fix some clustertool dependency issues
-
[`567064d`](567064dafa)
fix(clustertool): fix clustertool dependency references
-
[`1c8ffdc`](1c8ffdc793)
fix(deps): update module github.com/getsops/sops/v3 v3.9.3 → v3.9.4
(clustertool)
([#&#8203;31194](https://redirect.github.com/truecharts/public/issues/31194))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-04 02:38:54 +01:00
TrueCharts-Bot
284b640733 Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2025-02-04 00:12:36 +00:00
TrueCharts Bot
1faf1851d3 chore(helm): update image renovate/renovate 39.146.1 → 39.156.1 (#31573)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [renovate/renovate](https://renovatebot.com)
([source](https://redirect.github.com/renovatebot/renovate)) | minor |
-> |

---

> [!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>renovatebot/renovate (renovate/renovate)</summary>

###
[`v39.156.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.156.1)

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

##### Bug Fixes

- **manager/jsonata:** populate extract result with manager config
fields
([#&#8203;33992](https://redirect.github.com/renovatebot/renovate/issues/33992))
([77a5c15](77a5c15daa))

##### Documentation

- fix typos in documentation
([#&#8203;33982](https://redirect.github.com/renovatebot/renovate/issues/33982))
([bfff982](bfff982eb3))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v3.5.22
([#&#8203;33988](https://redirect.github.com/renovatebot/renovate/issues/33988))
([52ab2d8](52ab2d8dac))
- **deps:** update dependency google-github-actions/auth to v2.1.8
([#&#8203;33987](https://redirect.github.com/renovatebot/renovate/issues/33987))
([de8140d](de8140d476))

###
[`v39.156.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.156.0)

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

##### Features

- **autoreplace:** extended logging for autoreplace mismatches
([#&#8203;33984](https://redirect.github.com/renovatebot/renovate/issues/33984))
([a1c291c](a1c291cb92))

###
[`v39.155.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.155.0)

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

##### Features

- **presets:** add `react-spectrum` monorepo
([#&#8203;33892](https://redirect.github.com/renovatebot/renovate/issues/33892))
([c25ffa5](c25ffa5f93))

###
[`v39.154.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.154.0)

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

##### Features

- enhance libyear output
([#&#8203;33981](https://redirect.github.com/renovatebot/renovate/issues/33981))
([1386cf7](1386cf734e))

###
[`v39.153.2`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.153.2)

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

##### Miscellaneous Chores

- **documentation:** s/Forjeo/Forgejo/
([#&#8203;33976](https://redirect.github.com/renovatebot/renovate/issues/33976))
([732f91b](732f91ba3c))

##### Code Refactoring

- **devbox:** Refactor schema and improve logging
([#&#8203;33978](https://redirect.github.com/renovatebot/renovate/issues/33978))
([19ae54f](19ae54fb09))

##### Tests

- **logger:** Fix mock for `withMeta` function
([#&#8203;33979](https://redirect.github.com/renovatebot/renovate/issues/33979))
([0300c4e](0300c4e0a4))

##### Build System

- **deps:** update aws-sdk-js-v3 monorepo
([#&#8203;33980](https://redirect.github.com/renovatebot/renovate/issues/33980))
([35a56c7](35a56c7b54))

###
[`v39.153.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.153.1)

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

##### Build System

- **deps:** update dependency google-auth-library to v9.15.1
([#&#8203;33974](https://redirect.github.com/renovatebot/renovate/issues/33974))
([582c08b](582c08b51a))

###
[`v39.153.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.153.0)

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

##### Features

- **jsonata:** support yaml
([#&#8203;33972](https://redirect.github.com/renovatebot/renovate/issues/33972))
([e63ff23](e63ff23795))

###
[`v39.152.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.152.0)

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

##### Features

- **presets:** Added `GRADLE_OPTS` to safe global env
([#&#8203;33968](https://redirect.github.com/renovatebot/renovate/issues/33968))
([9e51d42](9e51d427df))

##### Code Refactoring

- **process/libyear:** early return if no `releaseTimestamp` for current
version
([#&#8203;33967](https://redirect.github.com/renovatebot/renovate/issues/33967))
([09b2c10](09b2c106c3))
- **schema:** simplify handling
([#&#8203;33963](https://redirect.github.com/renovatebot/renovate/issues/33963))
([7583ecd](7583ecded4))

###
[`v39.151.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.151.0)

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

##### Features

- **manager:** add devbox manager module
([#&#8203;33638](https://redirect.github.com/renovatebot/renovate/issues/33638))
([62cb770](62cb77064a))

##### Code Refactoring

- **workers:** move bump version to separate function
([#&#8203;33965](https://redirect.github.com/renovatebot/renovate/issues/33965))
([e82a22d](e82a22d558))

###
[`v39.150.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.150.0)

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

##### Features

- **preset:** Add monorepo preset for KSP
([#&#8203;33943](https://redirect.github.com/renovatebot/renovate/issues/33943))
([1b240a8](1b240a8bec))

###
[`v39.149.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.149.0)

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

##### Features

- **cloudbuild:** Parse config using Zod schema
([#&#8203;33768](https://redirect.github.com/renovatebot/renovate/issues/33768))
([586d9fd](586d9fd2a6))

##### Documentation

- **versioning:** fix types and tests
([#&#8203;33958](https://redirect.github.com/renovatebot/renovate/issues/33958))
([7819d02](7819d027e3))

###
[`v39.148.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.148.0)

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

##### Features

- **gitlab:** add branch status check attemps
([#&#8203;32692](https://redirect.github.com/renovatebot/renovate/issues/32692))
([78f389a](78f389ac55))
- **versioning:** aws-eks-addon versioning added
([#&#8203;33301](https://redirect.github.com/renovatebot/renovate/issues/33301))
([476d11c](476d11ce0f))

###
[`v39.147.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.147.0)

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

##### Features

- **nix:** rework to work with all flake inputs
([#&#8203;31921](https://redirect.github.com/renovatebot/renovate/issues/31921))
([441a30f](441a30f8e0))

###
[`v39.146.4`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.146.4)

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

##### Bug Fixes

- **deps:** update dependency mkdocs-material to v9.6.1
([#&#8203;33956](https://redirect.github.com/renovatebot/renovate/issues/33956))
([98ccb43](98ccb43514))

###
[`v39.146.3`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.146.3)

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

##### Bug Fixes

- **deps:** update dependency mkdocs-material to v9.6.0
([#&#8203;33955](https://redirect.github.com/renovatebot/renovate/issues/33955))
([ba0bbbb](ba0bbbbc28))

###
[`v39.146.2`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.146.2)

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.38.3
([#&#8203;33954](https://redirect.github.com/renovatebot/renovate/issues/33954))
([1e6ebec](1e6ebecfbb))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-02-03 18:31:39 +00:00
Alfred Göppel
f316d49712 fix(Transmission): BREAKING CHANGE Switch Image to Linuxserver (#31595)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  https://github.com/truecharts/public/issues/26184

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [x] 🪛 Bugfix
- [x] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [x] ⚖️ My code follows the style guidelines of this project
- [x] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [x] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-02-03 19:20:50 +01:00
Alfred Göppel
09186e5b89 fix(devcontainer): update dockerfile (#31594)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [x] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-03 19:20:16 +01:00
TrueCharts Bot
cb17d7b1e6 chore(website): lock file maintenance (#31575)
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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiXX0=-->
2025-02-03 19:19:42 +01:00
TrueCharts Bot
8396d0e5b3 chore(helm): update image docker.io/haveagitgat/tdarr_node 2.29.01 → 2.30.01 (#31587)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/haveagitgat/tdarr_node](https://redirect.github.com/linuxserver/docker-baseimage-ubuntu/packages)
([source](https://redirect.github.com/linuxserver/docker-baseimage-ubuntu))
| minor | `e416418` -> `e5a0d17` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->

Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-02-03 17:54:58 +00:00
TrueCharts Bot
5c37fcdf20 chore(helm): update image ghcr.io/onedr0p/radarr 5.17.2.9580 → 5.18.4.9674 (#31599) 2025-02-03 18:46:38 +01:00
TrueCharts Bot
cfeef80abd chore(helm): update image docker.io/ronivay/xen-orchestra 5.168.1 → 5.169.1 (#31589) 2025-02-03 18:44:55 +01:00
TrueCharts Bot
dd264d4405 chore(helm): update image ghcr.io/elfhosted/lidarr 2.8.2.4493 → 2.9.6.4552 (#31598)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/elfhosted/lidarr](https://redirect.github.com/Lidarr/Lidarr)
| minor | `71062e6` -> `fdc44dc` |

---

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

###
[`v2.9.6.4552`](https://redirect.github.com/Lidarr/Lidarr/releases/tag/v2.9.6.4552):
2.9.6.4552

[Compare
Source](https://redirect.github.com/Lidarr/Lidarr/compare/v2.8.2.4493...v2.9.6.4552)

*To receive further updates for a non-docker installation, please change
the branch to **master**. (Settings -> General (Show Advanced Settings)
-> Updates -> Branch)*

**If you are using docker you will need to update the container image.
*Do not attempt to update Lidarr within an existing docker container.***
Doing so will prevent audio fingerprinting from working and break your
Lidarr installation if you ever delete and re-create the container.

#### Changes:

-
[`8e01ba5`](8e01ba5f21)
Bump version to 2.9.6
-
[`45e8ecf`](45e8ecffa0)
Fixed: Ignore special folders inside Blackhole watch folders
-
[`3c4b438`](3c4b438d27)
Fixed: Health warning for downloading inside root folders \[
[#&#8203;5384](https://redirect.github.com/Lidarr/Lidarr/issues/5384) ]
-
[`8fd79d7`](8fd79d7291)
New: Prefer newer Usenet releases
-
[`477a799`](477a799b8a)
Multiple Translations updated by Weblate
-
[`51a38bc`](51a38bc648)
Fix logging message for directory watcher error
-
[`917f705`](917f705695)
Multiple Translations updated by Weblate
-
[`5a1092b`](5a1092b511)
Prevent page crash on console.error being used with non-string values
-
[`ef2c636`](ef2c6366c4)
New: reflink support for ZFS \[
[#&#8203;5369](https://redirect.github.com/Lidarr/Lidarr/issues/5369) ]
-
[`1ffb82e`](1ffb82e364)
Bump version to 2.9.5

<details><summary><b>See More</b></summary>

-
[`e2f8753`](e2f8753a6a)
Improve messaging for no mediums on album details
-
[`7390194`](739019498f)
New: Add headers setting in webhook connection \[
[#&#8203;5242](https://redirect.github.com/Lidarr/Lidarr/issues/5242) ]
-
[`396b2ae`](396b2ae7c1)
Bump SonarCloud azure extension for UI analysis to 3.X
-
[`0216616`](0216616738)
Bump SonarCloud azure extension to 3.X
-
[`82e0b62`](82e0b628cc)
Fixed: Parsing of release names with colon in the title
-
[`014f8a5`](014f8a58b1)
Multiple Translations updated by Weblate
-
[`5cbb284`](5cbb2848c7)
Bump version to 2.9.4
-
[`554cf8e`](554cf8ec55)
Multiple Translations updated by Weblate
-
[`4ff6c71`](4ff6c71456)
Fixed: Listening on all IPv4 Addresses
-
[`7cfcf01`](7cfcf01ae3)
Fixed: qBittorrent Ratio Limit Check
-
[`17c5c66`](17c5c66e54)
Bump version to 2.9.3
-
[`40dab8d`](40dab8deb9)
Check if backup folder is writable on backup \[
[#&#8203;5348](https://redirect.github.com/Lidarr/Lidarr/issues/5348) ]
-
[`39f0e4d`](39f0e4d989)
Suggest adding IP to RPC whitelist for on failed Transmission auth
-
[`35a46ec`](35a46eca7b)
Bump version to 2.9.2
-
[`79b29f3`](79b29f39f9)
Don't send session information to Sentry
-
[`0e19c03`](0e19c03e9a)
Update Sentry SDK add features
-
[`e6388ca`](e6388cab94)
Multiple Translations updated by Weblate
-
[`47e504f`](47e504fbc9)
Add translations for some download client settings
-
[`1a40839`](1a40839202)
Add file-count for Transmission RPC
-
[`25a80aa`](25a80aa29d)
Avoid default category on existing Transmission configurations
-
[`7255126`](7255126af5)
New: Labels support for Transmission 4.0
-
[`166f87a`](166f87ae68)
Include exception message in LidarrAPI failure message \[
[#&#8203;5176](https://redirect.github.com/Lidarr/Lidarr/issues/5176) ]
-
[`babdf10`](babdf10273)
Bump version to 2.9.1
-
[`19c2994`](19c2994ff3)
Skip spotify mapping tests
-
[`e420ee0`](e420ee0645)
Bump NLog, IPAddressRange, Polly, ImageSharp, Npgsql, System.Memory and
Ical.Net \[
[#&#8203;5333](https://redirect.github.com/Lidarr/Lidarr/issues/5333) ]
-
[`78469a9`](78469a96c9)
Bump MailKit to 4.8.0 and Microsoft.Data.SqlClient to 2.1.7 \[
[#&#8203;5332](https://redirect.github.com/Lidarr/Lidarr/issues/5332) ]
-
[`bc6df54`](bc6df548fc)
Automated API Docs update
-
[`797e4c7`](797e4c773e)
Replace URLs in translations with tokens
-
[`1191417`](119141723a)
Multiple Translations updated by Weblate
-
[`fd1719e`](fd1719e58c)
Fixed: Artists without tags bypassing tags on Download Client \[
[#&#8203;5309](https://redirect.github.com/Lidarr/Lidarr/issues/5309),
[#&#8203;5318](https://redirect.github.com/Lidarr/Lidarr/issues/5318) ]
-
[`4161270`](41612708ff)
Sync TimeSpanConverter with upstream \[
[#&#8203;5301](https://redirect.github.com/Lidarr/Lidarr/issues/5301) ]
-
[`535caf1`](535caf1324)
Add return type for artist/album lookup endpoint \[
[#&#8203;5282](https://redirect.github.com/Lidarr/Lidarr/issues/5282) ]
-
[`eb3c7d6`](eb3c7d6990)
Update React \[
[#&#8203;5264](https://redirect.github.com/Lidarr/Lidarr/issues/5264) ]
-
[`4c603e2`](4c603e24f6)
Support Postgres with non-standard version string \[
[#&#8203;5267](https://redirect.github.com/Lidarr/Lidarr/issues/5267) ]
-
[`ec93c33`](ec93c33aa9)
Console warnings for missing translations on development builds \[
[#&#8203;5239](https://redirect.github.com/Lidarr/Lidarr/issues/5239) ]
-
[`afb3fd5`](afb3fd5bd5)
Upgrade typescript-eslint packages to 8.181.1 \[
[#&#8203;5325](https://redirect.github.com/Lidarr/Lidarr/issues/5325) ]
-
[`198a137`](198a13755f)
Upgrade TypeScript and core-js \[
[#&#8203;5306](https://redirect.github.com/Lidarr/Lidarr/issues/5306) ]
-
[`44a5654`](44a5654918)
Log adding missing artist messages as info
-
[`8aa0754`](8aa0754843)
Upgrade Font Awesome to 6.7.1
-
[`c42e96b`](c42e96b55d)
Upgrade babel to 7.26.0
-
[`f92935e`](f92935e3d2)
Set minor version for core-js in babel/preset-env
-
[`13bb8f5`](13bb8f5089)
Bump version to 2.9.0

This list of changes was [auto
generated](https://dev.azure.com/Lidarr/43582661-9ac3-4ec6-9583-209885d5ff34/\_release?releaseId=123&\_a=release-summary).</details>

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-02-03 18:44:48 +01:00
TrueCharts Bot
9fb89f543e chore(helm): update image docker.io/brandawg93/peanut 5.0.2 → 5.1.0 (#31585) 2025-02-03 18:44:42 +01:00
TrueCharts Bot
cd78348559 chore(helm): update image docker.io/haveagitgat/tdarr 2.29.01 → 2.30.01 (#31586)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/haveagitgat/tdarr](https://redirect.github.com/linuxserver/docker-baseimage-ubuntu/packages)
([source](https://redirect.github.com/linuxserver/docker-baseimage-ubuntu))
| minor | `a3d86fd` -> `960aac0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-02-03 17:44:34 +00:00
TrueCharts Bot
85c5d705ee chore(helm): update image quay.io/hedgedoc/hedgedoc 1.10.0 → 1.10.1 (#31568)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [quay.io/hedgedoc/hedgedoc](https://hedgedoc.org)
([source](https://redirect.github.com/hedgedoc/container)) | patch |
`fa293be` -> `a65798c` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-03 17:44:31 +00:00
TrueCharts Bot
c214f3100f chore(helm): update image renovate/renovate 39.146.1 → 39.146.4 (#31569)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [renovate/renovate](https://renovatebot.com)
([source](https://redirect.github.com/renovatebot/renovate)) | patch |
-> |

---

> [!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>renovatebot/renovate (renovate/renovate)</summary>

###
[`v39.146.4`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.146.4)

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

##### Bug Fixes

- **deps:** update dependency mkdocs-material to v9.6.1
([#&#8203;33956](https://redirect.github.com/renovatebot/renovate/issues/33956))
([98ccb43](98ccb43514))

###
[`v39.146.3`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.146.3)

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

##### Bug Fixes

- **deps:** update dependency mkdocs-material to v9.6.0
([#&#8203;33955](https://redirect.github.com/renovatebot/renovate/issues/33955))
([ba0bbbb](ba0bbbbc28))

###
[`v39.146.2`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.146.2)

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.38.3
([#&#8203;33954](https://redirect.github.com/renovatebot/renovate/issues/33954))
([1e6ebec](1e6ebecfbb))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-03 17:44:17 +00:00
TrueCharts Bot
87dc5db4f7 chore(helm): update image docker.io/ghostfolio/ghostfolio 2.136.0 → 2.137.1 (#31572)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/ghostfolio/ghostfolio](https://redirect.github.com/ghostfolio/ghostfolio)
| minor | `10192f8` -> `0973890` |

---

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

###
[`v2.137.1`](https://redirect.github.com/ghostfolio/ghostfolio/blob/HEAD/CHANGELOG.md#21371---2025-02-01)

[Compare
Source](https://redirect.github.com/ghostfolio/ghostfolio/compare/2.137.0...2.137.1)

##### Added

- Added a new static portfolio analysis rule: *Regional Market Cluster
Risk* (North America)
- Added support for ETF sector data in the *Yahoo Finance* data enhancer

##### Changed

- Extracted the scraper configuration to a sub form in the asset profile
details dialog of the admin control
-   Migrated the database seeding to *TypeScript*
-   Improved the language localization for German (`de`)
- Upgraded `@trivago/prettier-plugin-sort-imports` from version `4.3.0`
to `5.2.1`
-   Upgraded `bull` from version `4.16.4` to `4.16.5`
-   Upgraded `ng-extract-i18n-merge` from version `2.13.1` to `2.14.1`
-   Upgraded `prisma` from version `6.2.1` to `6.3.0`

##### Fixed

- Fixed the dynamic numerical precision for cryptocurrencies in the
holding detail dialog

###
[`v2.137.0`](https://redirect.github.com/ghostfolio/ghostfolio/releases/tag/2.137.0)

[Compare
Source](https://redirect.github.com/ghostfolio/ghostfolio/compare/2.136.0...2.137.0)

##### Added

- Added a new static portfolio analysis rule: *Regional Market Cluster
Risk* (North America)
- Added support for ETF sector data in the *Yahoo Finance* data enhancer

##### Changed

- Extracted the scraper configuration to a sub form in the asset profile
details dialog of the admin control
-   Migrated the database seeding to *TypeScript*
-   Improved the language localization for German (`de`)
- Upgraded `@trivago/prettier-plugin-sort-imports` from version `4.3.0`
to `5.2.1`
-   Upgraded `bull` from version `4.16.4` to `4.16.5`
-   Upgraded `ng-extract-i18n-merge` from version `2.13.1` to `2.14.1`
-   Upgraded `prisma` from version `6.2.1` to `6.3.0`

##### Fixed

- Fixed the dynamic numerical precision for cryptocurrencies in the
holding detail dialog

##### Special Thanks

-   [@&#8203;amandee27](https://redirect.github.com/amandee27)
-   [@&#8203;dtslvr](https://redirect.github.com/dtslvr)
-   [@&#8203;Kaysera](https://redirect.github.com/Kaysera)
-   [@&#8203;KenTandrian](https://redirect.github.com/KenTandrian)
-   [@&#8203;shaun-ak](https://redirect.github.com/shaun-ak)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-02-03 17:44:11 +00:00
TrueCharts Bot
6edad4cbec chore(helm): update image ghcr.io/linuxserver/speedtest-tracker 1.2.0 → 1.2.2 (#31567)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/speedtest-tracker](https://redirect.github.com/linuxserver/docker-speedtest-tracker/packages)
([source](https://redirect.github.com/linuxserver/docker-speedtest-tracker))
| patch | `c09c8bb` -> `7ba0a8d` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-03 17:43:59 +00:00
TrueCharts Bot
8d7035f6d2 chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1359 → 0.22.1363 (#31584)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/jackett | patch | `9c00bc5` -> `ab63bcc` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-03 17:41:56 +00:00
TrueCharts Bot
2d73858934 chore(helm): update image docker.io/b4bz/homer v24.12.1 → v25.02.1 (#31591)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/b4bz/homer | major | `4b44a4a` -> `cf4ae75` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21ham9yIl19-->
2025-02-03 18:33:39 +01:00
TrueCharts Bot
187bbdb4e0 chore(helm): update image docker.io/n8nio/n8n 1.77.0 → 1.77.1 (#31597)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/n8nio/n8n](https://n8n.io)
([source](https://redirect.github.com/n8n-io/n8n)) | patch | `dd093bb`
-> `939731c` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-03 17:30:04 +00:00
TrueCharts Bot
4c884c1f47 chore(helm): update image docker.io/feramance/qbitrr v4.10.10 → v4.10.11 (#31581) 2025-02-03 18:30:00 +01:00
TrueCharts Bot
3e10db250a chore(helm): update chart memcached 14.5.1 → 14.5.2 (#31565)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [memcached](https://truecharts.org/charts/stable/memcached)
([source](https://redirect.github.com/bitnami/bitnami-docker-memcached))
| patch | `14.5.1` -> `14.5.2` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9oZWxtIiwidHlwZS9wYXRjaCJdfQ==-->
2025-02-03 17:29:45 +00:00
TrueCharts Bot
8fadca5291 chore(helm): update image quay.io/kiwigrid/k8s-sidecar 1.29.1 → 1.30.0 (#31590)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[quay.io/kiwigrid/k8s-sidecar](https://redirect.github.com/kiwigrid/k8s-sidecar)
| minor | `42002d6` -> `9a32627` |

---

> [!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>kiwigrid/k8s-sidecar (quay.io/kiwigrid/k8s-sidecar)</summary>

###
[`v1.30.0`](https://redirect.github.com/kiwigrid/k8s-sidecar/releases/tag/1.30.0)

[Compare
Source](https://redirect.github.com/kiwigrid/k8s-sidecar/compare/1.29.1...1.30.0)

#### 📦 Dependencies

-   Bump python-json-logger from 2.0.7 to 3.2.1 in /src
- PR:
[#&#8203;380](https://redirect.github.com/kiwigrid/k8s-sidecar/issues/380)
-   Bump kubernetes from 31.0.0 to 32.0.0 in /src
- PR:
[#&#8203;386](https://redirect.github.com/kiwigrid/k8s-sidecar/issues/386)
-   Bump helm/kind-action from 1.11.0 to 1.12.0
- PR:
[#&#8203;384](https://redirect.github.com/kiwigrid/k8s-sidecar/issues/384)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-02-03 17:25:52 +00:00
TrueCharts Bot
aa03733bff chore(helm): update image docker.io/koenkk/zigbee2mqtt 2.0.0 → 2.1.0 (#31588)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/koenkk/zigbee2mqtt](https://redirect.github.com/Koenkk/zigbee2mqtt)
| minor | `6105a3a` -> `9426e9a` |

---

> [!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>Koenkk/zigbee2mqtt (docker.io/koenkk/zigbee2mqtt)</summary>

###
[`v2.1.0`](https://redirect.github.com/Koenkk/zigbee2mqtt/blob/HEAD/CHANGELOG.md#210-2025-02-01)

[Compare
Source](https://redirect.github.com/Koenkk/zigbee2mqtt/compare/2.0.0...2.1.0)

##### Features

- Add a settings option to log to console in json format
([#&#8203;25649](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25649))
([26ef565](26ef565c8a))
- Allow Home Assistant OTA Update entity to show progress while updating
([#&#8203;25632](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25632))
([318dc04](318dc04132))

##### Bug Fixes

- Add Home Assistant device class for flow rates (e.g., Sonoff SWV)
([#&#8203;26035](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/26035))
([cdbd553](cdbd55320a))
- Add semver tags to Docker releases
([#&#8203;25530](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25530))
([0d30eb5](0d30eb553b))
- Allow to set throttle via frontend
([#&#8203;25997](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25997))
([5cf4547](5cf4547fe0))
- Container: remove modifying capabilities of `/usr/bin/node`
([#&#8203;25456](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25456))
([43a5b24](43a5b24dcc))
- Enable use of MQTT username without password
([#&#8203;25611](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25611))
([a28a5ba](a28a5baf17))
- Fix `Error: write after end` error
([#&#8203;25737](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25737))
([2d5e7bf](2d5e7bf9ff))
- Fix `Failed to call 'Frontend' 'stop' (TypeError: Cannot read
properties of undefined (reading 'close')`
[https://github.com/Koenkk/zigbee2mqtt/issues/25715](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25715)
([9daeba1](9daeba1f0a))
- Fix duplicate `action` publish when `advanced.output` has `attribute`
([#&#8203;25963](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25963))
([2af65cf](2af65cf28e))
- **ignore:** Ensure config example is never out of sync with settings
([#&#8203;25707](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25707))
([23b709c](23b709cee2))
- **ignore:** Remove `adapter` `auto` from schema
([#&#8203;25896](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25896))
([5e60f1d](5e60f1dc8d))
- **ignore:** update dependencies
([#&#8203;25535](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25535))
([6f3524b](6f3524b251))
- **ignore:** update dependencies
([#&#8203;25760](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25760))
([5b82d7e](5b82d7e4df))
- **ignore:** update dependencies
([#&#8203;25890](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25890))
([8da5fa6](8da5fa663d))
- **ignore:** update dependencies
([#&#8203;26005](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/26005))
([85460cd](85460cd5ce))
- Long startup time when `OnEvent` 'start' times out (repeatedly)
([#&#8203;25693](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25693))
([f1f73bd](f1f73bd464))
- Only use endpoint-specific states if the device definition uses them
([#&#8203;26019](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/26019))
([0462b94](0462b94f5a))
- Remove invalid `warn` `log_level`
[https://github.com/nurikk/zigbee2mqtt-frontend/issues/2369](https://redirect.github.com/nurikk/zigbee2mqtt-frontend/issues/2369)
([#&#8203;25634](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/25634))
([1667ba6](1667ba64ac))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-02-03 17:21:15 +00:00
TrueCharts Bot
830d30922d chore(helm): update image linuxserver/ombi digest to 074af33 (#31559)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[linuxserver/ombi](https://redirect.github.com/linuxserver/docker-ombi/packages)
([source](https://redirect.github.com/linuxserver/docker-ombi)) | digest
| `31a8519` -> `074af33` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:20:35 +00:00
TrueCharts Bot
5dfa7c5aed chore(helm): update image ghcr.io/suwayomi/tachidesk digest to 49a3ece (#31580)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/suwayomi/tachidesk | digest | `c28d97f` -> `49a3ece` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:20:19 +00:00
TrueCharts Bot
740f82712d chore(helm): update image ghcr.io/meeb/tubesync digest to 43f795e (#31558)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/meeb/tubesync | digest | `2aa3f3e` -> `43f795e` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:20:14 +00:00
TrueCharts Bot
0d3f92d84e chore(helm): update image docker.io/vabene1111/recipes 1.5.30 → 1.5.31 (#31583)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/vabene1111/recipes](https://redirect.github.com/TandoorRecipes/recipes)
| patch | `72d1e66` -> `063eb44` |

---

> [!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>TandoorRecipes/recipes (docker.io/vabene1111/recipes)</summary>

###
[`v1.5.31`](https://redirect.github.com/TandoorRecipes/recipes/releases/tag/1.5.31)

[Compare
Source](https://redirect.github.com/TandoorRecipes/recipes/compare/1.5.30...1.5.31)

- **fixed** image upload failing with upper case image extensions
[#&#8203;3511](https://redirect.github.com/TandoorRecipes/recipes/issues/3511)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-03 17:16:43 +00:00
TrueCharts Bot
d2b36e42c3 chore(helm): update image docker.io/metabase/metabase v0.52.8 → v0.52.9 (#31596)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/metabase/metabase | patch | `12093d9` -> `2effc7d` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-03 18:15:24 +01:00
TrueCharts Bot
33e56701ba chore(helm): update image docker.io/bobokun/qbit_manage v4.1.15 → v4.1.16 (#31566)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/bobokun/qbit_manage | patch | `d0ed1f2` -> `3d45696` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-03 17:15:13 +00:00
TrueCharts Bot
260f933b96 chore(helm): update image docker.io/requarks/wiki 2.5.305 → 2.5.306 (#31582)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/requarks/wiki | patch | `707fa8f` -> `8680a5e` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-03 17:10:01 +00:00
TrueCharts Bot
d10646210e chore(helm): update image ghcr.io/linuxserver/mysql-workbench digest to f68b5af (#31556)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/mysql-workbench](https://redirect.github.com/linuxserver/docker-mysql-workbench/packages)
([source](https://redirect.github.com/linuxserver/docker-mysql-workbench))
| digest | `418a59f` -> `f68b5af` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:06:11 +00:00
TrueCharts Bot
2060ff3d93 chore(helm): update image ghcr.io/linuxserver/piwigo digest to 4804c2b (#31557) 2025-02-03 18:06:05 +01:00
TrueCharts Bot
95194441fe chore(helm): update image docker.io/iyuucn/iyuuplus digest to 651227c (#31542) 2025-02-03 18:06:01 +01:00
TrueCharts Bot
bfec8a0c5d chore(helm): update image ghcr.io/linuxserver/babybuddy digest to c802793 (#31551) 2025-02-03 18:05:57 +01:00
TrueCharts Bot
e68daa9e3c chore(helm): update image ghcr.io/linuxserver/tvheadend digest to 993b1a0 (#31578)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/linuxserver/tvheadend | digest | `c5e8887` -> `993b1a0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:05:49 +00:00
TrueCharts Bot
fcfd44819b chore(helm): update image ghcr.io/hotio/cloudflareddns digest to 51e8638 (#31550) 2025-02-03 18:05:37 +01:00
TrueCharts Bot
67d5c4700d chore(helm): update image docker.io/thelounge/thelounge digest to eb39291 (#31577) 2025-02-03 18:05:31 +01:00
TrueCharts Bot
a0597e6daa chore(helm): update image docker.io/nodered/node-red digest to 9492661 (#31546)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/nodered/node-red](https://redirect.github.com/node-red/node-red-docker)
| digest | `871225a` -> `9492661` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:05:21 +00:00
TrueCharts Bot
4087ec27db chore(helm): update image docker.io/ronnieroller/media-roller digest to f75a013 (#31548)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/ronnieroller/media-roller | digest | `2b620e0` -> `f75a013`
|

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:05:12 +00:00
TrueCharts Bot
98a21f7b14 chore(helm): update image docker.io/odoo digest to 493e5e2 (#31547)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/odoo | digest | `cd226c0` -> `493e5e2` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:05:02 +00:00
TrueCharts Bot
e2a18d3bc5 chore(helm): update image docker.io/lancachenet/monolithic digest to 407a20b (#31544)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/lancachenet/monolithic | digest | `e6f66f7` -> `407a20b` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:03:50 +00:00
TrueCharts Bot
8c3012c38b chore(helm): update image docker.io/lancachenet/lancache-dns digest to 6ecb9bd (#31543)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/lancachenet/lancache-dns | digest | `3a8c96a` -> `6ecb9bd` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 17:01:45 +00:00
TrueCharts Bot
917c3d46fc chore(helm): update rdesktop (#31562)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/rdesktop | digest | `e781c85` -> `902af89` |
| lscr.io/linuxserver/rdesktop | digest | `a9ce2f7` -> `ffa0eb8` |
| lscr.io/linuxserver/rdesktop | digest | `3a19436` -> `00c5994` |
| lscr.io/linuxserver/rdesktop | digest | `3f96880` -> `f4e8b97` |
| lscr.io/linuxserver/rdesktop | digest | `2ae10a2` -> `3dbbc22` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 16:59:25 +00:00
TrueCharts Bot
82f95b1582 chore(helm): update image lscr.io/linuxserver/pyload-ng digest to a210a31 (#31561)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/pyload-ng | digest | `8518c9a` -> `a210a31` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-02-03 16:59:16 +00:00