Commit Graph
100 Commits
Author SHA1 Message Date
TrueCharts BotandGitHub 7a5b092ebe chore(container): update ghcr.io/actions/actions-runner docker tag to v2.322.0 (#31137)
This PR contains the following updates:

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

---

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

---

### Release Notes

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

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

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

#### What's Changed

- Fix name of generated of artifact builds from GitHub workflow for arm
artifacts by [@&#8203;satmandu](https://redirect.github.com/satmandu) in
[https://github.com/actions/runner/pull/3568](https://redirect.github.com/actions/runner/pull/3568)
- Ignore error when fail to report worker crash. by
[@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in
[https://github.com/actions/runner/pull/3588](https://redirect.github.com/actions/runner/pull/3588)
- Fix null ref in 'OnEventWritten()' by
[@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in
[https://github.com/actions/runner/pull/3593](https://redirect.github.com/actions/runner/pull/3593)
- Send stepNumber for annotation to run-service by
[@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in
[https://github.com/actions/runner/pull/3614](https://redirect.github.com/actions/runner/pull/3614)
- Enable nuget audit. by
[@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in
[https://github.com/actions/runner/pull/3615](https://redirect.github.com/actions/runner/pull/3615)
- Update dotnet install script. by
[@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in
[https://github.com/actions/runner/pull/3659](https://redirect.github.com/actions/runner/pull/3659)
- Print immutable action package details in set up job logs by
[@&#8203;heavymachinery](https://redirect.github.com/heavymachinery) in
[https://github.com/actions/runner/pull/3645](https://redirect.github.com/actions/runner/pull/3645)
- Update dotnet sdk to latest version
[@&#8203;8](https://redirect.github.com/8).0.405 by
[@&#8203;github-actions](https://redirect.github.com/github-actions) in
[https://github.com/actions/runner/pull/3666](https://redirect.github.com/actions/runner/pull/3666)
- Upgrade `buildx` from `0.18.0` to `0.19.3` (critical CVE) by
[@&#8203;MPV](https://redirect.github.com/MPV) in
[https://github.com/actions/runner/pull/3647](https://redirect.github.com/actions/runner/pull/3647)
- Upgrade `docker` from `27.3.1` to `27.4.1` by
[@&#8203;MPV](https://redirect.github.com/MPV) in
[https://github.com/actions/runner/pull/3648](https://redirect.github.com/actions/runner/pull/3648)
- Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.12.0 in /src by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/runner/pull/3584](https://redirect.github.com/actions/runner/pull/3584)
- Bump docker/setup-buildx-action from 2 to 3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/runner/pull/3564](https://redirect.github.com/actions/runner/pull/3564)
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/runner/pull/3555](https://redirect.github.com/actions/runner/pull/3555)
- Bump Moq from 4.20.70 to 4.20.72 in /src by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/runner/pull/3672](https://redirect.github.com/actions/runner/pull/3672)

#### New Contributors

- [@&#8203;satmandu](https://redirect.github.com/satmandu) made their
first contribution in
[https://github.com/actions/runner/pull/3568](https://redirect.github.com/actions/runner/pull/3568)

**Full Changelog**:
https://github.com/actions/runner/compare/v2.321.0...v2.322.0

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

#### Windows x64

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

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

```powershell

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

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

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

#### Windows arm64

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

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

```powershell

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

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

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

#### OSX x64

```bash

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

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

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

#### OSX arm64 (Apple silicon)

```bash

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

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

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

#### Linux x64

```bash

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

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

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

#### Linux arm64

```bash

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

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

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

#### Linux arm

```bash

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

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

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

#### Using your self hosted runner

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

#### SHA-256 Checksums

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

- actions-runner-win-x64-2.322.0.zip <!-- BEGIN SHA win-x64
-->ace5de018c88492ca80a2323af53ff3f43d2c82741853efb302928f250516015<!--
END SHA win-x64 -->
- actions-runner-win-arm64-2.322.0.zip <!-- BEGIN SHA win-arm64
-->74b67df4e94e3cd7d79b9320d421b0a62c66b77a019cf2471aba793dac0139fb<!--
END SHA win-arm64 -->
- actions-runner-osx-x64-2.322.0.tar.gz <!-- BEGIN SHA osx-x64
-->aa0fc262363912167dcdbc746ffcdf7b8996bc587f51cf1bab38ad86cf70b6ea<!--
END SHA osx-x64 -->
- actions-runner-osx-arm64-2.322.0.tar.gz <!-- BEGIN SHA osx-arm64
-->67d3b4dd6f1eec8ec43dda12c189cff68ec3ba1dfa054791cb446ddcfb39d2aa<!--
END SHA osx-arm64 -->
- actions-runner-linux-x64-2.322.0.tar.gz <!-- BEGIN SHA linux-x64
-->b13b784808359f31bc79b08a191f5f83757852957dd8fe3dbfcc38202ccf5768<!--
END SHA linux-x64 -->
- actions-runner-linux-arm64-2.322.0.tar.gz <!-- BEGIN SHA linux-arm64
-->a96b0cec7b0237ca5e4210982368c6f7d8c2ab1e5f6b2604c1ccede9cedcb143<!--
END SHA linux-arm64 -->
- actions-runner-linux-arm-2.322.0.tar.gz <!-- BEGIN SHA linux-arm
-->583fc5f933eb2f0f9f388ef304085629181cef54e63fe3445eed92dba4a87c46<!--
END SHA linux-arm -->

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 17:07:59 +01:00
TrueCharts BotandGitHub ebe8a041d2 fix(deps): update module sigs.k8s.io/controller-runtime v0.19.4 → v0.19.5 (clustertool) (#31094)
This PR contains the following updates:

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

---

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

---

### Release Notes

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

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

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

#### What's Changed

- 🐛 cache: clone maps to prevent data race when concurrently creating
caches using the same options by
[@&#8203;k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot)
in
[https://github.com/kubernetes-sigs/controller-runtime/pull/3080](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3080)
- 🐛 support WaitForSync in custom TypedSyncingSource by
[@&#8203;tareksha](https://redirect.github.com/tareksha) in
[https://github.com/kubernetes-sigs/controller-runtime/pull/3087](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3087)

**Full Changelog**:
https://github.com/kubernetes-sigs/controller-runtime/compare/v0.19.4...v0.19.5

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 16:02:55 +00:00
TrueCharts BotandGitHub 436a258642 fix(website): update @astrojs/starlight 0.29.3 → 0.31.1 (#30902)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@astrojs/starlight](https://starlight.astro.build)
([source](https://redirect.github.com/withastro/starlight/tree/HEAD/packages/starlight))
| dependencies | minor | [`0.30.6` ->
`0.31.1`](https://renovatebot.com/diffs/npm/@astrojs%2fstarlight/0.29.3/0.31.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/starlight (@&#8203;astrojs/starlight)</summary>

###
[`v0.31.1`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0311)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.31.0...@astrojs/starlight@0.31.1)

##### Patch Changes

-
[#&#8203;2805](https://redirect.github.com/withastro/starlight/pull/2805)
[`ed6f9fd`](https://redirect.github.com/withastro/starlight/commit/ed6f9fd77334c02a75240087d0800ef32f159583)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Exposes
the
[`StarlightIcon`](https://starlight.astro.build/reference/icons/#starlighticon-type)
TypeScript type referencing the names of Starlight’s built-in icons.

###
[`v0.31.0`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0310)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.30.6...@astrojs/starlight@0.31.0)

##### Minor Changes

-
[#&#8203;2777](https://redirect.github.com/withastro/starlight/pull/2777)
[`88f4214`](https://redirect.github.com/withastro/starlight/commit/88f42145888f3a04f20898fcb700c1e65be48bb2)
Thanks [@&#8203;hippotastic](https://redirect.github.com/hippotastic)! -
Updates `astro-expressive-code` dependency to the latest version (0.40).

This includes an update to the latest Shiki version (1.26.1), providing
access to all current Shiki themes and syntax highlighting languages,
and adding the config options `shiki.engine`, `shiki.bundledLangs`,
`shiki.langAlias` and `removeUnusedThemes`. It also adds new style
variants to the optional collapsible sections plugin.

See the [Expressive Code release
notes](https://expressive-code.com/releases/#&#8203;0400) for full
details.

-
[#&#8203;2736](https://redirect.github.com/withastro/starlight/pull/2736)
[`29a885b`](https://redirect.github.com/withastro/starlight/commit/29a885be43f29150d6abd905f3ef7e1dccb99c98)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - ⚠️
**BREAKING CHANGE:** The minimum supported version of Astro is now 5.1.5

    Please update Astro and Starlight together:

    ```sh
    npx @&#8203;astrojs/upgrade
    ```

-
[#&#8203;2728](https://redirect.github.com/withastro/starlight/pull/2728)
[`e187383`](https://redirect.github.com/withastro/starlight/commit/e1873834d4a4328084a9ac056a089ee5b8f13103)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Updates
minimum Pagefind dependency to v1.3.0, sets new defaults for Pagefind’s
ranking options, and adds support for manually configuring the ranking
options

The new ranking option defaults have been evaluated against Starlight’s
own docs to improve the quality of search results. See [“Customize
Pagefind's result ranking”](https://pagefind.app/docs/ranking/) for more
details about how they work.

-
[#&#8203;157](https://redirect.github.com/withastro/starlight/pull/157)
[`23bf960`](https://redirect.github.com/withastro/starlight/commit/23bf960aed36445600b6ccecb2138a5b461e2929)
Thanks [@&#8203;tony-sull](https://redirect.github.com/tony-sull)! -
Adds a print stylesheet to improve the appearance of Starlight docs
pages when printed

-
[#&#8203;2728](https://redirect.github.com/withastro/starlight/pull/2728)
[`e187383`](https://redirect.github.com/withastro/starlight/commit/e1873834d4a4328084a9ac056a089ee5b8f13103)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Fixes
Pagefind logging to respect the Astro log level. When using Astro’s
`--verbose` or `--silent` CLI flags, these are now respected by Pagefind
as well.

##### Patch Changes

-
[#&#8203;2792](https://redirect.github.com/withastro/starlight/pull/2792)
[`412effb`](https://redirect.github.com/withastro/starlight/commit/412effb5a63c6026ea4faa0d09bcbd4a3c9fad4d)
Thanks [@&#8203;dhruvkb](https://redirect.github.com/dhruvkb)! - Uses
semantic `var(--sl-color-hairline)` for the page sidebar border instead
of `var(--sl-color-gray-6)`. This is visually the same as previously but
makes it easier to override the hairline color consistently across a
site.

-
[#&#8203;2736](https://redirect.github.com/withastro/starlight/pull/2736)
[`29a885b`](https://redirect.github.com/withastro/starlight/commit/29a885be43f29150d6abd905f3ef7e1dccb99c98)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Updates
internal dependencies `@astrojs/sitemap` and `@astrojs/mdx` to the
latest versions

-
[#&#8203;2782](https://redirect.github.com/withastro/starlight/pull/2782)
[`d9d415b`](https://redirect.github.com/withastro/starlight/commit/d9d415b4558c7995319299e9c9e1520c87c3078e)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Fixes a
documentation link in the JSDoc comment for the
`StarlightExpressiveCodeOptions` type

-
[#&#8203;2708](https://redirect.github.com/withastro/starlight/pull/2708)
[`442c819`](https://redirect.github.com/withastro/starlight/commit/442c8194dbcbe58e155d4c1f8d897a04605666e5)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Fixes
colour contrast correction in code blocks

###
[`v0.30.6`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0306)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.30.5...@astrojs/starlight@0.30.6)

##### Patch Changes

-
[#&#8203;2722](https://redirect.github.com/withastro/starlight/pull/2722)
[`0b206d3`](https://redirect.github.com/withastro/starlight/commit/0b206d3a23f0876146dc17f5e507984362917696)
Thanks [@&#8203;techfg](https://redirect.github.com/techfg)! - Fixes
display of long site title on mobile

-
[#&#8203;2762](https://redirect.github.com/withastro/starlight/pull/2762)
[`7ab1576`](https://redirect.github.com/withastro/starlight/commit/7ab157639da62fdc6b444b0280ad4c9d5ee4872f)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Prevents
the header title from being translated by automatic translation systems.

###
[`v0.30.5`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0305)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.30.4...@astrojs/starlight@0.30.5)

##### Patch Changes

-
[#&#8203;2757](https://redirect.github.com/withastro/starlight/pull/2757)
[`e7b0e74`](https://redirect.github.com/withastro/starlight/commit/e7b0e742dffb7c4a8f4619297e4bd6e5a8015edb)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Fixes a
UI string translation issue for languages with a region subtag.

-
[#&#8203;2760](https://redirect.github.com/withastro/starlight/pull/2760)
[`aec9edd`](https://redirect.github.com/withastro/starlight/commit/aec9edd14827a45fbc92d82db83dd713571e0c2d)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Adds 5
new icons: `left-caret`, `up-arrow`, `down-arrow`, `download`, and
`cloud-download`.

###
[`v0.30.4`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0304)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.30.3...@astrojs/starlight@0.30.4)

##### Patch Changes

-
[#&#8203;2747](https://redirect.github.com/withastro/starlight/pull/2747)
[`474c27e`](https://redirect.github.com/withastro/starlight/commit/474c27e28d79794ac78d36e3384f0c0da6f2dfed)
Thanks [@&#8203;bbag](https://redirect.github.com/bbag)! - Ensures
`<Tab>` component toggling is stable when smooth scrolling is enabled
via custom CSS

-
[#&#8203;2740](https://redirect.github.com/withastro/starlight/pull/2740)
[`0e169c9`](https://redirect.github.com/withastro/starlight/commit/0e169c9fd9fbfc16d86225db6b00448edf39ffad)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Fixes an
issue preventing Pagefind to be disabled using the `pagefind`
frontmatter field.

-
[#&#8203;2732](https://redirect.github.com/withastro/starlight/pull/2732)
[`a10b466`](https://redirect.github.com/withastro/starlight/commit/a10b46680810882b029dd1d578cc86e22bc97af5)
Thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! -
Adds Storybook, Confluence and Jira social icons

###
[`v0.30.3`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0303)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.30.2...@astrojs/starlight@0.30.3)

##### Patch Changes

-
[#&#8203;2717](https://redirect.github.com/withastro/starlight/pull/2717)
[`c5fcbb3`](https://redirect.github.com/withastro/starlight/commit/c5fcbb33a7a0511ac372f5d006a69f4195d1e266)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Fixes a
list item spacing issue where line break elements (`<br>`) could receive
a margin, breaking layout in Firefox

-
[#&#8203;2724](https://redirect.github.com/withastro/starlight/pull/2724)
[`02d7ac6`](https://redirect.github.com/withastro/starlight/commit/02d7ac66a0bdca3f26001f556de070027d4e0faf)
Thanks [@&#8203;dionysuzx](https://redirect.github.com/dionysuzx)! -
Adds social link support for Farcaster

-
[#&#8203;2635](https://redirect.github.com/withastro/starlight/pull/2635)
[`ec4b851`](https://redirect.github.com/withastro/starlight/commit/ec4b85154ea301d9144ff49f3abd009e3a929387)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Fixes an
issue where the language picker in multilingual sites could display the
wrong language when navigating between pages with the browser
back/forward buttons.

-
[#&#8203;2726](https://redirect.github.com/withastro/starlight/pull/2726)
[`e54ebd5`](https://redirect.github.com/withastro/starlight/commit/e54ebd5c879deb3fdff2180426b377181773b85f)
Thanks [@&#8203;techfg](https://redirect.github.com/techfg)! - Adds icon
for phone

###
[`v0.30.2`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0302)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.30.1...@astrojs/starlight@0.30.2)

##### Patch Changes

-
[#&#8203;2702](https://redirect.github.com/withastro/starlight/pull/2702)
[`02d16f3`](https://redirect.github.com/withastro/starlight/commit/02d16f3638db609501897c5e3647cc20eb5ec142)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Fixes an
issue with autogenerated sidebars when using Starlight with Astro's new
Content Layer API with directories containing spaces or special
characters.

-
[#&#8203;2704](https://redirect.github.com/withastro/starlight/pull/2704)
[`fd16470`](https://redirect.github.com/withastro/starlight/commit/fd164704b25ec5c000a2765eb0930b87e9a4e61e)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Fixes
display of focus indicator around site title

###
[`v0.30.1`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0301)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.30.0...@astrojs/starlight@0.30.1)

##### Patch Changes

-
[#&#8203;2688](https://redirect.github.com/withastro/starlight/pull/2688)
[`5c6996c`](https://redirect.github.com/withastro/starlight/commit/5c6996cd248e9da735a14e7fcaf638b51f2796bc)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Fixes an
issue with autogenerated sidebars when using Starlight with Astro's new
Content Layer API where group names would be sluggified.

###
[`v0.30.0`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0300)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.29.3...@astrojs/starlight@0.30.0)

##### Minor Changes

-
[#&#8203;2612](https://redirect.github.com/withastro/starlight/pull/2612)
[`8d5a4e8`](https://redirect.github.com/withastro/starlight/commit/8d5a4e8000d9e3a4bb9ca8178767cf3d8bc48773)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Adds
support for Astro v5, drops support for Astro v4.

##### Upgrade Astro and dependencies

⚠️ **BREAKING CHANGE:** Astro v4 is no longer supported. Make sure you
[update Astro](https://docs.astro.build/en/guides/upgrade-to/v5/) and
any other official integrations at the same time as updating Starlight:

```sh
npx @&#8203;astrojs/upgrade
```

*Community Starlight plugins and Astro integrations may also need to be
manually updated to work with Astro v5. If you encounter any issues,
please reach out to the plugin or integration author to see if it is a
known issue or if an updated version is being worked on.*

##### Update your collections

⚠️ **BREAKING CHANGE:** Starlight's internal [content
collections](https://docs.astro.build/en/guides/content-collections/),
which organize, validate, and render your content, have been updated to
use Astro's new Content Layer API and require configuration changes in
your project.

1. **Move the content config file.** This file no longer lives within
the `src/content/config.ts` folder and should now exist at
`src/content.config.ts`.

2. **Edit the collection definition(s).** To update the `docs`
collection, a `loader` is now required:

    ```diff
     // src/content.config.ts
     import { defineCollection } from "astro:content";
    +import { docsLoader } from "@&#8203;astrojs/starlight/loaders";
     import { docsSchema } from "@&#8203;astrojs/starlight/schema";

     export const collections = {
    -  docs: defineCollection({ schema: docsSchema() }),
+ docs: defineCollection({ loader: docsLoader(), schema: docsSchema()
}),
     };
    ```

If you are using the [`i18n`
collection](https://starlight.astro.build/guides/i18n/#translate-starlights-ui)
to provide translations for additional languages you support or override
our default labels, you will need to update the collection definition in
a similar way and remove the collection `type` which is no longer
available:

    ```diff
     // src/content.config.ts
     import { defineCollection } from "astro:content";
+import { docsLoader, i18nLoader } from
"@&#8203;astrojs/starlight/loaders";
import { docsSchema, i18nSchema } from
"@&#8203;astrojs/starlight/schema";

     export const collections = {
    -  docs: defineCollection({ schema: docsSchema() }),
+ docs: defineCollection({ loader: docsLoader(), schema: docsSchema()
}),
    -  i18n: defineCollection({ type: 'data', schema: i18nSchema() }),
+ i18n: defineCollection({ loader: i18nLoader(), schema: i18nSchema()
}),
     };
    ```

3. **Update other collections.** To update any other collections you may
have, follow the [“Updating existing
collections”](https://docs.astro.build/en/guides/upgrade-to/v5/#updating-existing-collections)
section in the Astro 5 upgrade guide.

If you are unable to make any changes to your collections at this time,
including Starlight's default `docs` and `i18n` collections, you can
enable the [`legacy.collections`
flag](https://docs.astro.build/en/reference/legacy-flags/) to upgrade to
v5 without updating your collections. This legacy flag exists to provide
temporary backwards compatibility, and will allow you to keep your
collections in their current state until the legacy flag is no longer
supported.

##### Patch Changes

-
[#&#8203;2669](https://redirect.github.com/withastro/starlight/pull/2669)
[`310df7d`](https://redirect.github.com/withastro/starlight/commit/310df7d6b01f5c4a56540bdba9243fb60dace323)
Thanks
[@&#8203;aaronperezaguilera](https://redirect.github.com/aaronperezaguilera)!
- Adds Catalan UI translations

-
[#&#8203;2664](https://redirect.github.com/withastro/starlight/pull/2664)
[`62ff007`](https://redirect.github.com/withastro/starlight/commit/62ff0074d9a3f82e46f5c62db85c04d87ff5e931)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Publishes
provenance containing verifiable data to link a package back to its
source repository and the specific build instructions used to publish
it.

-
[#&#8203;2670](https://redirect.github.com/withastro/starlight/pull/2670)
[`0223b42`](https://redirect.github.com/withastro/starlight/commit/0223b425249f8d1fa468e367c632467276c9c208)
Thanks
[@&#8203;aaronperezaguilera](https://redirect.github.com/aaronperezaguilera)!
- Adds Spanish UI translations for the Pagefind search modal

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:54:54 +00:00
TrueCharts BotandGitHub 2e41862ba0 chore(helm): update image ghcr.io/stirling-tools/s-pdf 0.36.6 → 0.38.0 (#31121) 2025-01-24 16:53:04 +01:00
TrueCharts BotandGitHub bd11ce3b8c chore(helm): update image ghcr.io/linuxserver/speedtest-tracker 1.0.3 → 1.2.0 (#31116) 2025-01-24 16:52:55 +01:00
TrueCharts BotandGitHub 406419061d chore(helm): update image ghcr.io/nwithan8/tauticord 5.10.0 → 5.11.0 (#31119) 2025-01-24 16:51:57 +01:00
TrueCharts BotandGitHub 4f9d6edd35 chore(helm): update image ghcr.io/manyfold3d/manyfold 0.93.0 → 0.98.0 (#31117) 2025-01-24 16:50:51 +01:00
TrueCharts BotandGitHub d4048a8734 chore(helm): update image ghcr.io/mealie-recipes/mealie v2.4.2 → v2.5.0 (#31118) 2025-01-24 16:50:45 +01:00
TrueCharts BotandGitHub ff6f743f35 chore(helm): update image ghcr.io/paperless-ngx/paperless-ngx 2.13.5 → 2.14.5 (#30899)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/paperless-ngx/paperless-ngx](https://redirect.github.com/paperless-ngx/paperless-ngx)
| minor | `199c67e` -> `0dd0569` |

---

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

###
[`v2.14.5`](https://redirect.github.com/paperless-ngx/paperless-ngx/releases/tag/v2.14.5):
Paperless-ngx v2.14.5

[Compare
Source](https://redirect.github.com/paperless-ngx/paperless-ngx/compare/v2.14.4...v2.14.5)

#### paperless-ngx 2.14.5

##### Features

- Change: restrict altering and creation of superusers to superusers
only [@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8837](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8837))

##### Bug Fixes

- Fix: fix long tag visual wrapping
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8833](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8833))
- Fix: Enforce classifier training ordering to prevent extra training
[@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8822](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8822))
- Fix: import router module to not found component
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8821](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8821))
- Fix: better reflect some mail account / rule permissions in UI
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8812](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8812))

##### Dependencies

- Chore(deps-dev): Bump undici from 5.28.4 to 5.28.5 in /src-ui
@&#8203;[dependabot\[bot\]](https://redirect.github.com/apps/dependabot)
([#&#8203;8851](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8851))
- Chore(deps-dev): Bump the development group with 2 updates
@&#8203;[dependabot\[bot\]](https://redirect.github.com/apps/dependabot)
([#&#8203;8841](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8841))

##### All App Changes

<details>
<summary>9 changes</summary>

- Chore(deps-dev): Bump undici from 5.28.4 to 5.28.5 in /src-ui
@&#8203;[dependabot\[bot\]](https://redirect.github.com/apps/dependabot)
([#&#8203;8851](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8851))
- Chore(deps-dev): Bump the development group with 2 updates
@&#8203;[dependabot\[bot\]](https://redirect.github.com/apps/dependabot)
([#&#8203;8841](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8841))
- Chore: use simpler method for attaching files to emails
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8845](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8845))
- Change: restrict altering and creation of superusers to superusers
only [@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8837](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8837))
- Fix: fix long tag visual wrapping
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8833](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8833))
- Change: allow generate auth token without a usable password
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8824](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8824))
- Fix: Enforce classifier training ordering to prevent extra training
[@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8822](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8822))
- Fix: import router module to not found component
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8821](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8821))
- Fix: better reflect some mail account / rule permissions in UI
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8812](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8812))

</details>

###
[`v2.14.4`](https://redirect.github.com/paperless-ngx/paperless-ngx/releases/tag/v2.14.4):
Paperless-ngx v2.14.4

[Compare
Source](https://redirect.github.com/paperless-ngx/paperless-ngx/compare/v2.14.3...v2.14.4)

#### paperless-ngx 2.14.4

##### Features

- Enhancement: allow specifying JSON encoding for webhooks
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8799](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8799))
- Change: disable API basic auth if MFA enabled
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8792](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8792))

##### Bug Fixes

- Fix: Include email and webhook objects in the export
[@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8790](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8790))
- Fix: use MIMEBase for email attachments
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8762](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8762))
- Fix: handle page out of range in mgmt lists after delete
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8771](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8771))

##### All App Changes

<details>
<summary>5 changes</summary>

- Enhancement: allow specifying JSON encoding for webhooks
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8799](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8799))
- Change: disable API basic auth if MFA enabled
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8792](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8792))
- Fix: Include email and webhook objects in the export
[@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8790](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8790))
- Fix: use MIMEBase for email attachments
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8762](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8762))
- Fix: handle page out of range in mgmt lists after delete
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8771](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8771))

</details>

###
[`v2.14.3`](https://redirect.github.com/paperless-ngx/paperless-ngx/releases/tag/v2.14.3):
Paperless-ngx v2.14.3

[Compare
Source](https://redirect.github.com/paperless-ngx/paperless-ngx/compare/v2.14.2...v2.14.3)

#### paperless-ngx 2.14.3

##### Bug Fixes

- Fix: Adds a default 30s timeout for emails, instead of no timeout
[@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8757](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8757))
- Fix: import forms modules for entries component
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8752](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8752))
- Fix: fix email/wh actions on consume started
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8750](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8750))
- Fix: import date picker module in cf query dropdown
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8749](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8749))

##### All App Changes

<details>
<summary>5 changes</summary>

- Fix: Adds a default 30s timeout for emails, instead of no timeout
[@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8757](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8757))
- Enhancement: set autofocus on MFA code field
[@&#8203;mxmehl](https://redirect.github.com/mxmehl)
([#&#8203;8756](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8756))
- Fix: import forms modules for entries component
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8752](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8752))
- Fix: fix email/wh actions on consume started
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8750](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8750))
- Fix: import date picker module in cf query dropdown
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8749](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8749))

</details>

###
[`v2.14.2`](https://redirect.github.com/paperless-ngx/paperless-ngx/releases/tag/v2.14.2):
Paperless-ngx v2.14.2

[Compare
Source](https://redirect.github.com/paperless-ngx/paperless-ngx/compare/v2.14.1...v2.14.2)

#### paperless-ngx 2.14.2

##### Bug Fixes

- Fix: dont try to parse empty webhook params
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8742](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8742))
- Fix: pass working file to workflows, pickle file bytes
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8741](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8741))
- Fix: use hard delete when bulk editing custom fields
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8740](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8740))
- Fix: Ensure email attachments use the latest document path for
attachments [@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8737](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8737))
- Fix: include tooltip module for custom fields display
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8739](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8739))
- Fix: remove id of webhook/email actions on copy
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8729](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8729))
- Fix: import dnd module for merge confirm dialog
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8727](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8727))

##### Dependencies

- Chore(deps): Bump django from 5.1.4 to 5.1.5
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8738](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8738))

##### All App Changes

<details>
<summary>7 changes</summary>

- Fix: dont try to parse empty webhook params
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8742](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8742))
- Fix: pass working file to workflows, pickle file bytes
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8741](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8741))
- Fix: use hard delete when bulk editing custom fields
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8740](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8740))
- Fix: Ensure email attachments use the latest document path for
attachments [@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8737](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8737))
- Fix: include tooltip module for custom fields display
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8739](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8739))
- Fix: remove id of webhook/email actions on copy
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8729](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8729))
- Fix: import dnd module for merge confirm dialog
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8727](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8727))

</details>

###
[`v2.14.1`](https://redirect.github.com/paperless-ngx/paperless-ngx/releases/tag/v2.14.1):
Paperless-ngx v2.14.1

[Compare
Source](https://redirect.github.com/paperless-ngx/paperless-ngx/compare/v2.14.0...v2.14.1)

#### paperless-ngx 2.14.1

##### Bug Fixes

- Fix: prevent error if bulk edit method not in MODIFIED_FIELD_BY_METHOD
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8710](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8710))
- Fix: include tag component in list view
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8706](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8706))
- Fix: use unmodified original for checksum if exists
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8693](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8693))
- Fix: complete load with native PDF viewer
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8699](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8699))

##### All App Changes

<details>
<summary>4 changes</summary>

- Fix: prevent error if bulk edit method not in MODIFIED_FIELD_BY_METHOD
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8710](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8710))
- Fix: include tag component in list view
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8706](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8706))
- Fix: use unmodified original for checksum if exists
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8693](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8693))
- Fix: complete load with native PDF viewer
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8699](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8699))

</details>

###
[`v2.14.0`](https://redirect.github.com/paperless-ngx/paperless-ngx/releases/tag/v2.14.0):
Paperless-ngx v2.14.0

[Compare
Source](https://redirect.github.com/paperless-ngx/paperless-ngx/compare/v2.13.5...v2.14.0)

#### paperless-ngx 2.14.0

##### Features

- Enhancement: custom field sorting
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8494](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8494))
- Enhancement: process mail button
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8466](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8466))
- Feature: bulk edit custom field values
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8428](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8428))
- Enhancement: improved loading visuals
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8435](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8435))
- Enhancement: prune audit logs and management command
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8416](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8416))
- Change: make saved views manage its own component
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8423](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8423))
- Enhancement: file task filtering
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8421](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8421))
- Enhancement: auto-link duplicate document
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8415](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8415))
- Feature: email, webhook workflow actions
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8108](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8108))
- Enhancement: use stable unique IDs for custom field select options
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8299](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8299))
- Enhancement: better TIFF display browser support
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8087](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8087))
- Enhancement: filterable list count sorting and opacification
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8386](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8386))
- Enhancement: preview button for document list and trash, refactor
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8384](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8384))
- Enhancement: use theme-color meta tag
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8359](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8359))
- Feature: scheduled workflow trigger
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8036](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8036))
- Enhancement: support owner permissions for file tasks
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8195](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8195))
- Fixhancement: change update content to handle archive disabled
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8315](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8315))
- Enhancement: next / previous shortcuts for document list
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8309](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8309))
- Feature: two-factor authentication
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8012](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8012))
- Enhancement: save & next / close shortcut key
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8243](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8243))
- Feature: loading preview, better text popup preview
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8011](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8011))

##### Bug Fixes

- Fix: add some minor frontend permissions checks
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8524](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8524))
- FIx: obliquely trim spaces from global search
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8484](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8484))
- Fix: include global perms for bulk edit endpoint
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8468](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8468))
- Fix: frontend better reflect global perms for bulk edit, disabled form
state [@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8469](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8469))
- Fixhancement: dispatch change event from current field prior to save
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8369](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8369))
- Fix: Fixes install script to handle languages with dashes or
underscores [@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8341](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8341))
- Fix: handle very old dates with positive offset too
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8335](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8335))
- Fixhancement: change update content to handle archive disabled
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8315](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8315))
- Fix: include db_index caveat in squashed migrations
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8292](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8292))
- Fix: prevent duplicate workflow runs
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8268](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8268))
- Fix: add note about select options to edit dialog
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8267](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8267))

##### Maintenance

- Chore(deps): Bump codecov/codecov-action from 4 to 5 in the actions
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8401](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8401))

##### Dependencies

<details>
<summary>16 changes</summary>

- Chore(deps): Bump the small-changes group with 3 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8627](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8627))
- Chore(deps-dev): Bump ruff from 0.8.4 to 0.8.6 in the development
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8626](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8626))
- Chore(deps): Bump django-allauth from 65.3.0 to 65.3.1 in the django
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8574](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8574))
- Chore(deps-dev): Bump ruff from 0.8.3 to 0.8.4 in the development
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8546](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8546))
- Chore(deps): Bump the small-changes group with 6 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8547](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8547))
- Chore: update ng2 pdf viewer
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8462](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8462))
- Chore(deps-dev): Bump the development group with 2 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8458](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8458))
- Chore(deps): Bump django-soft-delete from 1.0.15 to 1.0.16 in the
django group
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8459](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8459))
- Chore(deps): Bump the small-changes group with 4 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8460](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8460))
- Chore(deps): Bump django from 5.1.3 to 5.1.4
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8445](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8445))
- Chore(deps-dev): Bump the development group with 4 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8414](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8414))
- Chore(deps): Bump codecov/codecov-action from 4 to 5 in the actions
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8401](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8401))
- Chore(deps-dev): Bump the development group with 4 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8352](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8352))
- Chore(deps): Bump the small-changes group across 1 directory with 7
updates [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8399](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8399))
- Chore(deps): Bump tornado from 6.4.1 to 6.4.2
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8336](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8336))
- Chore(deps): Bump watchdog from 5.0.3 to 6.0.0 in the major-versions
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8257](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8257))

</details>

##### All App Changes

<details>
<summary>65 changes</summary>

- Fix: use state param with oauth
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8636](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8636))
- Fix: check permissions for all documents via bulk download
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8631](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8631))
- Chore(deps): Bump the small-changes group with 3 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8627](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8627))
- Chore(deps-dev): Bump ruff from 0.8.4 to 0.8.6 in the development
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8626](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8626))
- Chore: Switch from os.path to pathlib.Path
[@&#8203;gothicVI](https://redirect.github.com/gothicVI)
([#&#8203;8325](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8325))
- Chore: disable max-age for some document endpoints
[@&#8203;tsia](https://redirect.github.com/tsia)
([#&#8203;8611](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8611))
- Fix: do not accept empty string for doc link value via API
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8596](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8596))
- Enhancement: angular 19
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8584](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8584))
- Fix: fix hotkey arrows
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8583](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8583))
- Chore: remove outdated admin logentry handler
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8580](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8580))
- Chore(deps): Bump django-allauth from 65.3.0 to 65.3.1 in the django
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8574](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8574))
- Enhancement: custom field sorting
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8494](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8494))
- Fix: fix occasional error toast overflow
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8552](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8552))
- Fix: fix share link archive version detection
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8551](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8551))
- Chore(deps-dev): Bump ruff from 0.8.3 to 0.8.4 in the development
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8546](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8546))
- Chore(deps): Bump the small-changes group with 6 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8547](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8547))
- Enhancement: add timeout for Tika client
[@&#8203;HiranChaudhuri](https://redirect.github.com/HiranChaudhuri)
([#&#8203;8520](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8520))
- Fix: add some minor frontend permissions checks
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8524](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8524))
- FIx: obliquely trim spaces from global search
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8484](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8484))
- Fix: include global perms for bulk edit endpoint
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8468](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8468))
- Enhancement: process mail button
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8466](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8466))
- Fix: frontend better reflect global perms for bulk edit, disabled form
state [@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8469](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8469))
- Chore: update ng2 pdf viewer
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8462](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8462))
- Chore(deps-dev): Bump the development group with 2 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8458](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8458))
- Chore(deps): Bump django-soft-delete from 1.0.15 to 1.0.16 in the
django group
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8459](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8459))
- Chore(deps): Bump the small-changes group with 4 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8460](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8460))
- Chore: use rxjs instead of JS setInterval for timers
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8461](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8461))
- Feature: bulk edit custom field values
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8428](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8428))
- Enhancement: improved loading visuals
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8435](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8435))
- Enhancement: prune audit logs and management command
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8416](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8416))
- Change: make saved views manage its own component
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8423](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8423))
- Enhancement: file task filtering
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8421](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8421))
- Enhancement: auto-link duplicate document
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8415](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8415))
- Enhancement: include current filename placeholder in workflows
[@&#8203;Lu-Fi](https://redirect.github.com/Lu-Fi)
([#&#8203;8319](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8319))
- Feature: email, webhook workflow actions
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8108](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8108))
- Chore(deps-dev): Bump the development group with 4 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8414](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8414))
- Enhancement: use stable unique IDs for custom field select options
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8299](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8299))
- Chore(deps-dev): Bump the development group with 4 updates
[@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8352](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8352))
- Enhancement: better TIFF display browser support
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8087](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8087))
- Chore(deps): Bump the small-changes group across 1 directory with 7
updates [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8399](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8399))
- Enhancement: History (audit log) for bulk edit operations
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8196](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8196))
- Enhancement: larger previews in action dialogs
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8387](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8387))
- Enhancement: filterable list count sorting and opacification
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8386](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8386))
- Enhancement: preview button for document list and trash, refactor
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8384](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8384))
- Fixhancement: dispatch change event from current field prior to save
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8369](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8369))
- Enhancement: use theme-color meta tag
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8359](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8359))
- Chore: cleanup urls, use actions for some views
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8346](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8346))
- Feature: scheduled workflow trigger
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8036](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8036))
- Fix: handle very old dates with positive offset too
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8335](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8335))
- Refactor: fix unnecessary use of filterable dropdown sorting
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8328](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8328))
- Enhancement: offer link to restored document
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8321](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8321))
- Enhancement: support owner permissions for file tasks
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8195](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8195))
- Fixhancement: change update content to handle archive disabled
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8315](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8315))
- Chore(deps): Bump watchdog from 5.0.3 to 6.0.0 in the major-versions
group [@&#8203;dependabot](https://redirect.github.com/dependabot)
([#&#8203;8257](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8257))
- Enhancement: Add --compare-json option to document_exporter to write
json files only if changed
[@&#8203;kdoren](https://redirect.github.com/kdoren)
([#&#8203;8261](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8261))
- Enhancement: next / previous shortcuts for document list
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8309](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8309))
- Feature: two-factor authentication
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8012](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8012))
- Fix: include db_index caveat in squashed migrations
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8292](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8292))
- Tweak: use fixed position for navbar
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8279](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8279))
- Fix: prevent duplicate workflow runs
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8268](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8268))
- Fix: add note about select options to edit dialog
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8267](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8267))
- Enhancement: save & next / close shortcut key
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8243](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8243))
- Feature: loading preview, better text popup preview
[@&#8203;shamoon](https://redirect.github.com/shamoon)
([#&#8203;8011](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8011))
- Chore: switch src/documents/bulk\*.py from os.path to pathlib.Path
[@&#8203;gothicVI](https://redirect.github.com/gothicVI)
([#&#8203;7862](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/7862))
- Chore: Bulk backend dependency updates
[@&#8203;stumpylog](https://redirect.github.com/stumpylog)
([#&#8203;8212](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/8212))

</details>

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:50:34 +00:00
TrueCharts BotandGitHub 674cf0b128 chore(helm): update image ghcr.io/onedr0p/prowlarr-develop 1.29.2.4915 → 1.30.1.4928 (#30876)
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)) | minor |
`b258cc8` -> `6256bcf` |

---

> [!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>Prowlarr/Prowlarr (ghcr.io/onedr0p/prowlarr-develop)</summary>

###
[`v1.30.1.4928`](https://redirect.github.com/Prowlarr/Prowlarr/releases/tag/v1.30.1.4928):
1.30.1.4928

[Compare
Source](https://redirect.github.com/Prowlarr/Prowlarr/compare/v1.30.0.4920...v1.30.1.4928)

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

**If you are using docker you will need to update the container image.
*Do not attempt to update Prowlarr within an existing docker
container.***

#### Changes:

-
[`6eb21a0`](https://redirect.github.com/Prowlarr/Prowlarr/commit/6eb21a02a1caff10e583b64bfaa6b3125be11eb2)
Bump NLog, Polly, System.Memory and AngleSharp
-
[`8c2d5a4`](https://redirect.github.com/Prowlarr/Prowlarr/commit/8c2d5a404d4658d7252418c4a233244c08029b86)
Fixed BR-DISK detection for AnimeBytes
-
[`3b83a00`](https://redirect.github.com/Prowlarr/Prowlarr/commit/3b83a00eaff4c14ae0b64f7be825cb69db491eea)
Fixed: (AnimeBytes) Improve M2TS and ISO titles for BR-DISK detection
-
[`a5a86a6`](https://redirect.github.com/Prowlarr/Prowlarr/commit/a5a86a6f865a707f19e1950827b3245bf65ebbfe)
Multiple Translations updated by Weblate
-
[`e7ed09a`](https://redirect.github.com/Prowlarr/Prowlarr/commit/e7ed09a43d4171d52821dab1a883f97da883b48a)
Bump version to 1.30.1

This list of changes was [auto
generated](https://dev.azure.com/Prowlarr/a958e221-aeac-4b0e-a862-d8ffe1df4b09/\_release?releaseId=166&\_a=release-summary).

###
[`v1.30.0.4920`](https://redirect.github.com/Prowlarr/Prowlarr/releases/tag/v1.30.0.4920):
1.30.0.4920

[Compare
Source](https://redirect.github.com/Prowlarr/Prowlarr/compare/v1.29.2.4915...v1.30.0.4920)

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

**If you are using docker you will need to update the container image.
*Do not attempt to update Prowlarr within an existing docker
container.***

#### Changes:

-
[`547bc2e`](https://redirect.github.com/Prowlarr/Prowlarr/commit/547bc2e58c44ef9bdf62af7fbde4dea07f0c85c2)
New: (MyAnonamouse) Search by languages option \[
[#&#8203;2326](https://redirect.github.com/Prowlarr/Prowlarr/issues/2326)
]
-
[`8eb674c`](https://redirect.github.com/Prowlarr/Prowlarr/commit/8eb674c8d793e478faa7aa2f3e755fbe0869a94b)
Multiple Translations updated by Weblate
-
[`2c3621d`](https://redirect.github.com/Prowlarr/Prowlarr/commit/2c3621d25e1f4e67abeed6fefa160f114e5096a3)
Improve error message on non-JSON responses for Nebulance
-
[`2648f2c`](https://redirect.github.com/Prowlarr/Prowlarr/commit/2648f2c639cbb4744b174b8abc82d9b2e142370e)
Fixed: (BTN) Improve M2TS and ISO titles for BR-DISK detection
-
[`f4d6210`](https://redirect.github.com/Prowlarr/Prowlarr/commit/f4d621063bf0bd9867fe24546843db34bb32f56f)
Bump version to 1.30.0

This list of changes was [auto
generated](https://dev.azure.com/Prowlarr/a958e221-aeac-4b0e-a862-d8ffe1df4b09/\_release?releaseId=165&\_a=release-summary).

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:49:49 +00:00
TrueCharts BotandGitHub db0ec004b8 chore(helm): update image ghcr.io/linuxserver/foldingathome 8.3.18 → 8.4.9 (#30964)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/foldingathome](https://redirect.github.com/linuxserver/docker-foldingathome/packages)
([source](https://redirect.github.com/linuxserver/docker-foldingathome))
| minor | `a115306` -> `3100a31` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:33:31 +00:00
TrueCharts BotandGitHub 0b01afe525 chore(helm): update image docker.io/victoriametrics/victoria-metrics v1.108.1 → v1.109.1 (#30873)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/victoriametrics/victoria-metrics](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics)
| minor | `f6e5322` -> `db5b973` |

---

> [!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>VictoriaMetrics/VictoriaMetrics
(docker.io/victoriametrics/victoria-metrics)</summary>

###
[`v1.109.1`](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.109.1)

[Compare
Source](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/compare/v1.109.0...v1.109.1)

Released at 2025-01-17

- SECURITY: upgrade base docker image (Alpine) from 3.21.0 to 3.21.2.
See [Alpine 3.21.1 release
notes](https://alpinelinux.org/posts/Alpine-3.21.1-released.html) and
[Alpine 3.21.2 release
notes](https://alpinelinux.org/posts/Alpine-3.18.11-3.19.6-3.20.5-3.21.2-released.html).

- FEATURE:
[vmsingle](https://docs.victoriametrics.com/single-server-victoriametrics/),
`vminsert` in [VictoriaMetrics
cluster](https://docs.victoriametrics.com/cluster-victoriametrics/) and
[vmagent](https://docs.victoriametrics.com/vmagent/): log metric names
for signals with unsupported delta temporality on ingestion via
[OpenTelemetry protocol for
metrics](https://docs.victoriametrics.com/#sending-data-via-opentelemetry).
Thanks to [@&#8203;chenlujjj](https://redirect.github.com/chenlujjj) for
[the pull
request](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/pull/8018).

- BUGFIX: [Single-node
VictoriaMetrics](https://docs.victoriametrics.com/) and
[vmselect](https://docs.victoriametrics.com/cluster-victoriametrics/):
fix incorrect behavior of increase, increase_pure, delta caused by [this
pull
request](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/pull/8002).
This fix reverts to the previous behavior before
[v1.109.0](https://docs.victoriametrics.com/changelog/#v11090). But
allows controlling staleness detection for these functions explicitly
via `-search.maxStalenessInterval`.

- BUGFIX: all VictoriaMetrics
[enterprise](https://docs.victoriametrics.com/enterprise/) components:
remove unnecessary delay before failing if all online verification
attempts have failed. This should reduce the time required for the
component to proceed if all online verification attempts have failed.

###
[`v1.109.0`](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.109.0)

[Compare
Source](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/compare/v1.108.1...v1.109.0)

####
[v1.109.0](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.109.0)

Released at 2025-01-14

**Update note: This release contains
[issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/8045)
that might affect correctness of increase, increase_pure and delta
functions. It affects only vmselect or VictoriaMetrics single-node on
query time. Please, rollback vmselects to the closest previous version
or update to
[v1.109.1](https://docs.victoriametrics.com/changelog/#v11091).**

- FEATURE: all the VictoriaMetrics components: increase the default
value for [`GOGC`](https://tip.golang.org/doc/gc-guide#GOGC) from `30`
to `100`. This should reduce CPU usage at the cost of slightly higher
memory usage. [Single-node
VictoriaMetrics](https://docs.victoriametrics.com/),
[vmagent](https://docs.victoriametrics.com/vmagent/) and
[vmstorage](https://docs.victoriametrics.com/cluster-victoriametrics/#architecture-overview)
components continue using `GOGC=30`, since they are optimized for low
memory allocations and low memory usage, so they do not benefit from the
increased GOGC value too much. It is possible to override the default
`GOGC` value in any VictoriaMetrics component by setting `GOGC`
environment variable to the desired value. For example, `GOGC=200
./path/to/vmagent` starts `vmagent` with `GOGC=200`. See [these
docs](https://tip.golang.org/doc/gc-guide#GOGC) about `GOGC` tuning. See
[this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7902).

- FEATURE: [vmui](https://docs.victoriametrics.com/#vmui): add export
data functionality for the `Raw Query` page and the ability to import
exported data into the `Query Analyzer` page. See [this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7628).

- FEATURE: [vmui](https://docs.victoriametrics.com/#vmui): add
`markdown` support for comments during data export. [this pull
request](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/pull/7828).

- FEATURE: [vmagent](https://docs.victoriametrics.com/vmagent/) and
[Single-node VictoriaMetrics](https://docs.victoriametrics.com/): added
`min` and `max` metrics for Datadog Sketches API metrics, changed `_`
metric name separator to `.` if metrics are not sanitized for
consistency.

- FEATURE: [vmagent](https://docs.victoriametrics.com/vmagent/) and
[Single-node VictoriaMetrics](https://docs.victoriametrics.com/): add
service discovery support for
[Marathon](https://mesosphere.github.io/marathon/). See [these
docs](https://docs.victoriametrics.com/sd_configs/#marathon_sd_configs)
and [this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/6642).

- FEATURE: [Single-node
VictoriaMetrics](https://docs.victoriametrics.com/): support
`-maxIngestionRate` cmd-line flag to ratelimit samples/sec ingested. See
[this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7377)
for details.

- FEATURE:
[vmsingle](https://docs.victoriametrics.com/single-server-victoriametrics/)
and `vmselect` in [VictoriaMetrics
cluster](https://docs.victoriametrics.com/cluster-victoriametrics/):
improve query performance on systems with high number of CPU cores. See
[this
PR](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/pull/7416)
for details.

- FEATURE:
[vmsingle](https://docs.victoriametrics.com/single-server-victoriametrics/)
and `vmselect` in [VictoriaMetrics
cluster](https://docs.victoriametrics.com/cluster-victoriametrics/): add
command-line flag `-search.maxBinaryOpPushdownLabelValues` to allow
using labels with more candidate values as push down filter in binary
operation. See [this pull
request](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/pull/7243).
Thanks to [@&#8203;tydhot](https://redirect.github.com/tydhot) for
implementation.

- FEATURE:
[vmsingle](https://docs.victoriametrics.com/single-server-victoriametrics/)
and `vmstorage` in [VictoriaMetrics
cluster](https://docs.victoriametrics.com/cluster-victoriametrics/): add
command-line flag `storage.finalDedupScheduleCheckInterval` to control
the final deduplication process interval. See [this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7880)
for details.

- FEATURE: [Single-node
VictoriaMetrics](https://docs.victoriametrics.com/) and `vmstorage` in
[VictoriaMetrics
cluster](https://docs.victoriametrics.com/cluster-victoriametrics/): add
a separate cache type for storing sparse entries when performing large
index scans. This significantly reduces memory usage when applying
[downsampling filters](https://docs.victoriametrics.com/#downsampling)
and [retention
filters](https://docs.victoriametrics.com/#retention-filters) during
background merge. See [this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7182)
for the details.

- BUGFIX:
[dashboards](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/blob/master/dashboards):
consistently use `vmagent_remotewrite_pending_data_bytes` on vmagent
dashboard to represent persistent queue size.

- BUGFIX: [vmalert](https://docs.victoriametrics.com/vmalert/): fix the
auto-generated metrics `ALERTS` and `ALERTS_FOR_STATE` for alerting
rules. Previously, metrics might have incorrect labels and affect the
restore process. See this
[issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7796).

- BUGFIX:
[vmalert](https://docs.victoriametrics.com/victorialogs/vmalert/): do
not append tenant info to VictoriaLogs datasource request path in
[clusterMode](https://docs.victoriametrics.com/vmalert/#multitenancy).
See [this
doc](https://docs.victoriametrics.com/victorialogs/vmalert/#how-to-use-multitenancy-in-rules)
for how to use multitenancy in VictoriaLogs.

- BUGFIX: [vmauth](https://docs.victoriametrics.com/vmauth/): properly
set `host` field at debug information formatted with
`dump_request_on_errors: true` setting.

- BUGFIX: [vmauth](https://docs.victoriametrics.com/vmauth/): properly
handle discovery for ipv6 addresses. Thanks to
[@&#8203;badie](https://redirect.github.com/badie) for the [pull
request](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/pull/7955).

- BUGFIX: [vmctl](https://docs.victoriametrics.com/vmctl/): fix support
for migrating influx series without any tag. See [this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7921).
Thanks to [@&#8203;bitbidu](https://redirect.github.com/bitbidu) for
reporting.

- BUGFIX: [vminsert](https://docs.victoriametrics.com/vminsert/):
storage nodes defined in `-storageNode` are now sorted, ensuring that
varying node orders across different vminsert instances do not result in
inconsistent replication.

- BUGFIX:
[vmsingle](https://docs.victoriametrics.com/single-server-victoriametrics/)
and `vminsert` in [VictoriaMetrics
cluster](https://docs.victoriametrics.com/cluster-victoriametrics/):
properly ingest `influx` line protocol metrics with empty tags. See
[this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7933)
for details.

- BUGFIX:
[vmselect](https://docs.victoriametrics.com/cluster-victoriametrics/):
allow to override the default unique time series limit in vmstorage with
command-line flags like `-search.maxUniqueTimeseries`,
`-search.maxLabelsAPISeries`. See [this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7852).

- BUGFIX:
[vmselect](https://docs.victoriametrics.com/cluster-victoriametrics/):
properly set tenancy information when evaluating numbers in a query.
Previously, the tenancy information could lead to mismatch between query
result and a number. See [this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7987)
for the details.

- BUGFIX: [vmalert](https://docs.victoriametrics.com/vmalert/): fix
marshaling of request body for Alertmanager notification. See [this
issue](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/issues/7985)
for the details.

- BUGFIX: [Single-node
VictoriaMetrics](https://docs.victoriametrics.com/) and
[vmselect](https://docs.victoriametrics.com/cluster-victoriametrics/):
don't take into account the last raw sample before the lookbehind window
is sample exceeds the staleness interval. This affects correctness of
increase, increase_pure, delta functions when preforming calculations on
time series with gaps. See [this pull
request](https://redirect.github.com/VictoriaMetrics/VictoriaMetrics/pull/8002)
for details.

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:21:10 +00:00
TrueCharts BotandGitHub 8b06a90b67 chore(helm): update image ghcr.io/beryju/gravity v0.22.0 → v0.26.1 (#31111)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/beryju/gravity](https://redirect.github.com/BeryJu/gravity) |
minor | `5b683dd` -> `dfa9ac2` |

---

> [!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>BeryJu/gravity (ghcr.io/beryju/gravity)</summary>

###
[`v0.26.1`](https://redirect.github.com/BeryJu/gravity/releases/tag/v0.26.1):
Release 0.26.1

[Compare
Source](https://redirect.github.com/BeryJu/gravity/compare/v0.26.0...v0.26.1)

Upgrade to this version of gravity by using this container image:

    ghcr.io/beryju/gravity:v0.26.1

Upgrade to the current JS API Client using

    npm i gravity-api@0.26.1

Upgrade to the current Golang API Client using

    go get beryju.io/gravity@v0.26.1

**Full Changelog**:
https://github.com/BeryJu/gravity/compare/v0.26.0...v0.26.1

###
[`v0.26.0`](https://redirect.github.com/BeryJu/gravity/releases/tag/v0.26.0):
Release 0.26.0

[Compare
Source](https://redirect.github.com/BeryJu/gravity/compare/v0.25.0...v0.26.0)

Upgrade to this version of gravity by using this container image:

    ghcr.io/beryju/gravity:v0.26.0

Upgrade to the current JS API Client using

    npm i gravity-api@0.26.0

Upgrade to the current Golang API Client using

    go get beryju.io/gravity@v0.26.0

#### What's Changed

- tests: add initial e2e tests by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1446](https://redirect.github.com/BeryJu/gravity/pull/1446)
- tests: add e2e tests for Cluster by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1447](https://redirect.github.com/BeryJu/gravity/pull/1447)
- build(deps): bump golang.org/x/sys from
0.0.0-20190412213103-97732733099d to 0.1.0 in /utils/pcap_to_bytes by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/BeryJu/gravity/pull/1448](https://redirect.github.com/BeryJu/gravity/pull/1448)
- tests: even more tests by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1449](https://redirect.github.com/BeryJu/gravity/pull/1449)
- tests: test dns middleware by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1451](https://redirect.github.com/BeryJu/gravity/pull/1451)
- discovery: use interface CIDR for auto-generated subnet, tests by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1452](https://redirect.github.com/BeryJu/gravity/pull/1452)
- tests: cover bench by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1453](https://redirect.github.com/BeryJu/gravity/pull/1453)
- dhcp: test WOL by [@&#8203;BeryJu](https://redirect.github.com/BeryJu)
in
[https://github.com/BeryJu/gravity/pull/1454](https://redirect.github.com/BeryJu/gravity/pull/1454)

**Full Changelog**:
https://github.com/BeryJu/gravity/compare/v0.25.0...v0.26.0

###
[`v0.25.0`](https://redirect.github.com/BeryJu/gravity/releases/tag/v0.25.0):
Release 0.25.0

[Compare
Source](https://redirect.github.com/BeryJu/gravity/compare/v0.24.0...v0.25.0)

Upgrade to this version of gravity by using this container image:

    ghcr.io/beryju/gravity:v0.25.0

Upgrade to the current JS API Client using

    npm i gravity-api@0.25.0

Upgrade to the current Golang API Client using

    go get beryju.io/gravity@v0.25.0

#### What's Changed

- dhcp: suggest next free IP when creating lease in web UI by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1436](https://redirect.github.com/BeryJu/gravity/pull/1436)
- build(deps): bump
[@&#8203;fsegurai/codemirror-theme-vscode-dark](https://redirect.github.com/fsegurai/codemirror-theme-vscode-dark)
from 6.1.1 to 6.1.2 in /web by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/BeryJu/gravity/pull/1438](https://redirect.github.com/BeryJu/gravity/pull/1438)
- build(deps): bump the eslint group in /web with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/BeryJu/gravity/pull/1437](https://redirect.github.com/BeryJu/gravity/pull/1437)
- build(deps): bump
[@&#8203;fsegurai/codemirror-theme-vscode-light](https://redirect.github.com/fsegurai/codemirror-theme-vscode-light)
from 6.1.1 to 6.1.2 in /web by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/BeryJu/gravity/pull/1439](https://redirect.github.com/BeryJu/gravity/pull/1439)
- docs: enable dark/light mode by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1441](https://redirect.github.com/BeryJu/gravity/pull/1441)
- docs: add/update docs for migrating by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1440](https://redirect.github.com/BeryJu/gravity/pull/1440)
- build(deps): bump google.golang.org/protobuf from 1.36.2 to 1.36.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/BeryJu/gravity/pull/1444](https://redirect.github.com/BeryJu/gravity/pull/1444)
- build(deps): bump docker/build-push-action from 6.11.0 to 6.12.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/BeryJu/gravity/pull/1443](https://redirect.github.com/BeryJu/gravity/pull/1443)
- storage: Add generic Watcher by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1442](https://redirect.github.com/BeryJu/gravity/pull/1442)
- web: fix IP Sorting by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1445](https://redirect.github.com/BeryJu/gravity/pull/1445)

**Full Changelog**:
https://github.com/BeryJu/gravity/compare/v0.24.0...v0.25.0

###
[`v0.24.0`](https://redirect.github.com/BeryJu/gravity/releases/tag/v0.24.0):
Release 0.24.0

[Compare
Source](https://redirect.github.com/BeryJu/gravity/compare/v0.23.1...v0.24.0)

Upgrade to this version of gravity by using this container image:

    ghcr.io/beryju/gravity:v0.24.0

Upgrade to the current JS API Client using

    npm i gravity-api@0.24.0

Upgrade to the current Golang API Client using

    go get beryju.io/gravity@v0.24.0

#### What's Changed

- build(deps): bump eslint from 9.17.0 to 9.18.0 in /web in the eslint
group by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/BeryJu/gravity/pull/1435](https://redirect.github.com/BeryJu/gravity/pull/1435)
- dhcp: add web import support, start wizard by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1434](https://redirect.github.com/BeryJu/gravity/pull/1434)
- converter: add opnsense dnsmasq importer by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1433](https://redirect.github.com/BeryJu/gravity/pull/1433)

**Full Changelog**:
https://github.com/BeryJu/gravity/compare/v0.23.1...v0.24.0

###
[`v0.23.1`](https://redirect.github.com/BeryJu/gravity/releases/tag/v0.23.1):
Release 0.23.1

[Compare
Source](https://redirect.github.com/BeryJu/gravity/compare/v0.23.0...v0.23.1)

Upgrade to this version of gravity by using this container image:

    ghcr.io/beryju/gravity:v0.23.1

Upgrade to the current JS API Client using

    npm i gravity-api@0.23.1

Upgrade to the current Golang API Client using

    go get beryju.io/gravity@v0.23.1

**Full Changelog**:
https://github.com/BeryJu/gravity/compare/v0.23.0...v0.23.1

###
[`v0.23.0`](https://redirect.github.com/BeryJu/gravity/releases/tag/v0.23.0):
Release 0.23.0

[Compare
Source](https://redirect.github.com/BeryJu/gravity/compare/v0.22.0...v0.23.0)

Upgrade to this version of gravity by using this container image:

    ghcr.io/beryju/gravity:v0.23.0

Upgrade to the current JS API Client using

    npm i gravity-api@0.23.0

Upgrade to the current Golang API Client using

    go get beryju.io/gravity@v0.23.0

#### What's Changed

- convert: add initial bind zone importer by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1431](https://redirect.github.com/BeryJu/gravity/pull/1431)
- dhcp: test low-level handler by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1423](https://redirect.github.com/BeryJu/gravity/pull/1423)
- dns: per-zone metrics by
[@&#8203;BeryJu](https://redirect.github.com/BeryJu) in
[https://github.com/BeryJu/gravity/pull/1432](https://redirect.github.com/BeryJu/gravity/pull/1432)

**Full Changelog**:
https://github.com/BeryJu/gravity/compare/v0.22.0...v0.23.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 16:20:33 +01:00
TrueCharts BotandGitHub 945ddef58a chore(helm): update image docker.io/traccar/traccar 6.5 → 6.6 (#31110)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/traccar/traccar | minor | `e569632` -> `dc73ac1` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 16:19:49 +01:00
TrueCharts BotandGitHub c499160bb2 chore(helm): update image docker.io/tomsquest/docker-radicale 3.3.3.0 → 3.4.0.0 (#30872)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/tomsquest/docker-radicale](https://redirect.github.com/tomsquest/docker-radicale)
| minor | `fb8f149` -> `d00c83d` |

---

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

###
[`v3.4.0.0`](https://redirect.github.com/tomsquest/docker-radicale/blob/HEAD/CHANGELOG.md#3400---2025-01-11)

[Compare
Source](https://redirect.github.com/tomsquest/docker-radicale/compare/3.3.3.0...3.4.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:13:30 +00:00
TrueCharts BotandGitHub 70a4b31323 chore(helm): update image docker.io/spx01/blocky v0.24 → v0.25 (#31109)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/spx01/blocky](https://redirect.github.com/0xERR0R/blocky) |
minor | `9a82e02` -> `347f8c6` |

---

> [!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>0xERR0R/blocky (docker.io/spx01/blocky)</summary>

###
[`v0.25`](https://redirect.github.com/0xERR0R/blocky/releases/tag/v0.25)

[Compare
Source](https://redirect.github.com/0xERR0R/blocky/compare/v0.24...v0.25)

#### Changelog

-
[`4eff0b3`](https://redirect.github.com/0xERR0R/blocky/commit/4eff0b3b00c2112bdea64f93327de15c30b3b0e2):
Add support for SRV and TXT in custom DNS zones
([#&#8203;1588](https://redirect.github.com/0xERR0R/blocky/issues/1588))
([@&#8203;Terrance](https://redirect.github.com/Terrance))

-
[`3dcd310`](https://redirect.github.com/0xERR0R/blocky/commit/3dcd310a9aabbe15a2a4d9f7176571e13195b3ab):
feat: CLI command for configuration validation
([#&#8203;1497](https://redirect.github.com/0xERR0R/blocky/issues/1497))
([@&#8203;0xERR0R](https://redirect.github.com/0xERR0R))

-
[`51db8db`](https://redirect.github.com/0xERR0R/blocky/commit/51db8db8ed96b003308f7a7e09e69d5be5721625):
feat: ability to disable "Special Use Domain Name" blocking
([#&#8203;1618](https://redirect.github.com/0xERR0R/blocky/issues/1618))
([@&#8203;mapl](https://redirect.github.com/mapl))

-
[`6259e13`](https://redirect.github.com/0xERR0R/blocky/commit/6259e1326c0c1f827a5bc252da862247d04ac5ee):
feat: add Timescale DB with Hypertable and Retention support
([#&#8203;1517](https://redirect.github.com/0xERR0R/blocky/issues/1517))
([@&#8203;m4rcs](https://redirect.github.com/m4rcs))

-
[`f1386a0`](https://redirect.github.com/0xERR0R/blocky/commit/f1386a096ee32322f395d4ccb7f2fcf2fafd158a):
feat: added ip argument to health check
([#&#8203;1667](https://redirect.github.com/0xERR0R/blocky/issues/1667))
([@&#8203;cosmikwolf](https://redirect.github.com/cosmikwolf))

-
[`e485df1`](https://redirect.github.com/0xERR0R/blocky/commit/e485df1d4f963d6f5c864a755b08b9f402e12f87):
feat: configurable file write timeouts
([#&#8203;1653](https://redirect.github.com/0xERR0R/blocky/issues/1653))
([@&#8203;TheoTechnicguy](https://redirect.github.com/TheoTechnicguy))

-
[`49581ff`](https://redirect.github.com/0xERR0R/blocky/commit/49581ff40d023a5373245742885ac307f1d0cca4):
feat: configurable request header read timeout
([#&#8203;1664](https://redirect.github.com/0xERR0R/blocky/issues/1664))
([@&#8203;TheoTechnicguy](https://redirect.github.com/TheoTechnicguy))

-
[`0d00311`](https://redirect.github.com/0xERR0R/blocky/commit/0d00311513b6f566e19e0721761d3f381526666f):
feat: configurable request read timeouts
([#&#8203;1663](https://redirect.github.com/0xERR0R/blocky/issues/1663))
([@&#8203;TheoTechnicguy](https://redirect.github.com/TheoTechnicguy))

-
[`57b1bdb`](https://redirect.github.com/0xERR0R/blocky/commit/57b1bdbcea1da545e1717914b069ccc5eaf66dea):
feat: update metrics
([#&#8203;1560](https://redirect.github.com/0xERR0R/blocky/issues/1560))
([@&#8203;SuperQ](https://redirect.github.com/SuperQ))

-
[`8f08b7b`](https://redirect.github.com/0xERR0R/blocky/commit/8f08b7ba53db81f90b6d7dd0bed6e55e77b0f27b):
fix(docs): mark config mount as read-only
([@&#8203;zygm0nt](https://redirect.github.com/zygm0nt))

-
[`7b5d341`](https://redirect.github.com/0xERR0R/blocky/commit/7b5d34156cb80d1376976b758a461836ab9050d9):
fix(server): typo causing HTTPS router to be used for HTTP server
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`5a5ba55`](https://redirect.github.com/0xERR0R/blocky/commit/5a5ba550d5ec8db1405650d1dd114b30c18385a7):
fix: configuration error if customDNS.mappings contains multiple entries
with whitespace
([#&#8203;1496](https://redirect.github.com/0xERR0R/blocky/issues/1496))
([@&#8203;0xERR0R](https://redirect.github.com/0xERR0R))

-
[`bc5b59d`](https://redirect.github.com/0xERR0R/blocky/commit/bc5b59de7e4ce896a990d2fbffa31e67a93308c1):
refactor(server): deduplicate HTTP server setup with new `httpServer`
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`0f1cf4f`](https://redirect.github.com/0xERR0R/blocky/commit/0f1cf4f3959d3004413ba0309436fc735486539e):
refactor(server): deduplicate `tls.Config` setup
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`ae9651d`](https://redirect.github.com/0xERR0R/blocky/commit/ae9651db530ef28742e9a6fe4558735c5e6c3aed):
refactor(server): move middleware setup to `httpServer`
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`78f05ae`](https://redirect.github.com/0xERR0R/blocky/commit/78f05ae4bd9f28f04c59d25f5fe270d1df301589):
refactor(server): setup TLS listeners manually to remove `ServeTLS` use
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`037efeb`](https://redirect.github.com/0xERR0R/blocky/commit/037efeb66afeeb70d8c915c8905e517e312e527b):
refactor(server): simplify HTTP router setup
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`a2d7daa`](https://redirect.github.com/0xERR0R/blocky/commit/a2d7daa530ef63c4e146a3105abe34bdb643bb0e):
refactor: Use package local metrics
([#&#8203;1578](https://redirect.github.com/0xERR0R/blocky/issues/1578))
([@&#8203;SuperQ](https://redirect.github.com/SuperQ))

-
[`6aae002`](https://redirect.github.com/0xERR0R/blocky/commit/6aae002ca749ae939d0dea3b2383f07f296df3e4):
refactor: add `:` prefix to ports during config unmarshaling
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`8c3d858`](https://redirect.github.com/0xERR0R/blocky/commit/8c3d858b28e0d0cf1672ece6231cebcf0ee19fc3):
refactor: cleanup TLS self-signed cert generation
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`70afa43`](https://redirect.github.com/0xERR0R/blocky/commit/70afa437494ab67f5cf48191d5046c86dd37c859):
refactor: make QueryLoggingResolver read the hostname on creation
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`b589dca`](https://redirect.github.com/0xERR0R/blocky/commit/b589dcad6248527ac5f93785085f50d40b2718b5):
refactor: move `createSelfSignedCert` to util
([@&#8203;ThinkChaos](https://redirect.github.com/ThinkChaos))

-
[`aff2998`](https://redirect.github.com/0xERR0R/blocky/commit/aff2998a20d93d7949252408281618977deace52):
build(deps): bump codecov/codecov-action from 4 to 5
([#&#8203;1645](https://redirect.github.com/0xERR0R/blocky/issues/1645))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`ba774ec`](https://redirect.github.com/0xERR0R/blocky/commit/ba774ec2775da98a0ec4eabe2d28cd8955891cf3):
build(deps): bump docker/build-push-action from 5 to 6
([#&#8203;1526](https://redirect.github.com/0xERR0R/blocky/issues/1526))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`64384e4`](https://redirect.github.com/0xERR0R/blocky/commit/64384e4a3c7d6ec961012f0de60f976431091cdd):
build(deps): bump github.com/alicebob/miniredis/v2 from 2.32.1 to 2.33.0
([#&#8203;1502](https://redirect.github.com/0xERR0R/blocky/issues/1502))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`9326457`](https://redirect.github.com/0xERR0R/blocky/commit/9326457fa2370dc42551c8cf6bab80125671c0b2):
build(deps): bump github.com/alicebob/miniredis/v2 from 2.33.0 to 2.34.0
([#&#8203;1668](https://redirect.github.com/0xERR0R/blocky/issues/1668))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`b54675a`](https://redirect.github.com/0xERR0R/blocky/commit/b54675a404acd1930fb4bd70d3a9254811d6da92):
build(deps): bump github.com/creasty/defaults from 1.7.0 to 1.8.0
([#&#8203;1573](https://redirect.github.com/0xERR0R/blocky/issues/1573))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`3a80ed4`](https://redirect.github.com/0xERR0R/blocky/commit/3a80ed4f44a7413df2be304d77de9d4aaf5caa8b):
build(deps): bump github.com/deepmap/oapi-codegen from 1.16.2 to 1.16.3
([#&#8203;1512](https://redirect.github.com/0xERR0R/blocky/issues/1512))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`aef4eca`](https://redirect.github.com/0xERR0R/blocky/commit/aef4eca7e0c7267ba7e18939de8a76e5b258bb22):
build(deps): bump github.com/docker/docker
([#&#8203;1488](https://redirect.github.com/0xERR0R/blocky/issues/1488))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`12d3e6a`](https://redirect.github.com/0xERR0R/blocky/commit/12d3e6a3ac2dd0e77259470d62eba181a27f27ad):
build(deps): bump github.com/docker/docker
([#&#8203;1516](https://redirect.github.com/0xERR0R/blocky/issues/1516))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`cc9ce6c`](https://redirect.github.com/0xERR0R/blocky/commit/cc9ce6c336baf01541f4734d681a360e8f0a1a54):
build(deps): bump github.com/docker/docker
([#&#8203;1556](https://redirect.github.com/0xERR0R/blocky/issues/1556))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`02e3828`](https://redirect.github.com/0xERR0R/blocky/commit/02e38283ba9fe081bbe9a15944f28007176b6aaa):
build(deps): bump github.com/docker/docker
([#&#8203;1571](https://redirect.github.com/0xERR0R/blocky/issues/1571))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`564b41e`](https://redirect.github.com/0xERR0R/blocky/commit/564b41e82d4f66293fe077b24e79b79e23206f7d):
build(deps): bump github.com/docker/docker
([#&#8203;1589](https://redirect.github.com/0xERR0R/blocky/issues/1589))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`e5500a0`](https://redirect.github.com/0xERR0R/blocky/commit/e5500a04d3c0b8a83b33f033fe4ee2a50f9801f5):
build(deps): bump github.com/docker/docker
([#&#8203;1600](https://redirect.github.com/0xERR0R/blocky/issues/1600))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`832d6c4`](https://redirect.github.com/0xERR0R/blocky/commit/832d6c4e7a983c7e877296d14dc3dab33b69c280):
build(deps): bump github.com/docker/docker
([#&#8203;1611](https://redirect.github.com/0xERR0R/blocky/issues/1611))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`a47a249`](https://redirect.github.com/0xERR0R/blocky/commit/a47a2491e5cbeb8122b0995822d1bec5a59e45b4):
build(deps): bump github.com/docker/docker
([#&#8203;1659](https://redirect.github.com/0xERR0R/blocky/issues/1659))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`a2c5f25`](https://redirect.github.com/0xERR0R/blocky/commit/a2c5f25d462c5d5fc2667e77cd1d8e4267ed030e):
build(deps): bump github.com/docker/docker
([#&#8203;1670](https://redirect.github.com/0xERR0R/blocky/issues/1670))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`17fa01d`](https://redirect.github.com/0xERR0R/blocky/commit/17fa01d3a0d097d4650790c6054b2f16c3eeaf14):
build(deps): bump github.com/docker/docker
([#&#8203;1691](https://redirect.github.com/0xERR0R/blocky/issues/1691))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`d42c174`](https://redirect.github.com/0xERR0R/blocky/commit/d42c174c50698f1d5d81210dcd4278ae1494a063):
build(deps): bump github.com/go-chi/chi/v5 from 5.0.12 to 5.0.13
([#&#8203;1527](https://redirect.github.com/0xERR0R/blocky/issues/1527))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`ddebd34`](https://redirect.github.com/0xERR0R/blocky/commit/ddebd3450c71b88115f8b32f698fea1f643a4b48):
build(deps): bump github.com/go-chi/chi/v5 from 5.0.13 to 5.0.14
([#&#8203;1529](https://redirect.github.com/0xERR0R/blocky/issues/1529))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`e511003`](https://redirect.github.com/0xERR0R/blocky/commit/e5110039ce5be7d51c9e31118507e9050406e25c):
build(deps): bump github.com/go-chi/chi/v5 from 5.0.14 to 5.1.0
([#&#8203;1532](https://redirect.github.com/0xERR0R/blocky/issues/1532))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`2108018`](https://redirect.github.com/0xERR0R/blocky/commit/2108018bd352ec87cdb11eb46e5ba89854324a2b):
build(deps): bump github.com/go-chi/chi/v5 from 5.1.0 to 5.2.0
([#&#8203;1665](https://redirect.github.com/0xERR0R/blocky/issues/1665))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`6ddac04`](https://redirect.github.com/0xERR0R/blocky/commit/6ddac0455fda68728d74ea70d83b0b2b456cd4ce):
build(deps): bump github.com/mattn/go-colorable from 0.1.13 to 0.1.14
([#&#8203;1687](https://redirect.github.com/0xERR0R/blocky/issues/1687))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`f655780`](https://redirect.github.com/0xERR0R/blocky/commit/f6557803aafe4efd117259f1373476efe1fdb118):
build(deps): bump github.com/miekg/dns from 1.1.59 to 1.1.61
([#&#8203;1524](https://redirect.github.com/0xERR0R/blocky/issues/1524))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`6c499c7`](https://redirect.github.com/0xERR0R/blocky/commit/6c499c7d8b8bf2bfec59523f3f7a8d7d80489fb9):
build(deps): bump github.com/miekg/dns from 1.1.61 to 1.1.62
([#&#8203;1572](https://redirect.github.com/0xERR0R/blocky/issues/1572))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`5aa3103`](https://redirect.github.com/0xERR0R/blocky/commit/5aa310367153362e5bc1259123650ce31bfd9530):
build(deps): bump github.com/onsi/ginkgo/v2 from 2.18.0 to 2.19.0
([#&#8203;1498](https://redirect.github.com/0xERR0R/blocky/issues/1498))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`0beb35c`](https://redirect.github.com/0xERR0R/blocky/commit/0beb35c2e675ceb0c7b887a0f304bedefa0f1a82):
build(deps): bump github.com/onsi/ginkgo/v2 from 2.19.0 to 2.19.1
([#&#8203;1561](https://redirect.github.com/0xERR0R/blocky/issues/1561))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`a7c8aed`](https://redirect.github.com/0xERR0R/blocky/commit/a7c8aed3dc643c55401a490d0f1d5d764af52a4a):
build(deps): bump github.com/onsi/ginkgo/v2 from 2.19.1 to 2.20.0
([#&#8203;1569](https://redirect.github.com/0xERR0R/blocky/issues/1569))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`0cf7cb5`](https://redirect.github.com/0xERR0R/blocky/commit/0cf7cb5dffe9edee0cfdba65deca8c0ab2a3e4a2):
build(deps): bump github.com/onsi/ginkgo/v2 from 2.20.0 to 2.20.1
([#&#8203;1584](https://redirect.github.com/0xERR0R/blocky/issues/1584))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`a28a007`](https://redirect.github.com/0xERR0R/blocky/commit/a28a0077235b0d92288b0c90219a0023f8d340bf):
build(deps): bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2
([#&#8203;1590](https://redirect.github.com/0xERR0R/blocky/issues/1590))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`d1d283f`](https://redirect.github.com/0xERR0R/blocky/commit/d1d283fb9746cfeb687a4ba3800d66f5f811283b):
build(deps): bump github.com/onsi/gomega from 1.33.1 to 1.34.1
([#&#8203;1562](https://redirect.github.com/0xERR0R/blocky/issues/1562))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`3e6b61b`](https://redirect.github.com/0xERR0R/blocky/commit/3e6b61b3ebd665437f229e7b410bb9555520408a):
build(deps): bump github.com/onsi/gomega from 1.34.1 to 1.34.2
([#&#8203;1591](https://redirect.github.com/0xERR0R/blocky/issues/1591))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`a377180`](https://redirect.github.com/0xERR0R/blocky/commit/a37718031d7d41a9339144887758ce5e3093a945):
build(deps): bump github.com/onsi/gomega from 1.34.2 to 1.35.1
([#&#8203;1635](https://redirect.github.com/0xERR0R/blocky/issues/1635))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`f38b4a1`](https://redirect.github.com/0xERR0R/blocky/commit/f38b4a11747c3c8675783f131a1a2d05fbd8fc09):
build(deps): bump github.com/onsi/gomega from 1.35.1 to 1.36.0
([#&#8203;1649](https://redirect.github.com/0xERR0R/blocky/issues/1649))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`2e7fda9`](https://redirect.github.com/0xERR0R/blocky/commit/2e7fda99e3a3a44ecc31152eb318c7cd8092900e):
build(deps): bump github.com/onsi/gomega from 1.36.0 to 1.36.1
([#&#8203;1660](https://redirect.github.com/0xERR0R/blocky/issues/1660))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`4805cb6`](https://redirect.github.com/0xERR0R/blocky/commit/4805cb60d261ed8d54f51fb32660bb0089dbd89b):
build(deps): bump github.com/prometheus/client_golang
([#&#8203;1480](https://redirect.github.com/0xERR0R/blocky/issues/1480))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`766dc79`](https://redirect.github.com/0xERR0R/blocky/commit/766dc7915b02cc26a405aa47abb08719e2f8f357):
build(deps): bump github.com/prometheus/client_golang
([#&#8203;1575](https://redirect.github.com/0xERR0R/blocky/issues/1575))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`437e0cd`](https://redirect.github.com/0xERR0R/blocky/commit/437e0cd58ebce458ae68381d5b93c65710df4f48):
build(deps): bump github.com/prometheus/client_golang
([#&#8203;1586](https://redirect.github.com/0xERR0R/blocky/issues/1586))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`776a8f1`](https://redirect.github.com/0xERR0R/blocky/commit/776a8f19b40ba12d33e1295ad863c962cc75a532):
build(deps): bump github.com/prometheus/client_golang
([#&#8203;1598](https://redirect.github.com/0xERR0R/blocky/issues/1598))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`cea540f`](https://redirect.github.com/0xERR0R/blocky/commit/cea540f0a1b4cfbba0b8372eecbc111cf7a2b7ef):
build(deps): bump github.com/prometheus/client_golang
([#&#8203;1607](https://redirect.github.com/0xERR0R/blocky/issues/1607))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`76aa6cc`](https://redirect.github.com/0xERR0R/blocky/commit/76aa6cc84cd134d8bd530dadd56b1dddf1ccc77c):
build(deps): bump github.com/prometheus/client_golang
([#&#8203;1626](https://redirect.github.com/0xERR0R/blocky/issues/1626))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`0a35489`](https://redirect.github.com/0xERR0R/blocky/commit/0a354893c2a4c50f65d059e882d399381d4d69a8):
build(deps): bump github.com/ramr/go-reaper from 0.2.1 to 0.2.3
([#&#8203;1637](https://redirect.github.com/0xERR0R/blocky/issues/1637))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`4986914`](https://redirect.github.com/0xERR0R/blocky/commit/49869149055a773d1e483b89cf0693fc963b4700):
build(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1
([#&#8203;1525](https://redirect.github.com/0xERR0R/blocky/issues/1525))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`128dd4f`](https://redirect.github.com/0xERR0R/blocky/commit/128dd4fae6af75884c3ac0e7c8f1d305a32a0520):
build(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0
([#&#8203;1648](https://redirect.github.com/0xERR0R/blocky/issues/1648))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`f78e213`](https://redirect.github.com/0xERR0R/blocky/commit/f78e213138e7d93b59fa6881a1b796a48297540c):
build(deps): bump
github.com/testcontainers/testcontainers-go/modules/mariadb
([#&#8203;1582](https://redirect.github.com/0xERR0R/blocky/issues/1582))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`cf5e496`](https://redirect.github.com/0xERR0R/blocky/commit/cf5e496fe530e68d98e5989e76c21644cb330246):
build(deps): bump
github.com/testcontainers/testcontainers-go/modules/mariadb
([#&#8203;1630](https://redirect.github.com/0xERR0R/blocky/issues/1630))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`23e4672`](https://redirect.github.com/0xERR0R/blocky/commit/23e4672a3d72ce6bab17edee3c74c0d3db844fcc):
build(deps): bump
github.com/testcontainers/testcontainers-go/modules/mariadb
([#&#8203;1686](https://redirect.github.com/0xERR0R/blocky/issues/1686))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`5996f5a`](https://redirect.github.com/0xERR0R/blocky/commit/5996f5a16e0627df6422a7f41a91cd88528de988):
build(deps): bump
github.com/testcontainers/testcontainers-go/modules/postgres
([#&#8203;1583](https://redirect.github.com/0xERR0R/blocky/issues/1583))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`7e23557`](https://redirect.github.com/0xERR0R/blocky/commit/7e23557fe0b1be19080dd05fa7221302afd73e5d):
build(deps): bump
github.com/testcontainers/testcontainers-go/modules/postgres
([#&#8203;1629](https://redirect.github.com/0xERR0R/blocky/issues/1629))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`111bb02`](https://redirect.github.com/0xERR0R/blocky/commit/111bb02ac9962ddf1de2bec4df8928f8f2c1df51):
build(deps): bump
github.com/testcontainers/testcontainers-go/modules/postgres
([#&#8203;1690](https://redirect.github.com/0xERR0R/blocky/issues/1690))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`13c5ca9`](https://redirect.github.com/0xERR0R/blocky/commit/13c5ca960af941d44d1445e1d427e41c07234adc):
build(deps): bump
github.com/testcontainers/testcontainers-go/modules/redis
([#&#8203;1580](https://redirect.github.com/0xERR0R/blocky/issues/1580))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`feaaed8`](https://redirect.github.com/0xERR0R/blocky/commit/feaaed88a95e42e4b034d75ec85721a6c9ff7384):
build(deps): bump
github.com/testcontainers/testcontainers-go/modules/redis
([#&#8203;1627](https://redirect.github.com/0xERR0R/blocky/issues/1627))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`0baf23c`](https://redirect.github.com/0xERR0R/blocky/commit/0baf23c1660655ba1b7f497ce866e90a14e13631):
build(deps): bump
github.com/testcontainers/testcontainers-go/modules/redis
([#&#8203;1689](https://redirect.github.com/0xERR0R/blocky/issues/1689))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`7f9399b`](https://redirect.github.com/0xERR0R/blocky/commit/7f9399be1e27bc6dfef1f928937f316d1710ab54):
build(deps): bump golang.org/x/crypto from 0.30.0 to 0.31.0
([#&#8203;1662](https://redirect.github.com/0xERR0R/blocky/issues/1662))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`1157f92`](https://redirect.github.com/0xERR0R/blocky/commit/1157f9258ed28a7a9611ce87a65290125ef47ab8):
build(deps): bump golang.org/x/net from 0.26.0 to 0.27.0
([#&#8203;1539](https://redirect.github.com/0xERR0R/blocky/issues/1539))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`0dff6f1`](https://redirect.github.com/0xERR0R/blocky/commit/0dff6f1adfb79c7dc150a70bf505cb0a6bb8c2fe):
build(deps): bump golang.org/x/net from 0.28.0 to 0.30.0
([#&#8203;1621](https://redirect.github.com/0xERR0R/blocky/issues/1621))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`72b397c`](https://redirect.github.com/0xERR0R/blocky/commit/72b397cd4536df9b3b43dd5c9d6445a7abaab9eb):
build(deps): bump golang.org/x/net from 0.30.0 to 0.32.0
([#&#8203;1655](https://redirect.github.com/0xERR0R/blocky/issues/1655))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`11a910a`](https://redirect.github.com/0xERR0R/blocky/commit/11a910a23255ae55a9f782db87b45a7a878ac5f0):
build(deps): bump golang.org/x/net from 0.32.0 to 0.33.0
([#&#8203;1669](https://redirect.github.com/0xERR0R/blocky/issues/1669))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`23fd5bb`](https://redirect.github.com/0xERR0R/blocky/commit/23fd5bb7ba4ac570bdfb12d43eff8388514435c7):
build(deps): bump golang.org/x/net from 0.33.0 to 0.34.0
([#&#8203;1680](https://redirect.github.com/0xERR0R/blocky/issues/1680))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`5799825`](https://redirect.github.com/0xERR0R/blocky/commit/5799825a8dd4239515c655ce85ac44213cd89ea2):
build(deps): bump golang.org/x/tools from 0.21.0 to 0.22.0
([#&#8203;1511](https://redirect.github.com/0xERR0R/blocky/issues/1511))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`3bf94c1`](https://redirect.github.com/0xERR0R/blocky/commit/3bf94c10c2682d7eae7c2f060463f9ff2058129a):
build(deps): bump golang.org/x/tools from 0.22.0 to 0.23.0
([#&#8203;1542](https://redirect.github.com/0xERR0R/blocky/issues/1542))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`486974e`](https://redirect.github.com/0xERR0R/blocky/commit/486974e4f9845c240545932174d2bfbee0a7952c):
build(deps): bump golang.org/x/tools from 0.23.0 to 0.24.0
([#&#8203;1567](https://redirect.github.com/0xERR0R/blocky/issues/1567))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`bf5f136`](https://redirect.github.com/0xERR0R/blocky/commit/bf5f136b48334eed5fc1f975c9de4aa0afd472b2):
build(deps): bump gorm.io/driver/mysql from 1.5.6 to 1.5.7
([#&#8203;1520](https://redirect.github.com/0xERR0R/blocky/issues/1520))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`1d0421f`](https://redirect.github.com/0xERR0R/blocky/commit/1d0421f48d9426b84b5774fefccddb5a4aacd716):
build(deps): bump gorm.io/driver/postgres from 1.5.7 to 1.5.9
([#&#8203;1522](https://redirect.github.com/0xERR0R/blocky/issues/1522))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`00e0ee0`](https://redirect.github.com/0xERR0R/blocky/commit/00e0ee01b7c3d38773c49a48cbad96520e2afa4f):
build(deps): bump gorm.io/driver/postgres from 1.5.9 to 1.5.11
([#&#8203;1651](https://redirect.github.com/0xERR0R/blocky/issues/1651))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`db610d3`](https://redirect.github.com/0xERR0R/blocky/commit/db610d3e3373b27c7d9e9bd6eb1c114a13388885):
build(deps): bump gorm.io/driver/sqlite from 1.5.5 to 1.5.6
([#&#8203;1518](https://redirect.github.com/0xERR0R/blocky/issues/1518))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`1fcf65b`](https://redirect.github.com/0xERR0R/blocky/commit/1fcf65b12816550d7d661da194c53e5469f57050):
build(deps): bump gorm.io/driver/sqlite from 1.5.6 to 1.5.7
([#&#8203;1661](https://redirect.github.com/0xERR0R/blocky/issues/1661))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`0558802`](https://redirect.github.com/0xERR0R/blocky/commit/05588028f49c51dee5692180c020e1f22f8d20a9):
build(deps): bump gorm.io/gorm from 1.25.10 to 1.25.11
([#&#8203;1548](https://redirect.github.com/0xERR0R/blocky/issues/1548))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`4497b8f`](https://redirect.github.com/0xERR0R/blocky/commit/4497b8f3ba3e1ad6e4414be79c8e98855f48f4d0):
build(deps): bump gorm.io/gorm from 1.25.11 to 1.25.12
([#&#8203;1601](https://redirect.github.com/0xERR0R/blocky/issues/1601))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`582e55f`](https://redirect.github.com/0xERR0R/blocky/commit/582e55f0e2010c7db8f8907c2d496e7e37f3adf8):
build(deps): bump mvdan.cc/gofumpt from 0.5.0 to 0.7.0
([#&#8203;1576](https://redirect.github.com/0xERR0R/blocky/issues/1576))
([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])

-
[`de7ebbf`](https://redirect.github.com/0xERR0R/blocky/commit/de7ebbf3baa679097f572b3aded1de2022b6febe):
build(deps): upgrade oapi-codegen
([@&#8203;0xERR0R](https://redirect.github.com/0xERR0R))

-
[`dbba2fa`](https://redirect.github.com/0xERR0R/blocky/commit/dbba2fabae59125d1d89462734497677e2720ab3):
chore(build): update golangci-lint
([@&#8203;0xERR0R](https://redirect.github.com/0xERR0R))

-
[`7001474`](https://redirect.github.com/0xERR0R/blocky/commit/7001474ea5a03700dfd3bcc1ecb86f005766664a):
chore(deps): update docker and testcontainers libs
([#&#8203;1552](https://redirect.github.com/0xERR0R/blocky/issues/1552))
([@&#8203;0xERR0R](https://redirect.github.com/0xERR0R))

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 16:13:15 +01:00
TrueCharts BotandGitHub 2e678bc8c6 fix(deps): update module sigs.k8s.io/kustomize/api v0.18.0 → v0.19.0 (clustertool) (#30922)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[sigs.k8s.io/kustomize/api](https://redirect.github.com/kubernetes-sigs/kustomize)
| require | minor | `v0.18.0` -> `v0.19.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:10:39 +00:00
TrueCharts BotandGitHub f98552e35e chore(helm): update image docker.io/netdata/netdata v2.1.1 → v2.2.0 (#31106)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/netdata/netdata](https://netdata.cloud)
([source](https://redirect.github.com/netdata/netdata)) | minor |
`61bbdc6` -> `fd72806` |

---

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

###
[`v2.2.0`](https://redirect.github.com/netdata/netdata/blob/HEAD/CHANGELOG.md#v220-2025-01-22)

[Compare
Source](https://redirect.github.com/netdata/netdata/compare/v2.1.1...v2.2.0)

[Full
Changelog](https://redirect.github.com/netdata/netdata/compare/v2.1.1...v2.2.0)

**Merged pull requests:**

- control stream-info requests rate
[#&#8203;19458](https://redirect.github.com/netdata/netdata/pull/19458)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(go.d/upsd): remove UPS load charts if UPS load not found
[#&#8203;19457](https://redirect.github.com/netdata/netdata/pull/19457)
([ilyam8](https://redirect.github.com/ilyam8))
- Simplify the rrdhost_ingestion_status call
[#&#8203;19456](https://redirect.github.com/netdata/netdata/pull/19456)
([stelfrag](https://redirect.github.com/stelfrag))
- Fix up handling of libunwind in CMake.
[#&#8203;19451](https://redirect.github.com/netdata/netdata/pull/19451)
([Ferroin](https://redirect.github.com/Ferroin))
- Revert libunwind being enabled in Docker and DEB builds.
[#&#8203;19450](https://redirect.github.com/netdata/netdata/pull/19450)
([Ferroin](https://redirect.github.com/Ferroin))
- Do not run queries synchronously in the event loop
[#&#8203;19448](https://redirect.github.com/netdata/netdata/pull/19448)
([stelfrag](https://redirect.github.com/stelfrag))
- Cleanup metadata event loop
[#&#8203;19447](https://redirect.github.com/netdata/netdata/pull/19447)
([stelfrag](https://redirect.github.com/stelfrag))
- Make sure ACLK synchronization event loop runs frequently
[#&#8203;19446](https://redirect.github.com/netdata/netdata/pull/19446)
([stelfrag](https://redirect.github.com/stelfrag))
- move dbengine-retention chart to pulse
[#&#8203;19444](https://redirect.github.com/netdata/netdata/pull/19444)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix Child web remote access Config in Parent-Child Deployment Examples
[#&#8203;19443](https://redirect.github.com/netdata/netdata/pull/19443)
([Destructio](https://redirect.github.com/Destructio))
- build(deps): update go toolchain to v1.23.5
[#&#8203;19442](https://redirect.github.com/netdata/netdata/pull/19442)
([ilyam8](https://redirect.github.com/ilyam8))
- build(deps): bump github.com/prometheus/common from 0.61.0 to 0.62.0
in /src/go
[#&#8203;19439](https://redirect.github.com/netdata/netdata/pull/19439)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/sijms/go-ora/v2 from 2.8.22 to 2.8.23 in
/src/go
[#&#8203;19438](https://redirect.github.com/netdata/netdata/pull/19438)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump k8s.io/client-go from 0.32.0 to 0.32.1 in /src/go
[#&#8203;19437](https://redirect.github.com/netdata/netdata/pull/19437)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- Handle incoming ACLK traffic asynchronously
[#&#8203;19436](https://redirect.github.com/netdata/netdata/pull/19436)
([stelfrag](https://redirect.github.com/stelfrag))
- add more aclk worker jobs
[#&#8203;19435](https://redirect.github.com/netdata/netdata/pull/19435)
([ktsaou](https://redirect.github.com/ktsaou))
- fix go.d/ethtool config schema
[#&#8203;19434](https://redirect.github.com/netdata/netdata/pull/19434)
([ilyam8](https://redirect.github.com/ilyam8))
- Cleanup context check list on startup
[#&#8203;19433](https://redirect.github.com/netdata/netdata/pull/19433)
([stelfrag](https://redirect.github.com/stelfrag))
- Regenerate integrations docs
[#&#8203;19432](https://redirect.github.com/netdata/netdata/pull/19432)
([netdatabot](https://redirect.github.com/netdatabot))
- Drop Fedora 39 from CI and package builds.
[#&#8203;19431](https://redirect.github.com/netdata/netdata/pull/19431)
([Ferroin](https://redirect.github.com/Ferroin))
- docs: fix go.d/ethtool meta
[#&#8203;19430](https://redirect.github.com/netdata/netdata/pull/19430)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(go.d/ethtool): use ndsudo for module info
[#&#8203;19429](https://redirect.github.com/netdata/netdata/pull/19429)
([ilyam8](https://redirect.github.com/ilyam8))
- add 'ethtool -m' to ndsudo
[#&#8203;19428](https://redirect.github.com/netdata/netdata/pull/19428)
([ilyam8](https://redirect.github.com/ilyam8))
- feat(go.d/ethtool): collect module ddm info using ethtool
[#&#8203;19426](https://redirect.github.com/netdata/netdata/pull/19426)
([ilyam8](https://redirect.github.com/ilyam8))
- ACLK timeout
[#&#8203;19425](https://redirect.github.com/netdata/netdata/pull/19425)
([ktsaou](https://redirect.github.com/ktsaou))
- log stream_info payload when it cannot be parsed
[#&#8203;19424](https://redirect.github.com/netdata/netdata/pull/19424)
([ktsaou](https://redirect.github.com/ktsaou))
- Add missing information in rule based membership document
[#&#8203;19423](https://redirect.github.com/netdata/netdata/pull/19423)
([juacker](https://redirect.github.com/juacker))
- Fix coverity issues
[#&#8203;19422](https://redirect.github.com/netdata/netdata/pull/19422)
([stelfrag](https://redirect.github.com/stelfrag))
- add 'type' to GH report forms
[#&#8203;19421](https://redirect.github.com/netdata/netdata/pull/19421)
([ilyam8](https://redirect.github.com/ilyam8))
- fix mmaps accounting
[#&#8203;19420](https://redirect.github.com/netdata/netdata/pull/19420)
([ktsaou](https://redirect.github.com/ktsaou))
- PULSE: network traffic
[#&#8203;19419](https://redirect.github.com/netdata/netdata/pull/19419)
([ktsaou](https://redirect.github.com/ktsaou))
- hostnames: convert to utf8 and santitize
[#&#8203;19418](https://redirect.github.com/netdata/netdata/pull/19418)
([ktsaou](https://redirect.github.com/ktsaou))
- Enable libunwind in DEB native packages.
[#&#8203;19417](https://redirect.github.com/netdata/netdata/pull/19417)
([Ferroin](https://redirect.github.com/Ferroin))
- cleanup contexts during loading
[#&#8203;19416](https://redirect.github.com/netdata/netdata/pull/19416)
([ktsaou](https://redirect.github.com/ktsaou))
- packaging(windows): use local copy of GPL-3
[#&#8203;19414](https://redirect.github.com/netdata/netdata/pull/19414)
([ilyam8](https://redirect.github.com/ilyam8))
- add "netdata-" prefix to streaming and metrics-cardinality functions
[#&#8203;19413](https://redirect.github.com/netdata/netdata/pull/19413)
([ilyam8](https://redirect.github.com/ilyam8))
- REFCOUNT: use only compare-and-exchange
[#&#8203;19411](https://redirect.github.com/netdata/netdata/pull/19411)
([ktsaou](https://redirect.github.com/ktsaou))
- Alert prototypes: use r/w spinlock instead of spinlock
[#&#8203;19410](https://redirect.github.com/netdata/netdata/pull/19410)
([ktsaou](https://redirect.github.com/ktsaou))
- Enable libunwind in Docker images.
[#&#8203;19409](https://redirect.github.com/netdata/netdata/pull/19409)
([Ferroin](https://redirect.github.com/Ferroin))
- build(deps): bump github.com/docker/docker from 27.4.1+incompatible to
27.5.0+incompatible in /src/go
[#&#8203;19408](https://redirect.github.com/netdata/netdata/pull/19408)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/bmatcuk/doublestar/v4 from 4.7.1 to 4.8.0
in /src/go
[#&#8203;19407](https://redirect.github.com/netdata/netdata/pull/19407)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- fixed http clients accounting
[#&#8203;19406](https://redirect.github.com/netdata/netdata/pull/19406)
([ktsaou](https://redirect.github.com/ktsaou))
- RRD files split, renames, cleanup Part 2
[#&#8203;19405](https://redirect.github.com/netdata/netdata/pull/19405)
([ktsaou](https://redirect.github.com/ktsaou))
- fix loading contexts
[#&#8203;19404](https://redirect.github.com/netdata/netdata/pull/19404)
([ktsaou](https://redirect.github.com/ktsaou))
- Delay context cleanup checks after startup
[#&#8203;19403](https://redirect.github.com/netdata/netdata/pull/19403)
([stelfrag](https://redirect.github.com/stelfrag))
- system memory calculation for cgroups v1 fix
[#&#8203;19402](https://redirect.github.com/netdata/netdata/pull/19402)
([ktsaou](https://redirect.github.com/ktsaou))
- do not process contexts before they are loaded
[#&#8203;19401](https://redirect.github.com/netdata/netdata/pull/19401)
([ktsaou](https://redirect.github.com/ktsaou))
- Revert "Update kickstart script to use new repository host."
[#&#8203;19400](https://redirect.github.com/netdata/netdata/pull/19400)
([Ferroin](https://redirect.github.com/Ferroin))
- split rrdhost/rrdset/rrddim and rrd.h
[#&#8203;19399](https://redirect.github.com/netdata/netdata/pull/19399)
([ktsaou](https://redirect.github.com/ktsaou))
- fix nodes staying in initializing status
[#&#8203;19398](https://redirect.github.com/netdata/netdata/pull/19398)
([ktsaou](https://redirect.github.com/ktsaou))
- Use worker when dispatching alert transitions to the cloud
[#&#8203;19397](https://redirect.github.com/netdata/netdata/pull/19397)
([stelfrag](https://redirect.github.com/stelfrag))
- Unified memory API
[#&#8203;19396](https://redirect.github.com/netdata/netdata/pull/19396)
([ktsaou](https://redirect.github.com/ktsaou))
- build(go.d): switch to gohugoio/hashstructure
[#&#8203;19395](https://redirect.github.com/netdata/netdata/pull/19395)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19394](https://redirect.github.com/netdata/netdata/pull/19394)
([netdatabot](https://redirect.github.com/netdatabot))
- Make libunwind opt-in at build time instead of auto-enabled.
[#&#8203;19393](https://redirect.github.com/netdata/netdata/pull/19393)
([Ferroin](https://redirect.github.com/Ferroin))
- Remove openSUSE 15.5 from CI and package builds.
[#&#8203;19392](https://redirect.github.com/netdata/netdata/pull/19392)
([Ferroin](https://redirect.github.com/Ferroin))
- Reduce glibc fragmentation Part 2
[#&#8203;19390](https://redirect.github.com/netdata/netdata/pull/19390)
([ktsaou](https://redirect.github.com/ktsaou))
- Verify and cleanup deleted contexts
[#&#8203;19389](https://redirect.github.com/netdata/netdata/pull/19389)
([stelfrag](https://redirect.github.com/stelfrag))
- Reduce glibc memory fragmentation
[#&#8203;19385](https://redirect.github.com/netdata/netdata/pull/19385)
([ktsaou](https://redirect.github.com/ktsaou))
- added mmap count charts
[#&#8203;19384](https://redirect.github.com/netdata/netdata/pull/19384)
([ktsaou](https://redirect.github.com/ktsaou))
- used_arena should exclude unused memory
[#&#8203;19382](https://redirect.github.com/netdata/netdata/pull/19382)
([ktsaou](https://redirect.github.com/ktsaou))
- fix mallinfo2
[#&#8203;19381](https://redirect.github.com/netdata/netdata/pull/19381)
([ktsaou](https://redirect.github.com/ktsaou))
- limit the glibc unused memory
[#&#8203;19380](https://redirect.github.com/netdata/netdata/pull/19380)
([ktsaou](https://redirect.github.com/ktsaou))
- Pulse extended memory statistics, now report glibc allocations
[#&#8203;19379](https://redirect.github.com/netdata/netdata/pull/19379)
([ktsaou](https://redirect.github.com/ktsaou))
- build(deps): bump github.com/axiomhq/hyperloglog from 0.2.2 to 0.2.3
in /src/go
[#&#8203;19378](https://redirect.github.com/netdata/netdata/pull/19378)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump go.mongodb.org/mongo-driver from 1.17.1 to 1.17.2 in
/src/go
[#&#8203;19377](https://redirect.github.com/netdata/netdata/pull/19377)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- ARAL: fast path to quickly allocate elements on a new page
[#&#8203;19376](https://redirect.github.com/netdata/netdata/pull/19376)
([ktsaou](https://redirect.github.com/ktsaou))
- disable libunwind on forked children
[#&#8203;19374](https://redirect.github.com/netdata/netdata/pull/19374)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix alert entry traversal when doing cleanup
[#&#8203;19373](https://redirect.github.com/netdata/netdata/pull/19373)
([stelfrag](https://redirect.github.com/stelfrag))
- Fix issues with $PATH and netdatacli detection.
[#&#8203;19371](https://redirect.github.com/netdata/netdata/pull/19371)
([Ferroin](https://redirect.github.com/Ferroin))
- fix for PGC wanted_cache_size getting to zero
[#&#8203;19370](https://redirect.github.com/netdata/netdata/pull/19370)
([ktsaou](https://redirect.github.com/ktsaou))
- metrics cardinality - more statistics and groupings
[#&#8203;19368](https://redirect.github.com/netdata/netdata/pull/19368)
([ktsaou](https://redirect.github.com/ktsaou))
- stream-thread fix memory corruption
[#&#8203;19367](https://redirect.github.com/netdata/netdata/pull/19367)
([ktsaou](https://redirect.github.com/ktsaou))
- metrics cardinality improvements
[#&#8203;19366](https://redirect.github.com/netdata/netdata/pull/19366)
([ktsaou](https://redirect.github.com/ktsaou))
- prevent memory corruption in dbengine
[#&#8203;19365](https://redirect.github.com/netdata/netdata/pull/19365)
([ktsaou](https://redirect.github.com/ktsaou))
- Revert "prevent memory corruption in dbengine"
[#&#8203;19364](https://redirect.github.com/netdata/netdata/pull/19364)
([ktsaou](https://redirect.github.com/ktsaou))
- prevent memory corruption in dbengine
[#&#8203;19363](https://redirect.github.com/netdata/netdata/pull/19363)
([ktsaou](https://redirect.github.com/ktsaou))
- metrics-cardinality function
[#&#8203;19362](https://redirect.github.com/netdata/netdata/pull/19362)
([ktsaou](https://redirect.github.com/ktsaou))
- avoid checking replication status all the time
[#&#8203;19361](https://redirect.github.com/netdata/netdata/pull/19361)
([ktsaou](https://redirect.github.com/ktsaou))
- respect flood protection configuration for daemon
[#&#8203;19360](https://redirect.github.com/netdata/netdata/pull/19360)
([ktsaou](https://redirect.github.com/ktsaou))
- fix os_system_memory() for concurrent use and call it from pulse
[#&#8203;19359](https://redirect.github.com/netdata/netdata/pull/19359)
([ktsaou](https://redirect.github.com/ktsaou))
- fix flood protection
[#&#8203;19358](https://redirect.github.com/netdata/netdata/pull/19358)
([ktsaou](https://redirect.github.com/ktsaou))
- allow compiling with FSANITIZE_ADDRESS
[#&#8203;19357](https://redirect.github.com/netdata/netdata/pull/19357)
([ktsaou](https://redirect.github.com/ktsaou))
- Check cluster centers size in copy constructor of inlined kmeans
[#&#8203;19356](https://redirect.github.com/netdata/netdata/pull/19356)
([vkalintiris](https://redirect.github.com/vkalintiris))
- Stream Compression Fix
[#&#8203;19355](https://redirect.github.com/netdata/netdata/pull/19355)
([ktsaou](https://redirect.github.com/ktsaou))
- fix compilation on windows
[#&#8203;19354](https://redirect.github.com/netdata/netdata/pull/19354)
([ktsaou](https://redirect.github.com/ktsaou))
- Minor fixes
[#&#8203;19353](https://redirect.github.com/netdata/netdata/pull/19353)
([ktsaou](https://redirect.github.com/ktsaou))
- Stream receiver/sender compress BEGIN-SET-END performance
[#&#8203;19352](https://redirect.github.com/netdata/netdata/pull/19352)
([ktsaou](https://redirect.github.com/ktsaou))
- RRDCONTEXTS: loading report
[#&#8203;19351](https://redirect.github.com/netdata/netdata/pull/19351)
([ktsaou](https://redirect.github.com/ktsaou))
- lower compression level to lower cpu resources on parents
[#&#8203;19350](https://redirect.github.com/netdata/netdata/pull/19350)
([ktsaou](https://redirect.github.com/ktsaou))
- PGC wanted size
[#&#8203;19349](https://redirect.github.com/netdata/netdata/pull/19349)
([ktsaou](https://redirect.github.com/ktsaou))
- log a summary of metadata ignored contexts
[#&#8203;19348](https://redirect.github.com/netdata/netdata/pull/19348)
([ktsaou](https://redirect.github.com/ktsaou))
- use sqlite3\_status64()
[#&#8203;19347](https://redirect.github.com/netdata/netdata/pull/19347)
([ktsaou](https://redirect.github.com/ktsaou))
- Query systemd for unit file paths on install/uninstall.
[#&#8203;19346](https://redirect.github.com/netdata/netdata/pull/19346)
([Ferroin](https://redirect.github.com/Ferroin))
- Assorted systemd detection fixes
[#&#8203;19345](https://redirect.github.com/netdata/netdata/pull/19345)
([Ferroin](https://redirect.github.com/Ferroin))
- Regenerate integrations docs
[#&#8203;19344](https://redirect.github.com/netdata/netdata/pull/19344)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/k8sstate): respect ignore annotation
[#&#8203;19342](https://redirect.github.com/netdata/netdata/pull/19342)
([ilyam8](https://redirect.github.com/ilyam8))
- improvement(go.d/docker): respect ignore label
[#&#8203;19341](https://redirect.github.com/netdata/netdata/pull/19341)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19340](https://redirect.github.com/netdata/netdata/pull/19340)
([netdatabot](https://redirect.github.com/netdatabot))
- docs(go.d/docker): fix syntax error in meta
[#&#8203;19339](https://redirect.github.com/netdata/netdata/pull/19339)
([ilyam8](https://redirect.github.com/ilyam8))
- improvement(go.d/docker): add option to filter containers
[#&#8203;19337](https://redirect.github.com/netdata/netdata/pull/19337)
([ilyam8](https://redirect.github.com/ilyam8))
- Contexts Loading
[#&#8203;19336](https://redirect.github.com/netdata/netdata/pull/19336)
([ktsaou](https://redirect.github.com/ktsaou))
- Add alert version to aclk-state
[#&#8203;19335](https://redirect.github.com/netdata/netdata/pull/19335)
([stelfrag](https://redirect.github.com/stelfrag))
- annotate logs with stack trace when libunwind is available
[#&#8203;19334](https://redirect.github.com/netdata/netdata/pull/19334)
([ktsaou](https://redirect.github.com/ktsaou))
- convert invalid utf8 sequences to hex characters
[#&#8203;19333](https://redirect.github.com/netdata/netdata/pull/19333)
([ktsaou](https://redirect.github.com/ktsaou))
- Abort on fatal and report system available bytes on allocation
failures.
[#&#8203;19332](https://redirect.github.com/netdata/netdata/pull/19332)
([vkalintiris](https://redirect.github.com/vkalintiris))
- Add instructions for Docker Compose
[#&#8203;19331](https://redirect.github.com/netdata/netdata/pull/19331)
([enoch85](https://redirect.github.com/enoch85))
- build(deps): bump golang.org/x/net from 0.33.0 to 0.34.0 in /src/go
[#&#8203;19330](https://redirect.github.com/netdata/netdata/pull/19330)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- FD Leaks Fix
[#&#8203;19327](https://redirect.github.com/netdata/netdata/pull/19327)
([ktsaou](https://redirect.github.com/ktsaou))
- feat(go.d.plugin): add YugabyteDB collector
[#&#8203;19325](https://redirect.github.com/netdata/netdata/pull/19325)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(kickstart.sh): correct wrong function name in
perpare_offline_install
[#&#8203;19323](https://redirect.github.com/netdata/netdata/pull/19323)
([ilyam8](https://redirect.github.com/ilyam8))
- build(deps): bump github.com/vmware/govmomi from 0.46.3 to 0.47.0 in
/src/go
[#&#8203;19322](https://redirect.github.com/netdata/netdata/pull/19322)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- Improve context load time during startup
[#&#8203;19321](https://redirect.github.com/netdata/netdata/pull/19321)
([stelfrag](https://redirect.github.com/stelfrag))
- fix(cgroup-rename): prevent leading comma in Docker LABELS when IMAGE
empty
[#&#8203;19318](https://redirect.github.com/netdata/netdata/pull/19318)
([ilyam8](https://redirect.github.com/ilyam8))
- Fix coverity issues
[#&#8203;19317](https://redirect.github.com/netdata/netdata/pull/19317)
([stelfrag](https://redirect.github.com/stelfrag))
- CGROUP labels
[#&#8203;19316](https://redirect.github.com/netdata/netdata/pull/19316)
([ktsaou](https://redirect.github.com/ktsaou))
- feat(cgroup-name.sh): Add support for `netdata.cloud/*` container
labels
[#&#8203;19315](https://redirect.github.com/netdata/netdata/pull/19315)
([ilyam8](https://redirect.github.com/ilyam8))
- Locks Improvements
[#&#8203;19314](https://redirect.github.com/netdata/netdata/pull/19314)
([ktsaou](https://redirect.github.com/ktsaou))
- add yugabytedb docker manager
[#&#8203;19313](https://redirect.github.com/netdata/netdata/pull/19313)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(go.d/sd): correctly adding tags in classify
[#&#8203;19312](https://redirect.github.com/netdata/netdata/pull/19312)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(go.d/nats): add missing cid label to gw charts
[#&#8203;19311](https://redirect.github.com/netdata/netdata/pull/19311)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19310](https://redirect.github.com/netdata/netdata/pull/19310)
([netdatabot](https://redirect.github.com/netdatabot))
- docs(go.d/nats): add missing labels to meta
[#&#8203;19309](https://redirect.github.com/netdata/netdata/pull/19309)
([ilyam8](https://redirect.github.com/ilyam8))
- fix aral memory accounting
[#&#8203;19308](https://redirect.github.com/netdata/netdata/pull/19308)
([ktsaou](https://redirect.github.com/ktsaou))
- UUIDMap
[#&#8203;19307](https://redirect.github.com/netdata/netdata/pull/19307)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix shutdown
[#&#8203;19306](https://redirect.github.com/netdata/netdata/pull/19306)
([ktsaou](https://redirect.github.com/ktsaou))
- WAITQ: fixed mixed up ordering
[#&#8203;19305](https://redirect.github.com/netdata/netdata/pull/19305)
([ktsaou](https://redirect.github.com/ktsaou))
- load rrdcontext dimensions in batches
[#&#8203;19304](https://redirect.github.com/netdata/netdata/pull/19304)
([ktsaou](https://redirect.github.com/ktsaou))
- improvement(go.d/nats): add cluster_name label and jetstream status
chart
[#&#8203;19303](https://redirect.github.com/netdata/netdata/pull/19303)
([ilyam8](https://redirect.github.com/ilyam8))
- Waiting Queue
[#&#8203;19302](https://redirect.github.com/netdata/netdata/pull/19302)
([ktsaou](https://redirect.github.com/ktsaou))
- revert waiting-queue optimization
[#&#8203;19301](https://redirect.github.com/netdata/netdata/pull/19301)
([ktsaou](https://redirect.github.com/ktsaou))
- Improve stream sending thread error message
[#&#8203;19300](https://redirect.github.com/netdata/netdata/pull/19300)
([ilyam8](https://redirect.github.com/ilyam8))
- Streaming improvements No 12
[#&#8203;19299](https://redirect.github.com/netdata/netdata/pull/19299)
([ktsaou](https://redirect.github.com/ktsaou))
- nd_poll() fairness
[#&#8203;19298](https://redirect.github.com/netdata/netdata/pull/19298)
([ktsaou](https://redirect.github.com/ktsaou))
- more descriptive alert transition logs
[#&#8203;19297](https://redirect.github.com/netdata/netdata/pull/19297)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(debugfs/sensors): correct driver label value
[#&#8203;19294](https://redirect.github.com/netdata/netdata/pull/19294)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(netdata-updater.sh): use explicit paths for temp dir creation
[#&#8203;19293](https://redirect.github.com/netdata/netdata/pull/19293)
([ilyam8](https://redirect.github.com/ilyam8))
- build(deps): add bison and flex
[#&#8203;19292](https://redirect.github.com/netdata/netdata/pull/19292)
([ilyam8](https://redirect.github.com/ilyam8))
- remove go.d/windows
[#&#8203;19290](https://redirect.github.com/netdata/netdata/pull/19290)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(netdata-updater.sh): ensure tmpdir-path argument is always passed
[#&#8203;19289](https://redirect.github.com/netdata/netdata/pull/19289)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(netdata-updater.sh): remove commit_check_file directory
[#&#8203;19288](https://redirect.github.com/netdata/netdata/pull/19288)
([ilyam8](https://redirect.github.com/ilyam8))
- bump dag req jinja version
[#&#8203;19287](https://redirect.github.com/netdata/netdata/pull/19287)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19286](https://redirect.github.com/netdata/netdata/pull/19286)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/nats): add basic jetstream metrics
[#&#8203;19285](https://redirect.github.com/netdata/netdata/pull/19285)
([ilyam8](https://redirect.github.com/ilyam8))
- fix go.d/nats tests
[#&#8203;19284](https://redirect.github.com/netdata/netdata/pull/19284)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19283](https://redirect.github.com/netdata/netdata/pull/19283)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/nats): add leafz metrics
[#&#8203;19282](https://redirect.github.com/netdata/netdata/pull/19282)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19281](https://redirect.github.com/netdata/netdata/pull/19281)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/nats): add server_id label
[#&#8203;19280](https://redirect.github.com/netdata/netdata/pull/19280)
([ilyam8](https://redirect.github.com/ilyam8))
- docs: improve on-prem troubleshooting readability
[#&#8203;19279](https://redirect.github.com/netdata/netdata/pull/19279)
([ilyam8](https://redirect.github.com/ilyam8))
- Fix metric retention check and cleanup
[#&#8203;19278](https://redirect.github.com/netdata/netdata/pull/19278)
([stelfrag](https://redirect.github.com/stelfrag))
- fix(go.d/rabbitmq): handle insufficient perms when querying
definitions
[#&#8203;19277](https://redirect.github.com/netdata/netdata/pull/19277)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19276](https://redirect.github.com/netdata/netdata/pull/19276)
([netdatabot](https://redirect.github.com/netdatabot))
- Updates to onprem docs
[#&#8203;19275](https://redirect.github.com/netdata/netdata/pull/19275)
([M4itee](https://redirect.github.com/M4itee))
- Skip label cleanup during metadata processing
[#&#8203;19274](https://redirect.github.com/netdata/netdata/pull/19274)
([stelfrag](https://redirect.github.com/stelfrag))
- build(deps): update go toolchain to v1.23.4
[#&#8203;19273](https://redirect.github.com/netdata/netdata/pull/19273)
([ilyam8](https://redirect.github.com/ilyam8))
- build(deps): bump github.com/jackc/pgx/v5 from 5.7.1 to 5.7.2 in
/src/go
[#&#8203;19271](https://redirect.github.com/netdata/netdata/pull/19271)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/axiomhq/hyperloglog from 0.2.0 to 0.2.2
in /src/go
[#&#8203;19270](https://redirect.github.com/netdata/netdata/pull/19270)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump golang.org/x/net from 0.32.0 to 0.33.0 in /src/go
[#&#8203;19269](https://redirect.github.com/netdata/netdata/pull/19269)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/docker/docker from 27.4.0+incompatible to
27.4.1+incompatible in /src/go
[#&#8203;19268](https://redirect.github.com/netdata/netdata/pull/19268)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- improvement(go.d/nats): add gatewayz metrics
[#&#8203;19266](https://redirect.github.com/netdata/netdata/pull/19266)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19265](https://redirect.github.com/netdata/netdata/pull/19265)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/nats): add routez metrics
[#&#8203;19264](https://redirect.github.com/netdata/netdata/pull/19264)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19263](https://redirect.github.com/netdata/netdata/pull/19263)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/nats): add accstatz metrics
[#&#8203;19262](https://redirect.github.com/netdata/netdata/pull/19262)
([ilyam8](https://redirect.github.com/ilyam8))
- HELP and TYPE in prometheus fix
[#&#8203;19261](https://redirect.github.com/netdata/netdata/pull/19261)
([ktsaou](https://redirect.github.com/ktsaou))
- Add an alert guide for reboot required
[#&#8203;19260](https://redirect.github.com/netdata/netdata/pull/19260)
([ralphm](https://redirect.github.com/ralphm))
- fix crash when the DRM file does not contain the right information
[#&#8203;19258](https://redirect.github.com/netdata/netdata/pull/19258)
([ktsaou](https://redirect.github.com/ktsaou))
- docs: change "node-membership-rules" filename/title
[#&#8203;19257](https://redirect.github.com/netdata/netdata/pull/19257)
([ilyam8](https://redirect.github.com/ilyam8))
- Updated copyright notices
[#&#8203;19256](https://redirect.github.com/netdata/netdata/pull/19256)
([ktsaou](https://redirect.github.com/ktsaou))
- Regenerate integrations docs
[#&#8203;19254](https://redirect.github.com/netdata/netdata/pull/19254)
([netdatabot](https://redirect.github.com/netdatabot))
- docs: fix nats metadata suffix
[#&#8203;19253](https://redirect.github.com/netdata/netdata/pull/19253)
([ilyam8](https://redirect.github.com/ilyam8))
- feat(go.d): add NATS collector
[#&#8203;19252](https://redirect.github.com/netdata/netdata/pull/19252)
([ilyam8](https://redirect.github.com/ilyam8))
- Monitor sensors using libsensors via debugfs.plugin
[#&#8203;19251](https://redirect.github.com/netdata/netdata/pull/19251)
([ktsaou](https://redirect.github.com/ktsaou))
- Add option to updater to report status of auto-updates on the system.
[#&#8203;19248](https://redirect.github.com/netdata/netdata/pull/19248)
([Ferroin](https://redirect.github.com/Ferroin))
- DBENGINE: pgc tuning, replication tuning
[#&#8203;19237](https://redirect.github.com/netdata/netdata/pull/19237)
([ktsaou](https://redirect.github.com/ktsaou))
- Update kickstart script to use new repository host.
[#&#8203;18962](https://redirect.github.com/netdata/netdata/pull/18962)
([Ferroin](https://redirect.github.com/Ferroin))

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 16:04:57 +01:00
TrueCharts BotandGitHub 91f172a3ec chore(helm): update image docker.io/portainer/portainer-ee 2.25.1 → 2.26.1 (#30920)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/portainer/portainer-ee | minor | `6a5f03e` -> `0b379e4` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:04:41 +00:00
TrueCharts BotandGitHub f0f35ebe6c chore(helm): update image docker.io/shokoanime/server v5.0.0 → v5.1.0 (#31108)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/shokoanime/server | minor | `da43fd2` -> `dde0c5a` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 16:04:29 +01:00
TrueCharts BotandGitHub 3dc68898cd chore(helm): update image docker.io/portainer/portainer-ce 2.25.1 → 2.26.1 (#30919)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/portainer/portainer-ce | minor | `c8aefc4` -> `ad336b4` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:03:56 +00:00
TrueCharts BotandGitHub 830922b57e chore(helm): update image docker.io/jorenn92/maintainerr 2.7.0 → 2.8.0 (#30918)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/jorenn92/maintainerr](https://redirect.github.com/jorenn92/Maintainerr)
| minor | `a4cade0` -> `b160b78` |

---

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

###
[`v2.8.0`](https://redirect.github.com/jorenn92/Maintainerr/blob/HEAD/CHANGELOG.md#280-2025-01-14)

[Compare
Source](https://redirect.github.com/jorenn92/Maintainerr/compare/v2.7.0...v2.8.0)

##### Bug Fixes

- Has series/season finale should only pass when file exists
([#&#8203;1502](https://redirect.github.com/jorenn92/Maintainerr/issues/1502))
([00e0255](https://redirect.github.com/jorenn92/Maintainerr/commit/00e02557380d0bc9d8c10f8d82e19d59d9184d4e))

##### Features

- Add "Last episode aired at (season)" for episodes
([#&#8203;1491](https://redirect.github.com/jorenn92/Maintainerr/issues/1491))
([fecf360](https://redirect.github.com/jorenn92/Maintainerr/commit/fecf360ecae0d1add7ba4d6121704debd708725e))

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 14:57:57 +00:00
TrueCharts BotandGitHub 47456bbfba chore(helm): update image docker.io/jenkins/jenkins 2.492 → 2.494 (#31104)
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 |
`fbde64d` -> `b1bcee2` |

---

> [!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.494`](https://redirect.github.com/jenkinsci/docker/releases/tag/2.494)

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

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

#### 📦 Jenkins Core updates

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

#### 📦 Dependency updates

- Bump `git-lfs` version to 3.6.1
([#&#8203;1982](https://redirect.github.com/jenkinsci/docker/issues/1982))
[@&#8203;github-actions](https://redirect.github.com/github-actions)
- Bump Debian Bookworm Linux Version to
[`2025011`](https://redirect.github.com/jenkinsci/docker/commit/20250113)
([#&#8203;1981](https://redirect.github.com/jenkinsci/docker/issues/1981))
[@&#8203;github-actions](https://redirect.github.com/github-actions)
- chore(deps): bump updatecli/updatecli-action from 2.75.0 to 2.76.0
([#&#8203;1980](https://redirect.github.com/jenkinsci/docker/issues/1980))
[@&#8203;dependabot](https://redirect.github.com/dependabot)

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

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

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

#### 📦 Jenkins Core updates

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

#### 📦 Dependency updates

- Bump Alpine Linux Version to 3.21.2
([#&#8203;1977](https://redirect.github.com/jenkinsci/docker/issues/1977))
[@&#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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:57:06 +01:00
TrueCharts BotandGitHub f5088f3bc7 chore(helm): update image docker.io/jesec/flood 4.8.5 → 4.9.0 (#30960)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/jesec/flood | minor | `029fd80` -> `6139dc1` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 14:55:43 +00:00
TrueCharts BotandGitHub 79796c77cc chore(helm): update image ghcr.io/immich-app/immich-machine-learning v1.124.2 → v1.125.1 (#31114)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/immich-app/immich-machine-learning | minor | `ade3c07` ->
`8270c72` |
| ghcr.io/immich-app/immich-machine-learning | minor | `e58b1b6` ->
`0f107ae` |
| ghcr.io/immich-app/immich-machine-learning | minor | `a134652` ->
`c0740b5` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:53:40 +01:00
TrueCharts BotandGitHub f40f3d9088 chore(helm): update image docker.io/haveagitgat/tdarr_node 2.27.02 → 2.28.01 (#31103) 2025-01-24 15:49:01 +01:00
TrueCharts BotandGitHub 0046f23e04 chore(helm): update image docker.io/jeessy/ddns-go v6.7.7 → v6.8.0 (#30959)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/jeessy/ddns-go](https://redirect.github.com/jeessy2/ddns-go)
| minor | `f564ee8` -> `e4b0227` |

---

> [!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>jeessy2/ddns-go (docker.io/jeessy/ddns-go)</summary>

###
[`v6.8.0`](https://redirect.github.com/jeessy2/ddns-go/releases/tag/v6.8.0)

[Compare
Source](https://redirect.github.com/jeessy2/ddns-go/compare/v6.7.7...v6.8.0)

#### Changelog

-
[`92bccd9`](https://redirect.github.com/jeessy2/ddns-go/commit/92bccd9ce3e437b69b417a19139e21e8bc00b000)
build(deps): bump golang.org/x/crypto from 0.30.0 to 0.31.0
([#&#8203;1339](https://redirect.github.com/jeessy2/ddns-go/issues/1339))
-
[`c6b107f`](https://redirect.github.com/jeessy2/ddns-go/commit/c6b107fd1b2ffb86d2f0e5d1740350e249286664)
build(deps): bump golang.org/x/net from 0.32.0 to 0.33.0
([#&#8203;1346](https://redirect.github.com/jeessy2/ddns-go/issues/1346))
-
[`147b9c5`](https://redirect.github.com/jeessy2/ddns-go/commit/147b9c5de6100af4ad6139e9766bb7649d97d3a0)
build(deps): bump golang.org/x/net from 0.33.0 to 0.34.0
([#&#8203;1362](https://redirect.github.com/jeessy2/ddns-go/issues/1362))
-
[`3575e70`](https://redirect.github.com/jeessy2/ddns-go/commit/3575e709e00a8bec7f18d54e6efdc10d1bb5613e)
feat: remove issues-similarity-analysis
([#&#8203;1361](https://redirect.github.com/jeessy2/ddns-go/issues/1361))
-
[`c68080b`](https://redirect.github.com/jeessy2/ddns-go/commit/c68080bc1faba658ca8ed41ed8b9be500413cfa2)
feat: 实时测试正则表达式
([#&#8203;1368](https://redirect.github.com/jeessy2/ddns-go/issues/1368))

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 14:48:59 +00:00
TrueCharts BotandGitHub 20ce4c65d2 chore(helm): update image docker.io/haveagitgat/tdarr 2.27.02 → 2.28.01 (#31102) 2025-01-24 15:48:39 +01:00
TrueCharts BotandGitHub 37f0fdcd25 chore(helm): update image docker.io/gotson/komga 1.17.0 → 1.18.0 (#30958)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/gotson/komga](https://redirect.github.com/gotson/komga) |
minor | `ea5dd50` -> `0997326` |

---

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

###
[`v1.18.0`](https://redirect.github.com/gotson/komga/blob/HEAD/CHANGELOG.md#1180-2025-01-15)

[Compare
Source](https://redirect.github.com/gotson/komga/compare/1.17.0...1.18.0)

#### 🚀 Features

- allow book import for one-shots
([51416c5](https://redirect.github.com/gotson/komga/commits/51416c5))

#### 🐛 Fixes

**opds2**

- keep reading feed incorrectly showing all books
([41cdf80](https://redirect.github.com/gotson/komga/commits/41cdf80))

**unscoped**

- only decompress rar5 with libarchive
([3089063](https://redirect.github.com/gotson/komga/commits/3089063)),
closes
[#&#8203;1826](https://redirect.github.com/gotson/komga/issues/1826)
- updating library options should trigger corresponding tasks
([b7b1b51](https://redirect.github.com/gotson/komga/commits/b7b1b51))

#### 🏎 Perf

- use materialized CTE
([072dc27](https://redirect.github.com/gotson/komga/commits/072dc27)),
closes
[#&#8203;1823](https://redirect.github.com/gotson/komga/issues/1823)
- downgrade sqlite-jdbc from 3.47.1.0 to 3.46.1.3
([b0d9b88](https://redirect.github.com/gotson/komga/commits/b0d9b88)),
closes
[#&#8203;1823](https://redirect.github.com/gotson/komga/issues/1823)

#### 📝 Documentation

- mention KOReader Sync in README
([7d7f302](https://redirect.github.com/gotson/komga/commits/7d7f302))

#### 🌐 Translation

**komga-tray**

- translated using Weblate (Tamil)
([9b0805e](https://redirect.github.com/gotson/komga/commits/9b0805e))

**webui**

- translated using Weblate (Chinese (Simplified Han script))
([8653eaa](https://redirect.github.com/gotson/komga/commits/8653eaa))
- translated using Weblate (Korean)
([6853e31](https://redirect.github.com/gotson/komga/commits/6853e31))
- translated using Weblate (Finnish)
([a14c08f](https://redirect.github.com/gotson/komga/commits/a14c08f))
- translated using Weblate (French)
([b0413eb](https://redirect.github.com/gotson/komga/commits/b0413eb))
- translated using Weblate (Croatian)
([46a7869](https://redirect.github.com/gotson/komga/commits/46a7869))
- translated using Weblate (Portuguese)
([d775ea4](https://redirect.github.com/gotson/komga/commits/d775ea4))
- translated using Weblate (Danish)
([a53c9a6](https://redirect.github.com/gotson/komga/commits/a53c9a6))
- translated using Weblate (Tamil)
([f7a72ae](https://redirect.github.com/gotson/komga/commits/f7a72ae))

#### ⚙️ Dependencies

**komga**

- upgrade sqlite-jdbc to 3.48.0
([79be279](https://redirect.github.com/gotson/komga/commits/79be279))
- bump nightcompress to 1.1.0
([bd68b14](https://redirect.github.com/gotson/komga/commits/bd68b14))

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 14:48:36 +00:00
TrueCharts BotandGitHub da50961306 chore(helm): update image docker.io/ghostfolio/ghostfolio 2.133.1 → 2.135.0 (#31101)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/ghostfolio/ghostfolio](https://redirect.github.com/ghostfolio/ghostfolio)
| minor | `cedb067` -> `85b6124` |

---

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

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

---

### Release Notes

<details>
<summary>ghostfolio/ghostfolio
(docker.io/ghostfolio/ghostfolio)</summary>

###
[`v2.135.0`](https://redirect.github.com/ghostfolio/ghostfolio/blob/HEAD/CHANGELOG.md#21350---2025-01-19)

[Compare
Source](https://redirect.github.com/ghostfolio/ghostfolio/compare/2.134.0...2.135.0)

##### Changed

- Moved the language localization for Polski (`pl`) from experimental to
general availability
-   Extended the *Financial Modeling Prep* service
-   Switched to *ESLint*’s flat config format
-   Upgraded `chart.js` from version `4.2.0` to `4.4.7`
-   Upgraded `chartjs-chart-treemap` from version `2.3.1` to `3.1.0`
-   Upgraded `chartjs-plugin-annotation` from version `2.1.2` to `3.1.0`
-   Upgraded `eslint` dependencies
-   Upgraded `nestjs` from version `10.1.3` to `10.4.15`
-   Upgraded `Nx` from version `20.3.0` to `20.3.2`
-   Upgraded `reflect-metadata` from version `0.1.13` to `0.2.2`
-   Upgraded `uuid` from version `11.0.2` to `11.0.5`

###
[`v2.134.0`](https://redirect.github.com/ghostfolio/ghostfolio/blob/HEAD/CHANGELOG.md#21340---2025-01-15)

[Compare
Source](https://redirect.github.com/ghostfolio/ghostfolio/compare/2.133.1...2.134.0)

##### Added

-   Set up the language localization for Українська (`uk`)

##### Changed

- Extended the health check endpoint to include database and cache
operations (experimental)
- Refactored various `lodash` functions with native JavaScript
equivalents
-   Improved the language localization for German (`de`)
-   Upgraded `prisma` from version `6.1.0` to `6.2.1`

##### Fixed

- Fixed an issue with the import of activities with type `FEE` (where
unit price is `0`)
- Fixed an issue with the renaming of activities with type `FEE`,
`INTEREST`, `ITEM` or `LIABILITY`
- Handled an exception in the scraper configuration introduced by the
migration from `got` to `fetch`

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:46:57 +01:00
TrueCharts BotandGitHub 81a2baedb4 chore(helm): update image docker.io/fallenbagel/jellyseerr 2.2.3 → 2.3.0 (#31100) 2025-01-24 15:46:35 +01:00
TrueCharts BotandGitHub 21637d2645 chore(helm): update image ghcr.io/dgtlmoon/changedetection.io 0.48.06 → 0.49.0 (#31112)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/dgtlmoon/changedetection.io](https://redirect.github.com/dgtlmoon/changedetection.io)
| minor | `c67332c` -> `56eb0be` |

---

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

###
[`v0.49.0`](https://redirect.github.com/dgtlmoon/changedetection.io/releases/tag/0.49.0):
Small fixes as Semantic Versioning enforcement

[Compare
Source](https://redirect.github.com/dgtlmoon/changedetection.io/compare/0.48.06...0.49.0)

#### What's Changed

- Re
[#&#8203;2896](https://redirect.github.com/dgtlmoon/changedetection.io/issues/2896)
204 and other 20x responses are OK by
[@&#8203;dgtlmoon](https://redirect.github.com/dgtlmoon) in
[https://github.com/dgtlmoon/changedetection.io/pull/2897](https://redirect.github.com/dgtlmoon/changedetection.io/pull/2897)
- Pin `referencing` library by
[@&#8203;dgtlmoon](https://redirect.github.com/dgtlmoon) in
[https://github.com/dgtlmoon/changedetection.io/pull/2912](https://redirect.github.com/dgtlmoon/changedetection.io/pull/2912)
- 0.49.00 by [@&#8203;dgtlmoon](https://redirect.github.com/dgtlmoon) in
[https://github.com/dgtlmoon/changedetection.io/pull/2919](https://redirect.github.com/dgtlmoon/changedetection.io/pull/2919)

**Full Changelog**:
https://github.com/dgtlmoon/changedetection.io/compare/0.48.06...0.49.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:44:23 +01:00
TrueCharts BotandGitHub c13376dc0d chore(helm): update image docker.io/advplyr/audiobookshelf 2.17.7 → 2.18.1 (#31099)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/advplyr/audiobookshelf](https://redirect.github.com/advplyr/audiobookshelf)
| minor | `7fa2fe6` -> `5280101` |

---

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

###
[`v2.18.1`](https://redirect.github.com/advplyr/audiobookshelf/releases/tag/v2.18.1)

[Compare
Source](https://redirect.github.com/advplyr/audiobookshelf/compare/v2.18.0...v2.18.1)

##### Fixed

- Epub ebooks fail to load when using subdirectory
[#&#8203;3865](https://redirect.github.com/advplyr/audiobookshelf/issues/3865)
- 404 not found for texture image when using subdirectory
[#&#8203;385](https://redirect.github.com/advplyr/audiobookshelf/issues/385)
by [@&#8203;mikiher](https://redirect.github.com/mikiher) in
[#&#8203;3864](https://redirect.github.com/advplyr/audiobookshelf/issues/3864)
-   404 not found for libraries with uppercase UUID
- Collection & series rss feeds not including episodes. in
[#&#8203;3867](https://redirect.github.com/advplyr/audiobookshelf/issues/3867)

##### Changed

- Added support for MRSS feeds
[#&#8203;3695](https://redirect.github.com/advplyr/audiobookshelf/issues/3695)
by [@&#8203;Timtam](https://redirect.github.com/Timtam) in
[#&#8203;3732](https://redirect.github.com/advplyr/audiobookshelf/issues/3732)
- Generated rss feed episodes `itunes:duration` tag now sets duration in
seconds (integer). in
[#&#8203;3867](https://redirect.github.com/advplyr/audiobookshelf/issues/3867)
- Generated rss feeds `itunes:summary` tag wraps contents in
`<![CDATA[]]>`. in
[#&#8203;3867](https://redirect.github.com/advplyr/audiobookshelf/issues/3867)
- Generated rss feeds no longer include empty tags (e.g.
<itunes:season/>). in
[#&#8203;3867](https://redirect.github.com/advplyr/audiobookshelf/issues/3867)
-   More strings translated
- Chinese (Simplified Han script) by
[@&#8203;springsunx](https://redirect.github.com/springsunx)
    -   Czech by [@&#8203;Losicek](https://redirect.github.com/Losicek)
- Danish by
[@&#8203;ZombieSmurf](https://redirect.github.com/ZombieSmurf)
    -   Hungarian by [@&#8203;ugyes](https://redirect.github.com/ugyes)
- Swedish by [@&#8203;Cotignac](https://redirect.github.com/Cotignac)

#### New Contributors

- [@&#8203;Timtam](https://redirect.github.com/Timtam) made their first
contribution in
[https://github.com/advplyr/audiobookshelf/pull/3732](https://redirect.github.com/advplyr/audiobookshelf/pull/3732)

**Full Changelog**:
https://github.com/advplyr/audiobookshelf/compare/v2.18.0...v2.18.1

###
[`v2.18.0`](https://redirect.github.com/advplyr/audiobookshelf/releases/tag/v2.18.0)

[Compare
Source](https://redirect.github.com/advplyr/audiobookshelf/compare/v2.17.7...v2.18.0)

##### Note: For those running from source, `prod.js` will be removed in
a future release. Use `index.js` instead. (See
[#&#8203;3808](https://redirect.github.com/advplyr/audiobookshelf/issues/3808))

##### Added

- Subdirectory support
[#&#8203;385](https://redirect.github.com/advplyr/audiobookshelf/issues/385)
(See
[#&#8203;3535](https://redirect.github.com/advplyr/audiobookshelf/issues/3535))
by [@&#8203;mikiher](https://redirect.github.com/mikiher) in
[#&#8203;3810](https://redirect.github.com/advplyr/audiobookshelf/issues/3810)

##### Fixed

- Unable to create new library when adjusting the "Mark media item as
finished" setting
[#&#8203;3856](https://redirect.github.com/advplyr/audiobookshelf/issues/3856)
- "Continue Reading" and "Read Again" shelves not populating for books
that are ebook only
[#&#8203;3800](https://redirect.github.com/advplyr/audiobookshelf/issues/3800)
- Server crash for playlists containing deleted items
[#&#8203;3784](https://redirect.github.com/advplyr/audiobookshelf/issues/3784)
in
[#&#8203;3787](https://redirect.github.com/advplyr/audiobookshelf/issues/3787)
- Transcoding fails when streams directory contains spaces
[#&#8203;3793](https://redirect.github.com/advplyr/audiobookshelf/issues/3793)
by [@&#8203;mikiher](https://redirect.github.com/mikiher) in
[#&#8203;3794](https://redirect.github.com/advplyr/audiobookshelf/issues/3794)
- API Cache Manager route uses case-insensitive match by
[@&#8203;nichwall](https://redirect.github.com/nichwall) in
[#&#8203;3780](https://redirect.github.com/advplyr/audiobookshelf/issues/3780)
- Ffmpeg concat file not properly escaping UNC paths by
[@&#8203;mikiher](https://redirect.github.com/mikiher) in
[#&#8203;3776](https://redirect.github.com/advplyr/audiobookshelf/issues/3776)
- Matching a book with a new cover image doesn't update the cover in UI
[#&#8203;3807](https://redirect.github.com/advplyr/audiobookshelf/issues/3807)
- Server crash scanning some CBZ files
[#&#8203;3804](https://redirect.github.com/advplyr/audiobookshelf/issues/3804)
- Merging embedded chapters for multi-track audiobooks giving incorrect
chapter ids
[https://github.com/advplyr/audiobookshelf/issues/3361#issuecomment-2585790509](https://redirect.github.com/advplyr/audiobookshelf/issues/3361#issuecomment-2585790509)
- UI/UX: Podcast page episodes table showing blank rows and not removing
deleted episodes by
[@&#8203;mikiher](https://redirect.github.com/mikiher) in
[#&#8203;3822](https://redirect.github.com/advplyr/audiobookshelf/issues/3822)
- UI/UX: Podcast page episodes table scrolling shows blank rows (due to
browser font size change)
[#&#8203;3511](https://redirect.github.com/advplyr/audiobookshelf/issues/3511)
by [@&#8203;mikiher](https://redirect.github.com/mikiher) in
[#&#8203;3842](https://redirect.github.com/advplyr/audiobookshelf/issues/3842)
- UI/UX: Stats listening time rounding error
[#&#8203;3817](https://redirect.github.com/advplyr/audiobookshelf/issues/3817)
by [@&#8203;daneroo](https://redirect.github.com/daneroo) in
[#&#8203;3832](https://redirect.github.com/advplyr/audiobookshelf/issues/3832)
- UI/UX: User stats heatmap playback sessions number inaccurate for
smaller screen sizes

##### Changed

- Audiobook RSS feeds now space out audio track episode pub dates by
minutes instead of seconds
[#&#8203;3442](https://redirect.github.com/advplyr/audiobookshelf/issues/3442)
- Podcast episode download falls back to downloading without embedding
when embed fails (handles inaccurate RSS feeds)
[#&#8203;3837](https://redirect.github.com/advplyr/audiobookshelf/issues/3837)
- Podcast episode description rich text editor improvements by
[@&#8203;mikiher](https://redirect.github.com/mikiher) in
[#&#8203;3816](https://redirect.github.com/advplyr/audiobookshelf/issues/3816)
- Support env var `PODCAST_DOWNLOAD_TIMEOUT` to use a custom timeout
(ms) for episode downloads
[#&#8203;3662](https://redirect.github.com/advplyr/audiobookshelf/issues/3662)
by [@&#8203;sbyrx](https://redirect.github.com/sbyrx) in
[#&#8203;3771](https://redirect.github.com/advplyr/audiobookshelf/issues/3771)
- Handle Podcast RSS feeds that aren't using CDATA for description
fields with html tags
[#&#8203;3778](https://redirect.github.com/advplyr/audiobookshelf/issues/3778)
- API: Get all library items supports `include=stats` query param (used
in android auto to filter for items with audio tracks)
- UI/UX: Bookmark timestamps are relative to playback speed
[#&#8203;3728](https://redirect.github.com/advplyr/audiobookshelf/issues/3728)
in
[#&#8203;3847](https://redirect.github.com/advplyr/audiobookshelf/issues/3847)
- UI/UX: Editing a bookmark no longer closes the modal (and more UI
cleanup) See
[#&#8203;3847](https://redirect.github.com/advplyr/audiobookshelf/issues/3847)
- UI/UX: Library schedule tab includes a message when disabled. See
[https://github.com/advplyr/audiobookshelf/issues/3734#issuecomment-2581367473](https://redirect.github.com/advplyr/audiobookshelf/issues/3734#issuecomment-2581367473)
- UI/UX: Podcast page episodes fall back to displaying the description
when the subtitle is empty
- UI/UX: Podcast episode pub date input shows error when date is
invalid/incomplete
[#&#8203;3775](https://redirect.github.com/advplyr/audiobookshelf/issues/3775)
by [@&#8203;nichwall](https://redirect.github.com/nichwall) in
[#&#8203;3805](https://redirect.github.com/advplyr/audiobookshelf/issues/3805)
- UI/UX: Audio player volume tooltip opens below the icon to prevent
blocking the playback speed icon
-   More strings translated
- Belarusian by
[@&#8203;i-Nosferatu-i](https://redirect.github.com/i-Nosferatu-i)
- Catalan by
[@&#8203;martinezpenya](https://redirect.github.com/martinezpenya)
- Chinese (Simplified Han script) by
[@&#8203;springsunx](https://redirect.github.com/springsunx)
- Croatian by [@&#8203;biuklija](https://redirect.github.com/biuklija)
[@&#8203;milotype](https://redirect.github.com/milotype)
    -   Czech by [@&#8203;kuci-JK](https://redirect.github.com/kuci-JK)
- Danish by [@&#8203;WiredMic](https://redirect.github.com/WiredMic)
    -   Dutch by [@&#8203;matieke](https://redirect.github.com/matieke)
- Finnish by [@&#8203;deusatiam](https://redirect.github.com/deusatiam)
- German by [@&#8203;Vito0912](https://redirect.github.com/Vito0912)
[@&#8203;D0ckW0rka](https://redirect.github.com/D0ckW0rka)
    -   Hungarian by [@&#8203;ugyes](https://redirect.github.com/ugyes)
- Norwegian Bokmål by
[@&#8203;soteland](https://redirect.github.com/soteland)
- Slovenian by
[@&#8203;thehijacker](https://redirect.github.com/thehijacker)
- Spanish by
[@&#8203;martinezpenya](https://redirect.github.com/martinezpenya)
[@&#8203;diamondtipdr](https://redirect.github.com/diamondtipdr)
- Swedish by [@&#8203;zOOge](https://redirect.github.com/zOOge)
[@&#8203;Cotignac](https://redirect.github.com/Cotignac)

##### Internal

- Migrating to new LibraryItem model and removing old.
[#&#8203;3779](https://redirect.github.com/advplyr/audiobookshelf/issues/3779)
[#&#8203;3785](https://redirect.github.com/advplyr/audiobookshelf/issues/3785)
[#&#8203;3789](https://redirect.github.com/advplyr/audiobookshelf/issues/3789)
[#&#8203;3798](https://redirect.github.com/advplyr/audiobookshelf/issues/3798)
[#&#8203;3800](https://redirect.github.com/advplyr/audiobookshelf/issues/3800)
- Merge prod.js and index.js by
[@&#8203;mikiher](https://redirect.github.com/mikiher) in
[#&#8203;3808](https://redirect.github.com/advplyr/audiobookshelf/issues/3808)
- Readme update nginx reverse proxy example by
[@&#8203;mikiher](https://redirect.github.com/mikiher) in
[#&#8203;3828](https://redirect.github.com/advplyr/audiobookshelf/issues/3828)

#### New Contributors

- [@&#8203;sbyrx](https://redirect.github.com/sbyrx) made their first
contribution in
[https://github.com/advplyr/audiobookshelf/pull/3771](https://redirect.github.com/advplyr/audiobookshelf/pull/3771)
- [@&#8203;daneroo](https://redirect.github.com/daneroo) made their
first contribution in
[https://github.com/advplyr/audiobookshelf/pull/3832](https://redirect.github.com/advplyr/audiobookshelf/pull/3832)

**Full Changelog**:
https://github.com/advplyr/audiobookshelf/compare/v2.17.7...v2.18.0

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 15:33:52 +01:00
TrueCharts BotandGitHub 5ebd4a8201 chore(helm): update image docker.io/bitnami/alertmanager 0.27.0 → 0.28.0 (#30956)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/bitnami/alertmanager](https://redirect.github.com/bitnami/containers)
([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/alertmanager))
| minor | `0062fb9` -> `643bcef` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 14:33:36 +00:00
TrueCharts BotandGitHub e3c5d6f372 chore(helm): update image docker 27.4.1 → 27.5.1 (#30955)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker | minor | `3c8fb35` -> `29b8c2f` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 14:33:27 +00:00
TrueCharts BotandGitHub 70c392fe8d chore(helm): update chart kube-prometheus-stack 67.10.0 → 67.11.0 (#30897)
This PR contains the following updates:

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

---

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

---

### Release Notes

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

###
[`v67.11.0`](https://redirect.github.com/prometheus-community/helm-charts/compare/kube-prometheus-stack-67.10.0...kube-prometheus-stack-67.11.0)

[Compare
Source](https://redirect.github.com/prometheus-community/helm-charts/compare/kube-prometheus-stack-67.10.0...kube-prometheus-stack-67.11.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9oZWxtIiwidHlwZS9taW5vciJdfQ==-->
2025-01-24 14:33:08 +00:00
TrueCharts BotandGitHub bf200d00ab fix(website): update @astrojs/tailwind 5.1.4 → 5.1.5 (#31095)
This PR contains the following updates:

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

---

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

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

---

### Release Notes

<details>
<summary>withastro/astro (@&#8203;astrojs/tailwind)</summary>

###
[`v5.1.5`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/tailwind/CHANGELOG.md#515)

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

##### Patch Changes

-
[#&#8203;13011](https://redirect.github.com/withastro/astro/pull/13011)
[`cf30880`](https://redirect.github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Upgrades Vite

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 15:24:43 +01:00
TrueCharts BotandGitHub 7fcfdc2398 chore(helm): update image ghcr.io/unpoller/unpoller v2.14.0 → v2.14.1 (#30954)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/unpoller/unpoller](https://redirect.github.com/unpoller/unpoller)
| patch | `6e9eb4a` -> `9ba73b1` |

---

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

###
[`v2.14.1`](https://redirect.github.com/unpoller/unpoller/releases/tag/v2.14.1)

[Compare
Source](https://redirect.github.com/unpoller/unpoller/compare/v2.14.0...v2.14.1)

#### Changelog

-
[`a181e95`](https://redirect.github.com/unpoller/unpoller/commit/a181e9596d5faef2e654feb49394de3c905e2634)
Merge pull request
[#&#8203;794](https://redirect.github.com/unpoller/unpoller/issues/794)
from unpoller/fix-ubb-uci-metric-names
-
[`6d40651`](https://redirect.github.com/unpoller/unpoller/commit/6d4065113fedd3e6949966db5f82cf308ea87192)
fixes metrics prefix names for ubb and uci devices
-
[`e946f24`](https://redirect.github.com/unpoller/unpoller/commit/e946f246ebc8e8eaaede8a34a38c63c9149e23bc)
update example conf file

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:12:43 +00:00
TrueCharts BotandGitHub 4c8f373ae0 chore(helm): update image registry.gitlab.com/crafty-controller/crafty-4 4.4.4 → 4.4.7 (#31090) 2025-01-24 15:12:25 +01:00
TrueCharts BotandGitHub ef03bfe60b chore(helm): update image ghcr.io/pmmp/pocketmine-mp 5.23.2 → 5.23.3 (#31085)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/pmmp/pocketmine-mp | patch | `a600c28` -> `7adebf1` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 15:12:20 +01:00
TrueCharts BotandGitHub 9c3f1ebde5 chore(helm): update image ghcr.io/tasmoadmin/tasmoadmin v4.2.1 → v4.2.2 (#31087)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/tasmoadmin/tasmoadmin](https://redirect.github.com/TasmoAdmin/TasmoAdmin)
| patch | `f3e64d6` -> `1cebfcd` |

---

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

###
[`v4.2.2`](https://redirect.github.com/TasmoAdmin/TasmoAdmin/releases/tag/v4.2.2)

[Compare
Source](https://redirect.github.com/TasmoAdmin/TasmoAdmin/compare/v4.2.1...v4.2.2)

#### What's Changed

- Bump
[@&#8203;fortawesome/fontawesome-free](https://redirect.github.com/fortawesome/fontawesome-free)
from 6.7.1 to 6.7.2 in /tasmoadmin by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/TasmoAdmin/TasmoAdmin/pull/1286](https://redirect.github.com/TasmoAdmin/TasmoAdmin/pull/1286)
- Bump phpstan/phpstan from 2.0.3 to 2.1.1 in /tasmoadmin by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/TasmoAdmin/TasmoAdmin/pull/1290](https://redirect.github.com/TasmoAdmin/TasmoAdmin/pull/1290)
- Bump glob from 11.0.0 to 11.0.1 in /tasmoadmin by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/TasmoAdmin/TasmoAdmin/pull/1291](https://redirect.github.com/TasmoAdmin/TasmoAdmin/pull/1291)
- Bump friendsofphp/php-cs-fixer from 3.65.0 to 3.68.1 in /tasmoadmin by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/TasmoAdmin/TasmoAdmin/pull/1293](https://redirect.github.com/TasmoAdmin/TasmoAdmin/pull/1293)
- Bump esbuild from 0.24.0 to 0.24.2 in /tasmoadmin by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/TasmoAdmin/TasmoAdmin/pull/1287](https://redirect.github.com/TasmoAdmin/TasmoAdmin/pull/1287)
- Extend device MQTT range to max port by
[@&#8203;inverse](https://redirect.github.com/inverse) in
[https://github.com/TasmoAdmin/TasmoAdmin/pull/1295](https://redirect.github.com/TasmoAdmin/TasmoAdmin/pull/1295)

**Full Changelog**:
https://github.com/TasmoAdmin/TasmoAdmin/compare/v4.2.1...v4.2.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 15:11:54 +01:00
TrueCharts BotandGitHub b923a85c97 chore(helm): update image ghcr.io/taxel/plextraktsync 0.32.7 → 0.32.8 (#31088)
This PR contains the following updates:

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

---

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

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

---

### Release Notes

<details>
<summary>Taxel/PlexTraktSync (ghcr.io/taxel/plextraktsync)</summary>

###
[`v0.32.8`](https://redirect.github.com/Taxel/PlexTraktSync/compare/0.32.7...0.32.8)

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 15:10:46 +01:00
TrueCharts BotandGitHub d2bf558f9b chore(helm): update image ghcr.io/rickdb/plexanisync 1.4.1 → 1.4.2 (#30870) 2025-01-24 15:08:32 +01:00
TrueCharts BotandGitHub 4ef4c55cad chore(helm): update image ghcr.io/linuxserver/mysql-workbench 8.0.40 → 8.0.41 (#31084)
This PR contains the following updates:

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

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 15:08:17 +01:00
TrueCharts BotandGitHub a7338247cd chore(helm): update image ghcr.io/ix-ai/smtp v0.7.0 → v0.7.1 (#31082)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/ix-ai/smtp | patch | `517e187` -> `4b02e81` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 15:06:48 +01:00
TrueCharts BotandGitHub 814d131dae chore(helm): update image ghcr.io/jellyfin/jellyfin 10.10.3 → 10.10.4 (#31083)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/jellyfin/jellyfin](https://jellyfin.org)
([source](https://redirect.github.com/jellyfin/jellyfin-packaging)) |
patch | `17c3a8d` -> `ea8f8bb` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 15:06:24 +01:00
TrueCharts BotandGitHub c2e2efb116 chore(helm): update image ghcr.io/ellite/wallos 2.43.0 → 2.43.1 (#30869)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/ellite/wallos](https://redirect.github.com/ellite/Wallos) |
patch | `4e93c0f` -> `b71316f` |

---

> [!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>ellite/Wallos (ghcr.io/ellite/wallos)</summary>

###
[`v2.43.1`](https://redirect.github.com/ellite/Wallos/blob/HEAD/CHANGELOG.md#2431-2025-01-12)

[Compare
Source](https://redirect.github.com/ellite/Wallos/compare/v2.43.0...v2.43.1)

##### Bug Fixes

- edit / delete subscription menu not accessible
([#&#8203;689](https://redirect.github.com/ellite/Wallos/issues/689))
([b668d37](https://redirect.github.com/ellite/Wallos/commit/b668d37d38f799ee0dda5a69a4824d03dd21e1bc))

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:05:26 +00:00
TrueCharts BotandGitHub 2518ab23e2 chore(helm): update image ghcr.io/linkwarden/linkwarden v2.9.2 → v2.9.3 (#30903)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linkwarden/linkwarden](https://redirect.github.com/linkwarden/linkwarden)
| patch | `caa6891` -> `848b55e` |

---

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

###
[`v2.9.3`](https://redirect.github.com/linkwarden/linkwarden/releases/tag/v2.9.3)

[Compare
Source](https://redirect.github.com/linkwarden/linkwarden/compare/v2.9.2...v2.9.3)

A couple of bug fixes...

#### New Contributors

- [@&#8203;siberianspot](https://redirect.github.com/siberianspot) made
their first contribution in
[https://github.com/linkwarden/linkwarden/pull/972](https://redirect.github.com/linkwarden/linkwarden/pull/972)

**Full Changelog**:
https://github.com/linkwarden/linkwarden/compare/v2.9.2...v2.9.3

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:05:05 +00:00
TrueCharts BotandGitHub dfaa5fc4d0 chore(helm): update image ghcr.io/elfhosted/readarr-develop 0.4.7.2718 → 0.4.9.2730 (#30868)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/elfhosted/readarr-develop](https://redirect.github.com/Readarr/Readarr)
| patch | `68e5d14` -> `9479bbf` |

---

> [!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>Readarr/Readarr (ghcr.io/elfhosted/readarr-develop)</summary>

###
[`v0.4.9.2730`](https://redirect.github.com/Readarr/Readarr/releases/tag/v0.4.9.2730):
0.4.9.2730

[Compare
Source](https://redirect.github.com/Readarr/Readarr/compare/v0.4.8.2726...v0.4.9.2730)

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

**If you are using docker you will need to update the container image.
*Do not attempt to update Readarr within an existing docker
container.***

#### Changes:

-
[`faba3ad`](https://redirect.github.com/Readarr/Readarr/commit/faba3ada95c2c5a04316381a6c75d6ce824c0ec2)
Bump Polly, System.Buffers and System.Memory \[
[#&#8203;3952](https://redirect.github.com/Readarr/Readarr/issues/3952)
]
-
[`e8647ae`](https://redirect.github.com/Readarr/Readarr/commit/e8647aee05bb4b83027aa90b3ea918b0baf8409e)
Bump SonarCloud azure extension to 3.X
-
[`eaf5ce5`](https://redirect.github.com/Readarr/Readarr/commit/eaf5ce52bc72df61fdcc5a43589586026cf90454)
Multiple Translations updated by Weblate
-
[`73ab276`](https://redirect.github.com/Readarr/Readarr/commit/73ab2760e453d104f36480283afc4e0794ccbc14)
Bump version to 0.4.9

This list of changes was [auto
generated](https://dev.azure.com/Readarr/34393bab-b896-4651-a109-cddb27254e55/\_release?releaseId=75&\_a=release-summary).

###
[`v0.4.8.2726`](https://redirect.github.com/Readarr/Readarr/releases/tag/v0.4.8.2726):
0.4.8.2726

[Compare
Source](https://redirect.github.com/Readarr/Readarr/compare/v0.4.7.2718...v0.4.8.2726)

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

**If you are using docker you will need to update the container image.
*Do not attempt to update Readarr within an existing docker
container.***

#### Changes:

-
[`3bb036e`](https://redirect.github.com/Readarr/Readarr/commit/3bb036e8c6657ad9427405492c26540a603aabce)
Fixed warning for central package version management
-
[`6e05456`](https://redirect.github.com/Readarr/Readarr/commit/6e05456d6a0c80c68f978fb5c74f49100985d0fe)
Set minor version for core-js in babel/preset-env \[
[#&#8203;3941](https://redirect.github.com/Readarr/Readarr/issues/3941)
]
-
[`8563a42`](https://redirect.github.com/Readarr/Readarr/commit/8563a42822b03a74045d133a83a22fa165e5feb0)
Update core-js
-
[`841d38f`](https://redirect.github.com/Readarr/Readarr/commit/841d38f4a5b23ca8ffdf136e2c729a191bfb3513)
Upgrade babel to 7.26.0 \[
[#&#8203;3943](https://redirect.github.com/Readarr/Readarr/issues/3943)
]
-
[`9326d88`](https://redirect.github.com/Readarr/Readarr/commit/9326d88eb6444c837b6c480e841c6706a9533389)
Upgrade Font Awesome to 6.7.1 \[
[#&#8203;3944](https://redirect.github.com/Readarr/Readarr/issues/3944)
]
-
[`015da61`](https://redirect.github.com/Readarr/Readarr/commit/015da6100432a774c2ce32f43fc805b929de27cd)
Bump MailKit to 4.8.0 and Microsoft.Data.SqlClient to 2.1.7 \[
[#&#8203;3951](https://redirect.github.com/Readarr/Readarr/issues/3951)
]
-
[`d02ea4b`](https://redirect.github.com/Readarr/Readarr/commit/d02ea4b12119dd7dec35c04f4266f5aa5d73e75e)
Don't send session information to Sentry \[
[#&#8203;3957](https://redirect.github.com/Readarr/Readarr/issues/3957)
]
-
[`7bc9d70`](https://redirect.github.com/Readarr/Readarr/commit/7bc9d700f93e197b07f050a705cb636e2232a1fa)
Update Sentry SDK add features
-
[`661d72e`](https://redirect.github.com/Readarr/Readarr/commit/661d72ef9b3ca9032035dad0a9876a53cfc4728b)
Fixed: Listening on all IPv4 Addresses
-
[`258a8d1`](https://redirect.github.com/Readarr/Readarr/commit/258a8d1c95b2b7b944474efcf367f62e0fcdb723)
Fixed: qBittorrent Ratio Limit Check

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

-
[`d4459b9`](https://redirect.github.com/Readarr/Readarr/commit/d4459b94759c7b7196cb06188654189cd4a20b29)
Bump version to 0.4.8

This list of changes was [auto
generated](https://dev.azure.com/Readarr/34393bab-b896-4651-a109-cddb27254e55/\_release?releaseId=74&\_a=release-summary).</details>

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:59:12 +00:00
TrueCharts BotandGitHub e424e173ed chore(helm): update image ghcr.io/elfhosted/zilean v3.3.1 → v3.3.4 (#31081)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/zilean | patch | `b5b520c` -> `25cda59` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:59:08 +01:00
TrueCharts BotandGitHub 6e1239843a chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1229 → 0.22.1305 (#30867)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/jackett | patch | `22c4fe5` -> `e0440c3` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:57:53 +00:00
TrueCharts BotandGitHub 49e5ad7da3 chore(helm): update image ghcr.io/elfhosted/emby 4.9.0.35 → 4.9.0.37 (#31080)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/elfhosted/emby | patch | `195475a` -> `f299327` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:57:42 +01:00
TrueCharts BotandGitHub acbd917bca chore(helm): update image ghcr.io/a-sync/game-server-watcher v3.1.21 → v3.1.22 (#31079)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/a-sync/game-server-watcher](https://redirect.github.com/a-sync/game-server-watcher)
| patch | `6d95569` -> `6f5cb81` |

---

> [!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>a-sync/game-server-watcher
(ghcr.io/a-sync/game-server-watcher)</summary>

###
[`v3.1.22`](https://redirect.github.com/a-sync/game-server-watcher/compare/v3.1.21...v3.1.22)

[Compare
Source](https://redirect.github.com/a-sync/game-server-watcher/compare/v3.1.21...v3.1.22)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:57:00 +01:00
TrueCharts BotandGitHub df840ae8f7 chore(helm): update image ghcr.io/chroma-core/chroma 0.6.2 → 0.6.3 (#30916)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/chroma-core/chroma | patch | `4b994ea` -> `e0e78dc` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:56:47 +00:00
TrueCharts BotandGitHub 494c158c57 chore(github-action): update anchore/sbom-action action v0.17.9 → v0.18.0 (#31097)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [anchore/sbom-action](https://redirect.github.com/anchore/sbom-action)
| action | minor | `df80a98` -> `f325610` |

---

> [!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>anchore/sbom-action (anchore/sbom-action)</summary>

###
[`v0.18.0`](https://redirect.github.com/anchore/sbom-action/releases/tag/v0.18.0)

[Compare
Source](https://redirect.github.com/anchore/sbom-action/compare/v0.17.9...v0.18.0)

#### Changes in v0.18.0

- chore(deps): update Syft to v1.19.0
([#&#8203;513](https://redirect.github.com/anchore/sbom-action/issues/513))
- [See Syft changelog for latest
changes](https://redirect.github.com/anchore/syft/releases/tag/v1.19.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9naXRodWItYWN0aW9uIiwicmVub3ZhdGUvZ2l0aHViLXJlbGVhc2UiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 14:45:17 +01:00
TrueCharts BotandGitHub d77eaa266d fix(deps): update module github.com/go-git/go-git/v5 v5.13.1 → v5.13.2 (clustertool) (#31093)
This PR contains the following updates:

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

---

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

---

### Release Notes

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

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

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

#### What's Changed

- plumbing: use the correct user agent string. Fixes
[#&#8203;883](https://redirect.github.com/go-git/go-git/issues/883) by
[@&#8203;uragirii](https://redirect.github.com/uragirii) in
[https://github.com/go-git/go-git/pull/1364](https://redirect.github.com/go-git/go-git/pull/1364)
- build: bump golang.org/x/sys from 0.28.0 to 0.29.0 in the golang-org
group by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1365](https://redirect.github.com/go-git/go-git/pull/1365)
- build: bump the golang-org group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1367](https://redirect.github.com/go-git/go-git/pull/1367)
- build: bump github.com/ProtonMail/go-crypto from 1.1.3 to 1.1.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1368](https://redirect.github.com/go-git/go-git/pull/1368)
- build: bump github.com/go-git/go-billy/v5 from 5.6.1 to 5.6.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1378](https://redirect.github.com/go-git/go-git/pull/1378)
- build: bump github/codeql-action from 3.28.0 to 3.28.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1376](https://redirect.github.com/go-git/go-git/pull/1376)
- build: bump github.com/elazarl/goproxy from 1.2.3 to 1.4.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1377](https://redirect.github.com/go-git/go-git/pull/1377)
- git: worktree, fix restoring dot slash files (backported to v5). Fixes
[#&#8203;1176](https://redirect.github.com/go-git/go-git/issues/1176) by
[@&#8203;BeChris](https://redirect.github.com/BeChris) in
[https://github.com/go-git/go-git/pull/1361](https://redirect.github.com/go-git/go-git/pull/1361)
- build: bump github.com/pjbgf/sha1cd from 0.3.0 to 0.3.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1392](https://redirect.github.com/go-git/go-git/pull/1392)
- git: worktree_status, fix adding dot slash files to working tree
(backported to v5). Fixes
[#&#8203;1150](https://redirect.github.com/go-git/go-git/issues/1150) by
[@&#8203;BeChris](https://redirect.github.com/BeChris) in
[https://github.com/go-git/go-git/pull/1359](https://redirect.github.com/go-git/go-git/pull/1359)
- build: bump github.com/ProtonMail/go-crypto from 1.1.4 to 1.1.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1383](https://redirect.github.com/go-git/go-git/pull/1383)

**Full Changelog**:
https://github.com/go-git/go-git/compare/v5.13.1...v5.13.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:44:54 +01:00
TrueCharts BotandGitHub fcbba5cf3c chore(github-action): update helm/chart-testing-action action v2.6.1 → v2.7.0 (#31098)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[helm/chart-testing-action](https://redirect.github.com/helm/chart-testing-action)
| action | minor | `e6669bc` -> `0d28d31` |

---

> [!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>helm/chart-testing-action (helm/chart-testing-action)</summary>

###
[`v2.7.0`](https://redirect.github.com/helm/chart-testing-action/releases/tag/v2.7.0)

[Compare
Source](https://redirect.github.com/helm/chart-testing-action/compare/v2.6.1...v2.7.0)

For `ct` change see
https://github.com/helm/chart-testing/releases/tag/v3.12.0

##### What's Changed

- docs: update all version references to latest versions by
[@&#8203;froblesmartin](https://redirect.github.com/froblesmartin) in
[https://github.com/helm/chart-testing-action/pull/141](https://redirect.github.com/helm/chart-testing-action/pull/141)
- update ct to v3.11.0 / yamlint to 1.33.0 / yamale to 4.0.4 / add e2e
test by [@&#8203;cpanato](https://redirect.github.com/cpanato) in
[https://github.com/helm/chart-testing-action/pull/144](https://redirect.github.com/helm/chart-testing-action/pull/144)
- use ct 3.12.0 as default by
[@&#8203;cpanato](https://redirect.github.com/cpanato) in
[https://github.com/helm/chart-testing-action/pull/165](https://redirect.github.com/helm/chart-testing-action/pull/165)
- clean up and fix cr action next release by
[@&#8203;cpanato](https://redirect.github.com/cpanato) in
[https://github.com/helm/chart-testing-action/pull/166](https://redirect.github.com/helm/chart-testing-action/pull/166)

##### New Contributors

- [@&#8203;froblesmartin](https://redirect.github.com/froblesmartin)
made their first contribution in
[https://github.com/helm/chart-testing-action/pull/141](https://redirect.github.com/helm/chart-testing-action/pull/141)

**Full Changelog**:
https://github.com/helm/chart-testing-action/compare/v2.6.1...v2.7.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9naXRodWItYWN0aW9uIiwicmVub3ZhdGUvZ2l0aHViLXJlbGVhc2UiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 14:43:51 +01:00
TrueCharts BotandGitHub 1ced9e0181 fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.14 → v3.0.16 (clustertool) (#31092)
This PR contains the following updates:

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

---

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

---

### Release Notes

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

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

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

#### Changelog

-
[`0367148`](https://redirect.github.com/budimanjojo/talhelper/commit/0367148de6cb16b90df6275d5b97412a5b8cdded)
feat: update Scoop for talhelper version v3.0.15
-
[`43414c9`](https://redirect.github.com/budimanjojo/talhelper/commit/43414c92fcca8493b5e262a6aa5d415656587499)
feat: update flake
([#&#8203;808](https://redirect.github.com/budimanjojo/talhelper/issues/808))
-
[`5084e42`](https://redirect.github.com/budimanjojo/talhelper/commit/5084e42f154ca1c87e111f517c96b46ffab7408c)
fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.15
-
[`d4bd660`](https://redirect.github.com/budimanjojo/talhelper/commit/d4bd6600fcdc1b64be0616999add7623781c25b9)
fix: use the commit where `busPath` is not broken

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

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

#### Changelog

-
[`7783fb2`](https://redirect.github.com/budimanjojo/talhelper/commit/7783fb21f4785aefad0fce9d6d5b971058698b2a)
chore(container): update alpine docker tag to v3.21.2
-
[`c1f69ec`](https://redirect.github.com/budimanjojo/talhelper/commit/c1f69ec68bf46fe35d082e7aef036f1263b5fd91)
chore(container): update bitnami/kubectl docker tag to v1.32.1
-
[`fc7e91f`](https://redirect.github.com/budimanjojo/talhelper/commit/fc7e91f97eb44ae93f0f3abf754e3f17953402b8)
chore(container): update ghcr.io/getsops/sops docker tag to v3.9.3
-
[`9278998`](https://redirect.github.com/budimanjojo/talhelper/commit/927899891b87f117a8d4785416b110057e4dba8e)
chore(container): update ghcr.io/siderolabs/talosctl docker tag to
v1.9.2
-
[`6e68ba9`](https://redirect.github.com/budimanjojo/talhelper/commit/6e68ba91953c0668d07a0ee8c7433d613b059dfc)
chore(container): update golangci/golangci-lint docker tag to v1.63.3
-
[`588bafa`](https://redirect.github.com/budimanjojo/talhelper/commit/588bafaddaee6621bdfcdf6e52cb896102e6947c)
chore(container): update golangci/golangci-lint docker tag to v1.63.4
-
[`2920825`](https://redirect.github.com/budimanjojo/talhelper/commit/2920825b232847f1aed10510a3eeba02c35952b6)
chore(container): update goreleaser/goreleaser docker tag to v2.5.1
-
[`4972d55`](https://redirect.github.com/budimanjojo/talhelper/commit/4972d5583dad91892985e895c208146ffd3451e8)
chore(deps): update dependency siderolabs/talos to v1.9.2
-
[`de942ea`](https://redirect.github.com/budimanjojo/talhelper/commit/de942ea79a2b1c6ee7ac8c36ed16a526b53cd39f)
chore(github-action): update renovatebot/github-action action to v41.0.8
-
[`5add3f2`](https://redirect.github.com/budimanjojo/talhelper/commit/5add3f2994c40d6b91f8b1a11712dd3e0b165e52)
chore(github-action): update renovatebot/github-action action to v41.0.9
-
[`389f130`](https://redirect.github.com/budimanjojo/talhelper/commit/389f13086a9e8f25de82d0f52d704cc73833ecbe)
chore(schema): update talconfig.yaml JSON schema
([#&#8203;788](https://redirect.github.com/budimanjojo/talhelper/issues/788))
-
[`0d864a6`](https://redirect.github.com/budimanjojo/talhelper/commit/0d864a61e62b4c7b7f2e76c45ced1b484c87772a)
chore(schema): update talconfig.yaml JSON schema
([#&#8203;797](https://redirect.github.com/budimanjojo/talhelper/issues/797))
-
[`b6a4040`](https://redirect.github.com/budimanjojo/talhelper/commit/b6a4040e8c2fd4fe8c2bc316d9ddd355eb94bc5b)
chore(schema): update talos-extensions.yaml JSON schema
-
[`7efa54c`](https://redirect.github.com/budimanjojo/talhelper/commit/7efa54ca8b97fa72655695d06d51d742ec256aff)
chore(schema): update talos-extensions.yaml JSON schema
-
[`17b4c61`](https://redirect.github.com/budimanjojo/talhelper/commit/17b4c6130a6bc345e15d0a033d97e7554f0bbf5a)
chore(schema): update talos-extensions.yaml JSON schema
-
[`2364766`](https://redirect.github.com/budimanjojo/talhelper/commit/2364766ec80fdeb72cb5c551e392dd1ed0a46202)
chore(schema): update talos-extensions.yaml JSON schema
([#&#8203;796](https://redirect.github.com/budimanjojo/talhelper/issues/796))
-
[`4101114`](https://redirect.github.com/budimanjojo/talhelper/commit/4101114e41b525a443c134594f3698e9e318d715)
chore(schema): update talos-extensions.yaml JSON schema
([#&#8203;799](https://redirect.github.com/budimanjojo/talhelper/issues/799))
-
[`7fa9b87`](https://redirect.github.com/budimanjojo/talhelper/commit/7fa9b87d5be9dc459b4ea8fd40c78f7adc60e2c3)
feat(config)!: rename `isoSchematic` to `imageSchematic`
-
[`51c2516`](https://redirect.github.com/budimanjojo/talhelper/commit/51c2516c67e97f638ad2aac2e886e2e25a47f20e)
feat(config): ad `volumes` field for `VolumeConfig` manifest
-
[`2566bb6`](https://redirect.github.com/budimanjojo/talhelper/commit/2566bb656c28fd00b10695a6570b647629cfec5e)
feat(genurl)!: replace `genurl iso` subcommand with `genurl image`
-
[`4609a14`](https://redirect.github.com/budimanjojo/talhelper/commit/4609a14824574a6593858626f5ca05a2af54420b)
feat(readme): thank you
[@&#8203;roachmanfp](https://redirect.github.com/roachmanfp) for the
sponsor!
-
[`4e864b0`](https://redirect.github.com/budimanjojo/talhelper/commit/4e864b08383295f7eda97b738203aefdaec0143a)
feat: add v1.10 to supported version
-
[`5216fc9`](https://redirect.github.com/budimanjojo/talhelper/commit/5216fc925cf54960d3fab897190ecf59836805ba)
feat: update Scoop for talhelper version v3.0.14
-
[`8a66fb0`](https://redirect.github.com/budimanjojo/talhelper/commit/8a66fb0f75db0877ba9c5a41c78e25dd2ce26ea1)
feat: update flake
([#&#8203;777](https://redirect.github.com/budimanjojo/talhelper/issues/777))
-
[`d642e01`](https://redirect.github.com/budimanjojo/talhelper/commit/d642e01d4c934eea58a5786633af20b109b77f2d)
fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.14
-
[`6bc01d2`](https://redirect.github.com/budimanjojo/talhelper/commit/6bc01d25e4f462df2d67ff8af2ba1a559503b835)
fix(deps): update module github.com/getsops/sops/v3 to v3.9.3
-
[`c6a2d12`](https://redirect.github.com/budimanjojo/talhelper/commit/c6a2d12a0aee8a0b47b9882a0de0fee4fc632029)
fix(deps): update module github.com/google/go-containerregistry to
v0.20.3
-
[`161a46a`](https://redirect.github.com/budimanjojo/talhelper/commit/161a46a0b91341fb881a55ea48b50e5ccd02cfbd)
fix(deps): update module github.com/invopop/jsonschema to v0.13.0
-
[`96aef7c`](https://redirect.github.com/budimanjojo/talhelper/commit/96aef7c32c7535045c0014acf31f005c57158e83)
fix(go): fix go refusing to run

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:43:40 +01:00
TrueCharts BotandGitHub d3d9291ea4 chore(flux): update helm release longhorn 1.7.2 → 1.8.0 (clustertool) (#31096)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [longhorn](https://redirect.github.com/longhorn/longhorn)
([source](https://redirect.github.com/longhorn/charts)) | minor |
`1.7.2` -> `1.8.0` |

---

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

---

### Release Notes

<details>
<summary>longhorn/charts (longhorn)</summary>

###
[`v1.8.0`](https://redirect.github.com/longhorn/charts/releases/tag/longhorn-1.8.0)

[Compare
Source](https://redirect.github.com/longhorn/charts/compare/longhorn-1.7.2...longhorn-1.8.0)

Longhorn is a distributed block storage system for Kubernetes.

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-01-24 14:40:49 +01:00
TrueCharts BotandGitHub a1237c7cdd chore(helm): update image fyb3roptik/threadfin 1.2.23 → 1.2.26 (#30866)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[fyb3roptik/threadfin](https://redirect.github.com/Threadfin/Threadfin)
| patch | `7efdbb7` -> `22a3ecd` |

---

> [!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>Threadfin/Threadfin (fyb3roptik/threadfin)</summary>

###
[`v1.2.26`](https://redirect.github.com/Threadfin/Threadfin/releases/tag/1.2.26)

[Compare
Source](https://redirect.github.com/Threadfin/Threadfin/compare/1.2.25...1.2.26)

#### Commits

-
[`171cbd2`](https://redirect.github.com/Threadfin/Threadfin/commit/171cbd2):
Handle tall logos to keep rows a uniform height (joshjryan)
[#&#8203;508](https://redirect.github.com/Threadfin/Threadfin/pull/508)
-
[`6edd9f5`](https://redirect.github.com/Threadfin/Threadfin/commit/6edd9f5):
Attempt to fix the 'interface {} is nil' issue (joshjryan)
[#&#8203;509](https://redirect.github.com/Threadfin/Threadfin/pull/509)
-
[`3f12943`](https://redirect.github.com/Threadfin/Threadfin/commit/3f12943):
Pushing up repack (Nick Wallace)
[#&#8203;512](https://redirect.github.com/Threadfin/Threadfin/pull/512)
-
[`a2be357`](https://redirect.github.com/Threadfin/Threadfin/commit/a2be357):
doh (Nick Wallace)
[#&#8203;512](https://redirect.github.com/Threadfin/Threadfin/pull/512)

###
[`v1.2.25`](https://redirect.github.com/Threadfin/Threadfin/releases/tag/1.2.25)

[Compare
Source](https://redirect.github.com/Threadfin/Threadfin/compare/1.2.24...1.2.25)

#### Commits

-
[`b1fe299`](https://redirect.github.com/Threadfin/Threadfin/commit/b1fe299):
Testing to see if this fixes the issue and if so will make dynamic (Nick
Wallace)
[#&#8203;510](https://redirect.github.com/Threadfin/Threadfin/pull/510)
-
[`7b1bc4d`](https://redirect.github.com/Threadfin/Threadfin/commit/7b1bc4d):
Patches xml generation (Nick Wallace)
[#&#8203;510](https://redirect.github.com/Threadfin/Threadfin/pull/510)

###
[`v1.2.24`](https://redirect.github.com/Threadfin/Threadfin/releases/tag/1.2.24)

[Compare
Source](https://redirect.github.com/Threadfin/Threadfin/compare/1.2.23...1.2.24)

#### Commits

-
[`1cf3b1e`](https://redirect.github.com/Threadfin/Threadfin/commit/1cf3b1e):
I asked Copilot to translate the comments to English (joshjryan)
[#&#8203;494](https://redirect.github.com/Threadfin/Threadfin/pull/494)
-
[`9a0858b`](https://redirect.github.com/Threadfin/Threadfin/commit/9a0858b):
Merge branch 'Threadfin:main' into main (joshjryan)
[#&#8203;494](https://redirect.github.com/Threadfin/Threadfin/pull/494)
-
[`faeb64a`](https://redirect.github.com/Threadfin/Threadfin/commit/faeb64a):
Provide correct mime-types for files that have uppercase extensions and
jpeg (joshjryan)
[#&#8203;502](https://redirect.github.com/Threadfin/Threadfin/pull/502)
-
[`78333ef`](https://redirect.github.com/Threadfin/Threadfin/commit/78333ef):
Upping version (Nick Wallace)
[#&#8203;503](https://redirect.github.com/Threadfin/Threadfin/pull/503)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:38:34 +00:00
TrueCharts BotandGitHub c7cf9de8ea chore(helm): update image docker.io/zwavejs/zwave-js-ui 9.29.0 → 9.29.1 (#31078)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/zwavejs/zwave-js-ui](https://redirect.github.com/zwave-js/zwave-js-ui)
| patch | `458e614` -> `801005b` |

---

> [!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.29.1`](https://redirect.github.com/zwave-js/zwave-js-ui/blob/HEAD/CHANGELOG.md#9291-2025-01-16)

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

##### Bug Fixes

- do not allow to set `Unknown` and `Default (EU)` regions
([a9c8e3a](https://redirect.github.com/zwave-js/zwave-js-ui/commit/a9c8e3a3d14ebae3fc05bf7c9c290e1f627fdf0c))
- **ui:** allow to call rebuild routes against multiple nodes at once
([848a543](https://redirect.github.com/zwave-js/zwave-js-ui/commit/848a54387b255600b0d81bcaa99a703784bf23b1)),
closes
[#&#8203;3559](https://redirect.github.com/zwave-js/zwave-js-ui/issues/3559)
- **ui:** editing Color Switch CC HEX color does not work
([ca030dc](https://redirect.github.com/zwave-js/zwave-js-ui/commit/ca030dceb3df16ce035cf46dbd17784d9a3dcc88)),
closes
[#&#8203;4085](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4085)
- **ui:** set default iterations for link reliability check to 100
([#&#8203;4082](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4082))
([f99c28b](https://redirect.github.com/zwave-js/zwave-js-ui/commit/f99c28b3341fb1c050b83d8b6e210d9bf215cfc6))
- **ui:** show rebuild node routes only when there are node selected
([ac1cbb3](https://redirect.github.com/zwave-js/zwave-js-ui/commit/ac1cbb30acac1dac563a136dd07368b2a6b2ab6a)),
closes
[#&#8203;4087](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4087)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:38:23 +01:00
TrueCharts BotandGitHub cd2c787130 chore(helm): update image docker.io/wiserain/flexget 3.13.11 → 3.13.17 (#31076)
This PR contains the following updates:

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

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:37:15 +01:00
TrueCharts BotandGitHub 9c5aaefba5 chore(helm): update image docker.io/wolveix/satisfactory-server v1.9.1 → v1.9.2 (#31077)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/wolveix/satisfactory-server | patch | `199be10` -> `2cb3a21`
|

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:36:50 +01:00
TrueCharts BotandGitHub d2e7716929 chore(helm): update image docker.io/whyour/qinglong 2.18.0 → 2.18.1 (#30915)
This PR contains the following updates:

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

---

> [!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.1`](https://redirect.github.com/whyour/qinglong/compare/v2.18.0...v2.18.1)

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:36:36 +00:00
TrueCharts BotandGitHub 5e83495689 fix(deps): update kubernetes packages v0.32.0 → v0.32.1 (clustertool) (patch) (#31091)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [k8s.io/api](https://redirect.github.com/kubernetes/api) | require |
patch | `v0.32.0` -> `v0.32.1` |
|
[k8s.io/apimachinery](https://redirect.github.com/kubernetes/apimachinery)
| require | patch | `v0.32.0` -> `v0.32.1` |
| [k8s.io/client-go](https://redirect.github.com/kubernetes/client-go) |
require | patch | `v0.32.0` -> `v0.32.1` |

---

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

---

### Release Notes

<details>
<summary>kubernetes/api (k8s.io/api)</summary>

###
[`v0.32.1`](https://redirect.github.com/kubernetes/api/compare/v0.32.0...v0.32.1)

[Compare
Source](https://redirect.github.com/kubernetes/api/compare/v0.32.0...v0.32.1)

</details>

<details>
<summary>kubernetes/apimachinery (k8s.io/apimachinery)</summary>

###
[`v0.32.1`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.32.0...v0.32.1)

[Compare
Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.32.0...v0.32.1)

</details>

<details>
<summary>kubernetes/client-go (k8s.io/client-go)</summary>

###
[`v0.32.1`](https://redirect.github.com/kubernetes/client-go/compare/v0.32.0...v0.32.1)

[Compare
Source](https://redirect.github.com/kubernetes/client-go/compare/v0.32.0...v0.32.1)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about 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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:34:13 +01:00
TrueCharts BotandGitHub 8bdd2ad7f7 chore(helm): update image ghcr.io/rogerfar/rdtclient 2.0.94 → 2.0.95 (#31086)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/rogerfar/rdtclient](https://redirect.github.com/rogerfar/rdt-client)
| patch | `783fcfd` -> `2f56d3e` |

---

> [!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>rogerfar/rdt-client (ghcr.io/rogerfar/rdtclient)</summary>

###
[`v2.0.95`](https://redirect.github.com/rogerfar/rdt-client/blob/HEAD/CHANGELOG.md#2095---2025-01-19)

[Compare
Source](https://redirect.github.com/rogerfar/rdt-client/compare/v2.0.94...v2.0.95)

##### Added

-   Added the /api/v2/transfer/info qBittorrent endpoint.

##### Changed

-   AllDebrid Symlink path fixes.

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:26:49 +01:00
TrueCharts BotandGitHub de2668536e chore(helm): update image docker.io/syncthing/syncthing 1.29.1 → 1.29.2 (#31074)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/syncthing/syncthing](https://syncthing.net)
([source](https://redirect.github.com/syncthing/syncthing)) | patch |
`982cac0` -> `3f5c977` |

---

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

###
[`v1.29.2`](https://redirect.github.com/syncthing/syncthing/releases/tag/v1.29.2)

[Compare
Source](https://redirect.github.com/syncthing/syncthing/compare/v1.29.1...v1.29.2)

v1.29.2

Bugfixes:

-
[#&#8203;9913](https://redirect.github.com/syncthing/syncthing/issues/9913):
panic: string field contains invalid UTF-8 \[recovered]

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:18:13 +01:00
TrueCharts BotandGitHub 39f3f435d3 chore(helm): update image docker.io/sonatype/nexus3 3.76.0 → 3.76.1 (#31073) 2025-01-24 14:17:46 +01:00
TrueCharts BotandGitHub 0180c5c55b chore(helm): update image docker.io/rustdesk/rustdesk-server-s6 1.1.12 → 1.1.13 (#31047)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/rustdesk/rustdesk-server-s6](https://redirect.github.com/rustdesk/rustdesk-server)
| patch | `d37e4e4` -> `799a37e` |

---

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

###
[`v1.1.13`](https://redirect.github.com/rustdesk/rustdesk-server/releases/tag/1.1.13)

[Compare
Source](https://redirect.github.com/rustdesk/rustdesk-server/compare/1.1.12...1.1.13)

***

### This is the open-source version, not the
[`Pro`](https://redirect.github.com/rustdesk/rustdesk-server-pro/releases/latest)
version that you purchased a *`license`* for.

<details>

### Das ist die Open-Source-Version, nicht die
[`Pro`](https://redirect.github.com/rustdesk/rustdesk-server-pro/releases/latest)-Version,
für die Sie eine Lizenz erworben haben.
### Voici la version open source, pas la version
[`Pro`](https://redirect.github.com/rustdesk/rustdesk-server-pro/releases/latest)
pour laquelle vous avez acheté une licence.

### Esta es la versión de código abierto, no la versión
[`Pro`](https://redirect.github.com/rustdesk/rustdesk-server-pro/releases/latest)
para la cual adquirió una licencia.
### 这是开源版本,不是您 *`购买`*
了许可证的[`专业版`](https://redirect.github.com/rustdesk/rustdesk-server-pro/releases/latest)。

</details>

***

-   Version check and refactor hbb_common to share with rustdesk client

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:17:39 +00:00
TrueCharts BotandGitHub bace446fb2 chore(helm): update image docker.io/vabene1111/recipes 1.5.27 → 1.5.30 (#31075) 2025-01-24 14:17:07 +01:00
TrueCharts BotandGitHub b4520ab23b chore(helm): update image docker.io/phpmyadmin/phpmyadmin 5.2.1 → 5.2.2 (#31046)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/phpmyadmin/phpmyadmin](https://redirect.github.com/phpmyadmin/docker)
| patch | `44328e7` -> `58f193c` |

---

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

###
[`v5.2.2`](https://redirect.github.com/phpmyadmin/docker/blob/HEAD/CHANGELOG.md#522---2025-01-21)

[Compare
Source](https://redirect.github.com/phpmyadmin/docker/compare/5.2.1...5.2.2)

- Add `TZ` env var to change PHP `date.timezone`
([#&#8203;133](https://redirect.github.com/phpmyadmin/docker/issues/133))
- Update to PHP 8.2
([#&#8203;411](https://redirect.github.com/phpmyadmin/docker/issues/411))
- Add back a `/sessions` volume for sessions persistence
([#&#8203;399](https://redirect.github.com/phpmyadmin/docker/issues/399))
- Support adding custom configurations in `/etc/phpmyadmin/conf.d`
([#&#8203;401](https://redirect.github.com/phpmyadmin/docker/issues/401))
- Fix for Debian 12 issue
([#&#8203;416](https://redirect.github.com/phpmyadmin/docker/issues/416))
that caused libraries for extensions to be uninstalled
- Add extension `bcmath` for 2nd factor authentication
([#&#8203;415](https://redirect.github.com/phpmyadmin/docker/issues/415))
- Refactor `update.sh`
([#&#8203;408](https://redirect.github.com/phpmyadmin/docker/issues/408))
- Enable remoteip mod for Apache
([#&#8203;434](https://redirect.github.com/phpmyadmin/docker/issues/434))
- Add support for `PMA_SSL` and `PMA_SSLS` to enable SSL connection
([#&#8203;441](https://redirect.github.com/phpmyadmin/docker/issues/441))
- Fixed looping through `$sockets` using the same index variable `$i`
interferes with the last server id
([#&#8203;186](https://redirect.github.com/phpmyadmin/docker/issues/186))
- Add support for `PMA_SSL_VERIFY` and `PMA_SSL_VERIFIES`
([#&#8203;448](https://redirect.github.com/phpmyadmin/docker/issues/448))
- Add support for `PMA_SSL_CA` and `PMA_SSL_CAS`
([#&#8203;448](https://redirect.github.com/phpmyadmin/docker/issues/448))
- Add support for `PMA_SSL_CERT` and `PMA_SSL_CERTS`
([#&#8203;448](https://redirect.github.com/phpmyadmin/docker/issues/448))
- Add support for `PMA_SSL_KEY` and `PMA_SSL_KEYS`
([#&#8203;448](https://redirect.github.com/phpmyadmin/docker/issues/448))
- Also add `PMA_SSL_DIR` to define the dir where SSL files are generated
for `_BASE64` prefixed variables
- Support `PMA_SSL_CA_BASE64` and `PMA_SSL_CAS_BASE64` as variables that
contain the file contents
([#&#8203;448](https://redirect.github.com/phpmyadmin/docker/issues/448))
- Support `PMA_SSL_KEY_BASE64` and `PMA_SSL_KEYS_BASE64` as variables
that contain the file contents
([#&#8203;448](https://redirect.github.com/phpmyadmin/docker/issues/448))
- Support `PMA_SSL_CERT_BASE64` and `PMA_SSL_CERTS_BASE64` as variables
that contain the file contents
([#&#8203;448](https://redirect.github.com/phpmyadmin/docker/issues/448))

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:17:01 +00:00
TrueCharts BotandGitHub dcef8223e0 chore(helm): update image docker.io/openhab/openhab 4.3.1 → 4.3.2 (#30864)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/openhab/openhab](https://www.openhab.org/)
([source](https://redirect.github.com/openhab/openhab-docker)) | patch |
`f76fc9e` -> `56b49ad` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:16:06 +00:00
TrueCharts BotandGitHub 4da341dcc7 chore(helm): update image docker.io/stonith404/pingvin-share v1.8.1 → v1.8.2 (#31048)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/stonith404/pingvin-share | patch | `967ffed` -> `22371f9` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:15:26 +00:00
TrueCharts BotandGitHub 39c7b1f7ef chore(helm): update image docker.io/sourcegraph/server 5.11.3601 → 5.11.6271 (#30865)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/sourcegraph/server](https://sourcegraph.com/)
([source](https://redirect.github.com/sourcegraph/sourcegraph)) | patch
| `91d371a` -> `e85c46a` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:14:52 +00:00
TrueCharts BotandGitHub ceb2973cc7 chore(helm): update image docker.io/leonismoe/ariang 1.3.8 → 1.3.9 (#31043) 2025-01-24 14:10:43 +01:00
TrueCharts BotandGitHub 3ca46ec93a chore(helm): update image docker.io/n8nio/n8n 1.74.1 → 1.74.3 (#31045)
This PR contains the following updates:

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

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:10:33 +00:00
TrueCharts BotandGitHub 0cbecf0319 chore(helm): update image docker.io/nocodb/nocodb 0.260.1 → 0.260.2 (#30914)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/nocodb/nocodb | patch | `c111d28` -> `143abde` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:10:28 +00:00
TrueCharts BotandGitHub 079a830537 chore(helm): update image docker.io/itzg/mc-router 1.25.0 → 1.25.1 (#31042)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/itzg/mc-router](https://redirect.github.com/itzg/mc-router)
| patch | `c471cb6` -> `cc46cf5` |

---

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

###
[`v1.25.1`](https://redirect.github.com/itzg/mc-router/releases/tag/1.25.1)

[Compare
Source](https://redirect.github.com/itzg/mc-router/compare/1.25.0...1.25.1)

#### Changelog

- [`7e6c146`](https://redirect.github.com/itzg/mc-router/commit/7e6c146)
build(deps): bump golang.org/x/net from 0.30.0 to 0.33.0
([#&#8203;363](https://redirect.github.com/itzg/mc-router/issues/363))
- [`77f4e63`](https://redirect.github.com/itzg/mc-router/commit/77f4e63)
build(deps): bump golang.ngrok.com/ngrok from 1.11.0 to 1.12.0
([#&#8203;360](https://redirect.github.com/itzg/mc-router/issues/360))
- [`837eb91`](https://redirect.github.com/itzg/mc-router/commit/837eb91)
build(deps): bump github.com/docker/docker in the patches group
([#&#8203;356](https://redirect.github.com/itzg/mc-router/issues/356))

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:08:51 +00:00
TrueCharts BotandGitHub ccb46c31b2 chore(helm): update image docker.io/jgraph/drawio 26.0.4 → 26.0.6 (#30951)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/jgraph/drawio](https://www.drawio.com)
([source](https://redirect.github.com/jgraph/docker-drawio)) | patch |
`cb527f1` -> `49df830` |

---

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

###
[`v26.0.6`](https://redirect.github.com/jgraph/docker-drawio/compare/v26.0.4...v26.0.6)

[Compare
Source](https://redirect.github.com/jgraph/docker-drawio/compare/v26.0.4...v26.0.6)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:08:34 +00:00
TrueCharts BotandGitHub f36f8f9a9d chore(helm): update image docker.io/miniflux/miniflux 2.2.4 → 2.2.5 (#31044)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/miniflux/miniflux](https://miniflux.app)
([source](https://redirect.github.com/miniflux/v2)) | patch | `20adbf8`
-> `bacc9b7` |

---

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

###
[`v2.2.5`](https://redirect.github.com/miniflux/v2/blob/HEAD/ChangeLog#Version-225-January-20-2025)

[Compare
Source](https://redirect.github.com/miniflux/v2/compare/2.2.4...2.2.5)

-   tests(js): improve `.jshintrc` (strict comparison, etc...)
-   test(sanitizer): add a fuzzer
- refactor(rewriter): use custom title case converter implementation
instead of `golang.org/x/text/cases.Title()`
- refactor(readingtime): replace `whatlanggo` package with an ad-hoc
implementation
- refactor(oauth2): no need to use `io.WriteString` when sha256 provides
a way to obtain a sum in a single call
-   refactor(js): simplify a bit `keyboard_handler.js`
-   refactor(js): remove an outdated check for `{passive: true}`
-   refactor(js): minor refactoring of `touch_handler.js`
-   refactor(js): minor improvements in `app.js`
- refactor(database): add special handling for PostgreSQL-specific
migrations
- fix(ui): reading preferences are reset if the form values are
incorrect
-   fix(sanitizer): allow `<hr>` tags
- fix(finder): do not add redirections to the list of subscriptions to
avoid confusion
-   fix: update Wallabag URL label to avoid confusion
-   fix: improve pagination when having identical publication date
-   fix: do not strip tags in Atom entry title
-   feat(ntfy): Add option to use internal links
-   feat(locale): update Polish translation
-   feat(locale): update German translation
-   feat(integration): add Discord integration
-   feat(database): add optional build support for SQLite
-   feat: validate usernames upon creation
-   feat: replace `%{?systemd_requires}` with `%{?systemd_ordering}`
-   feat: bump linter and minifier from ECMAScript 2017 to 2020 (ES11)
-   feat: add `fix_ghost_cards` rewrite rule
-   ci: tighten the CodeQL rules
-   ci: run Docker tests only when the Dockerfiles are modified
-   ci: run `-race -cover` only on Ubuntu jobs
-   ci: don't specify languages for CodeQL
-   ci: don't run `go vet ./...` as it's run as part of `golangci-lint`
-   ci: checkout before installing Go to improve cache efficiency
-   ci: avoid building Linux packages for each pull-request
-   build(deps): bump `golang.org/x/oauth2` from `0.24.0` to `0.25.0`
-   build(deps): bump `golang.org/x/net` from `0.33.0` to `0.34.0`
-   build(deps): bump `golang.org/x/crypto` from `0.31.0` to `0.32.0`
- build(deps): bump `github.com/tdewolff/minify/v2` from `2.21.2` to
`2.21.3`
- build(deps): bump `github.com/PuerkitoBio/goquery` from `1.10.0` to
`1.10.1`
- build(deps): bump `github.com/coreos/go-oidc/v3` from `3.11.0` to
`3.12.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:08:18 +00:00
TrueCharts BotandGitHub 57b2cb30d1 chore(helm): update image docker.io/metabase/metabase v0.52.5 → v0.52.7 (#30952)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/metabase/metabase | patch | `5ead2fd` -> `c5f9508` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:06:35 +00:00
TrueCharts BotandGitHub afde5cf716 chore(helm): update image docker.io/homeassistant/home-assistant 2025.1.2 → 2025.1.3 (#31072)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/homeassistant/home-assistant](https://www.home-assistant.io/)
([source](https://redirect.github.com/home-assistant/core)) | patch |
`871f84a` -> `fccef87` |

---

> [!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>home-assistant/core
(docker.io/homeassistant/home-assistant)</summary>

###
[`v2025.1.3`](https://redirect.github.com/home-assistant/core/releases/tag/2025.1.3)

[Compare
Source](https://redirect.github.com/home-assistant/core/compare/2025.1.2...2025.1.3)

- Fix DiscoveryFlowHandler when discovery_function returns bool
([@&#8203;kgraefe] - [#&#8203;133563])
- Aprilaire - Fix humidifier showing when it is not available
([@&#8203;chamberlain2007] - [#&#8203;133984]) ([aprilaire docs])
- Gracefully handle webhook unsubscription if error occurs while
contacting Withings ([@&#8203;dcmeglio] - [#&#8203;134271]) ([withings
docs])
- Image entity key error when camera is ignored in EZVIZ
([@&#8203;RenierM26] - [#&#8203;134343]) ([ezviz docs])
- Bump pyaussiebb to 0.1.5 ([@&#8203;Bre77] - [#&#8203;134943])
([aussie_broadband docs]) (dependency)
- Fix Watergate Power supply mode description and MQTT/Wifi uptimes
([@&#8203;adam-the-hero] - [#&#8203;135085]) ([watergate docs])
- Fix missing comma in ollama MODEL_NAMES ([@&#8203;epenet] -
[#&#8203;135262]) ([ollama docs])
- Bump Freebox to 1.2.2 ([@&#8203;Quentame] - [#&#8203;135313])
([freebox docs]) (dependency)
- Actually use translated entity names in Lametric ([@&#8203;joostlek] -
[#&#8203;135381]) ([lametric docs])
- Fix descriptions of send_message action of Bring! integration
([@&#8203;NoRi2909] - [#&#8203;135446]) ([bring docs])
- Bump switchbot-api to 2.3.1 ([@&#8203;SeraphicRav] - [#&#8203;135451])
([switchbot_cloud docs]) (dependency)
- Fix incorrect cast in HitachiAirToWaterHeatingZone in Overkiz
([@&#8203;iMicknl] - [#&#8203;135468]) ([overkiz docs])
- Replace pyhiveapi with pyhive-integration ([@&#8203;KJonline] -
[#&#8203;135482]) ([hive docs])
- Fix referenced objects in script sequences ([@&#8203;arturpragacz] -
[#&#8203;135499])
- Use STT/TTS languages for LLM fallback ([@&#8203;synesthesiam] -
[#&#8203;135533]) ([assist_pipeline docs])
- Bump demetriek to 1.2.0 ([@&#8203;joostlek] - [#&#8203;135580])
([lametric docs]) (dependency)
- Use device supplied ranges in LaMetric ([@&#8203;joostlek] -
[#&#8203;135590]) ([lametric docs])
- Bump elkm1-lib to 2.2.11 ([@&#8203;gwww] - [#&#8203;135616]) ([elkm1
docs]) (dependency)
- Fix mqtt number state validation ([@&#8203;jbouwh] - [#&#8203;135621])
([mqtt docs])
- Add reauthentication to SmartThings ([@&#8203;joostlek] -
[#&#8203;135673]) ([smartthings docs])
- Handle invalid HS color values in HomeKit Bridge ([@&#8203;bdraco] -
[#&#8203;135739]) ([homekit docs])
- Update aioairzone to v0.9.9 ([@&#8203;Noltari] - [#&#8203;135866])
([airzone docs]) (dependency)
- Remove device_class from NFC and fingerprint event descriptions
([@&#8203;RaHehl] - [#&#8203;135867]) ([unifiprotect docs])
- Prevent HomeKit from going unavailable when min/max is reversed
([@&#8203;bdraco] - [#&#8203;135892]) ([homekit docs])
- Bump onvif-zeep-async to 3.2.2 ([@&#8203;bdraco] - [#&#8203;135898])
([onvif docs]) (dependency)
- Round brightness in Niko Home Control ([@&#8203;VandeurenGlenn] -
[#&#8203;135920]) ([niko_home_control docs])
- Update NHC lib to v0.3.4 ([@&#8203;VandeurenGlenn] - [#&#8203;135923])
([niko_home_control docs]) (dependency)
- Update knx-frontend to 2025.1.18.164225 ([@&#8203;farmio] -
[#&#8203;135941]) ([knx docs]) (dependency)
- Bump aiooui to 0.1.8 ([@&#8203;bdraco] - [#&#8203;135945])
([nmap_tracker docs]) (dependency)
- Bump aiooui to 0.1.9 ([@&#8203;bdraco] - [#&#8203;135956])
([nmap_tracker docs]) (dependency)
- Fix switchbot cloud library logger ([@&#8203;joostlek] -
[#&#8203;135987]) ([switchbot_cloud docs])
- Correct type for off delay in rfxtrx ([@&#8203;elupus] -
[#&#8203;135994]) ([rfxtrx docs])
- Handle invalid datetime in onvif ([@&#8203;bdraco] - [#&#8203;136014])
([onvif docs])
- Bump aioraven to 0.7.1 ([@&#8203;cottsay] - [#&#8203;136017])
([rainforest_raven docs]) (dependency)
- Bump onvif-zeep-async to 3.2.3 ([@&#8203;bdraco] - [#&#8203;136022])
([onvif docs]) (dependency)
- Bump yt-dlp to 2025.01.15 ([@&#8203;joostlek] - [#&#8203;136072])
([media_extractor docs]) (dependency)
- Bump deebot-client to 11.0.0 ([@&#8203;edenhaus] - [#&#8203;136073])
([ecovacs docs]) (dependency)
- Always include SSL folder in backups ([@&#8203;emontnemery] -
[#&#8203;136080]) ([hassio docs])

[#&#8203;133563]:
https://redirect.github.com/home-assistant/core/pull/133563

[#&#8203;133984]:
https://redirect.github.com/home-assistant/core/pull/133984

[#&#8203;134271]:
https://redirect.github.com/home-assistant/core/pull/134271

[#&#8203;134343]:
https://redirect.github.com/home-assistant/core/pull/134343

[#&#8203;134529]:
https://redirect.github.com/home-assistant/core/pull/134529

[#&#8203;134940]:
https://redirect.github.com/home-assistant/core/pull/134940

[#&#8203;134943]:
https://redirect.github.com/home-assistant/core/pull/134943

[#&#8203;135085]:
https://redirect.github.com/home-assistant/core/pull/135085

[#&#8203;135241]:
https://redirect.github.com/home-assistant/core/pull/135241

[#&#8203;135262]:
https://redirect.github.com/home-assistant/core/pull/135262

[#&#8203;135313]:
https://redirect.github.com/home-assistant/core/pull/135313

[#&#8203;135381]:
https://redirect.github.com/home-assistant/core/pull/135381

[#&#8203;135446]:
https://redirect.github.com/home-assistant/core/pull/135446

[#&#8203;135451]:
https://redirect.github.com/home-assistant/core/pull/135451

[#&#8203;135468]:
https://redirect.github.com/home-assistant/core/pull/135468

[#&#8203;135482]:
https://redirect.github.com/home-assistant/core/pull/135482

[#&#8203;135499]:
https://redirect.github.com/home-assistant/core/pull/135499

[#&#8203;135533]:
https://redirect.github.com/home-assistant/core/pull/135533

[#&#8203;135580]:
https://redirect.github.com/home-assistant/core/pull/135580

[#&#8203;135590]:
https://redirect.github.com/home-assistant/core/pull/135590

[#&#8203;135616]:
https://redirect.github.com/home-assistant/core/pull/135616

[#&#8203;135621]:
https://redirect.github.com/home-assistant/core/pull/135621

[#&#8203;135673]:
https://redirect.github.com/home-assistant/core/pull/135673

[#&#8203;135739]:
https://redirect.github.com/home-assistant/core/pull/135739

[#&#8203;135866]:
https://redirect.github.com/home-assistant/core/pull/135866

[#&#8203;135867]:
https://redirect.github.com/home-assistant/core/pull/135867

[#&#8203;135892]:
https://redirect.github.com/home-assistant/core/pull/135892

[#&#8203;135898]:
https://redirect.github.com/home-assistant/core/pull/135898

[#&#8203;135920]:
https://redirect.github.com/home-assistant/core/pull/135920

[#&#8203;135923]:
https://redirect.github.com/home-assistant/core/pull/135923

[#&#8203;135941]:
https://redirect.github.com/home-assistant/core/pull/135941

[#&#8203;135945]:
https://redirect.github.com/home-assistant/core/pull/135945

[#&#8203;135956]:
https://redirect.github.com/home-assistant/core/pull/135956

[#&#8203;135987]:
https://redirect.github.com/home-assistant/core/pull/135987

[#&#8203;135994]:
https://redirect.github.com/home-assistant/core/pull/135994

[#&#8203;136014]:
https://redirect.github.com/home-assistant/core/pull/136014

[#&#8203;136017]:
https://redirect.github.com/home-assistant/core/pull/136017

[#&#8203;136022]:
https://redirect.github.com/home-assistant/core/pull/136022

[#&#8203;136072]:
https://redirect.github.com/home-assistant/core/pull/136072

[#&#8203;136073]:
https://redirect.github.com/home-assistant/core/pull/136073

[#&#8203;136080]:
https://redirect.github.com/home-assistant/core/pull/136080

[@&#8203;Bre77]: https://redirect.github.com/Bre77

[@&#8203;KJonline]: https://redirect.github.com/KJonline

[@&#8203;NoRi2909]: https://redirect.github.com/NoRi2909

[@&#8203;Noltari]: https://redirect.github.com/Noltari

[@&#8203;Quentame]: https://redirect.github.com/Quentame

[@&#8203;RaHehl]: https://redirect.github.com/RaHehl

[@&#8203;RenierM26]: https://redirect.github.com/RenierM26

[@&#8203;SeraphicRav]: https://redirect.github.com/SeraphicRav

[@&#8203;VandeurenGlenn]: https://redirect.github.com/VandeurenGlenn

[@&#8203;adam-the-hero]: https://redirect.github.com/adam-the-hero

[@&#8203;arturpragacz]: https://redirect.github.com/arturpragacz

[@&#8203;bdraco]: https://redirect.github.com/bdraco

[@&#8203;bramkragten]: https://redirect.github.com/bramkragten

[@&#8203;chamberlain2007]: https://redirect.github.com/chamberlain2007

[@&#8203;cottsay]: https://redirect.github.com/cottsay

[@&#8203;dcmeglio]: https://redirect.github.com/dcmeglio

[@&#8203;edenhaus]: https://redirect.github.com/edenhaus

[@&#8203;elupus]: https://redirect.github.com/elupus

[@&#8203;emontnemery]: https://redirect.github.com/emontnemery

[@&#8203;epenet]: https://redirect.github.com/epenet

[@&#8203;farmio]: https://redirect.github.com/farmio

[@&#8203;frenck]: https://redirect.github.com/frenck

[@&#8203;gwww]: https://redirect.github.com/gwww

[@&#8203;iMicknl]: https://redirect.github.com/iMicknl

[@&#8203;jbouwh]: https://redirect.github.com/jbouwh

[@&#8203;joostlek]: https://redirect.github.com/joostlek

[@&#8203;kgraefe]: https://redirect.github.com/kgraefe

[@&#8203;synesthesiam]: https://redirect.github.com/synesthesiam

[abode docs]: https://www.home-assistant.io/integrations/abode/

[acaia docs]: https://www.home-assistant.io/integrations/acaia/

[adax docs]: https://www.home-assistant.io/integrations/adax/

[airzone docs]: https://www.home-assistant.io/integrations/airzone/

[aprilaire docs]: https://www.home-assistant.io/integrations/aprilaire/

[assist_pipeline docs]:
https://www.home-assistant.io/integrations/assist_pipeline/

[aussie_broadband docs]:
https://www.home-assistant.io/integrations/aussie_broadband/

[bring docs]: https://www.home-assistant.io/integrations/bring/

[ecovacs docs]: https://www.home-assistant.io/integrations/ecovacs/

[elkm1 docs]: https://www.home-assistant.io/integrations/elkm1/

[ezviz docs]: https://www.home-assistant.io/integrations/ezviz/

[freebox docs]: https://www.home-assistant.io/integrations/freebox/

[hassio docs]: https://www.home-assistant.io/integrations/hassio/

[hive docs]: https://www.home-assistant.io/integrations/hive/

[homekit docs]: https://www.home-assistant.io/integrations/homekit/

[knx docs]: https://www.home-assistant.io/integrations/knx/

[lametric docs]: https://www.home-assistant.io/integrations/lametric/

[media_extractor docs]:
https://www.home-assistant.io/integrations/media_extractor/

[mqtt docs]: https://www.home-assistant.io/integrations/mqtt/

[niko_home_control docs]:
https://www.home-assistant.io/integrations/niko_home_control/

[nmap_tracker docs]:
https://www.home-assistant.io/integrations/nmap_tracker/

[ollama docs]: https://www.home-assistant.io/integrations/ollama/

[onvif docs]: https://www.home-assistant.io/integrations/onvif/

[overkiz docs]: https://www.home-assistant.io/integrations/overkiz/

[rainforest_raven docs]:
https://www.home-assistant.io/integrations/rainforest_raven/

[rfxtrx docs]: https://www.home-assistant.io/integrations/rfxtrx/

[smartthings docs]:
https://www.home-assistant.io/integrations/smartthings/

[switchbot_cloud docs]:
https://www.home-assistant.io/integrations/switchbot_cloud/

[unifiprotect docs]:
https://www.home-assistant.io/integrations/unifiprotect/

[watergate docs]: https://www.home-assistant.io/integrations/watergate/

[withings docs]: https://www.home-assistant.io/integrations/withings/

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 14:05:41 +01:00
TrueCharts BotandGitHub c55eb9fabb chore(helm): update image docker.io/gabekangas/owncast 0.2.0 → 0.2.1 (#31040)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/gabekangas/owncast | patch | `3f490ea` -> `1cd1483` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:05:16 +00:00
TrueCharts BotandGitHub 8f0cbda975 chore(helm): update image docker.io/flowiseai/flowise 2.2.3 → 2.2.4 (#30950)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/flowiseai/flowise | patch | `bd99a55` -> `10dc9b8` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 13:04:08 +00:00
TrueCharts BotandGitHub c6891d3412 chore(helm): update image docker.io/esphome/esphome 2024.12.2 → 2024.12.4 (#31039)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/esphome/esphome](https://esphome.io/)
([source](https://redirect.github.com/esphome/esphome)) | patch |
`b2c6322` -> `fb17727` |

---

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

###
[`v2024.12.4`](https://redirect.github.com/esphome/esphome/releases/tag/2024.12.4)

[Compare
Source](https://redirect.github.com/esphome/esphome/compare/2024.12.2...2024.12.4)

- Bump python3-setuptools to 66.1.1-1+deb12u1
[esphome#8074](https://redirect.github.com/esphome/esphome/pull/8074) by
[@&#8203;jesserockz](https://redirect.github.com/jesserockz)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:55:00 +00:00
TrueCharts BotandGitHub 1bb3baec05 chore(helm): update image docker.io/docuseal/docuseal 1.8.6 → 1.8.8 (#30949)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/docuseal/docuseal | patch | `f385218` -> `7a93c90` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:49:25 +00:00
TrueCharts BotandGitHub 29fffd1ea9 chore(helm): update image docker.io/deluan/navidrome 0.54.3 → 0.54.4 (#30948)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/deluan/navidrome](https://redirect.github.com/navidrome/navidrome)
| patch | `4915ec6` -> `5c15cb7` |

---

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

###
[`v0.54.4`](https://redirect.github.com/navidrome/navidrome/releases/tag/v0.54.4)

[Compare
Source](https://redirect.github.com/navidrome/navidrome/compare/v0.54.3...v0.54.4)

#### Changelog

##### New Features

-
[`d60e831`](https://redirect.github.com/navidrome/navidrome/commit/d60e83176ca797a2aa4d8d6027fc5eaf9057f4ec):
feat(cli): support getting playlists via cli
([#&#8203;3634](https://redirect.github.com/navidrome/navidrome/issues/3634))
([@&#8203;kgarner7](https://redirect.github.com/kgarner7))

##### Bug fixes

-
[`3179966`](https://redirect.github.com/navidrome/navidrome/commit/31799662706fedddf5bcc1a76b50409d1f91d327):
fix(metrics): write system metrics on start
([#&#8203;3641](https://redirect.github.com/navidrome/navidrome/issues/3641))
([@&#8203;kgarner7](https://redirect.github.com/kgarner7))
-
[`acce3c9`](https://redirect.github.com/navidrome/navidrome/commit/acce3c97d5dcf22a005a46d855bb1763a8bb8b66):
fix(release): make binaries executable before packaging
([@&#8203;deluan](https://redirect.github.com/deluan))
-
[`beff1af`](https://redirect.github.com/navidrome/navidrome/commit/beff1afad7c639ddcd6c34b4ad8174ba8e3343da):
fix(subsonic): make Share's lastVisited optional
([@&#8203;deluan](https://redirect.github.com/deluan))
-
[`f1478d4`](https://redirect.github.com/navidrome/navidrome/commit/f1478d40f50e43384cad2a65b8f999df1b3e0c08):
fix(ui): fix for typo in hu.json
([#&#8203;3635](https://redirect.github.com/navidrome/navidrome/issues/3635))
([@&#8203;ChekeredList71](https://redirect.github.com/ChekeredList71))
-
[`920fd53`](https://redirect.github.com/navidrome/navidrome/commit/920fd53e582d09f66f10b55b1072e932296c7117):
fix(ui): remove index.html from service worker cache after creating
admin user
([#&#8203;3642](https://redirect.github.com/navidrome/navidrome/issues/3642))
([@&#8203;kgarner7](https://redirect.github.com/kgarner7))
-
[`73ccfbd`](https://redirect.github.com/navidrome/navidrome/commit/73ccfbd8399024bffba65cf2dfbb558a3eb6e16f):
fix(ui): update Türkçe translations from POEditor
([#&#8203;3636](https://redirect.github.com/navidrome/navidrome/issues/3636))
([@&#8203;deluan](https://redirect.github.com/deluan))

##### Other work

-
[`537e2fc`](https://redirect.github.com/navidrome/navidrome/commit/537e2fc033b71a4a69190b74f755ebc352bb4196):
chore(deps): bump go dependencies
([@&#8203;deluan](https://redirect.github.com/deluan))
-
[`ba2623e`](https://redirect.github.com/navidrome/navidrome/commit/ba2623e3f18128db1946be84b0f4b51511a31ea1):
chore(server): add more logs to backup
([@&#8203;deluan](https://redirect.github.com/deluan))

**Full Changelog**:
https://github.com/navidrome/navidrome/compare/v0.54.3...v0.54.4

#### Helping out

This release is only possible thanks to the support of some **awesome
people**!

Want to be one of them?
You can [sponsor](https://redirect.github.com/sponsors/deluan), pay me a
[Ko-fi](https://ko-fi.com/deluan), or [contribute with
code](https://www.navidrome.org/docs/developers/).

#### Where to go next?

- Read installation instructions on our
[website](https://www.navidrome.org/docs/installation/).
- Host Navidrome on [PikaPods](https://www.pikapods.com/pods/navidrome)
for a simple cloud solution.
- Reach out on [Discord](https://discord.gg/xh7j7yF),
[Reddit](https://www.reddit.com/r/navidrome/) and
[Twitter](https://twitter.com/navidrome)!

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:49:04 +00:00
TrueCharts BotandGitHub 995a098c8d chore(helm): update image docker.io/collabora/code 24.04.11.2.1 → 24.04.11.3.1 (#31038)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/collabora/code | patch | `1cf62aa` -> `f6d2da4` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:49:00 +00:00
TrueCharts BotandGitHub 5d347d65f7 chore(helm): update image docker.io/brandawg93/peanut 4.4.2 → 4.4.4 (#30863)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/brandawg93/peanut](https://redirect.github.com/Brandawg93/PeaNUT)
| patch | `4ddbd9f` -> `1def542` |

---

> [!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>Brandawg93/PeaNUT (docker.io/brandawg93/peanut)</summary>

###
[`v4.4.4`](https://redirect.github.com/Brandawg93/PeaNUT/releases/tag/v4.4.4)

[Compare
Source](https://redirect.github.com/Brandawg93/PeaNUT/compare/v4.4.3...v4.4.4)

#### What's Changed

- Better settings tests by
[@&#8203;Brandawg93](https://redirect.github.com/Brandawg93) in
[https://github.com/Brandawg93/PeaNUT/pull/152](https://redirect.github.com/Brandawg93/PeaNUT/pull/152)
- Bump actions/checkout from 4.1.0 to 4.2.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/Brandawg93/PeaNUT/pull/153](https://redirect.github.com/Brandawg93/PeaNUT/pull/153)
- Fix status for some users by
[@&#8203;Brandawg93](https://redirect.github.com/Brandawg93) in
[https://github.com/Brandawg93/PeaNUT/pull/155](https://redirect.github.com/Brandawg93/PeaNUT/pull/155)

**Full Changelog**:
https://github.com/Brandawg93/PeaNUT/compare/v4.4.3...v4.4.4

###
[`v4.4.3`](https://redirect.github.com/Brandawg93/PeaNUT/releases/tag/v4.4.3)

[Compare
Source](https://redirect.github.com/Brandawg93/PeaNUT/compare/v4.4.2...v4.4.3)

#### What's Changed

- Final chart touchups by
[@&#8203;Brandawg93](https://redirect.github.com/Brandawg93) in
[https://github.com/Brandawg93/PeaNUT/pull/146](https://redirect.github.com/Brandawg93/PeaNUT/pull/146)
- Update it translations by
[@&#8203;ildoc](https://redirect.github.com/ildoc) in
[https://github.com/Brandawg93/PeaNUT/pull/150](https://redirect.github.com/Brandawg93/PeaNUT/pull/150)
- Fix broken environment variables by
[@&#8203;Brandawg93](https://redirect.github.com/Brandawg93) in
[https://github.com/Brandawg93/PeaNUT/pull/148](https://redirect.github.com/Brandawg93/PeaNUT/pull/148)

#### New Contributors

- [@&#8203;ildoc](https://redirect.github.com/ildoc) made their first
contribution in
[https://github.com/Brandawg93/PeaNUT/pull/150](https://redirect.github.com/Brandawg93/PeaNUT/pull/150)

**Full Changelog**:
https://github.com/Brandawg93/PeaNUT/compare/v4.4.2...v4.4.3

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:18:13 +00:00
TrueCharts BotandGitHub 91d95c0a90 chore(helm): update image docker.io/clamav/clamav 1.4.1 → 1.4.2 (#31036)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/clamav/clamav](https://redirect.github.com/Cisco-Talos/clamav.git)
([source](https://redirect.github.com/Cisco-Talos/clamav)) | patch |
`79f12e1` -> `52cdfe3` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:17:58 +00:00
TrueCharts BotandGitHub 5dc2621112 chore(helm): update image docker.io/clickhouse/clickhouse-server 24.12.2.29 → 24.12.3.47 (#30947)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/clickhouse/clickhouse-server | patch | `4f85ed6` ->
`3fb2bd1` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:17:53 +00:00
TrueCharts BotandGitHub 58f60205a3 chore(helm): update image docker.io/codercom/code-server 4.96.2 → 4.96.4 (#31037)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/codercom/code-server | patch | `6b8c0e9` -> `f93810f` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:17:27 +00:00
TrueCharts BotandGitHub 5a7be75def chore(helm): update image docker.io/cglatot/pasta 1.6.2 → 1.6.4 (#31035)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/cglatot/pasta | patch | `73d290b` -> `b00f977` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:17:23 +00:00
TrueCharts BotandGitHub 18afe2b378 chore(helm): update image docker.io/automaticrippingmachine/automatic-ripping-machine 2.10.1 → 2.10.3 (#30946)
This PR contains the following updates:

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

---

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

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

---

### Release Notes

<details>
<summary>automatic-ripping-machine/automatic-ripping-machine
(docker.io/automaticrippingmachine/automatic-ripping-machine)</summary>

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

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

#### What's Changed

- \[BUGFIX] Remove Python 3.8 from GitHub workflows by
[@&#8203;microtechno9000](https://redirect.github.com/microtechno9000)
in
[https://github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1278](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1278)

**Full Changelog**:
https://github.com/automatic-ripping-machine/automatic-ripping-machine/compare/2.10.2...2.10.3

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

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

#### What's Changed

- Bump docker/setup-buildx-action from 3.7.1 to 3.8.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1266](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1266)
- Bump docker/metadata-action from 5.5.1 to 5.6.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1244](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1244)
- Bump automaticrippingmachine/arm-dependencies from 1.2.1 to 1.2.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1274](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1274)
- Bump arm-dependencies from `e3879ef` to `900eef3` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1273](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1273)
- \[BUGFIX] debian 12 install script by
[@&#8203;SylvainMT](https://redirect.github.com/SylvainMT) in
[https://github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1109](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine/pull/1109)

**Full Changelog**:
https://github.com/automatic-ripping-machine/automatic-ripping-machine/compare/2.10.1...2.10.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:17:11 +00:00
TrueCharts BotandGitHub 30b364e4ab chore(helm): update image docker.io/benbusby/whoogle-search 0.9.1 → 0.9.3 (#31034)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/benbusby/whoogle-search | patch | `f654c45` -> `213fe1a` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:16:48 +00:00
TrueCharts BotandGitHub 3a26339ecf chore(helm): update image docker.io/alpine/socat 1.8.0.0 → 1.8.0.1 (#31033)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/alpine/socat | patch | `a6be4c0` -> `d95d6a2` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-24 12:16:24 +00:00
TrueCharts BotandGitHub 89ee0230c4 chore(helm): update chart memcached 14.4.0 → 14.4.1 (#31071)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [memcached](https://truecharts.org/charts/stable/memcached)
([source](https://redirect.github.com/bitnami/bitnami-docker-memcached))
| patch | `14.4.0` -> `14.4.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJyZW5vdmF0ZS9oZWxtIiwidHlwZS9wYXRjaCJdfQ==-->
2025-01-24 13:15:33 +01:00
TrueCharts BotandGitHub f5edd22c4a chore(helm): update webtop (#31066)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/webtop | digest | `c8325d7` -> `a088e69` |
| lscr.io/linuxserver/webtop | digest | `6500f30` -> `0528862` |
| lscr.io/linuxserver/webtop | digest | `a8fc78d` -> `7d38f6b` |
| lscr.io/linuxserver/webtop | digest | `895a5cd` -> `639f04f` |
| lscr.io/linuxserver/webtop | digest | `86dcb0d` -> `cbc67b3` |
| lscr.io/linuxserver/webtop | digest | `2b60907` -> `08eca6c` |
| lscr.io/linuxserver/webtop | digest | `d0029a9` -> `237fe8b` |
| lscr.io/linuxserver/webtop | digest | `0378ad2` -> `9bfabe6` |
| lscr.io/linuxserver/webtop | digest | `16d449c` -> `ab2a2f9` |
| lscr.io/linuxserver/webtop | digest | `d1248d7` -> `a52cfec` |
| lscr.io/linuxserver/webtop | digest | `b5b5936` -> `e86a7d5` |
| lscr.io/linuxserver/webtop | digest | `81e1139` -> `b6a66d2` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-01-24 13:12:59 +01:00
TrueCharts BotandGitHub 5373369b1e chore(helm): update image ghcr.io/minekube/gate digest to fd34756 (#31063)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/minekube/gate | digest | `243a3ef` -> `fd34756` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-01-24 13:11:03 +01:00
TrueCharts BotandGitHub 6f547436a5 chore(helm): update image ghcr.io/mintplex-labs/anything-llm digest to f44aeff (#31064)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/mintplex-labs/anything-llm | digest | `edd2934` -> `f44aeff` |

---

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

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2025-01-24 13:10:13 +01:00