Commit Graph
100 Commits
Author SHA1 Message Date
TrueCharts BotandGitHub 3cd66ce08f fix(website): update astro 5.2.6 → 5.4.0 (#32662)
This PR contains the following updates:

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

---

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

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

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

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

##### Minor Changes

-
[#&#8203;12052](https://redirect.github.com/withastro/astro/pull/12052)
[`5be12b2`](https://redirect.github.com/withastro/astro/commit/5be12b2bc9f359d3ecfa29b766f13ed2aabd119f)
Thanks [@&#8203;Fryuni](https://redirect.github.com/Fryuni)! - Exposes
extra APIs for scripting and testing.

##### Config helpers

Two new helper functions exported from `astro/config`:

- `mergeConfig()` allows users to merge partially defined Astro
configurations on top of a base config while following the merge rules
of `updateConfig()` available for integrations.
- `validateConfig()` allows users to validate that a given value is a
valid Astro configuration and fills in default values as necessary.

These helpers are particularly useful for integration authors and for
developers writing scripts that need to manipulate Astro configurations
programmatically.

##### Programmatic build

The `build` API now receives a second optional `BuildOptions` argument
where users can specify:

- `devOutput` (default `false`): output a development-based build
similar to code transformed in `astro dev`.
- `teardownCompiler` (default `true`): teardown the compiler WASM
instance after build.

These options provide more control when running Astro builds
programmatically, especially for testing scenarios or custom build
pipelines.

-
[#&#8203;13278](https://redirect.github.com/withastro/astro/pull/13278)
[`4a43c4b`](https://redirect.github.com/withastro/astro/commit/4a43c4b743affb78b1502801c797157b626c77a1)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds a new configuration option `server.allowedHosts` and CLI option
`--allowed-hosts`.

Now you can specify the hostnames that the dev and preview servers are
allowed to respond to. This is useful for allowing additional
subdomains, or running the dev server in a web container.

`allowedHosts` checks the Host header on HTTP requests from browsers and
if it doesn't match, it will reject the request to prevent CSRF and XSS
attacks.

    ```shell
    astro dev --allowed-hosts=foo.bar.example.com,bar.example.com
    ```

    ```shell
    astro preview --allowed-hosts=foo.bar.example.com,bar.example.com
    ```

    ```js
    // astro.config.mjs
    import { defineConfig } from 'astro/config';

    export default defineConfig({
      server: {
        allowedHosts: ['foo.bar.example.com', 'bar.example.com'],
      },
    });
    ```

This feature is the same as [Vite's `server.allowHosts`
configuration](https://vite.dev/config/server-options.html#server-allowedhosts).

-
[#&#8203;13254](https://redirect.github.com/withastro/astro/pull/13254)
[`1e11f5e`](https://redirect.github.com/withastro/astro/commit/1e11f5e8b722b179e382f3c792cd961b2b51f61b)
Thanks [@&#8203;p0lyw0lf](https://redirect.github.com/p0lyw0lf)! - Adds
the ability to process and optimize remote images in Markdown files

Previously, Astro only allowed local images to be optimized when
included using `![]()` syntax in plain Markdown files. Astro's image
service could only display remote images without any processing.

Now, Astro's image service can also optimize remote images written in
standard Markdown syntax. This allows you to enjoy the benefits of
Astro's image processing when your images are stored externally, for
example in a CMS or digital asset manager.

No additional configuration is required to use this feature! Any
existing remote images written in Markdown will now automatically be
optimized. To opt-out of this processing, write your images in Markdown
using the HTML `<img>` tag instead. Note that images located in your
`public/` folder are still never processed.

##### Patch Changes

-
[#&#8203;13256](https://redirect.github.com/withastro/astro/pull/13256)
[`509fa67`](https://redirect.github.com/withastro/astro/commit/509fa671a137515bd1818c81ee78de439a27e5dc)
Thanks [@&#8203;p0lyw0lf](https://redirect.github.com/p0lyw0lf)! - Adds
experimental responsive image support in Markdown

Previously, the `experimental.responsiveImages` feature could only
provide responsive images when using the `<Image />` and `<Picture />`
components.

Now, images written with the `![]()` Markdown syntax in Markdown and MDX
files will generate responsive images by default when using this
experimental feature.

To try this experimental feature, set `experimental.responsiveImages` to
true in your `astro.config.mjs` file:

    ```js
    {
       experimental: {
          responsiveImages: true,
       },
    }
    ```

Learn more about using this feature in the [experimental responsive
images feature
reference](https://docs.astro.build/en/reference/experimental-flags/responsive-images/).

For a complete overview, and to give feedback on this experimental API,
see the [Responsive Images
RFC](https://redirect.github.com/withastro/roadmap/blob/responsive-images/proposals/0053-responsive-images.md).

-
[#&#8203;13323](https://redirect.github.com/withastro/astro/pull/13323)
[`80926fa`](https://redirect.github.com/withastro/astro/commit/80926fadc06492fcae55f105582b9dc8279da6b3)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Updates `esbuild` and `vite` to the latest to avoid false positives
audits warnings caused by `esbuild`.

-
[#&#8203;13313](https://redirect.github.com/withastro/astro/pull/13313)
[`9e7c71d`](https://redirect.github.com/withastro/astro/commit/9e7c71d19c89407d9b27ded85d8c0fde238ce16c)
Thanks [@&#8203;martrapp](https://redirect.github.com/martrapp)! - Fixes
an issue where a form field named "attributes" shadows the
form.attributes property.

-
[#&#8203;12052](https://redirect.github.com/withastro/astro/pull/12052)
[`5be12b2`](https://redirect.github.com/withastro/astro/commit/5be12b2bc9f359d3ecfa29b766f13ed2aabd119f)
Thanks [@&#8203;Fryuni](https://redirect.github.com/Fryuni)! - Fixes
incorrect config update when calling `updateConfig` from
`astro:build:setup` hook.

The function previously called a custom update config function made for
merging an Astro config. Now it calls the appropriate `mergeConfig()`
utility exported by Vite that updates functional options correctly.

-
[#&#8203;13303](https://redirect.github.com/withastro/astro/pull/13303)
[`5f72a58`](https://redirect.github.com/withastro/astro/commit/5f72a58935d9bdd5237bdf86d2e94bcdc544c7b3)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes an issue where the dev server was applying second decoding of the
URL of the incoming request, causing issues for certain URLs.

- Updated dependencies
\[[`1e11f5e`](https://redirect.github.com/withastro/astro/commit/1e11f5e8b722b179e382f3c792cd961b2b51f61b),
[`1e11f5e`](https://redirect.github.com/withastro/astro/commit/1e11f5e8b722b179e382f3c792cd961b2b51f61b)]:
-
[@&#8203;astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)[@&#8203;0](https://redirect.github.com/0).6.0
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@&#8203;6](https://redirect.github.com/6).2.0

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

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

##### Patch Changes

-
[#&#8203;13233](https://redirect.github.com/withastro/astro/pull/13233)
[`32fafeb`](https://redirect.github.com/withastro/astro/commit/32fafeb874cc4b6312eb50d54d9f0ca6b83aedbc)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- Ensures consistent behaviour of `Astro.rewrite`/`ctx.rewrite` when
using `base` and `trailingSlash` options.

-
[#&#8203;13003](https://redirect.github.com/withastro/astro/pull/13003)
[`ea79054`](https://redirect.github.com/withastro/astro/commit/ea790542e186b0d2d2e828cb3ebd23bde4d04879)
Thanks [@&#8203;chaegumi](https://redirect.github.com/chaegumi)! - Fixes
a bug that caused the `vite.base` value to be ignored when running
`astro dev`

-
[#&#8203;13299](https://redirect.github.com/withastro/astro/pull/13299)
[`2e1321e`](https://redirect.github.com/withastro/astro/commit/2e1321e9d5b27da3e86bc4021e4136661a8055aa)
Thanks [@&#8203;bluwy](https://redirect.github.com/bluwy)! - Uses
`tinyglobby` for globbing files

-
[#&#8203;13233](https://redirect.github.com/withastro/astro/pull/13233)
[`32fafeb`](https://redirect.github.com/withastro/astro/commit/32fafeb874cc4b6312eb50d54d9f0ca6b83aedbc)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- Ensures that `Astro.url`/`ctx.url` is correctly updated with the
`base` path after rewrites.

This change fixes an issue where `Astro.url`/`ctx.url` did not include
the configured base path after Astro.rewrite was called. Now, the base
path is correctly reflected in Astro.url.

Previously, any rewrites performed through `Astro.rewrite`/`ctx.rewrite`
failed to append the base path to `Astro.url`/`ctx.rewrite`, which could
lead to incorrect URL handling in downstream logic. By fixing this, we
ensure that all routes remain consistent and predictable after a
rewrite.

If you were relying on the work around of including the base path in
astro.rewrite you can now remove it from the path.

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

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

##### Minor Changes

-
[#&#8203;13210](https://redirect.github.com/withastro/astro/pull/13210)
[`344e9bc`](https://redirect.github.com/withastro/astro/commit/344e9bc480a075161a7811b7733593556e7560da)
Thanks [@&#8203;VitaliyR](https://redirect.github.com/VitaliyR)! -
Handle `HEAD` requests to an endpoint when a handler is not defined.

If an endpoint defines a handler for `GET`, but does not define a
handler for `HEAD`, Astro will call the `GET` handler and return the
headers and status but an empty body.

-
[#&#8203;13195](https://redirect.github.com/withastro/astro/pull/13195)
[`3b66955`](https://redirect.github.com/withastro/astro/commit/3b669555d7ab9da5427e7b7037699d4f905d3536)
Thanks [@&#8203;MatthewLymer](https://redirect.github.com/MatthewLymer)!
- Improves SSR performance for synchronous components by avoiding the
use of Promises. With this change, SSR rendering of on-demand pages can
be up to 4x faster.

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
support for adapters auto-configuring experimental session storage
drivers.

Adapters can now configure a default session storage driver when the
`experimental.session` flag is enabled. If a hosting platform has a
storage primitive that can be used for session storage, the adapter can
automatically configure the session storage using that driver. This
allows Astro to provide a more seamless experience for users who want to
use sessions without needing to manually configure the session storage.

##### Patch Changes

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
⚠️ **BREAKING CHANGE FOR EXPERIMENTAL SESSIONS ONLY** ⚠️

Changes the `experimental.session` option to a boolean flag and moves
session config to a top-level value. This change is to allow the new
automatic session driver support. You now need to separately enable the
`experimental.session` flag, and then configure the session driver using
the top-level `session` key if providing manual configuration.

    ```diff
    defineConfig({
      // ...
      experimental: {
    -    session: {
    -      driver: 'upstash',
    -    },
    +    session: true,
      },
    +  session: {
    +    driver: 'upstash',
    +  },
    });
    ```

You no longer need to configure a session driver if you are using an
adapter that supports automatic session driver configuration and wish to
use its default settings.

    ```diff
    defineConfig({
      adapter: node({
        mode: "standalone",
      }),
      experimental: {
    -    session: {
    -      driver: 'fs',
    -      cookie: 'astro-cookie',
    -    },
    +    session: true,
      },
    +  session: {
    +    cookie: 'astro-cookie',
    +  },
    });
    ```

However, you can still manually configure additional driver options or
choose a non-default driver to use with your adapter with the new
top-level `session` config option. For more information, see the
[experimental session
docs](https://docs.astro.build/en/reference/experimental-flags/sessions/).

-
[#&#8203;13101](https://redirect.github.com/withastro/astro/pull/13101)
[`2ed67d5`](https://redirect.github.com/withastro/astro/commit/2ed67d5dc5c8056f9ab1e29e539bf086b93c60c2)
Thanks
[@&#8203;corneliusroemer](https://redirect.github.com/corneliusroemer)!
- Fixes a bug where `HEAD` and `OPTIONS` requests for non-prerendered
pages were incorrectly rejected with 403 FORBIDDEN

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-27 20:20:03 +01:00
TrueCharts BotandGitHub 7c73ba326f chore(helm): update image docker.io/jlesage/makemkv v25.02.2 → v25.02.3 (#32635)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/jlesage/makemkv](https://redirect.github.com/jlesage/docker-makemkv)
| patch | `501b52b` -> `7952ff1` |

---

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

###
[`v25.02.3`](https://redirect.github.com/jlesage/docker-makemkv/releases/tag/v25.02.3):
Version 25.02.3

[Compare
Source](https://redirect.github.com/jlesage/docker-makemkv/compare/v25.02.2...v25.02.3)

Changes in this release:

- Improved disc ejection mechanism by trying another method if one
fails.

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 20:19:37 +01:00
TrueCharts BotandGitHub 7ad1b1f9f2 chore(helm): update image docker.io/zwavejs/zwave-js-ui 9.30.1 → 9.31.0 (#32659)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/zwavejs/zwave-js-ui](https://redirect.github.com/zwave-js/zwave-js-ui)
| minor | `69966e5` -> `361c8c9` |

---

> [!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>zwave-js/zwave-js-ui (docker.io/zwavejs/zwave-js-ui)</summary>

###
[`v9.31.0`](https://redirect.github.com/zwave-js/zwave-js-ui/blob/HEAD/CHANGELOG.md#9310-2025-02-27)

[Compare
Source](https://redirect.github.com/zwave-js/zwave-js-ui/compare/v9.30.1...v9.31.0)

##### Bug Fixes

- **logger:** ensure maxFiles validation checks for valid format
([3d36c39](https://redirect.github.com/zwave-js/zwave-js-ui/commit/3d36c3915c814121376bb99c1d7bf43d1e062f69))
- **ui:** pressing save on settings on initial load could lead to clear
actual settings
([65d1362](https://redirect.github.com/zwave-js/zwave-js-ui/commit/65d136259ba6da688873e262e531b60bb56e7745)),
closes
[#&#8203;4128](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4128)
- **ui:** sanitize search function to convert assignment to comparison
in zniffer
([6a9b851](https://redirect.github.com/zwave-js/zwave-js-ui/commit/6a9b851ded4e22d437cc25d11260ecb6f5e52583)),
closes
[#&#8203;4117](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4117)
- **ui:** sort filtered nodes by name
([ca07b5d](https://redirect.github.com/zwave-js/zwave-js-ui/commit/ca07b5d3b9bd7cfcd757261547c2421b960a59b2)),
closes
[#&#8203;4114](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4114)

##### Features

- add restart button on topbar
([#&#8203;4132](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4132))
([d5af88d](https://redirect.github.com/zwave-js/zwave-js-ui/commit/d5af88d3e4940fe8eddf07ee5200a3d2890933cd))
- bump zwave-js@14.3.10
([#&#8203;4135](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4135))
([a208bac](https://redirect.github.com/zwave-js/zwave-js-ui/commit/a208bac5e0e4da44e396b0feccb5d9d147bb975d))
- bump zwave-js@14.3.9
([#&#8203;4131](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4131))
([831172a](https://redirect.github.com/zwave-js/zwave-js-ui/commit/831172a17d1b725625d7bc4b443f3ff88170eb1d))
- **ui:** show full date when hovering timestamp on zniffer
([#&#8203;4118](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4118))
([4ebbbf8](https://redirect.github.com/zwave-js/zwave-js-ui/commit/4ebbbf8d99604aa7163aec674eecbf19ff9a4f13))

####
[9.30.1](https://redirect.github.com/zwave-js/zwave-js-ui/compare/v9.30.0...v9.30.1)
(2025-01-28)

##### Features

- bump zwave-js@14.3.8
([#&#8203;4108](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4108))
([8b8837e](https://redirect.github.com/zwave-js/zwave-js-ui/commit/8b8837ecb53a932b4f923e80219799dcb69473f5))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-27 20:14:41 +01:00
TrueCharts BotandGitHub b02d920030 chore(helm): update image docker.io/wekanteam/wekan v7.81 → v7.82 (#32658)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/wekanteam/wekan](https://redirect.github.com/wekan/wekan) |
minor | `80026f2` -> `718b72e` |

---

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

###
[`v7.82`](https://redirect.github.com/wekan/wekan/blob/HEAD/CHANGELOG.md#v782-2025-02-24-WeKan--release)

[Compare
Source](https://redirect.github.com/wekan/wekan/compare/v7.81...v7.82)

v7.82 Docker version is broken:
[https://github.com/wekan/wekan/issues/5697](https://redirect.github.com/wekan/wekan/issues/5697)
. Snap Candidate works.

This release adds the following new features:

- [Add possibility to use a token in place of ipaddress to access
metrics route](https://redirect.github.com/wekan/wekan/pull/5682).
    Thanks to salleman33.

and adds the following updates:

- [Updated
dependencies](https://redirect.github.com/wekan/wekan/pull/5691).
    Thanks to dependabot.
- [Updated requirements at
docs](https://redirect.github.com/wekan/wekan/commit/148b81262d0d143460e881d645fefa6740aae40d).
    Thanks to mueller-ma.
- [Updated
dependencies](https://redirect.github.com/wekan/wekan/commit/666ee8403388f7d5e1a30cf0e53bc46a70bf1c40).
    Thanks to developes of dependencies.
- [Fixed building WeKan. Updated dompurify. Forked Meteor 2.14 version
of meteor-node-stubs to update
elliptic](https://redirect.github.com/wekan/wekan/commit/18d0fa43275cd2955dd6416213e316ca08a62255).
    Thanks to developers of depedencies and xet7.

and fixes the following bugs:

- [Added missing )
character](https://redirect.github.com/wekan/wekan/commit/563a508e269be87eb713e2888409525e1ba82001).
    Thanks to xet7.

Thanks to above GitHub users for their contributions and translators for
their translations.

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-27 20:13:31 +01:00
TrueCharts BotandGitHub 45ad2876ee fix(deps): update module github.com/go-git/go-git/v5 v5.13.2 → v5.14.0 (clustertool) (#32661)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/go-git/go-git/v5](https://redirect.github.com/go-git/go-git)
| require | minor | `v5.13.2` -> `v5.14.0` |

---

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

---

### Release Notes

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

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

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

#### What's Changed

- v5: Bump Go and dependencies to mitigate
[GO-2025-3487](https://pkg.go.dev/vuln/GO-2025-3487) by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-git/pull/1436](https://redirect.github.com/go-git/go-git/pull/1436)

⚠️ Note that this version requires Go 1.23, due to the bump to
`golang.org/x/crypto@v0.35.0` which mitigates the CVE above. User's that
can't bump to Go 1.23 will need to remain on the previous v5.13.x
release.

**Full Changelog**:
https://github.com/go-git/go-git/compare/v5.13.2...v5.14.0

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-27 20:09:03 +01:00
TrueCharts BotandGitHub f778201ebe chore(helm): update image docker.io/n8nio/n8n 1.80.3 → 1.81.1 (#32657)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/n8nio/n8n](https://n8n.io)
([source](https://redirect.github.com/n8n-io/n8n)) | minor | `76997d1`
-> `03ec7a3` |

---

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

###
[`v1.81.0`](https://redirect.github.com/n8n-io/n8n/blob/HEAD/CHANGELOG.md#1810-2025-02-24)

##### Bug Fixes

- Always clear popupWindowState before showing popup from form trigger
([#&#8203;13363](https://redirect.github.com/n8n-io/n8n/issues/13363))
([b7f1265](https://redirect.github.com/n8n-io/n8n/commit/b7f12650f1f42c0ff15c1da3e5ade350fb1e23d2))
- **Code Node:** Fix `$items` in Code node when using task runner
([#&#8203;13368](https://redirect.github.com/n8n-io/n8n/issues/13368))
([87b3c50](https://redirect.github.com/n8n-io/n8n/commit/87b3c508b3d5a7d6f3b9f8377de66567a04fa970))
- **core:** Avoid renewing the license on init to prevent excessive
duplicate renewal calls
([#&#8203;13347](https://redirect.github.com/n8n-io/n8n/issues/13347))
([1e1f528](https://redirect.github.com/n8n-io/n8n/commit/1e1f52846641515ad4479ab1088e78a9266e452d))
- **core:** Ensure that 'workflow-post-execute' event has userId
whenever it's available
([#&#8203;13326](https://redirect.github.com/n8n-io/n8n/issues/13326))
([f41e353](https://redirect.github.com/n8n-io/n8n/commit/f41e353887fef4269510d25fa87b73da4cf925f9))
- **core:** Fix DB migrations for MySQL
([#&#8203;13261](https://redirect.github.com/n8n-io/n8n/issues/13261))
([d0968a1](https://redirect.github.com/n8n-io/n8n/commit/d0968a10d56ac5c97974129742ba8f8a85997dac))
- **core:** Fix resuming executions on test webhooks from Wait forms
([#&#8203;13410](https://redirect.github.com/n8n-io/n8n/issues/13410))
([8ffd316](https://redirect.github.com/n8n-io/n8n/commit/8ffd3167d58d30f087fd31010e6f79f1398d8f49))
- **core:** Handle connections for missing nodes in a workflow
([#&#8203;13362](https://redirect.github.com/n8n-io/n8n/issues/13362))
([1e5feb1](https://redirect.github.com/n8n-io/n8n/commit/1e5feb195d50054939f85c9e1b5a32885c579901))
- **core:** Make sure middleware works with legacy API Keys
([#&#8203;13390](https://redirect.github.com/n8n-io/n8n/issues/13390))
([ca76ef4](https://redirect.github.com/n8n-io/n8n/commit/ca76ef4bc248a3bcde844bc8378d38eed269f032))
- **core:** Return original hooks errors to the frontend
([#&#8203;13365](https://redirect.github.com/n8n-io/n8n/issues/13365))
([5439181](https://redirect.github.com/n8n-io/n8n/commit/5439181e92f20fef1423575cabec7acbe1740b26))
- **editor:** Correctly close node creator when selecting/deselecting a
node
([#&#8203;13338](https://redirect.github.com/n8n-io/n8n/issues/13338))
([c3dc66e](https://redirect.github.com/n8n-io/n8n/commit/c3dc66ee7372927fcfd6baac3b9d853690e39c99))
- **editor:** Do not show credential details popup for users without
necessary scopes with direct link
([#&#8203;13264](https://redirect.github.com/n8n-io/n8n/issues/13264))
([a5401d0](https://redirect.github.com/n8n-io/n8n/commit/a5401d06a58ef026f44499d05b42a8d0dbe2520e))
- **editor:** Do not show project settings for users without permission
with direct link
([#&#8203;13246](https://redirect.github.com/n8n-io/n8n/issues/13246))
([fa488f1](https://redirect.github.com/n8n-io/n8n/commit/fa488f15619f798a0360c96492f2928ac661d9ee))
- **editor:** Don't open form popup window if different trigger node is
used
([#&#8203;13391](https://redirect.github.com/n8n-io/n8n/issues/13391))
([57a9a5b](https://redirect.github.com/n8n-io/n8n/commit/57a9a5b15f55aae0301851e93847ed87feb081e8))
- **editor:** Fix configurable node description margins and text
alignment
([#&#8203;13318](https://redirect.github.com/n8n-io/n8n/issues/13318))
([c881ea2](https://redirect.github.com/n8n-io/n8n/commit/c881ea2c7b43a4fb610533dd553520a6de51f22d))
- **editor:** Fix workflow moving E2E tests
([#&#8203;13396](https://redirect.github.com/n8n-io/n8n/issues/13396))
([073b05b](https://redirect.github.com/n8n-io/n8n/commit/073b05b10c81e3a0451c310bc0bde25170e1591e))
- **editor:** Optionally share credentials used by the workflow when
moving the workflow between projects
([#&#8203;12524](https://redirect.github.com/n8n-io/n8n/issues/12524))
([7bd83d7](https://redirect.github.com/n8n-io/n8n/commit/7bd83d7d330b6f01b5798461f2218254a9964d87))
- **editor:** Polyfill `Array.prototype.toSorted` (no-chanhelog)
([#&#8203;13463](https://redirect.github.com/n8n-io/n8n/issues/13463))
([f2b15ea](https://redirect.github.com/n8n-io/n8n/commit/f2b15ea086fcc541a5a584998985d712335210ec))
- **editor:** Register/unregister keybindings on window focus/blur
([#&#8203;13419](https://redirect.github.com/n8n-io/n8n/issues/13419))
([7a504dc](https://redirect.github.com/n8n-io/n8n/commit/7a504dc30fcf0c7641528ed469835811f82bb098))
- **editor:** Switch back to selection mode on window blur
([#&#8203;13341](https://redirect.github.com/n8n-io/n8n/issues/13341))
([415e25b](https://redirect.github.com/n8n-io/n8n/commit/415e25b5d524b0d3c391403f129468e57bbb918e))
- Prevent flicker during paginated workflow navigation
([#&#8203;13348](https://redirect.github.com/n8n-io/n8n/issues/13348))
([d277e0b](https://redirect.github.com/n8n-io/n8n/commit/d277e0ba0e5d87500457538b4b0f1363e267f071))

##### Features

- **core:** Hackmation - Add last activity metric
([#&#8203;13237](https://redirect.github.com/n8n-io/n8n/issues/13237))
([272f55b](https://redirect.github.com/n8n-io/n8n/commit/272f55b80f1d4576d1675040bd2775210c4ab5e9))
- **editor:** Change rename node keyboard shortcut to Space on new
canvas
([#&#8203;11872](https://redirect.github.com/n8n-io/n8n/issues/11872))
([c90d0d9](https://redirect.github.com/n8n-io/n8n/commit/c90d0d9161ec161cd1afd6aa5b56345c1611f9c9))
- **editor:** Implement breadcrumbs component
([#&#8203;13317](https://redirect.github.com/n8n-io/n8n/issues/13317))
([db297f1](https://redirect.github.com/n8n-io/n8n/commit/db297f107d81738d57e298135a9c279ad83345dc))
- **editor:** Implement folder navigation in workflows list
([#&#8203;13370](https://redirect.github.com/n8n-io/n8n/issues/13370))
([0eae14e](https://redirect.github.com/n8n-io/n8n/commit/0eae14e27ab4fab3229750d6b2a32868db1e8dd4))
- **editor:** Rename 'Text' fields on AI nodes to 'Prompt'
([#&#8203;13416](https://redirect.github.com/n8n-io/n8n/issues/13416))
([4fa666b](https://redirect.github.com/n8n-io/n8n/commit/4fa666b976423365299e915130384e10c8e12528))
- Enable partial exections v2 by default
([#&#8203;13344](https://redirect.github.com/n8n-io/n8n/issues/13344))
([29ae239](https://redirect.github.com/n8n-io/n8n/commit/29ae2396c99d54d8f3db71e6370516f0dc354d00))
- **n8n Form Node:** Limit wait time parameters
([#&#8203;13160](https://redirect.github.com/n8n-io/n8n/issues/13160))
([14b6f8b](https://redirect.github.com/n8n-io/n8n/commit/14b6f8b97275e38ba4a4c1819e8e32b711de21ba))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-27 20:07:23 +01:00
TrueCharts BotandGitHub d8aa3d7ebe chore(helm): update image docker.io/jenkins/jenkins 2.498 → 2.499 (#32656)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/jenkins/jenkins](https://www.jenkins.io/)
([source](https://redirect.github.com/jenkinsci/docker)) | minor |
`e7f4d79` -> `12f6987` |

---

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

###
[`v2.499`](https://redirect.github.com/jenkinsci/docker/releases/tag/2.499)

[Compare
Source](https://redirect.github.com/jenkinsci/docker/compare/2.498...2.499)

<!-- Optional: add a release summary here -->

#### 📦 Jenkins Core updates

- Update to Jenkins 2.499
([changelog](https://www.jenkins.io/changelog/2.499))

#### 📦 Dependency updates

- Bump updatecli/updatecli-action from 2.77.0 to 2.78.1
([#&#8203;1992](https://redirect.github.com/jenkinsci/docker/issues/1992))
[@&#8203;github-actions](https://redirect.github.com/github-actions)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-27 20:03:58 +01:00
TrueCharts BotandGitHub a8183b760f chore(helm): update image docker.io/haveagitgat/tdarr_node 2.33.01 → 2.34.01 (#32655)
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 | `da5e822` -> `129e721` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-27 20:03:49 +01:00
TrueCharts BotandGitHub cb0a313a09 chore(helm): update image docker.io/haveagitgat/tdarr 2.33.01 → 2.34.01 (#32654)
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 | `55ea77e` -> `211ad98` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-27 20:03:02 +01:00
TrueCharts BotandGitHub 3038e0e265 chore(helm): update image docker.io/whyour/qinglong 2.18.1 → 2.18.2 (#32650)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/whyour/qinglong](https://redirect.github.com/whyour/qinglong)
| patch | `baa7ba5` -> `85a0ec7` |

---

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

###
[`v2.18.2`](https://redirect.github.com/whyour/qinglong/compare/v2.18.1...v2.18.2)

[Compare
Source](https://redirect.github.com/whyour/qinglong/compare/v2.18.1...v2.18.2)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 19:58:32 +01:00
TrueCharts BotandGitHub 123758be4d chore(helm): update image docker.io/homebridge/homebridge 2025-02-16 → 2025-02-26 (#32634)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/homebridge/homebridge](https://redirect.github.com/homebridge/docker-homebridge)
| patch | `c0185a9` -> `97d5c72` |

---

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

###
[`v2025-02-26`](https://redirect.github.com/homebridge/docker-homebridge/releases/tag/2025-02-26)

[Compare
Source](https://redirect.github.com/homebridge/docker-homebridge/compare/2025-02-16...2025-02-26)

Homebridge Docker Package Manifest

| Package | Version |
|:-------:|:-------:|
|Ubuntu|24.04|
|NodeJS| v22.14.0 |
|Homebridge-Config-UI-X| 4.71.2 |
|Homebridge| latest \* |
|ffmpeg for homebridge| v2.1.7|

- Note: Homebridge is only updated to latest on a new installation,
refreshing an existing installation does not update Homebridge version.
To update the Homebridge version please use the UI.

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 19:54:01 +01:00
TrueCharts BotandGitHub 4c2ab3535e chore(helm): update image docker.io/docuseal/docuseal 1.9.2 → 1.9.3 (#32631)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/docuseal/docuseal | patch | `ab91873` -> `2e06155` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 19:46:00 +01:00
TrueCharts BotandGitHub 942cda24f7 chore(helm): update image docker 28.0.0 → 28.0.1 (#32628)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker | patch | `0a9c58e` -> `0336b60` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 19:42:51 +01:00
TrueCharts BotandGitHub 4d949b16ba chore(helm): update image docker.io/b4bz/homer v25.02.1 → v25.02.2 (#32629)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/b4bz/homer | patch | `cf4ae75` -> `c367265` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 19:42:32 +01:00
TrueCharts BotandGitHub a82ec59f35 chore(helm): update image ghcr.io/elfhosted/riven-frontend digest to c901b97 (#32621)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/riven-frontend | digest | `887739f` -> `c901b97` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-27 19:41:10 +01:00
TrueCharts BotandGitHub b4bf12b249 chore(helm): update image monica digest to 06ee8de (#32623)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| monica | digest | `a8e03e8` -> `06ee8de` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-27 19:40:10 +01:00
TrueCharts BotandGitHub 39f2cbd6eb chore(helm): update image docker.io/xavierh/goaccess-for-nginxproxymanager digest to 4604796 (#32619)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/xavierh/goaccess-for-nginxproxymanager | digest | `5e00d9f`
-> `4604796` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-27 19:39:56 +01:00
TrueCharts BotandGitHub 4dea8cc973 chore(helm): update image friendica digest to 1028146 (#32620)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| friendica | digest | `6ae9660` -> `1028146` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-27 19:39:35 +01:00
TrueCharts BotandGitHub 995601610b chore(helm): update image docker.io/webpsh/webps digest to 0e7d505 (#32618) 2025-02-27 19:38:04 +01:00
TrueCharts BotandGitHub 0a21548944 chore(helm): update image docker.io/revenz/fileflows digest to 54ae364 (#32616)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/revenz/fileflows | digest | `930a6ff` -> `54ae364` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-27 19:38:00 +01:00
TrueCharts BotandGitHub dfa66e1398 chore(helm): update image docker.io/benzino77/tasmocompiler digest to 63640e0 (#32610)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/benzino77/tasmocompiler | digest | `939d8df` -> `63640e0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-27 19:34:20 +01:00
TrueCharts BotandGitHub cf71876a59 chore(helm): update image docker.io/feramance/qbitrr v4.10.12 → v4.10.13 (#32633) 2025-02-27 19:29:05 +01:00
TrueCharts BotandGitHub 02e843443b chore(flux): update image blocky 16.13.6 → 16.13.8 (clustertool) (#32626)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [blocky](https://truecharts.org/charts/premium/blocky)
([source](https://0xerr0r.github.io/blocky/)) | patch | `16.13.6` ->
`16.13.8` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 19:28:54 +01:00
TrueCharts BotandGitHub b2fd9c915e chore(flux): update image jackett 23.3.32 → 23.3.33 (#32627) 2025-02-27 19:21:02 +01:00
TrueCharts BotandGitHub f40176d220 chore(container): update traefik docker tag to v3.3.4 (#32625)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [traefik](https://redirect.github.com/containous/traefik) | final |
patch | `v3.3.3` -> `v3.3.4` |

---

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

---

### Release Notes

<details>
<summary>containous/traefik (traefik)</summary>

###
[`v3.3.4`](https://redirect.github.com/traefik/traefik/releases/tag/v3.3.4)

[Compare
Source](https://redirect.github.com/containous/traefik/compare/v3.3.4...v3.3.4)

**Important:** Please read the [migration
guide](https://doc.traefik.io/traefik/migration/v3/#v334).

**Bug fixes:**

- **\[fastproxy]** Bump github.com/valyala/fasthttp to v1.58.0
([#&#8203;11526](https://redirect.github.com/traefik/traefik/pull/11526)
by [kevinpollet](https://redirect.github.com/kevinpollet))
- **\[fastproxy]** Add WebSocket headers if they are present in the
request
([#&#8203;11522](https://redirect.github.com/traefik/traefik/pull/11522)
by [kevinpollet](https://redirect.github.com/kevinpollet))
- **\[fastproxy]** Chunked responses does not have a Content-Length
header
([#&#8203;11514](https://redirect.github.com/traefik/traefik/pull/11514)
by [kevinpollet](https://redirect.github.com/kevinpollet))
- **\[metrics,otel]** Change request duration metric unit from
millisecond to second
([#&#8203;11523](https://redirect.github.com/traefik/traefik/pull/11523)
by [rtribotte](https://redirect.github.com/rtribotte))
- **\[sticky-session]** Fix double hash in sticky cookie
([#&#8203;11518](https://redirect.github.com/traefik/traefik/pull/11518)
by [juliens](https://redirect.github.com/juliens))
- **\[tracing]** Use ResourceAttributes instead of GlobalAttributes
([#&#8203;11515](https://redirect.github.com/traefik/traefik/pull/11515)
by [bruno-de-queiroz](https://redirect.github.com/bruno-de-queiroz))
- **\[tracing]** Fix panic when calling Tracer
([#&#8203;11479](https://redirect.github.com/traefik/traefik/pull/11479)
by [basgys](https://redirect.github.com/basgys))

**Documentation:**

- **\[acme]** Update ACME provider configuration options
([#&#8203;11564](https://redirect.github.com/traefik/traefik/pull/11564)
by [sheddy-traefik](https://redirect.github.com/sheddy-traefik))
- **\[acme]** Fix incorrect grammar in ACME documentation
([#&#8203;11553](https://redirect.github.com/traefik/traefik/pull/11553)
by [Peter-Maguire](https://redirect.github.com/Peter-Maguire))
- **\[metrics,tracing,accesslogs]** Add missing options in entrypoints
page
([#&#8203;11524](https://redirect.github.com/traefik/traefik/pull/11524)
by [sheddy-traefik](https://redirect.github.com/sheddy-traefik))
- **\[tracing]** Replace globalAttributes with resourceAttributes in
tracing reference
([#&#8203;11531](https://redirect.github.com/traefik/traefik/pull/11531)
by [rtribotte](https://redirect.github.com/rtribotte))

**Misc:**

- Merge branch v2.11 into v3.3
([#&#8203;11567](https://redirect.github.com/traefik/traefik/pull/11567)
by [kevinpollet](https://redirect.github.com/kevinpollet))

###
[`v3.3.4`](https://redirect.github.com/traefik/traefik/releases/tag/v3.3.4)

[Compare
Source](https://redirect.github.com/containous/traefik/compare/v3.3.3...v3.3.4)

**Important:** Please read the [migration
guide](https://doc.traefik.io/traefik/migration/v3/#v334).

**Bug fixes:**

- **\[fastproxy]** Bump github.com/valyala/fasthttp to v1.58.0
([#&#8203;11526](https://redirect.github.com/traefik/traefik/pull/11526)
by [kevinpollet](https://redirect.github.com/kevinpollet))
- **\[fastproxy]** Add WebSocket headers if they are present in the
request
([#&#8203;11522](https://redirect.github.com/traefik/traefik/pull/11522)
by [kevinpollet](https://redirect.github.com/kevinpollet))
- **\[fastproxy]** Chunked responses does not have a Content-Length
header
([#&#8203;11514](https://redirect.github.com/traefik/traefik/pull/11514)
by [kevinpollet](https://redirect.github.com/kevinpollet))
- **\[metrics,otel]** Change request duration metric unit from
millisecond to second
([#&#8203;11523](https://redirect.github.com/traefik/traefik/pull/11523)
by [rtribotte](https://redirect.github.com/rtribotte))
- **\[sticky-session]** Fix double hash in sticky cookie
([#&#8203;11518](https://redirect.github.com/traefik/traefik/pull/11518)
by [juliens](https://redirect.github.com/juliens))
- **\[tracing]** Use ResourceAttributes instead of GlobalAttributes
([#&#8203;11515](https://redirect.github.com/traefik/traefik/pull/11515)
by [bruno-de-queiroz](https://redirect.github.com/bruno-de-queiroz))
- **\[tracing]** Fix panic when calling Tracer
([#&#8203;11479](https://redirect.github.com/traefik/traefik/pull/11479)
by [basgys](https://redirect.github.com/basgys))

**Documentation:**

- **\[acme]** Update ACME provider configuration options
([#&#8203;11564](https://redirect.github.com/traefik/traefik/pull/11564)
by [sheddy-traefik](https://redirect.github.com/sheddy-traefik))
- **\[acme]** Fix incorrect grammar in ACME documentation
([#&#8203;11553](https://redirect.github.com/traefik/traefik/pull/11553)
by [Peter-Maguire](https://redirect.github.com/Peter-Maguire))
- **\[metrics,tracing,accesslogs]** Add missing options in entrypoints
page
([#&#8203;11524](https://redirect.github.com/traefik/traefik/pull/11524)
by [sheddy-traefik](https://redirect.github.com/sheddy-traefik))
- **\[tracing]** Replace globalAttributes with resourceAttributes in
tracing reference
([#&#8203;11531](https://redirect.github.com/traefik/traefik/pull/11531)
by [rtribotte](https://redirect.github.com/rtribotte))

**Misc:**

- Merge branch v2.11 into v3.3
([#&#8203;11567](https://redirect.github.com/traefik/traefik/pull/11567)
by [kevinpollet](https://redirect.github.com/kevinpollet))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 19:20:38 +01:00
TrueCharts BotandGitHub 6e5da42e03 chore(github-action): update actions/cache digest to d4323d4 (#32606) 2025-02-27 19:16:20 +01:00
TrueCharts BotandGitHub 48ff3b66e9 chore(container): update golang:1.24.0 docker digest to cd0c949 (#32605)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| golang | final | digest | `2b1cbf2` -> `cd0c949` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-27 19:15:53 +01:00
TrueCharts BotandGitHub c84b24c86a chore(helm): update image ghcr.io/linuxserver/calibre digest to 458392c (#32602) 2025-02-27 13:22:32 +01:00
TrueCharts BotandGitHub d7aa186020 chore(helm): update image docker.io/zedeus/nitter digest to 27a6733 (#32601) 2025-02-27 13:22:30 +01:00
TrueCharts BotandGitHub 647bd0264b chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1459 → 0.22.1461 (#32603)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/jackett | patch | `0fa336a` -> `0bba435` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 13:22:25 +01:00
TrueCharts BotandGitHub 79ce9242a0 chore(helm): update image ghcr.io/linuxserver/bookstack 24.12.20241223 → 25.02.20250226 (#32598)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/bookstack](https://redirect.github.com/linuxserver/docker-bookstack/packages)
([source](https://redirect.github.com/linuxserver/docker-bookstack)) |
major | `d1c7c9a` -> `aa5aabd` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
2025-02-27 09:10:34 +01:00
TrueCharts BotandGitHub 255ff2abc0 chore(helm): update image docker.io/diygod/rsshub digest to 2480e57 (#32599) 2025-02-27 07:18:10 +01:00
TrueCharts BotandGitHub 913a64cef2 chore(helm): update image ghcr.io/linuxserver/oscam 11869-ls134 → 11870-ls134 (#32600)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/oscam](https://redirect.github.com/linuxserver/docker-oscam/packages)
([source](https://redirect.github.com/linuxserver/docker-oscam)) | patch
| `97aeaea` -> `7a27fb5` |

---

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

###
[`v11870-ls134`](https://redirect.github.com/linuxserver/docker-oscam/releases/tag/11870-ls134)

[Compare
Source](https://redirect.github.com/linuxserver/docker-oscam/compare/11869-ls134...11870-ls134)

**CI Report:**

https://ci-tests.linuxserver.io/linuxserver/oscam/11870-ls134/index.html

**LinuxServer Changes:**

Rebase to Alpine 3.20.

**Remote Changes:**

Updating to 11870

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 07:18:03 +01:00
TrueCharts BotandGitHub fe608fb481 chore(helm): update image ghcr.io/elfhosted/emby 4.9.0.38 → 4.9.0.40 (#32596) 2025-02-27 01:23:04 +01:00
TrueCharts BotandGitHub e90271fa27 chore(helm): update jupyter 2025-02-24 → 2025-02-26 (patch) (#32597)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| quay.io/jupyter/all-spark-notebook | patch | `76d5bd5` -> `80f3752` |
| quay.io/jupyter/base-notebook | patch | `81469c7` -> `b5bdfed` |
| quay.io/jupyter/datascience-notebook | patch | `ea4d1a5` -> `58d8b2e`
|
| quay.io/jupyter/minimal-notebook | patch | `8ebfc44` -> `8f87030` |
| quay.io/jupyter/pyspark-notebook | patch | `1fef14c` -> `e8433cb` |
| quay.io/jupyter/r-notebook | patch | `4cde721` -> `f6991c9` |
| quay.io/jupyter/scipy-notebook | patch | `f18bf64` -> `260aaee` |
| quay.io/jupyter/tensorflow-notebook | patch | `3dd0489` -> `f46139e` |

---

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

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 01:22:59 +01:00
TrueCharts BotandGitHub 5c5cf79cc1 chore(helm): update authentik 2025.2.0 → 2025.2.1 (patch) (#32595)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/goauthentik/ldap](https://goauthentik.io)
([source](https://redirect.github.com/goauthentik/authentik)) | patch |
`38e3c94` -> `74e7457` |
| [ghcr.io/goauthentik/proxy](https://goauthentik.io)
([source](https://redirect.github.com/goauthentik/authentik)) | patch |
`63ccf2d` -> `007250c` |
| [ghcr.io/goauthentik/radius](https://goauthentik.io)
([source](https://redirect.github.com/goauthentik/authentik)) | patch |
`ce38260` -> `a822748` |
| [ghcr.io/goauthentik/server](https://goauthentik.io)
([source](https://redirect.github.com/goauthentik/authentik)) | patch |
`64635e8` -> `dc07e81` |

---

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

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-27 01:22:37 +01:00
TrueCharts BotandGitHub 8ab4fe9d3c chore(helm): update image public.ecr.aws/bitnami/wordpress digest to fab54ea (#32589) 2025-02-26 19:19:22 +01:00
TrueCharts BotandGitHub 2485f5a3dd chore(helm): update image ghcr.io/pmmp/pocketmine-mp 5.25.0 → 5.25.1 (#32591)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/pmmp/pocketmine-mp | patch | `f0e564f` -> `05df425` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-26 19:19:18 +01:00
TrueCharts BotandGitHub 82361d5f89 chore(helm): update image ghcr.io/immich-app/immich-server v1.126.1 → v1.127.0 (#32592)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/immich-app/immich-server](https://redirect.github.com/immich-app/base-images)
| minor | `f8a3c78` -> `6606ce7` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-26 19:17:59 +01:00
TrueCharts BotandGitHub 6ffba849bd chore(github-action): update docker/setup-qemu-action digest to 5964de0 (#32588)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[docker/setup-qemu-action](https://redirect.github.com/docker/setup-qemu-action)
| action | digest | `4574d27` -> `5964de0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 19:11:26 +01:00
TrueCharts BotandGitHub 964ca10d4b chore(flux): update image jackett 23.3.31 → 23.3.32 (#32590)
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.31` ->
`23.3.32` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-26 19:11:11 +01:00
TrueCharts BotandGitHub 3e9552d6cc chore(github-action): update docker/metadata-action digest to 902fa8e (#32586) 2025-02-26 19:11:02 +01:00
TrueCharts BotandGitHub d54d9bfc10 chore(github-action): update docker/setup-buildx-action digest to b5ca514 (#32587)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[docker/setup-buildx-action](https://redirect.github.com/docker/setup-buildx-action)
| action | digest | `f7ce87c` -> `b5ca514` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 19:10:58 +01:00
TrueCharts BotandGitHub 8b8dd4a720 chore(github-action): update docker/build-push-action digest to 471d1dc (#32585)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[docker/build-push-action](https://redirect.github.com/docker/build-push-action)
| action | digest | `0adf995` -> `471d1dc` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 19:10:18 +01:00
TrueCharts BotandGitHub bd896a98e3 chore(container): update public.ecr.aws/docker/library/nextcloud:31.0.0-fpm docker digest to dd76149 (#32584)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[public.ecr.aws/docker/library/nextcloud](https://hub.docker.com/_/nextcloud)
([source](https://redirect.github.com/nextcloud/docker)) | final |
digest | `c9436dd` -> `dd76149` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 19:09:30 +01:00
TrueCharts BotandGitHub 42796a08b3 chore(helm): update authentik 2024.12.3 → 2025.2.0 (major) (#32583)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/goauthentik/ldap](https://goauthentik.io)
([source](https://redirect.github.com/goauthentik/authentik)) | major |
`f2fe207` -> `38e3c94` |
| [ghcr.io/goauthentik/proxy](https://goauthentik.io)
([source](https://redirect.github.com/goauthentik/authentik)) | major |
`1f3801f` -> `63ccf2d` |
| [ghcr.io/goauthentik/radius](https://goauthentik.io)
([source](https://redirect.github.com/goauthentik/authentik)) | major |
`9d46560` -> `ce38260` |
| [ghcr.io/goauthentik/server](https://goauthentik.io)
([source](https://redirect.github.com/goauthentik/authentik)) | major |
`7464a70` -> `64635e8` |

---

> [!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 these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
2025-02-26 13:34:58 +01:00
TrueCharts BotandGitHub 5ad2e7dd96 chore(helm): update image ghcr.io/stirling-tools/s-pdf 0.43.0 → 0.43.1 (#32581) 2025-02-26 13:21:18 +01:00
TrueCharts BotandGitHub 46d5dcb96d chore(helm): update image ghcr.io/meeb/tubesync digest to fcba55f (#32579) 2025-02-26 13:21:10 +01:00
TrueCharts BotandGitHub 59db8533ac chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1458 → 0.22.1459 (#32580)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/jackett | patch | `496efc0` -> `0fa336a` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-26 13:21:06 +01:00
TrueCharts BotandGitHub e035cc8192 chore(container): update public.ecr.aws/docker/library/nextcloud docker tag to v31 (#32582)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[public.ecr.aws/docker/library/nextcloud](https://hub.docker.com/_/nextcloud)
([source](https://redirect.github.com/nextcloud/docker)) | final | major
| `30.0.6-fpm` -> `31.0.0-fpm` |

---

> [!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**: 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
2025-02-26 13:11:14 +01:00
TrueCharts BotandGitHub d64a924520 chore(helm): update image public.ecr.aws/docker/library/xwiki digest to 9a24bbe (#32575) 2025-02-26 07:21:25 +01:00
TrueCharts BotandGitHub 51b468e621 chore(helm): update image ghcr.io/ylianst/meshcentral 1.1.38 → 1.1.39 (#32578)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/ylianst/meshcentral](https://redirect.github.com/Ylianst/MeshCentral)
| patch | `1431343` -> `3d3ff01` |

---

> [!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>Ylianst/MeshCentral (ghcr.io/ylianst/meshcentral)</summary>

###
[`v1.1.39`](https://redirect.github.com/Ylianst/MeshCentral/releases/tag/1.1.39)

[Compare
Source](https://redirect.github.com/Ylianst/MeshCentral/compare/1.1.38...1.1.39)

-
[`e65bf77`](https://redirect.github.com/Ylianst/MeshCentral/commit/e65bf771)
Version 1.1.39
-
[`f19ad6c`](https://redirect.github.com/Ylianst/MeshCentral/commit/f19ad6c6)
Extra argument validation.
-
[`fe2f121`](https://redirect.github.com/Ylianst/MeshCentral/commit/fe2f1214)
Updated French Translations.
-
[`91bd5ae`](https://redirect.github.com/Ylianst/MeshCentral/commit/91bd5ae7)
fix minify files and log minify errors
-
[`38f5bf2`](https://redirect.github.com/Ylianst/MeshCentral/commit/38f5bf2e)
Fix parameter names in usage message
([#&#8203;6810](https://redirect.github.com/Ylianst/MeshCentral/issues/6810))
-
[`79f00bc`](https://redirect.github.com/Ylianst/MeshCentral/commit/79f00bca)
fix evaluation of config.settings.agentlogdump
([#&#8203;6812](https://redirect.github.com/Ylianst/MeshCentral/issues/6812))
-
[`c550655`](https://redirect.github.com/Ylianst/MeshCentral/commit/c5506550)
fix relaylog ip order again
-
[`e0e8a3f`](https://redirect.github.com/Ylianst/MeshCentral/commit/e0e8a3fc)
Add comma to escapeFieldName for NeDBv4
([#&#8203;6803](https://redirect.github.com/Ylianst/MeshCentral/issues/6803))
-
[`3f77cfa`](https://redirect.github.com/Ylianst/MeshCentral/commit/3f77cfa9)
Add collectors to monitoring
([#&#8203;6777](https://redirect.github.com/Ylianst/MeshCentral/issues/6777))
-
[`5ee9aa2`](https://redirect.github.com/Ylianst/MeshCentral/commit/5ee9aa24)
fix meshctrl tag filter search
([#&#8203;6798](https://redirect.github.com/Ylianst/MeshCentral/issues/6798))
-
[`0ab3f01`](https://redirect.github.com/Ylianst/MeshCentral/commit/0ab3f01c)
prevent runcommand with --reply from terminating other ws connections
([#&#8203;6797](https://redirect.github.com/Ylianst/MeshCentral/issues/6797))
-
[`4b621a0`](https://redirect.github.com/Ylianst/MeshCentral/commit/4b621a01)
Fix gauge typo
([#&#8203;6778](https://redirect.github.com/Ylianst/MeshCentral/issues/6778))
-
[`f2681de`](https://redirect.github.com/Ylianst/MeshCentral/commit/f2681de8)
fix webrtc viewonly mode
[#&#8203;6792](https://redirect.github.com/Ylianst/MeshCentral/issues/6792)
-
[`c90fa55`](https://redirect.github.com/Ylianst/MeshCentral/commit/c90fa55c)
Init webstate with empty object
([#&#8203;6788](https://redirect.github.com/Ylianst/MeshCentral/issues/6788))
-
[`edeef03`](https://redirect.github.com/Ylianst/MeshCentral/commit/edeef03f)
track/show locked active users
[#&#8203;6782](https://redirect.github.com/Ylianst/MeshCentral/issues/6782)
-
[`d7fe87d`](https://redirect.github.com/Ylianst/MeshCentral/commit/d7fe87d1)
fix sessionrecording ip addresses wrong way round
-
[`9d4f51e`](https://redirect.github.com/Ylianst/MeshCentral/commit/9d4f51e9)
Add support for logoutOnIdleSessionTimeout
([#&#8203;6773](https://redirect.github.com/Ylianst/MeshCentral/issues/6773))
-
[`0b376fe`](https://redirect.github.com/Ylianst/MeshCentral/commit/0b376fe5)
fix player for windows and terminal
[#&#8203;6761](https://redirect.github.com/Ylianst/MeshCentral/issues/6761)
-
[`9fd4075`](https://redirect.github.com/Ylianst/MeshCentral/commit/9fd40751)
fix remote desktop consent for rdp sessions
[#&#8203;6710](https://redirect.github.com/Ylianst/MeshCentral/issues/6710)
-
[`d246307`](https://redirect.github.com/Ylianst/MeshCentral/commit/d246307f)
translation improvements
-
[`711bb56`](https://redirect.github.com/Ylianst/MeshCentral/commit/711bb56a)
autoAcceptIfNoUser
([#&#8203;6759](https://redirect.github.com/Ylianst/MeshCentral/issues/6759))
-
[`5734bcc`](https://redirect.github.com/Ylianst/MeshCentral/commit/5734bcc3)
UI Toggle between Classic and Modern
([#&#8203;6763](https://redirect.github.com/Ylianst/MeshCentral/issues/6763))
-
[`1310c57`](https://redirect.github.com/Ylianst/MeshCentral/commit/1310c573)
return more than 100 groups for azure oidc
[#&#8203;6669](https://redirect.github.com/Ylianst/MeshCentral/issues/6669)
-
[`854d6c0`](https://redirect.github.com/Ylianst/MeshCentral/commit/854d6c00)
fix view chunksize being too big causing pixelation
-
[`c96d7ff`](https://redirect.github.com/Ylianst/MeshCentral/commit/c96d7ff1)
remove CSP for web relay as apps dont load properly with the default set
[#&#8203;6456](https://redirect.github.com/Ylianst/MeshCentral/issues/6456)
-
[`712f06d`](https://redirect.github.com/Ylianst/MeshCentral/commit/712f06db)
fix meshcentral-config-schema.json for ace editor
-
[`cac505e`](https://redirect.github.com/Ylianst/MeshCentral/commit/cac505e2)
few more translations
-
[`9d962bc`](https://redirect.github.com/Ylianst/MeshCentral/commit/9d962bc5)
Note maximum password length in USB key dialog
([#&#8203;6735](https://redirect.github.com/Ylianst/MeshCentral/issues/6735))
-
[`f079692`](https://redirect.github.com/Ylianst/MeshCentral/commit/f079692b)
change dnslytics.com to maclookup.app for mac address lookup
[#&#8203;6704](https://redirect.github.com/Ylianst/MeshCentral/issues/6704)
-
[`3ee06ab`](https://redirect.github.com/Ylianst/MeshCentral/commit/3ee06abf)
Update webserver.js - allow saml relaystate in POST request
([#&#8203;6685](https://redirect.github.com/Ylianst/MeshCentral/issues/6685))
-
[`b46ddf2`](https://redirect.github.com/Ylianst/MeshCentral/commit/b46ddf2f)
Update console info command
([#&#8203;6722](https://redirect.github.com/Ylianst/MeshCentral/issues/6722))
-
[`f7b958d`](https://redirect.github.com/Ylianst/MeshCentral/commit/f7b958d2)
Autobackup update
([#&#8203;6695](https://redirect.github.com/Ylianst/MeshCentral/issues/6695))
-
[`64c8d2c`](https://redirect.github.com/Ylianst/MeshCentral/commit/64c8d2c2)
include username for amt direct connect in logs
-
[`31f2224`](https://redirect.github.com/Ylianst/MeshCentral/commit/31f2224a)
add notransval to fix select options translate issues
-
[`de68555`](https://redirect.github.com/Ylianst/MeshCentral/commit/de685556)
Dutch language update 1.1.38
([#&#8203;6716](https://redirect.github.com/Ylianst/MeshCentral/issues/6716))
-
[`92375dd`](https://redirect.github.com/Ylianst/MeshCentral/commit/92375ddc)
add lastbootuptime to csv and fix spaces in csv translations
[#&#8203;6723](https://redirect.github.com/Ylianst/MeshCentral/issues/6723)
-
[`ea80f85`](https://redirect.github.com/Ylianst/MeshCentral/commit/ea80f859)
fix some functions not being called in sitestyle=3
[#&#8203;6733](https://redirect.github.com/Ylianst/MeshCentral/issues/6733)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-26 07:21:19 +01:00
TrueCharts BotandGitHub 9894206469 chore(helm): update image ghcr.io/elfhosted/riven v0.21.1 → v0.21.2 (#32577)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/riven | patch | `da01ce3` -> `347b144` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-26 07:21:14 +01:00
TrueCharts BotandGitHub 2c41f31f03 chore(helm): update image ghcr.io/meeb/tubesync digest to abecee1 (#32574)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/meeb/tubesync | digest | `5f9db52` -> `abecee1` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 07:20:39 +01:00
TrueCharts BotandGitHub 44e542486b chore(flux): update image prometheus-operator 11.2.0 → 11.2.1 (clustertool) (#32576)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[prometheus-operator](https://truecharts.org/charts/system/prometheus-operator)
([source](https://redirect.github.com/prometheus-operator)) | patch |
`11.2.0` -> `11.2.1` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-26 07:10:24 +01:00
TrueCharts BotandGitHub 9345744295 chore(container): update public.ecr.aws/docker/library/traefik:3.3.4 docker digest to cc11989 (#32573)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[public.ecr.aws/docker/library/traefik](https://hub.docker.com/_/traefik)
([source](https://redirect.github.com/traefik/traefik-library-image)) |
stage | digest | `154511e` -> `cc11989` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 07:09:38 +01:00
TrueCharts BotandGitHub c90a3b6420 chore(helm): update image ghcr.io/bakito/adguardhome-sync v0.7.0 → v0.7.1 (#32569)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/bakito/adguardhome-sync | patch | `f4bc047` -> `6ca09c0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-26 00:32:19 +00:00
TrueCharts BotandGitHub 89fd1a4de6 chore(helm): update chart kube-prometheus-stack 69.5.1 → 69.5.2 (#32568) 2025-02-26 01:32:16 +01:00
TrueCharts BotandGitHub de5a1c81c3 chore(helm): update image public.ecr.aws/docker/library/xwiki 17.0.0-postgres-tomcat → 17.1.0-postgres-tomcat (#32572)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [public.ecr.aws/docker/library/xwiki](https://hub.docker.com/_/xwiki)
([source](https://redirect.github.com/xwiki-contrib/docker-xwiki)) |
minor | `87fc7d1` -> `28f1137` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-26 01:32:13 +01:00
TrueCharts BotandGitHub 017289044a chore(helm): update image docker.io/phpmyadmin digest to fe8e5b0 (#32563)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/phpmyadmin | digest | `b8e9de0` -> `fe8e5b0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 00:32:04 +00:00
TrueCharts BotandGitHub 1ad46e88a4 chore(helm): update image ghcr.io/onedr0p/prowlarr-develop digest to fa776c7 (#32564)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/onedr0p/prowlarr-develop](https://ghcr.io/onedr0p/prowlarr-develop)
([source](https://redirect.github.com/Prowlarr/Prowlarr)) | digest |
`07d5002` -> `fa776c7` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 01:32:00 +01:00
TrueCharts BotandGitHub 2a6feca5a4 chore(helm): update image public.ecr.aws/bitnami/alertmanager digest to 940e1ee (#32565)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[public.ecr.aws/bitnami/alertmanager](https://redirect.github.com/bitnami/containers)
([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/alertmanager))
| digest | `f46ec48` -> `940e1ee` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 01:31:45 +01:00
TrueCharts BotandGitHub c50af99deb chore(helm): update image ghcr.io/stirling-tools/s-pdf 0.42.0 → 0.43.0 (#32571)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/stirling-tools/s-pdf](https://redirect.github.com/Stirling-Tools/Stirling-PDF)
| minor | `f872542` -> `a214577` |
|
[ghcr.io/stirling-tools/s-pdf](https://redirect.github.com/Stirling-Tools/Stirling-PDF)
| minor | `02c35ac` -> `8869570` |
|
[ghcr.io/stirling-tools/s-pdf](https://redirect.github.com/Stirling-Tools/Stirling-PDF)
| minor | `2e2e3e2` -> `5c1a57c` |

---

> [!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>Stirling-Tools/Stirling-PDF
(ghcr.io/stirling-tools/s-pdf)</summary>

###
[`v0.43.0`](https://redirect.github.com/Stirling-Tools/Stirling-PDF/releases/tag/v0.43.0):
0.43.0 Code cleanups and general changes

[Compare
Source](https://redirect.github.com/Stirling-Tools/Stirling-PDF/compare/v0.42.0...v0.43.0)

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

Lots of backend changes to our SSO and configs, let us know if you have
any issues!
Some further changes to note:

- Fixed bug were analytics prompt was not being shown on first-ever
launch
- Compression now supports changing images to grayscale should that be
required
- Dynamic paths for unoconvert and weasyprint are now supported in
settings.yml
- For Local UI users we now check if port 8080 is in use and try 8081
etc if it is
-   Language bar has new UI

##### What's Changed

##### Bug Fixes

- fix: ignore qpdf warnings
([#&#8203;2952](https://redirect.github.com/Stirling-Tools/Stirling-PDF/issues/2952))
by
[@&#8203;Abdurrahman-shaikh](https://redirect.github.com/Abdurrahman-shaikh)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3002](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3002)
- Fix: Ensure window.analyticsPromptBoolean is Defined for Analytics
Dialog by [@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2958](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2958)

##### Enhancements

- Enhance Java Development Configuration and Code Formatting by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2991](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2991)
- 2299 feature request language selection overhaul by
[@&#8203;ConnorYoh](https://redirect.github.com/ConnorYoh) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3017](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3017)
- Adding font-liberation and font-linux-libertine to fat image
([#&#8203;3001](https://redirect.github.com/Stirling-Tools/Stirling-PDF/issues/3001))
by [@&#8203;gravasio](https://redirect.github.com/gravasio) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3005](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3005)
- Feature/convert to grayscale by
[@&#8203;Abdurrahman-shaikh](https://redirect.github.com/Abdurrahman-shaikh)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3003](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3003)
- Dynamic paths for tools and removal of unused book endpoints by
[@&#8203;Frooodle](https://redirect.github.com/Frooodle) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3018](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3018)
- Enhance AppUpdateService: Add `@Configuration` Annotation for Improved
Spring Boot Integration by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3036](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3036)
- Improve Type-Safe Casting with Pattern Matching by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2990](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2990)

##### Minor Enhancements

- Update 3rd Party Licenses by
[@&#8203;stirlingbot](https://redirect.github.com/stirlingbot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2997](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2997)
- Update UserService.java to generate API key if empty by
[@&#8203;Frooodle](https://redirect.github.com/Frooodle) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3016](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3016)
- Update 3rd Party Licenses by
[@&#8203;stirlingbot](https://redirect.github.com/stirlingbot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3024](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3024)
- Remove: pdfjs - only use pdfjs-legacy by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2864](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2864)
- Update 3rd Party Licenses by
[@&#8203;stirlingbot](https://redirect.github.com/stirlingbot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3028](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3028)
- Fix: Analytics Initialization Behavior by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3031](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3031)
- Fix showupdate by [@&#8203;Ludy87](https://redirect.github.com/Ludy87)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3032](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3032)
- Login Language Dropdown: Remove Flag Icon by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3037](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3037)
- dynamic port for UI from 8080 up (8081 etc) by
[@&#8203;Frooodle](https://redirect.github.com/Frooodle) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3042](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3042)
- SSO Refactoring by
[@&#8203;DarioGii](https://redirect.github.com/DarioGii) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2818](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2818)
- Restrict Backup Import to Initialization Process and Refactor API Key
Handling by [@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3061](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3061)
- Refactor Path Handling by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3041](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3041)
- add view pdf to nav and remove duplicate home on view by
[@&#8203;Frooodle](https://redirect.github.com/Frooodle) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3052](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3052)
- Improved Configuration and YAML Management by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2966](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2966)
- Update 3rd Party Licenses by
[@&#8203;stirlingbot](https://redirect.github.com/stirlingbot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3062](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3062)

##### Docker Updates

- Bump sigstore/cosign-installer from 3.8.0 to 3.8.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3010](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3010)
- Bump docker/build-push-action from 6.13.0 to 6.14.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3012](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3012)
- Bump actions/upload-artifact from 4.6.0 to 4.6.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3034](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3034)

##### Translation Changes

- Update messages_it_IT.properties by
[@&#8203;albanobattistella](https://redirect.github.com/albanobattistella)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2993](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2993)
- Update messages_bg_BG.properties by
[@&#8203;nimdassdev](https://redirect.github.com/nimdassdev) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2996](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2996)
- Update zh_TW Traditional Chinese translation by
[@&#8203;PeterDaveHello](https://redirect.github.com/PeterDaveHello) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3020](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3020)
- Updated spanish translations by
[@&#8203;ovargasp](https://redirect.github.com/ovargasp) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3039](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3039)
- 🌐 Sync Translations + Update README Progress
Table by [@&#8203;stirlingbot](https://redirect.github.com/stirlingbot)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3040](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3040)
- move `compress.grayscale.label` to section `#compress` by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3048](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3048)
- Update messages_it_IT.properties by
[@&#8203;albanobattistella](https://redirect.github.com/albanobattistella)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3055](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3055)
- 🌐 Sync Translations + Update README Progress
Table by [@&#8203;stirlingbot](https://redirect.github.com/stirlingbot)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3050](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3050)
- 🌐 Sync Translations + Update README Progress
Table by [@&#8203;stirlingbot](https://redirect.github.com/stirlingbot)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3063](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3063)

##### Other Changes

- Bump io.micrometer:micrometer-core from 1.14.3 to 1.14.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2927](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2927)
- 🌐 Sync Translations + Update README Progress
Table by [@&#8203;stirlingbot](https://redirect.github.com/stirlingbot)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2989](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2989)
- Bump actions/create-github-app-token from 1.11.2 to 1.11.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/2878](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/2878)
- Bump me.friwi:jcefmaven: from 127.3.1 to 132.3.1 by
[@&#8203;Ludy87](https://redirect.github.com/Ludy87) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3023](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3023)
- Bump org.springframework.boot from 3.4.1 to 3.4.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3022](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3022)
- 🌐 Sync Translations + Update README Progress
Table by [@&#8203;stirlingbot](https://redirect.github.com/stirlingbot)
in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3025](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3025)
- Bump ch.qos.logback:logback-classic from 1.5.15 to 1.5.16 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3015](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3015)
- Bump ch.qos.logback:logback-core from 1.5.15 to 1.5.16 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3011](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3011)
- Bump actions/create-github-app-token from 1.11.3 to 1.11.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3008](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3008)
- Bump org.springframework.session:spring-session-core from 3.4.1 to
3.4.2 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3014](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3014)
- Bump
org.springframework.security:spring-security-saml2-service-provider from
6.4.2 to 6.4.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3009](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3009)
- Bump springBootVersion from 3.4.2 to 3.4.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3007](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3007)
- Bump ossf/scorecard-action from 2.4.0 to 2.4.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3033](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3033)
- Bump github/codeql-action from 3.28.9 to 3.28.10 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3035](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3035)
- Bump peter-evans/create-pull-request from 7.0.6 to 7.0.7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3051](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3051)

##### New Contributors

- [@&#8203;ConnorYoh](https://redirect.github.com/ConnorYoh) made their
first contribution in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3017](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3017)
- [@&#8203;gravasio](https://redirect.github.com/gravasio) made their
first contribution in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3005](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3005)
- [@&#8203;ovargasp](https://redirect.github.com/ovargasp) made their
first contribution in
[https://github.com/Stirling-Tools/Stirling-PDF/pull/3039](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3039)

**Full Changelog**:
https://github.com/Stirling-Tools/Stirling-PDF/compare/v0.42.0...v0.43.0

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-26 01:24:58 +01:00
TrueCharts BotandGitHub 63e3eb1ba2 chore(helm): update image ghcr.io/elfhosted/riven v0.21.0 → v0.21.1 (#32570)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/riven | patch | `befb65d` -> `da01ce3` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-26 01:24:43 +01:00
TrueCharts BotandGitHub c4dc6cebdc chore(helm): update image yourls digest to d8c94ce (#32566)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| yourls | digest | `573aa79` -> `d8c94ce` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-26 01:24:23 +01:00
TrueCharts BotandGitHub 3b147f41c7 chore(container): update public.ecr.aws/docker/library/traefik docker tag to v3.3.4 (#32567)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[public.ecr.aws/docker/library/traefik](https://hub.docker.com/_/traefik)
([source](https://redirect.github.com/traefik/traefik-library-image)) |
stage | patch | `v3.3.3` -> `3.3.4` |

---

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

---

### Release Notes

<details>
<summary>traefik/traefik-library-image
(public.ecr.aws/docker/library/traefik)</summary>

###
[`v3.3.4`](https://redirect.github.com/traefik/traefik-library-image/compare/v3.3.4...v3.3.4)

[Compare
Source](https://redirect.github.com/traefik/traefik-library-image/compare/v3.3.4...v3.3.4)

###
[`v3.3.4`](https://redirect.github.com/traefik/traefik-library-image/compare/v3.3.3...v3.3.4)

[Compare
Source](https://redirect.github.com/traefik/traefik-library-image/compare/v3.3.3...v3.3.4)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-26 01:14:21 +01:00
TrueCharts BotandGitHub 9282b54971 chore(helm): update image ghcr.io/onedr0p/plex digest to 7e169d1 (#32557)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/onedr0p/plex](https://ghcr.io/onedr0p/plex) | digest |
`1d75895` -> `7e169d1` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 19:26:54 +01:00
TrueCharts BotandGitHub 1e554ecc9b chore(helm): update image yourls digest to 573aa79 (#32558) 2025-02-25 19:26:14 +01:00
TrueCharts BotandGitHub 9b72d2833b chore(helm): update image ghcr.io/elfhosted/nzbhydra2 digest to 48ea041 (#32555) 2025-02-25 19:26:07 +01:00
TrueCharts BotandGitHub 196e4a890d chore(helm): update image ghcr.io/onedr0p/radarr 5.18.4.9674 → 5.19.3.9730 (#32562) 2025-02-25 19:26:00 +01:00
TrueCharts BotandGitHub 96f79b19ca chore(helm): update image ghcr.io/linuxserver/firefox digest to 5f66803 (#32556)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/firefox](https://redirect.github.com/linuxserver/docker-firefox/packages)
([source](https://redirect.github.com/linuxserver/docker-firefox)) |
digest | `a3396dc` -> `5f66803` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 19:25:54 +01:00
TrueCharts BotandGitHub d229ebf2cf chore(helm): update image docker.io/machines/filestash digest to 797e411 (#32554)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/machines/filestash | digest | `1a8ebf4` -> `797e411` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 19:25:04 +01:00
TrueCharts BotandGitHub 4c6302185b chore(flux): update image prometheus-operator 11.1.1 → 11.2.0 (clustertool) (#32561) 2025-02-25 19:12:52 +01:00
TrueCharts BotandGitHub 0d91d2a0f2 chore(flux): update image ghcr.io/fluxcd/flux-manifests v2.5.0 → v2.5.1 (clustertool) (#32559) 2025-02-25 19:12:40 +01:00
TrueCharts BotandGitHub cc5a718b2b chore(flux): update image jackett 23.3.30 → 23.3.31 (#32560)
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.30` ->
`23.3.31` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-25 19:11:40 +01:00
TrueCharts BotandGitHub eeb755ecb1 chore(helm): update chart kube-prometheus-stack 69.4.1 → 69.5.1 (#32551) 2025-02-25 13:27:45 +01:00
TrueCharts BotandGitHub 57d4f5a3b5 chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1455 → 0.22.1458 (#32550)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/jackett | patch | `55a622f` -> `496efc0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-25 13:27:40 +01:00
TrueCharts BotandGitHub fd7b480fe1 chore(helm): update image tccr.io/tccr/nextcloud-fpm digest to e94432d (#32548) 2025-02-25 13:27:38 +01:00
TrueCharts BotandGitHub fe4567cd2f chore(helm): update image ghcr.io/linuxserver/lazylibrarian digest to 1258157 (#32547) 2025-02-25 13:27:29 +01:00
TrueCharts BotandGitHub a74438ffaf chore(helm): update image yourls digest to 24df737 (#32549)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| yourls | digest | `2d48708` -> `24df737` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 13:27:24 +01:00
TrueCharts BotandGitHub dae3ddf656 chore(helm): update image ghcr.io/manyfold3d/manyfold 0.101.0 → 0.102.0 (#32552)
This PR contains the following updates:

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

---

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

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>manyfold3d/manyfold (ghcr.io/manyfold3d/manyfold)</summary>

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

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

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

#### What's Changed

##### 💥 Breaking Changes 💥

- Drop 32-bit ARM builds by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3641](https://redirect.github.com/manyfold3d/manyfold/pull/3641)

#####  New Features 

- Allow uppercase in tags and improve ActivityPub hashtags by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3594](https://redirect.github.com/manyfold3d/manyfold/pull/3594)

##### 🐛 Bug Fixes 🐛

- Force binding to IPv6 address by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3608](https://redirect.github.com/manyfold3d/manyfold/pull/3608)
- Handle listing models for tags that include commas by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3614](https://redirect.github.com/manyfold3d/manyfold/pull/3614)
- Fix tags with ampersands in bulk edit dropdown remove list by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3615](https://redirect.github.com/manyfold3d/manyfold/pull/3615)
- Fix search error for contributors and members by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3629](https://redirect.github.com/manyfold3d/manyfold/pull/3629)
- Fix clashing background colour on usage report data by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3635](https://redirect.github.com/manyfold3d/manyfold/pull/3635)

##### 🛠️ Other Improvements 🛠️

- Shrine now manages file size in db by
[@&#8203;matthewbadeau](https://redirect.github.com/matthewbadeau) in
[https://github.com/manyfold3d/manyfold/pull/3561](https://redirect.github.com/manyfold3d/manyfold/pull/3561)
- Add feature to create path if it does not exist on disk by
[@&#8203;matthewbadeau](https://redirect.github.com/matthewbadeau) in
[https://github.com/manyfold3d/manyfold/pull/3548](https://redirect.github.com/manyfold3d/manyfold/pull/3548)
- Use the Fediverse asterism symbol instead of globe by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3609](https://redirect.github.com/manyfold3d/manyfold/pull/3609)
- Translation updates across all languages by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3611](https://redirect.github.com/manyfold3d/manyfold/pull/3611)
- Add a Dev Container by
[@&#8203;TheMBeat](https://redirect.github.com/TheMBeat) in
[https://github.com/manyfold3d/manyfold/pull/3628](https://redirect.github.com/manyfold3d/manyfold/pull/3628)
- Translation updates (DE, PL, ES) by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3632](https://redirect.github.com/manyfold3d/manyfold/pull/3632)
- Update matrix space to use matrix.org.address by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3653](https://redirect.github.com/manyfold3d/manyfold/pull/3653)

#### New Contributors

- [@&#8203;TheMBeat](https://redirect.github.com/TheMBeat) made their
first contribution in
[https://github.com/manyfold3d/manyfold/pull/3628](https://redirect.github.com/manyfold3d/manyfold/pull/3628)

**Full Changelog**:
https://github.com/manyfold3d/manyfold/compare/v0.101.0...v0.102.0

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-25 13:19:31 +01:00
TrueCharts BotandGitHub 9d2fb2cc0e chore(helm): update image docker.io/josh5/steam-headless digest to bffdeb6 (#32518)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/josh5/steam-headless | digest | `408290e` -> `bffdeb6` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:33:34 +00:00
TrueCharts BotandGitHub 250ce7e471 chore(helm): update image docker.io/testdasi/simple-dns-doh digest to d3e7394 (#32522)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/testdasi/simple-dns-doh | digest | `904c590` -> `d3e7394` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:33:21 +00:00
TrueCharts BotandGitHub f979527ef3 chore(helm): update image docker.io/ronnieroller/media-roller digest to 77f6b22 (#32520)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/ronnieroller/media-roller | digest | `6ea2f7e` -> `77f6b22`
|

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:33:16 +00:00
TrueCharts BotandGitHub 13e36b2cb0 chore(helm): update image ghcr.io/linuxserver/budge digest to 605e977 (#32524)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/budge](https://redirect.github.com/linuxserver/docker-budge/packages)
([source](https://redirect.github.com/linuxserver/docker-budge)) |
digest | `46e7877` -> `605e977` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:33:12 +00:00
TrueCharts BotandGitHub 16ae89fe47 chore(helm): update image docker.io/soulraven1980/wdosg digest to 32746c2 (#32521)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/soulraven1980/wdosg | digest | `19cb965` -> `32746c2` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:33:04 +00:00
TrueCharts BotandGitHub c4e0adf25c chore(helm): update image ghcr.io/linuxserver/davos digest to a0470f1 (#32525)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/davos](https://redirect.github.com/linuxserver/docker-davos/packages)
([source](https://redirect.github.com/linuxserver/docker-davos)) |
digest | `6eda50a` -> `a0470f1` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:32:49 +00:00
TrueCharts BotandGitHub 0312d6119f chore(helm): update image ghcr.io/linuxserver/digikam digest to ef55dbc (#32526)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/digikam](https://redirect.github.com/linuxserver/docker-digikam/packages)
([source](https://redirect.github.com/linuxserver/docker-digikam)) |
digest | `908e957` -> `ef55dbc` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:32:37 +00:00
TrueCharts BotandGitHub 8939e98a49 chore(helm): update image ghcr.io/linuxserver/duckdns digest to 2d25c72 (#32527)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/linuxserver/duckdns | digest | `b2ce677` -> `2d25c72` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:09:55 +00:00
TrueCharts BotandGitHub 1af4d21c60 chore(helm): update image ghcr.io/linuxserver/filezilla digest to 9d53d4b (#32528)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/filezilla](https://redirect.github.com/linuxserver/docker-filezilla/packages)
([source](https://redirect.github.com/linuxserver/docker-filezilla)) |
digest | `47647b4` -> `9d53d4b` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:09:41 +00:00
TrueCharts BotandGitHub ecf6feb814 chore(helm): update image ghcr.io/linuxserver/grav digest to 78915c5 (#32529)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/grav](https://redirect.github.com/linuxserver/docker-grav/packages)
([source](https://redirect.github.com/linuxserver/docker-grav)) | digest
| `5cc5a27` -> `78915c5` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:09:31 +00:00
TrueCharts BotandGitHub cfe78a7f43 chore(helm): update rdesktop (#32538)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/rdesktop | digest | `fec82ba` -> `2650fc9` |
| lscr.io/linuxserver/rdesktop | digest | `a50dffd` -> `046d63f` |
| lscr.io/linuxserver/rdesktop | digest | `189dc46` -> `98a6223` |
| lscr.io/linuxserver/rdesktop | digest | `03ab958` -> `bcb5f7a` |
| lscr.io/linuxserver/rdesktop | digest | `62cd8dc` -> `f10e4c7` |
| lscr.io/linuxserver/rdesktop | digest | `b606402` -> `4aa3a55` |
| lscr.io/linuxserver/rdesktop | digest | `07ec8d6` -> `e909b12` |
| lscr.io/linuxserver/rdesktop | digest | `356dff3` -> `d1cd9f7` |
| lscr.io/linuxserver/rdesktop | digest | `e815745` -> `623adfd` |
| lscr.io/linuxserver/rdesktop | digest | `234db79` -> `34ec0d7` |
| lscr.io/linuxserver/rdesktop | digest | `42c259d` -> `12b6872` |
| lscr.io/linuxserver/rdesktop | digest | `b39ab8e` -> `8cdd78a` |
| lscr.io/linuxserver/rdesktop | digest | `0ffa71a` -> `fb3a038` |
| lscr.io/linuxserver/rdesktop | digest | `5fe51f3` -> `bc15d37` |
| lscr.io/linuxserver/rdesktop | digest | `4e2e684` -> `e7a1038` |
| lscr.io/linuxserver/rdesktop | digest | `7805483` -> `21e232d` |
| lscr.io/linuxserver/rdesktop | digest | `e8afe8c` -> `361a5f6` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:09:18 +00:00
TrueCharts BotandGitHub a6019a7e48 chore(helm): update image lscr.io/linuxserver/kdenlive digest to adb1cc5 (#32536)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/kdenlive | digest | `9d3106d` -> `adb1cc5` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 10:09:09 +00:00
TrueCharts BotandGitHub 2929b94555 chore(helm): update image ghcr.io/pi-hole/pihole 2025.02.5 → 2025.02.6 (#32540)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/pi-hole/pihole](https://redirect.github.com/pi-hole/docker-pi-hole)
| patch | `4bfc3d4` -> `bcf79fe` |

---

> [!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>pi-hole/docker-pi-hole (ghcr.io/pi-hole/pihole)</summary>

###
[`v2025.02.6`](https://redirect.github.com/pi-hole/docker-pi-hole/releases/tag/2025.02.6)

[Compare
Source](https://redirect.github.com/pi-hole/docker-pi-hole/compare/2025.02.5...2025.02.6)

Now that PADD v4.0.0 has been released, we can include it in the docker
image:

#### What's Changed? (PADD)

- Make PADD compatible with Pi-hole v6
([https://github.com/pi-hole/PADD/pull/247](https://redirect.github.com/pi-hole/PADD/pull/247))
+ a lot of smaller associated PRs
- Exit bump workflow early if latest tag is empty
([https://github.com/pi-hole/PADD/pull/394](https://redirect.github.com/pi-hole/PADD/pull/394))
- Only exit for small screen sizes during startup
([https://github.com/pi-hole/PADD/pull/423](https://redirect.github.com/pi-hole/PADD/pull/423))
- Move wiki to readme
([https://github.com/pi-hole/PADD/pull/419](https://redirect.github.com/pi-hole/PADD/pull/419))
-   CI Dependency updates

#### New Contributors

- [@&#8203;mwoolweaver](https://redirect.github.com/mwoolweaver) made
their first contribution in
[https://github.com/pi-hole/PADD/pull/413](https://redirect.github.com/pi-hole/PADD/pull/413)

**Full Changelog**:
https://github.com/pi-hole/PADD/compare/v3.11.1...v4.0.0

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-25 10:08:41 +00:00
TrueCharts BotandGitHub f43953c6e4 chore(helm): update image ghcr.io/schlagmichdoch/pairdrop v1.11.1 → v1.11.2 (#32541)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/schlagmichdoch/pairdrop](https://redirect.github.com/schlagmichdoch/PairDrop)
| patch | `6363f34` -> `c4b3097` |

---

> [!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>schlagmichdoch/PairDrop
(ghcr.io/schlagmichdoch/pairdrop)</summary>

###
[`v1.11.2`](https://redirect.github.com/schlagmichdoch/PairDrop/releases/tag/v1.11.2)

[Compare
Source](https://redirect.github.com/schlagmichdoch/PairDrop/compare/v1.11.1...v1.11.2)

#### Enhancements

- Speed up update process by skipping waiting and claiming currently
open pages -> no need to close all tabs in order to get an update
anymore
-   Update Bluesky icon from square to butterfly
-   Update node dependencies

#### Fixes

- Prevent service-worker from responding with redirect (fixes
[#&#8203;384](https://redirect.github.com/schlagmichdoch/PairDrop/issues/384))
- Fix: switch off twitter button via env var not possible
([#&#8203;388](https://redirect.github.com/schlagmichdoch/PairDrop/issues/388))
-   Add missing files to paths that get cached upon sw installation

#### Languages

-   Translations updates from Hosted Weblate (Japanese)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-25 10:08:00 +00:00
TrueCharts BotandGitHub b88ae01dd7 chore(flux): update image renovate 1.13.0 → 1.14.0 (#32546)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [renovate](https://truecharts.org/charts/stable/renovate)
([source](https://redirect.github.com/truecharts/charts/tree/HEAD/charts/stable/renovate))
| minor | `1.13.0` -> `1.14.0` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-25 07:09:54 +01:00
TrueCharts BotandGitHub ef61ff9cab fix(website): update astro 5.2.6 → 5.3.1 (#32544)
This PR contains the following updates:

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

---

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

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

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

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

##### Patch Changes

-
[#&#8203;13233](https://redirect.github.com/withastro/astro/pull/13233)
[`32fafeb`](https://redirect.github.com/withastro/astro/commit/32fafeb874cc4b6312eb50d54d9f0ca6b83aedbc)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- Ensures consistent behaviour of `Astro.rewrite`/`ctx.rewrite` when
using `base` and `trailingSlash` options.

-
[#&#8203;13003](https://redirect.github.com/withastro/astro/pull/13003)
[`ea79054`](https://redirect.github.com/withastro/astro/commit/ea790542e186b0d2d2e828cb3ebd23bde4d04879)
Thanks [@&#8203;chaegumi](https://redirect.github.com/chaegumi)! - Fixes
a bug that caused the `vite.base` value to be ignored when running
`astro dev`

-
[#&#8203;13299](https://redirect.github.com/withastro/astro/pull/13299)
[`2e1321e`](https://redirect.github.com/withastro/astro/commit/2e1321e9d5b27da3e86bc4021e4136661a8055aa)
Thanks [@&#8203;bluwy](https://redirect.github.com/bluwy)! - Uses
`tinyglobby` for globbing files

-
[#&#8203;13233](https://redirect.github.com/withastro/astro/pull/13233)
[`32fafeb`](https://redirect.github.com/withastro/astro/commit/32fafeb874cc4b6312eb50d54d9f0ca6b83aedbc)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- Ensures that `Astro.url`/`ctx.url` is correctly updated with the
`base` path after rewrites.

This change fixes an issue where `Astro.url`/`ctx.url` did not include
the configured base path after Astro.rewrite was called. Now, the base
path is correctly reflected in Astro.url.

Previously, any rewrites performed through `Astro.rewrite`/`ctx.rewrite`
failed to append the base path to `Astro.url`/`ctx.rewrite`, which could
lead to incorrect URL handling in downstream logic. By fixing this, we
ensure that all routes remain consistent and predictable after a
rewrite.

If you were relying on the work around of including the base path in
astro.rewrite you can now remove it from the path.

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

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

##### Minor Changes

-
[#&#8203;13210](https://redirect.github.com/withastro/astro/pull/13210)
[`344e9bc`](https://redirect.github.com/withastro/astro/commit/344e9bc480a075161a7811b7733593556e7560da)
Thanks [@&#8203;VitaliyR](https://redirect.github.com/VitaliyR)! -
Handle `HEAD` requests to an endpoint when a handler is not defined.

If an endpoint defines a handler for `GET`, but does not define a
handler for `HEAD`, Astro will call the `GET` handler and return the
headers and status but an empty body.

-
[#&#8203;13195](https://redirect.github.com/withastro/astro/pull/13195)
[`3b66955`](https://redirect.github.com/withastro/astro/commit/3b669555d7ab9da5427e7b7037699d4f905d3536)
Thanks [@&#8203;MatthewLymer](https://redirect.github.com/MatthewLymer)!
- Improves SSR performance for synchronous components by avoiding the
use of Promises. With this change, SSR rendering of on-demand pages can
be up to 4x faster.

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
support for adapters auto-configuring experimental session storage
drivers.

Adapters can now configure a default session storage driver when the
`experimental.session` flag is enabled. If a hosting platform has a
storage primitive that can be used for session storage, the adapter can
automatically configure the session storage using that driver. This
allows Astro to provide a more seamless experience for users who want to
use sessions without needing to manually configure the session storage.

##### Patch Changes

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
⚠️ **BREAKING CHANGE FOR EXPERIMENTAL SESSIONS ONLY** ⚠️

Changes the `experimental.session` option to a boolean flag and moves
session config to a top-level value. This change is to allow the new
automatic session driver support. You now need to separately enable the
`experimental.session` flag, and then configure the session driver using
the top-level `session` key if providing manual configuration.

    ```diff
    defineConfig({
      // ...
      experimental: {
    -    session: {
    -      driver: 'upstash',
    -    },
    +    session: true,
      },
    +  session: {
    +    driver: 'upstash',
    +  },
    });
    ```

You no longer need to configure a session driver if you are using an
adapter that supports automatic session driver configuration and wish to
use its default settings.

    ```diff
    defineConfig({
      adapter: node({
        mode: "standalone",
      }),
      experimental: {
    -    session: {
    -      driver: 'fs',
    -      cookie: 'astro-cookie',
    -    },
    +    session: true,
      },
    +  session: {
    +    cookie: 'astro-cookie',
    +  },
    });
    ```

However, you can still manually configure additional driver options or
choose a non-default driver to use with your adapter with the new
top-level `session` config option. For more information, see the
[experimental session
docs](https://docs.astro.build/en/reference/experimental-flags/sessions/).

-
[#&#8203;13101](https://redirect.github.com/withastro/astro/pull/13101)
[`2ed67d5`](https://redirect.github.com/withastro/astro/commit/2ed67d5dc5c8056f9ab1e29e539bf086b93c60c2)
Thanks
[@&#8203;corneliusroemer](https://redirect.github.com/corneliusroemer)!
- Fixes a bug where `HEAD` and `OPTIONS` requests for non-prerendered
pages were incorrectly rejected with 403 FORBIDDEN

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-25 02:04:53 +01:00
TrueCharts BotandGitHub c8edc66ce7 chore(helm): update image docker.io/renovate/renovate 39.176.4 → 39.179.1 (#32542)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/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 (docker.io/renovate/renovate)</summary>

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

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

##### Build System

- **docker:** publish short tags for stable releases
([#&#8203;34435](https://redirect.github.com/renovatebot/renovate/issues/34435))
([fb665fe](https://redirect.github.com/renovatebot/renovate/commit/fb665feccf04bb5350bf5f979fdf895a26fd4244))
- **docker:** use channel for computing docker tags
([#&#8203;34436](https://redirect.github.com/renovatebot/renovate/issues/34436))
([1472fcc](https://redirect.github.com/renovatebot/renovate/commit/1472fcc712aa45d4a0571d69f43cff32de9894f7))

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

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

##### Features

- **manager/jsonata:** add toml support
([#&#8203;34380](https://redirect.github.com/renovatebot/renovate/issues/34380))
([1cb61dc](https://redirect.github.com/renovatebot/renovate/commit/1cb61dc44cc28ea8cdc4296176747d4f5f87d512))

##### Bug Fixes

- **datasource/docker:** use `dockerMaxPages` limit for `hub.docker.com`
([#&#8203;34405](https://redirect.github.com/renovatebot/renovate/issues/34405))
([1e1f0d6](https://redirect.github.com/renovatebot/renovate/commit/1e1f0d6820811d1e39a2289c52439a6e2e8d6b94))

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

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.43.2
(main)
([#&#8203;34425](https://redirect.github.com/renovatebot/renovate/issues/34425))
([2ec104d](https://redirect.github.com/renovatebot/renovate/commit/2ec104d8ba564f57e5b2dadba8789c37a20bfd57))

##### Miscellaneous Chores

- **deps:** update dependency type-fest to v4.35.0 (main)
([#&#8203;34426](https://redirect.github.com/renovatebot/renovate/issues/34426))
([9174262](https://redirect.github.com/renovatebot/renovate/commit/917426232e2f0052452c7a1a3908a812c9c012f9))
- Update administration-only.yml description
([7bbc394](https://redirect.github.com/renovatebot/renovate/commit/7bbc394f9ea54521ab3ae160c4725b8c47bdf424))

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

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

##### Bug Fixes

- **deps:** update ghcr.io/containerbase/sidecar docker tag to v13.7.19
(main)
([#&#8203;34424](https://redirect.github.com/renovatebot/renovate/issues/34424))
([07e6c46](https://redirect.github.com/renovatebot/renovate/commit/07e6c4610e0daf36fbbf586aa0d7f3431bcf529a))

##### Documentation

- update references to renovate/renovate (main)
([#&#8203;34418](https://redirect.github.com/renovatebot/renovate/issues/34418))
([eec2033](https://redirect.github.com/renovatebot/renovate/commit/eec2033cc85c549f3a3ad1b33d314d9af7c8039d))

##### Miscellaneous Chores

- **deps:** lock file maintenance (main)
([#&#8203;34419](https://redirect.github.com/renovatebot/renovate/issues/34419))
([b1f756c](https://redirect.github.com/renovatebot/renovate/commit/b1f756c7aefb99c36fdba5503ab0edbe445951fd))
- **deps:** update containerbase/internal-tools action to v3.10.5 (main)
([#&#8203;34420](https://redirect.github.com/renovatebot/renovate/issues/34420))
([784dbc5](https://redirect.github.com/renovatebot/renovate/commit/784dbc5606c2aef3f90e96a81ef33b7321e47116))
- **deps:** update dependency pnpm to v10.4.1 (main)
([#&#8203;34417](https://redirect.github.com/renovatebot/renovate/issues/34417))
([c4e20c8](https://redirect.github.com/renovatebot/renovate/commit/c4e20c8c30a7dcb245e61abf73fc722ec5821a15))
- **deps:** update dependency renovatebot/github-action to v41.0.14
(main)
([#&#8203;34423](https://redirect.github.com/renovatebot/renovate/issues/34423))
([3fe8d24](https://redirect.github.com/renovatebot/renovate/commit/3fe8d248b99d1abbe23d7e46bc4748e9312cc31b))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to
v13.7.19 (main)
([#&#8203;34422](https://redirect.github.com/renovatebot/renovate/issues/34422))
([6f135b6](https://redirect.github.com/renovatebot/renovate/commit/6f135b691f02a94fe90c71393552a83c2527eb98))

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

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

##### Bug Fixes

- **gitea:** Fix platform test performance
([#&#8203;34415](https://redirect.github.com/renovatebot/renovate/issues/34415))
([1c6094c](https://redirect.github.com/renovatebot/renovate/commit/1c6094c1bde6895fcd74c833c0e4141ba323a7bb))

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

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

##### Features

- **datasource/unity3d:** Use Unity Releases API
([#&#8203;33240](https://redirect.github.com/renovatebot/renovate/issues/33240))
([8715b3b](https://redirect.github.com/renovatebot/renovate/commit/8715b3b21aa2caf9fe30e4ad3d0d4be6c2136f6e))

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.43.1
(main)
([#&#8203;34413](https://redirect.github.com/renovatebot/renovate/issues/34413))
([217b77a](https://redirect.github.com/renovatebot/renovate/commit/217b77a6102ebc7485012f957cee4e7fbe490d63))

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

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

##### Bug Fixes

- **gitlab:** Fix the platform test performance
([#&#8203;34410](https://redirect.github.com/renovatebot/renovate/issues/34410))
([b78eb9b](https://redirect.github.com/renovatebot/renovate/commit/b78eb9b73be82ad3d2495fc2c3abbf475e3f7906))

##### Tests

- **bitbucket-server:** Fix the tests performance
([#&#8203;34406](https://redirect.github.com/renovatebot/renovate/issues/34406))
([f5d01de](https://redirect.github.com/renovatebot/renovate/commit/f5d01deabe6b255f4c5e1fa2f9848c49a9e6919f))
- **bitbucket:** Fix the tests performance
([#&#8203;34407](https://redirect.github.com/renovatebot/renovate/issues/34407))
([318caf1](https://redirect.github.com/renovatebot/renovate/commit/318caf19948718daa1b74066d2d87c19c3262d7f))

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

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

##### Bug Fixes

- **deps:** update ghcr.io/containerbase/sidecar docker tag to v13.7.18
(main)
([#&#8203;34409](https://redirect.github.com/renovatebot/renovate/issues/34409))
([ee74996](https://redirect.github.com/renovatebot/renovate/commit/ee7499699df9ba4f28676ac33f6fcba6e2e9b4da))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to
v13.7.18 (main)
([#&#8203;34408](https://redirect.github.com/renovatebot/renovate/issues/34408))
([0f4aeac](https://redirect.github.com/renovatebot/renovate/commit/0f4aeacc9b537b845d2f82078c6340aa340e82c0))
- drop obsolete override
([#&#8203;34401](https://redirect.github.com/renovatebot/renovate/issues/34401))
([0b0d52f](https://redirect.github.com/renovatebot/renovate/commit/0b0d52f19ca543210933de75ac4c84d0e05ca33c))

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

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

##### Miscellaneous Chores

- **release:** don't post success to bot PR's
([#&#8203;34402](https://redirect.github.com/renovatebot/renovate/issues/34402))
([12da2ac](https://redirect.github.com/renovatebot/renovate/commit/12da2ac6b00f1942940619ecfea68d5fc49aee7b))

##### Build System

- **docker:** fix full image reference
([#&#8203;34404](https://redirect.github.com/renovatebot/renovate/issues/34404))
([9b527ab](https://redirect.github.com/renovatebot/renovate/commit/9b527ab65f355828115f130bab0ccde3b54e551d))
- don't push short tags for prereleases
([#&#8203;34403](https://redirect.github.com/renovatebot/renovate/issues/34403))
([dd09cfd](https://redirect.github.com/renovatebot/renovate/commit/dd09cfdbd2ec6ef63cc46e082102c780b15b8119))

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

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

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.42.0
([#&#8203;34389](https://redirect.github.com/renovatebot/renovate/issues/34389))
([665e179](https://redirect.github.com/renovatebot/renovate/commit/665e1799e03b8fbd9f3c4677ec070220dfac9d39))
- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.43.0
([#&#8203;34391](https://redirect.github.com/renovatebot/renovate/issues/34391))
([1e31c3d](https://redirect.github.com/renovatebot/renovate/commit/1e31c3d3a528b7f5e7f6f86c3bbc9695e399f84c))
- **gitea/forgejo:** set poster server filter for pr cache
([#&#8203;34374](https://redirect.github.com/renovatebot/renovate/issues/34374))
([c7737be](https://redirect.github.com/renovatebot/renovate/commit/c7737befb7336ea855cc9a0705fcc6018dbfc8fb))
- **gradle:** bump strategy
([#&#8203;33453](https://redirect.github.com/renovatebot/renovate/issues/33453))
([d022b83](https://redirect.github.com/renovatebot/renovate/commit/d022b8307ef17b80344eba95d512d9295725bfd1))
- **pip-compile:** support tool version constraints with uv
([#&#8203;34029](https://redirect.github.com/renovatebot/renovate/issues/34029))
([53c5b86](https://redirect.github.com/renovatebot/renovate/commit/53c5b869d7908cbc91367ba14343c19d5fa5ba50))

##### Bug Fixes

- append the static repo config to the repo config
([#&#8203;34313](https://redirect.github.com/renovatebot/renovate/issues/34313))
([718e197](https://redirect.github.com/renovatebot/renovate/commit/718e19717b4a4bb8ce8c7138916919b47bc3b7f6))
- **bazel-module:** Add replaceString to oci_pull PackageDependency
([#&#8203;34222](https://redirect.github.com/renovatebot/renovate/issues/34222))
([6c9dc1b](https://redirect.github.com/renovatebot/renovate/commit/6c9dc1bbfff4483023fc8906cd2e142369465f88))
- **deps:** update ghcr.io/containerbase/sidecar docker tag to v13.7.17
([#&#8203;34350](https://redirect.github.com/renovatebot/renovate/issues/34350))
([a550f4b](https://redirect.github.com/renovatebot/renovate/commit/a550f4b582cba0e5920533d2163e12d245ad2bdc))
- **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.41.3
([#&#8203;34352](https://redirect.github.com/renovatebot/renovate/issues/34352))
([5eae6b4](https://redirect.github.com/renovatebot/renovate/commit/5eae6b44596b72a312a1f1aa641e6bf84e1e8f4c))
- **git:** Remove obsolete cleanup for renovate temp refs
([#&#8203;34356](https://redirect.github.com/renovatebot/renovate/issues/34356))
([02be094](https://redirect.github.com/renovatebot/renovate/commit/02be094fd3270f9b9e1ce6df654fe9bae4e77e33))
- **lockfilemaintenance:** ensure `isLockFileMaintenance` on grouping
([#&#8203;33971](https://redirect.github.com/renovatebot/renovate/issues/33971))
([e9cbd02](https://redirect.github.com/renovatebot/renovate/commit/e9cbd02865b1827f7e4269c05250a12ee2203a71))
- **platform/gitlab): Revert "feat(platform/gitlab:** use Notes API for
automerge to support merge trains"
([#&#8203;34353](https://redirect.github.com/renovatebot/renovate/issues/34353))
([8c2d438](https://redirect.github.com/renovatebot/renovate/commit/8c2d4385404391eb0467962e05e84fcf279d502a))
- **presets): Revert "fix(presets:** actually group Node.js packages"
([#&#8203;34379](https://redirect.github.com/renovatebot/renovate/issues/34379))
([77a86c1](https://redirect.github.com/renovatebot/renovate/commit/77a86c17033cb84c0e8d520337352e355d2aad0d))
- **reconfigure:** massage config prior to validation
([#&#8203;34348](https://redirect.github.com/renovatebot/renovate/issues/34348))
([d0c05c9](https://redirect.github.com/renovatebot/renovate/commit/d0c05c9c6b9600b0abaaff1c7bb711b98c095488))

##### Miscellaneous Chores

- add prettier to pre-commit
([#&#8203;34344](https://redirect.github.com/renovatebot/renovate/issues/34344))
([9bbb138](https://redirect.github.com/renovatebot/renovate/commit/9bbb1385941e66108e2f2b478e0ce14f014de98d))
- **deps:** update actions/upload-artifact action to v4.6.1
([#&#8203;34384](https://redirect.github.com/renovatebot/renovate/issues/34384))
([d3c50ed](https://redirect.github.com/renovatebot/renovate/commit/d3c50ed163099463aa504699d5950f000d557780))
- **deps:** update containerbase/internal-tools action to v3.10.3
([#&#8203;34388](https://redirect.github.com/renovatebot/renovate/issues/34388))
([9c50f94](https://redirect.github.com/renovatebot/renovate/commit/9c50f941c021e3db8ef4a3ad98d132eb856434bf))
- **deps:** update dependency
[@&#8203;semantic-release/github](https://redirect.github.com/semantic-release/github)>[@&#8203;octokit/plugin-paginate-rest](https://redirect.github.com/octokit/plugin-paginate-rest)
to v11.4.2
([#&#8203;34364](https://redirect.github.com/renovatebot/renovate/issues/34364))
([73b4620](https://redirect.github.com/renovatebot/renovate/commit/73b462013121e75374e43f3d3e7f72b11117f269))
- **deps:** update dependency
[@&#8203;types/ms](https://redirect.github.com/types/ms) to v2
([#&#8203;34345](https://redirect.github.com/renovatebot/renovate/issues/34345))
([d0724a8](https://redirect.github.com/renovatebot/renovate/commit/d0724a8b36075f2aa59b07850e2ab508e20d202e))
- **deps:** update dependency
[@&#8203;types/node](https://redirect.github.com/types/node) to v22.13.4
([#&#8203;34365](https://redirect.github.com/renovatebot/renovate/issues/34365))
([40a8eec](https://redirect.github.com/renovatebot/renovate/commit/40a8eec9d9a1bbeeb7aae67c25bcd11ac4cf84dd))
- **deps:** update dependency eslint-import-resolver-typescript to
v3.8.0
([#&#8203;34371](https://redirect.github.com/renovatebot/renovate/issues/34371))
([d972478](https://redirect.github.com/renovatebot/renovate/commit/d972478e2afb11298a9fa36309c082765b32956e))
- **deps:** update dependency pnpm to v10
([#&#8203;34340](https://redirect.github.com/renovatebot/renovate/issues/34340))
([b68b9bb](https://redirect.github.com/renovatebot/renovate/commit/b68b9bb650f8357ee926b5f02d0c50137abb346e))
- **deps:** update dependency pnpm to v10.4.0
([#&#8203;34366](https://redirect.github.com/renovatebot/renovate/issues/34366))
([e98fe7b](https://redirect.github.com/renovatebot/renovate/commit/e98fe7b7c82fc1c6197d5f819fd5c80a767987d3))
- **deps:** update eslint monorepo to v9 (major)
([#&#8203;33573](https://redirect.github.com/renovatebot/renovate/issues/33573))
([5584550](https://redirect.github.com/renovatebot/renovate/commit/55845508b6631a4662b61df6b218640cc9be1b2b))
- **deps:** update github/codeql-action action to v3.28.10
([#&#8203;34385](https://redirect.github.com/renovatebot/renovate/issues/34385))
([79f1ca0](https://redirect.github.com/renovatebot/renovate/commit/79f1ca04d7837651e7db256a85624b2181508934))
- **deps:** update ossf/scorecard-action action to v2.4.1
([#&#8203;34386](https://redirect.github.com/renovatebot/renovate/issues/34386))
([93216f9](https://redirect.github.com/renovatebot/renovate/commit/93216f90ae89764868c20b0458fb4d0983b2be45))
- **deps:** update sigstore/cosign-installer action to v3.8.1
([#&#8203;34355](https://redirect.github.com/renovatebot/renovate/issues/34355))
([5ec3340](https://redirect.github.com/renovatebot/renovate/commit/5ec3340383433ffbe307f06d4373f0ba1ae78802))
- find issue with missing `issueType`
([#&#8203;34211](https://redirect.github.com/renovatebot/renovate/issues/34211))
([dce6d9f](https://redirect.github.com/renovatebot/renovate/commit/dce6d9f03195a711f627179a1746689a37d2d684))
- hardcode label missing issue number
([#&#8203;34381](https://redirect.github.com/renovatebot/renovate/issues/34381))
([c1c1ce1](https://redirect.github.com/renovatebot/renovate/commit/c1c1ce1e18b68c1742b5009c7703e0a31dea1042))
- prepare prereleases
([#&#8203;34392](https://redirect.github.com/renovatebot/renovate/issues/34392))
([979f326](https://redirect.github.com/renovatebot/renovate/commit/979f3267e8ba6a70d82255ab4cbe3a6b88bec0d2))
- update Issue template wording
([#&#8203;34225](https://redirect.github.com/renovatebot/renovate/issues/34225))
([2b5af1e](https://redirect.github.com/renovatebot/renovate/commit/2b5af1ef65debf763f2453d169ab2608f1a7648e))

##### Build System

- **deps:** update dependency git-url-parse to v16.0.1
([#&#8203;34363](https://redirect.github.com/renovatebot/renovate/issues/34363))
([aec317c](https://redirect.github.com/renovatebot/renovate/commit/aec317c1b1c9d76064769e4e7bfb92095ba30b41))
- **deps:** update dependency semantic-release to v24.2.3 (main)
([#&#8203;34399](https://redirect.github.com/renovatebot/renovate/issues/34399))
([19f6ab8](https://redirect.github.com/renovatebot/renovate/commit/19f6ab85b4d58c08908d1124c07652fe1608fa32))
- **deps:** update opentelemetry-js monorepo to v0.57.2
([#&#8203;34358](https://redirect.github.com/renovatebot/renovate/issues/34358))
([ed5937b](https://redirect.github.com/renovatebot/renovate/commit/ed5937bc8fa13ee9b4774c0c9a8ac4160e9296e6))
- **docker:** fix install script
([#&#8203;34397](https://redirect.github.com/renovatebot/renovate/issues/34397))
([8671074](https://redirect.github.com/renovatebot/renovate/commit/8671074d8bc2dfad59f3b2165f6c2afbe62bbc5e))

##### Continuous Integration

- run on `next` and `maint/**` branches
([#&#8203;34394](https://redirect.github.com/renovatebot/renovate/issues/34394))
([2d563f5](https://redirect.github.com/renovatebot/renovate/commit/2d563f53075476de0dfcc7641b8a1d7a51efbde3))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-25 02:04:11 +01:00
TrueCharts BotandGitHub b5ed461719 chore(helm): update image ghcr.io/drakkan/sftpgo v2.6.5 → v2.6.6 (#32539)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/drakkan/sftpgo](https://redirect.github.com/drakkan/sftpgo) |
patch | `ef91c4f` -> `722c6cf` |

---

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

###
[`v2.6.6`](https://redirect.github.com/drakkan/sftpgo/releases/tag/v2.6.6)

[Compare
Source](https://redirect.github.com/drakkan/sftpgo/compare/v2.6.5...v2.6.6)

-   Update golang.org/x/crypto/ssh to v0.35.0 to fix CVE-2025-22869
-   CI: switch to Go 1.23

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-25 01:55:51 +01:00
TrueCharts BotandGitHub 8f2ac2c98b chore(helm): update image lscr.io/linuxserver/calibre-web digest to cb05a2f (#32535)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[lscr.io/linuxserver/calibre-web](https://redirect.github.com/linuxserver/docker-calibre-web/packages)
([source](https://redirect.github.com/linuxserver/docker-calibre-web)) |
digest | `fa19a5c` -> `cb05a2f` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-02-25 01:55:40 +01:00