Commit Graph

47937 Commits

Author SHA1 Message Date
TrueCharts Bot
8efdeb38c0 chore(helm): update image ghcr.io/linkwarden/linkwarden v2.12.2 → v2.13.0 (#40018)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linkwarden/linkwarden](https://redirect.github.com/linkwarden/linkwarden)
| minor | `c1c6f41` -> `bd3565d` |

---

> [!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.13.0`](https://redirect.github.com/linkwarden/linkwarden/releases/tag/v2.13.0)

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

### Announcing Linkwarden 2.13

Read the full blog: <https://blog.linkwarden.app/releases/2.13>

#### What’s new:

##### 🏷️ New Tag Management Page

We added a dedicated page where you can view, sort, add, bulk merge, and
bulk delete you Tags, all in one place.


<https://github.com/user-attachments/assets/7622db3e-e0c0-4bb3-a5b9-0073dd6fe089>

##### ⚙️ Compact Sidebar

You can now shrink the sidebar for a more compact and minimal look.

##### 🐞 Bug fixes and Optimizations

This release comes with many bug fixes, security fixes, and
optimizations that's recommended for all users.

#####  And more...

There are also a bunch of smaller improvements and fixes in this release
to keep everything running smoothly.

**Full Changelog**:
<https://github.com/linkwarden/linkwarden/compare/v2.12.2...v2.13.0>

#### Want to skip the technical setup?

If you’d rather skip server setup and maintenance, our **[Cloud
Plan](https://linkwarden.app/#pricing)** takes care of everything for
you. It’s a great way to access all of Linkwarden’s features—plus future
updates—without the technical overhead.

***

We hope you enjoy these new enhancements, and as always, we'd like to
express our sincere thanks to all of our supporters and contributors.
Your feedback and contributions have been invaluable in shaping
Linkwarden into what it is today. 🚀

Also, the Official Mobile App for iOS and Android are coming very soon!
Follow us on **[Mastodon](https://fosstodon.org/@&#8203;linkwarden)**,
**[Twitter (X)](https://x.com/linkwardenhq)**, and
**[Bluesky](https://bsky.app/profile/linkwarden.bsky.social)** for the
latest updates.

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-09-25 22:36:36 +02:00
TrueCharts Bot
0eb9490467 fix(website): update astro 5.13.11 → 5.14.0 (#40020)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.13.11` ->
`5.14.0`](https://renovatebot.com/diffs/npm/astro/5.13.11/5.14.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.13.11/5.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

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

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

---

### Release Notes

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

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

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

##### Minor Changes

-
[#&#8203;13520](https://redirect.github.com/withastro/astro/pull/13520)
[`a31edb8`](a31edb8daa)
Thanks [@&#8203;openscript](https://redirect.github.com/openscript)! -
Adds a new property `routePattern` available to `GetStaticPathsOptions`

This provides the original, dynamic segment definition in a routing file
path (e.g. `/[...locale]/[files]/[slug]`) from the Astro render context
that would not otherwise be available within the scope of
`getStaticPaths()`. This can be useful to calculate the `params` and
`props` for each page route.

For example, you can now localize your route segments and return an
array of static paths by passing `routePattern` to a custom
`getLocalizedData()` helper function. The `params` object will be set
with explicit values for each route segment (e.g. `locale`, `files`, and
`slug)`. Then, these values will be used to generate the routes and can
be used in your page template via `Astro.params`.

  ```astro
  // src/pages/[...locale]/[files]/[slug].astro

import { getLocalizedData } from "../../../utils/i18n"; export async
function getStaticPaths({ routePattern
}) { const response = await fetch('...'); const data = await
response.json(); console.log(routePattern);
// [...locale]/[files]/[slug] // Call your custom helper with
`routePattern` to generate the static
paths return data.flatMap((file) => getLocalizedData(file,
routePattern)); } const { locale, files,
  slug } = Astro.params;
  ```

For more information about this advanced routing pattern, see Astro's
[routing
reference](https://docs.astro.build/en/reference/routing-reference/#routepattern).

-
[#&#8203;13651](https://redirect.github.com/withastro/astro/pull/13651)
[`dcfbd8c`](dcfbd8c9d5)
Thanks [@&#8203;ADTC](https://redirect.github.com/ADTC)! - Adds a new
`SvgComponent` type

You can now more easily enforce type safety for your `.svg` assets by
directly importing `SVGComponent` from `astro/types`:

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-09-25 22:36:20 +02:00
TrueCharts Bot
f5468d2c23 chore(helm): update image ghcr.io/linuxserver/webgrabplus digest to e3dfd25 (#40010)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/webgrabplus](https://redirect.github.com/linuxserver/docker-webgrabplus/packages)
([source](https://redirect.github.com/linuxserver/docker-webgrabplus)) |
digest | `4899857` -> `e3dfd25` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 22:35:28 +02:00
TrueCharts Bot
94dce3e210 chore(helm): update image docker.io/docuseal/docuseal digest to 187b3f3 (#40009)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/docuseal/docuseal | digest | `c0316bf` -> `187b3f3` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 22:34:58 +02:00
TrueCharts Bot
d0bbb85cd8 chore(helm): update image docker.io/filebrowser/filebrowser v2.43.0 → v2.44.0 (#40017)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/filebrowser/filebrowser](https://redirect.github.com/filebrowser/filebrowser)
| minor | `1d0bcba` -> `f633694` |

---

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

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

[Compare
Source](https://redirect.github.com/filebrowser/filebrowser/compare/v2.43.0...v2.44.0)

#### Changelog

-
[`878cdfb`](878cdfbc52)
chore(release): 2.44.0
-
[`1165f00`](1165f00bd4)
feat: Updates for project File Browser
([#&#8203;5457](https://redirect.github.com/filebrowser/filebrowser/issues/5457))
-
[`949ddff`](949ddffef2)
fix: some formatting issues with i18n files
-
[`c472542`](c4725428e0)
fix: computation of file path
-
[`d29ad35`](d29ad356d1)
feat: Improved path display in the new file and directory modal
([#&#8203;5451](https://redirect.github.com/filebrowser/filebrowser/issues/5451))
-
[`692ca5e`](692ca5eaf0)
fix(upload): throttle upload speed calculation to 100ms to avoid
Infinity MB/s
([#&#8203;5456](https://redirect.github.com/filebrowser/filebrowser/issues/5456))
-
[`b9787c7`](b9787c78f3)
feat: allow setting ace editor theme
([#&#8203;3826](https://redirect.github.com/filebrowser/filebrowser/issues/3826))
-
[`dec7a02`](dec7a02737)
feat: Translate frontend/src/i18n/en.json in no
-
[`0eade71`](0eade717ce)
feat: Updates for project File Browser
([#&#8203;5450](https://redirect.github.com/filebrowser/filebrowser/issues/5450))
-
[`e6c674b`](e6c674b3c6)
fix: show login when session token expires
-
[`4ff247e`](4ff247e134)
feat: Updates for project File Browser
([#&#8203;5446](https://redirect.github.com/filebrowser/filebrowser/issues/5446))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-09-25 22:34:12 +02:00
TrueCharts Bot
00c375f60b chore(helm): update image quay.io/backube/volsync 0.13.0 → 0.13.1 (#40015) 2025-09-25 22:34:02 +02:00
TrueCharts Bot
fc4b74be53 chore(helm): update image docker.io/vabene1111/recipes 2.2.6 → 2.2.7 (#40014)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/vabene1111/recipes](https://redirect.github.com/TandoorRecipes/recipes)
| patch | `6cfe563` -> `bbafaa1` |

---

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

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

---

### Release Notes

<details>
<summary>TandoorRecipes/recipes (docker.io/vabene1111/recipes)</summary>

###
[`v2.2.7`](https://redirect.github.com/TandoorRecipes/recipes/releases/tag/2.2.7)

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

- **fixed** edge cases in mealie 1 importer
[#&#8203;4071](https://redirect.github.com/TandoorRecipes/recipes/issues/4071)
- **fixed** missing postgres extension migration for new installations
[#&#8203;4070](https://redirect.github.com/TandoorRecipes/recipes/issues/4070)
- **fixed** creating ingredient in unsaved recipe could focus on wrong
step

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 22:33:52 +02:00
TrueCharts Bot
df6e5f790b chore(helm): update image docker.io/clickhouse/clickhouse-server 25.8.6.11 → 25.8.7.3 (#40013)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/clickhouse/clickhouse-server | patch | `0bc0928` ->
`4769c09` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 22:32:36 +02:00
TrueCharts Bot
843fff52bd chore(helm): update image docker.io/diygod/rsshub digest to 72d6995 (#40008)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/diygod/rsshub | digest | `d5182bf` -> `72d6995` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 22:30:52 +02:00
TrueCharts Bot
0a93f8b06b chore(container): update docker.io/renovate/renovate docker tag to v41.130.2 (#40011)
This PR contains the following updates:

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

---

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

---

### Release Notes

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

###
[`v41.130.2`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.130.2)

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

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v3.30.4 (main)
([#&#8203;38225](https://redirect.github.com/renovatebot/renovate/issues/38225))
([48a4989](48a498989e))

##### Build System

- **deps:** update dependency
[@&#8203;sindresorhus/is](https://redirect.github.com/sindresorhus/is)
to v7.1.0 (main)
([#&#8203;38139](https://redirect.github.com/renovatebot/renovate/issues/38139))
([d9a2a96](d9a2a96503))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 22:27:02 +02:00
TrueCharts Bot
0801e391ea chore(helm): update image ghcr.io/linuxserver/jackett 0.23.59 → 0.23.62 (#40006)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/jackett](https://redirect.github.com/linuxserver/docker-jackett/packages)
([source](https://redirect.github.com/linuxserver/docker-jackett)) |
patch | `6b6432c` -> `2aff028` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 13:49:48 +02:00
TrueCharts Bot
eea383df2e chore(helm): update image docker.io/vabene1111/recipes 2.2.4 → 2.2.6 (#40005)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/vabene1111/recipes](https://redirect.github.com/TandoorRecipes/recipes)
| patch | `7407993` -> `6cfe563` |

---

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

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

---

### Release Notes

<details>
<summary>TandoorRecipes/recipes (docker.io/vabene1111/recipes)</summary>

###
[`v2.2.6`](https://redirect.github.com/TandoorRecipes/recipes/releases/tag/2.2.6)

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

- **fixed** step editor layout

###
[`v2.2.5`](https://redirect.github.com/TandoorRecipes/recipes/releases/tag/2.2.5)

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

- **improved** auto grow text area when writing recipe comments
- **fixed** property editor page not updating when adding 0 values
- **fixed** increased maximum dropbox token length
[#&#8203;3103](https://redirect.github.com/TandoorRecipes/recipes/issues/3103)
- **fixed** layout issue in some resolutions breaking recipe ingredients
input
- **fixed** ingredients without unit not being displayed in steps
overview
[#&#8203;4069](https://redirect.github.com/TandoorRecipes/recipes/issues/4069)

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 13:49:34 +02:00
TrueCharts Bot
bef7262dcf chore(helm): update image docker.io/diygod/rsshub digest to d5182bf (#40002)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/diygod/rsshub | digest | `ecadc4c` -> `d5182bf` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 13:48:36 +02:00
TrueCharts Bot
acc426e087 chore(helm): update image ghcr.io/linuxserver/mysql-workbench digest to 7e4e794 (#40003)
This PR contains the following updates:

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

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 13:48:31 +02:00
TrueCharts Bot
1208020732 chore(helm): update image docker.io/automaticrippingmachine/automatic-ripping-machine digest to ff3e675 (#40001)
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)
| digest | `a1c3e9a` -> `ff3e675` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 13:48:06 +02:00
TrueCharts Bot
a6f8d2ce2b chore(flux): update image longhorn 1.9.2 → 1.10.0 (clustertool) (#40007) 2025-09-25 13:46:13 +02:00
TrueCharts Bot
e8d0fe47f3 chore(container): update docker.io/renovate/renovate docker tag to v41.130.1 (#40004)
This PR contains the following updates:

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

---

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

---

### Release Notes

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

###
[`v41.130.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.130.1)

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

##### Miscellaneous Chores

- **deps:** update dependency
[@&#8203;smithy/util-stream](https://redirect.github.com/smithy/util-stream)
to v4.3.2 (main)
([#&#8203;38214](https://redirect.github.com/renovatebot/renovate/issues/38214))
([7ae30a9](7ae30a935a))
- **deps:** update dependency
[@&#8203;types/node](https://redirect.github.com/types/node) to v22.18.6
(main)
([#&#8203;38216](https://redirect.github.com/renovatebot/renovate/issues/38216))
([f72a376](f72a376d45))
- **deps:** update dependency vite to v7.1.6 (main)
([#&#8203;38217](https://redirect.github.com/renovatebot/renovate/issues/38217))
([53eef4b](53eef4b423))

##### Build System

- **deps:** update dependency p-all to v5.0.1 (main)
([#&#8203;38218](https://redirect.github.com/renovatebot/renovate/issues/38218))
([a535db7](a535db7a35))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 13:46:03 +02:00
TrueCharts Bot
9205988db8 chore(helm): update image ghcr.io/home-operations/emby 4.9.1.35 → 4.9.1.36 (#39996)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/home-operations/emby](https://ghcr.io/home-operations/emby)
([source](https://redirect.github.com/MediaBrowser/Emby.Releases)) |
patch | `495aa93` -> `5c8dc62` |

---

> [!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>MediaBrowser/Emby.Releases
(ghcr.io/home-operations/emby)</summary>

###
[`v4.9.1.36`](https://redirect.github.com/MediaBrowser/Emby.Releases/releases/tag/4.9.1.36):
-beta

[Compare
Source](https://redirect.github.com/MediaBrowser/Emby.Releases/compare/4.9.1.35...4.9.1.36)

- Fix cases of custom playlist images getting replaced

Cumulative changes since stable release:

- Improve library scan performance
- Improve live tv guide refresh performance
- Improve database performance
- Update to .NET 8
- Update to sqlite 3.49.2
- Support macOS on all betas going forward
- Support viewing books in the web app in pdf, epub, mobi, cbz, fb2 and
other formats.
- Add new maintenance mode feature
- Add up key action option to video player
- Add tv mode display setting to show remote control functions
- Add network request protocol option to server network settings
- Update ffmpeg with fixes related to image extraction and OpenCL
- Improve performance of the realtime monitor
- Increase remote quality default value
- Fix collection content restrictions with search
- Fix video rotation when transcoding
- Debut of new WebStreams plugin
- Add library option to merge contents of top level folders in folder
view
- Fix year being doubled in recording folder names
- Fix trailer metadata being lost on refresh channels scheduled task
- Improve results of multi-word searches
- Add user option to hide spoiler information from unwatched episodes
- Split remote quality setting into two, remote and cellular
- Support changing subtitle appearance settings during video playback
- Add Video codec, audio codec and framerate selectable and sortable
fields
- Reorganize user and app settings
- Add experimental hevc transcoding option
- Add option to limit resolution of all transcoding to conserve server
resources
- Add user preference to exclude libraries from search
- Fix special episodes affecting unplayed episode counts
- Improve hevc bitrate with conversion feature
- Show three recent items in add to collection and add to playlist
- Add copy user data as an option when creating a new user and
initializing with data from another user
- Add option for folder view to auto open single items in folders
- Support fb2 book extension
- Shorten display name for episode extras
- Support external audio tracks for movies and episodes
- Add Duplicates library filter
- Add library options to control whether multi-part detection is enabled
- Add library options to control whether multi-version detection is
enabled
- Support playback correction in the web app
- Add a sleep timer menu option in the web app audio player
- Improve title for external SDH subtitles
- Add A-Z picker to add to collection/playlist
- Support date played as a selectable field in poster view
- Add library options to control generation of chapters when none are
embedded within video files
- Improve usage of embedded .ass fonts in the web app
- Separate specials from episodes on series detail screen
- Improve title for external subtitles
- Artist sorting fixes
- Improve camera upload error handling
- Fix people search not respecting library access
- Sorting fixes for items with long digits in name
- Add episode title to recording notifications
- Fix person sort order
- macOS networking fixes
- Smb file system fixes
- Support locking artists
- Rtsp protocol fixes
- Improve separation of music and audiobook content in favorites
- Remove songs section from audiobook author screen
- Support setting shuffle state in audio player
- Add Polish ratings
- Fixes for sorting multi-part files
- Improve titles and descriptions for numerous notifications
- Fix scanning quirks with season scanning without season folders
- Fix 3D flag being lost in some cases on initial import
- Add Group By option on collection screens to choose between grouping
collection items by media type or displaying all items in a single list
- Transcoding fixes for audio only strm files
- Increase image extraction timeout
- Show ratings from all libraries on user config screen
- Improve played filter for series in folder view
- Improve searching for titles with dots in the name
- Improve Emby Connect address reporting after network changes
- Fix incorrect number of tracks displayed for a music artist
- Run database integrity checks before backups
- Add date to notification descriptions
- M3U Live TV regression fix
- Fix sorting by composers and artists when there are multiple values
- Add prompt for playback when a channel is recording
- Support incremental seek speed using arrow keys
- Show more rows in video OSD guide
- Support launching videos from photo slideshow
- Auto-scroll the guide to the last played channel
- Factor in disc number to audio image uniqueness when extracting images
from audio files
- Fix import collection options not showing in Emby library setup
- Fix error after adding a new person using the metadata editor
- Improve chapter support with multi-version videos
- Fix series scanning regression related to year in folder name
- Improve camera upload error handling
- Support alternative encodings of playlist files
- Improve photo scanning error handling
- Support multiple episodedetails nodes in nfo files
- Add workaround for older Dlna devices to fix playback failures
- Fix temp files from database backup process not being cleaned up
- Add channel groups picker above the guide
- Improve remote image content-type detection
- Fix playlist library folder not generating an image
- Start running hardware detection earlier on startup to try and avoid
playback errors
- Support drag and drop reordering of transcoding codec settings
- Portuguese tv naming fixes
- Support ja-jp language code
- Fix CA-A parental rating value
- Improve server log anonymization
- Adjust timing calculations for unaired/missing episodes
- Fix incorrect items when shuffling or playing all on a music genre
- Increase realtime monitor delay to help avoid repeated scanning
- Support drag and drop reordering in home screen settings library order
- Support drag and drop reordering in the metadata editor for genres,
tags, people and studios
- Fix extras being played with remote control play commands
- Fix external dvdsub delivery
- Support launching videos from slideshow
- Prompt user when playing live channel with an active recording to ask
if they want to start from the current live position or the start of the
recording
- Convert subtitle offset dialog to a slider
- Fix unable to lock People
- Fix person nfo not being saved
- Set container field when importing all books
- Search all subtitle providers on manual subtitle downloads
- Fix collections getting lost after subtitle downloading when no nfo
file is present
- Fix intermittent issue of new recordings not having media info
- Various content visibility fixes for newly created libraries
- Fix more like this not hiding played media when the option is set
- Fix sporadic cases of live streams ending early
- Fix multiple live tv views showing
- Add series recording option to check all libraries for existing
episodes
- Restore collections library
- Fix adult metadata option not being used with Identify
- Add option to group notifications
- Fix rotation value for videos not being saved
- Fix genres tab missing from music videos library
- Support inherited images for music videos
- Add date last episode aired sort order to tv shows
- Support drag and drop reordering in all library settings
- Add playback speed directly to video player OSD
- Add up next to video OSD
- Support -other for extras
- Fix Live TV view not being hidden after removing Live TV from the
server
- Fix manage collaboration showing for playlists when permission to
share personal content is denied
- Add photo slideshow time per slide option
- Add Play Slideshow context menu action for photos
- Fix links section not showing for Collections
- Fix .sdh missing from subtitle download file name
- Refresh metadata on tracks when music albums are refreshed
- Fix Referer header in log not being anonymized
- Fix thumbnails for extras not being created

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 09:57:47 +00:00
TrueCharts Bot
21cba98d9e chore(helm): update image docker.io/vabene1111/recipes 2.2.3 → 2.2.4 (#39995)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/vabene1111/recipes](https://redirect.github.com/TandoorRecipes/recipes)
| patch | `93f775f` -> `7407993` |

---

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

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

---

### Release Notes

<details>
<summary>TandoorRecipes/recipes (docker.io/vabene1111/recipes)</summary>

###
[`v2.2.4`](https://redirect.github.com/TandoorRecipes/recipes/releases/tag/2.2.4)

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

- **added** AI based recipe step and ingredient sorter
- **added** AI based food properties import
- **added** delete page for many objects, showing what is preventing a
delete or is affected by it
[#&#8203;3758](https://redirect.github.com/TandoorRecipes/recipes/issues/3758)
- **added** step sorting button to all steps
- **added** lots of new translations (thanks to the awesome people
working on translate.tandoor.dev)
- **added** button to invite links on space member management page
[#&#8203;4055](https://redirect.github.com/TandoorRecipes/recipes/issues/4055)
- **added** more special recipe unicode characters to be recognized in
import
- **added** import button to shared recipes
- **added** ability to duplicate recipes
- **improved** all number inputs use the correct localized decimal
Separator
[#&#8203;4052](https://redirect.github.com/TandoorRecipes/recipes/issues/4052)
- **improved** retain steps during recipe import if provided in source
data
- **fixed** setting global/space only for AI provider
- **fixed** ordering of AI providers random
- **fixed** open data importer
[#&#8203;4058](https://redirect.github.com/TandoorRecipes/recipes/issues/4058)
- **fixed** staticfiles error when loading tandoor
[#&#8203;4064](https://redirect.github.com/TandoorRecipes/recipes/issues/4064)
- **fixed** recipe search updated at filter
[#&#8203;4064](https://redirect.github.com/TandoorRecipes/recipes/issues/4064)
- **fixed** nginx error pages not working
[#&#8203;3961](https://redirect.github.com/TandoorRecipes/recipes/issues/3961)
- **updated** synology install docs (thanks to
[Nailik](https://redirect.github.com/Nailik)
[#&#8203;4060](https://redirect.github.com/TandoorRecipes/recipes/issues/4060))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 09:57:19 +00:00
TrueCharts Bot
b6fdf1d5f5 chore(helm): update chart clickhouse 16.8.1 → 16.8.2 (#39988)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [clickhouse](https://truecharts.org/charts/stable/clickhouse)
([source](https://clickhouse.com/)) | patch | `16.8.1` -> `16.8.2` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL3BhdGNoIl19-->
2025-09-25 09:57:03 +00:00
Soumyadeep Dey
ef8193eb7b fix(docs) (#39987)
Corrected the phrasing regarding the AGPL-v3 license in the README.

**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

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

**🧪 How Has This Been Tested?**
<!--
i just changed an simple grammar in readme.
-->

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

**✔️ Checklist:**

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

** App addition**

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

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

Signed-off-by: Soumyadeep Dey <95275364+SoumyaEXE@users.noreply.github.com>
2025-09-25 11:50:32 +02:00
TrueCharts Bot
3666537427 chore(helm): update image docker.io/ghostfolio/ghostfolio 2.200.0 → 2.201.0 (#39999) 2025-09-25 07:49:19 +02:00
TrueCharts Bot
e2a18b8399 chore(helm): update image ghcr.io/linuxserver/speedtest-tracker 1.6.7 → 1.6.8 (#39997)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/speedtest-tracker](https://redirect.github.com/linuxserver/docker-speedtest-tracker/packages)
([source](https://redirect.github.com/linuxserver/docker-speedtest-tracker))
| patch | `5df987a` -> `33f5430` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 07:49:15 +02:00
TrueCharts Bot
700dc9c4f4 chore(helm): update image docker.io/ollama/ollama 0.12.1 → 0.12.2 (#39994) 2025-09-25 07:47:43 +02:00
TrueCharts Bot
c4de8c4f5a chore(helm): update image docker.io/metabase/metabase v0.56.6 → v0.56.7 (#39993)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/metabase/metabase | patch | `953cc94` -> `55cd5d7` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-25 07:47:38 +02:00
TrueCharts Bot
0447b2490c chore(helm): update image docker.io/revenz/fileflows digest to 39dd51a (#39991)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/revenz/fileflows | digest | `a868d25` -> `39dd51a` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 05:46:19 +00:00
TrueCharts Bot
5c3a175c39 chore(helm): update image docker.io/clamav/clamav digest to 7f9545e (#39989)
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)) | digest |
`5e8021f` -> `7f9545e` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 07:45:50 +02:00
TrueCharts Bot
b1b8d69dd1 chore(helm): update image docker.io/nginxinc/nginx-unprivileged digest to b58f87c (#39990)
This PR contains the following updates:

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

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 07:45:43 +02:00
TrueCharts Bot
de3ba8c00a chore(helm): update image ghcr.io/linuxserver/filezilla digest to d8535af (#39992)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/filezilla](https://redirect.github.com/linuxserver/docker-filezilla/packages)
([source](https://redirect.github.com/linuxserver/docker-filezilla)) |
digest | `79af775` -> `d8535af` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-25 07:44:29 +02:00
TrueCharts Bot
0e34201b48 chore(container): update docker.io/renovate/renovate docker tag to v41.130.0 (#39998)
This PR contains the following updates:

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

---

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

---

### Release Notes

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

###
[`v41.130.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.130.0)

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

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v10.49.0
(main)
([#&#8203;38213](https://redirect.github.com/renovatebot/renovate/issues/38213))
([72b2ad6](72b2ad62de))

###
[`v41.129.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.129.0)

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

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v10.48.0
(main)
([#&#8203;38211](https://redirect.github.com/renovatebot/renovate/issues/38211))
([46ab4cb](46ab4cb05d))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v3.13.8 (main)
([#&#8203;38206](https://redirect.github.com/renovatebot/renovate/issues/38206))
([30315d1](30315d1af0))
- **deps:** update dependency esbuild to v0.25.10 (main)
([#&#8203;38208](https://redirect.github.com/renovatebot/renovate/issues/38208))
([e9b6619](e9b6619562))
- **deps:** update dependency node to v22.20.0 (main)
([#&#8203;38209](https://redirect.github.com/renovatebot/renovate/issues/38209))
([f5dbf4a](f5dbf4ab37))
- **deps:** update dependency pnpm to v10.17.0 (main)
([#&#8203;38207](https://redirect.github.com/renovatebot/renovate/issues/38207))
([9f58849](9f58849000))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-09-25 07:40:30 +02:00
TrueCharts Bot
099fbb79af chore(helm): update image ghcr.io/n8n-io/n8n 1.113.1 → 1.113.2 (#39983)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/n8n-io/n8n](https://n8n.io)
([source](https://redirect.github.com/n8n-io/n8n)) | patch | `e9ef47b`
-> `4c1ba1a` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-24 19:31:37 +02:00
TrueCharts Bot
2c38a49173 chore(deps): update node.js v22.19.0 → v22.20.0 (#39986)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [node](https://nodejs.org)
([source](https://redirect.github.com/nodejs/node)) | minor | `22.19.0`
-> `22.20.0` |

---

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

---

### Release Notes

<details>
<summary>nodejs/node (node)</summary>

###
[`v22.20.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.20.0):
2025-09-24, Version 22.20.0 &#x27;Jod&#x27; (LTS), @&#8203;richardlau

[Compare
Source](https://redirect.github.com/nodejs/node/compare/v22.19.0...v22.20.0)

##### Notable Changes

##### OpenSSL updated to 3.5.2

For official Node.js builds, or builds using the default build
configuration, Node.js now bundles OpenSSL 3.5.2. This update allows
Node.js 22.x to be supported through to the planned End-of-Life date of
2027-04-30 as the previously bundled OpenSSL 3.0.x goes out of support
in September 2026.

This change does not affect third-party builds of Node.js that link to
an external OpenSSL (or OpenSSL-compatible) library.

##### Other notable changes

-
\[[`5b83e1e0a2`](https://redirect.github.com/nodejs/node/commit/5b83e1e0a2)]
- **crypto**: update root certificates to NSS 3.114 (Node.js GitHub Bot)
[#&#8203;59571](https://redirect.github.com/nodejs/node/pull/59571)
-
\[[`34b25fd97b`](https://redirect.github.com/nodejs/node/commit/34b25fd97b)]
- **doc**: stabilize --disable-sigusr1 (Rafael Gonzaga)
[#&#8203;59707](https://redirect.github.com/nodejs/node/pull/59707)
-
\[[`bf41218ed9`](https://redirect.github.com/nodejs/node/commit/bf41218ed9)]
- **doc**: mark `path.matchesGlob` as stable (Aviv Keller)
[#&#8203;59572](https://redirect.github.com/nodejs/node/pull/59572)
-
\[[`1dbad2058f`](https://redirect.github.com/nodejs/node/commit/1dbad2058f)]
- **(SEMVER-MINOR)** **http**: add Agent.agentKeepAliveTimeoutBuffer
option (Haram Jeong)
[#&#8203;59315](https://redirect.github.com/nodejs/node/pull/59315)
-
\[[`062e837d5f`](https://redirect.github.com/nodejs/node/commit/062e837d5f)]
- **(SEMVER-MINOR)** **http2**: add support for raw header arrays in
h2Stream.respond() (Tim Perry)
[#&#8203;59455](https://redirect.github.com/nodejs/node/pull/59455)
-
\[[`b8066611c3`](https://redirect.github.com/nodejs/node/commit/b8066611c3)]
- **inspector**: add http2 tracking support (Darshan Sen)
[#&#8203;59611](https://redirect.github.com/nodejs/node/pull/59611)
-
\[[`9b7dd40da8`](https://redirect.github.com/nodejs/node/commit/9b7dd40da8)]
- **(SEMVER-MINOR)** **sea**: implement execArgvExtension (Joyee Cheung)
[#&#8203;59560](https://redirect.github.com/nodejs/node/pull/59560)
-
\[[`48bfbd3dca`](https://redirect.github.com/nodejs/node/commit/48bfbd3dca)]
- **(SEMVER-MINOR)** **sea**: support execArgv in sea config (Joyee
Cheung)
[#&#8203;59314](https://redirect.github.com/nodejs/node/pull/59314)
-
\[[`cf06e74076`](https://redirect.github.com/nodejs/node/commit/cf06e74076)]
- **(SEMVER-MINOR)** **stream**: add brotli support to CompressionStream
and DecompressionStream (Matthew Aitken)
[#&#8203;59464](https://redirect.github.com/nodejs/node/pull/59464)
-
\[[`62bb80c17e`](https://redirect.github.com/nodejs/node/commit/62bb80c17e)]
- **(SEMVER-MINOR)** **test\_runner**: support object property mocking
(Idan Goshen)
[#&#8203;58438](https://redirect.github.com/nodejs/node/pull/58438)
-
\[[`9e2aa23be9`](https://redirect.github.com/nodejs/node/commit/9e2aa23be9)]
- **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker
(theanarkh)
[#&#8203;59428](https://redirect.github.com/nodejs/node/pull/59428)

##### Commits

-
\[[`b7b78fd565`](https://redirect.github.com/nodejs/node/commit/b7b78fd565)]
- **assert**: cap input size in myersDiff to avoid Int32Array overflow
(Haram Jeong)
[#&#8203;59578](https://redirect.github.com/nodejs/node/pull/59578)
-
\[[`9da50a6c53`](https://redirect.github.com/nodejs/node/commit/9da50a6c53)]
- **benchmark**: sqlite prevent create both tables on prepare selects
(Bruno Rodrigues)
[#&#8203;59709](https://redirect.github.com/nodejs/node/pull/59709)
-
\[[`4c1538770e`](https://redirect.github.com/nodejs/node/commit/4c1538770e)]
- **benchmark**: calibrate config array-vs-concat (Rafael Gonzaga)
[#&#8203;59587](https://redirect.github.com/nodejs/node/pull/59587)
-
\[[`fc3f82d683`](https://redirect.github.com/nodejs/node/commit/fc3f82d683)]
- **benchmark**: calibrate config v8/serialize.js (Rafael Gonzaga)
[#&#8203;59586](https://redirect.github.com/nodejs/node/pull/59586)
-
\[[`e95c9b2950`](https://redirect.github.com/nodejs/node/commit/e95c9b2950)]
- **benchmark**: reduce readfile-permission-enabled config (Rafael
Gonzaga)
[#&#8203;59589](https://redirect.github.com/nodejs/node/pull/59589)
-
\[[`e4fea38b31`](https://redirect.github.com/nodejs/node/commit/e4fea38b31)]
- **benchmark**: calibrate length of util.diff (Rafael Gonzaga)
[#&#8203;59588](https://redirect.github.com/nodejs/node/pull/59588)
-
\[[`c5d68c4a0f`](https://redirect.github.com/nodejs/node/commit/c5d68c4a0f)]
- **benchmark, test**: replace CRLF variable with string literal (Lee
Jiho)
[#&#8203;59466](https://redirect.github.com/nodejs/node/pull/59466)
-
\[[`129a1d673b`](https://redirect.github.com/nodejs/node/commit/129a1d673b)]
- **build**: fix getting OpenSSL version on Windows (Michaël Zasso)
[#&#8203;59609](https://redirect.github.com/nodejs/node/pull/59609)
-
\[[`9f53db7162`](https://redirect.github.com/nodejs/node/commit/9f53db7162)]
- **build**: fix 'implicit-function-declaration' on OpenHarmony platform
(hqzing)
[#&#8203;59547](https://redirect.github.com/nodejs/node/pull/59547)
-
\[[`3839593e07`](https://redirect.github.com/nodejs/node/commit/3839593e07)]
- **build**: use `windows-2025` runner (Michaël Zasso)
[#&#8203;59673](https://redirect.github.com/nodejs/node/pull/59673)
-
\[[`e430464669`](https://redirect.github.com/nodejs/node/commit/e430464669)]
- **build**: compile bundled uvwasi conditionally (Carlo Cabrera)
[#&#8203;59622](https://redirect.github.com/nodejs/node/pull/59622)
-
\[[`e2c9cab0cd`](https://redirect.github.com/nodejs/node/commit/e2c9cab0cd)]
- **build**: do not set `-mminimal-toc` with `clang` (Richard Lau)
[#&#8203;59484](https://redirect.github.com/nodejs/node/pull/59484)
-
\[[`208bc810a1`](https://redirect.github.com/nodejs/node/commit/208bc810a1)]
- **child\_process**: remove unsafe array iteration (hotpineapple)
[#&#8203;59347](https://redirect.github.com/nodejs/node/pull/59347)
-
\[[`d74799d90c`](https://redirect.github.com/nodejs/node/commit/d74799d90c)]
- **crypto**: load system CA certificates off thread (Joyee Cheung)
[#&#8203;59550](https://redirect.github.com/nodejs/node/pull/59550)
-
\[[`5b83e1e0a2`](https://redirect.github.com/nodejs/node/commit/5b83e1e0a2)]
- **crypto**: update root certificates to NSS 3.114 (Node.js GitHub Bot)
[#&#8203;59571](https://redirect.github.com/nodejs/node/pull/59571)
-
\[[`d289b1d1af`](https://redirect.github.com/nodejs/node/commit/d289b1d1af)]
- **deps**: V8: cherry-pick
[`e3df60f`](https://redirect.github.com/nodejs/node/commit/e3df60f3f5ab)
(Chengzhong Wu)
[#&#8203;58691](https://redirect.github.com/nodejs/node/pull/58691)
-
\[[`cf5d91e2a6`](https://redirect.github.com/nodejs/node/commit/cf5d91e2a6)]
- **deps**: update uvwasi to 0.0.23 (Node.js GitHub Bot)
[#&#8203;59791](https://redirect.github.com/nodejs/node/pull/59791)
-
\[[`1cf24a0445`](https://redirect.github.com/nodejs/node/commit/1cf24a0445)]
- **deps**: update histogram to 0.11.9 (Node.js GitHub Bot)
[#&#8203;59689](https://redirect.github.com/nodejs/node/pull/59689)
-
\[[`8638bd3f2e`](https://redirect.github.com/nodejs/node/commit/8638bd3f2e)]
- **deps**: update googletest to
[`eb2d85e`](https://redirect.github.com/nodejs/node/commit/eb2d85e)
(Node.js GitHub Bot)
[#&#8203;59335](https://redirect.github.com/nodejs/node/pull/59335)
-
\[[`3ff4eb5b37`](https://redirect.github.com/nodejs/node/commit/3ff4eb5b37)]
- **deps**: update amaro to 1.1.2 (Node.js GitHub Bot)
[#&#8203;59616](https://redirect.github.com/nodejs/node/pull/59616)
-
\[[`4d268ac034`](https://redirect.github.com/nodejs/node/commit/4d268ac034)]
- **deps**: V8: cherry-pick
[`7b91e3e`](https://redirect.github.com/nodejs/node/commit/7b91e3e2cbaf)
(Milad Fa)
[#&#8203;59485](https://redirect.github.com/nodejs/node/pull/59485)
-
\[[`83410eb0e3`](https://redirect.github.com/nodejs/node/commit/83410eb0e3)]
- **deps**: V8: cherry-pick
[`59d52e3`](https://redirect.github.com/nodejs/node/commit/59d52e311bb1)
(Milad Fa)
[#&#8203;59485](https://redirect.github.com/nodejs/node/pull/59485)
-
\[[`5780af02cb`](https://redirect.github.com/nodejs/node/commit/5780af02cb)]
- **deps**: update amaro to 1.1.1 (Node.js GitHub Bot)
[#&#8203;59141](https://redirect.github.com/nodejs/node/pull/59141)
-
\[[`2986eca821`](https://redirect.github.com/nodejs/node/commit/2986eca821)]
- **deps**: V8: cherry-pick
[`6b1b9bc`](https://redirect.github.com/nodejs/node/commit/6b1b9bca2a8)
(zhoumingtao)
[#&#8203;59283](https://redirect.github.com/nodejs/node/pull/59283)
-
\[[`98e399b3ea`](https://redirect.github.com/nodejs/node/commit/98e399b3ea)]
- **deps**: update archs files for openssl-3.5.2 (Node.js GitHub Bot)
[#&#8203;59371](https://redirect.github.com/nodejs/node/pull/59371)
-
\[[`2b983a7520`](https://redirect.github.com/nodejs/node/commit/2b983a7520)]
- **deps**: upgrade openssl sources to openssl-3.5.2 (Node.js GitHub
Bot) [#&#8203;59371](https://redirect.github.com/nodejs/node/pull/59371)
-
\[[`7ffbb42454`](https://redirect.github.com/nodejs/node/commit/7ffbb42454)]
- **deps**: update archs files for openssl-3.5.1 (Node.js GitHub Bot)
[#&#8203;59234](https://redirect.github.com/nodejs/node/pull/59234)
-
\[[`bd48a60a75`](https://redirect.github.com/nodejs/node/commit/bd48a60a75)]
- **deps**: upgrade openssl sources to openssl-3.5.1 (Node.js GitHub
Bot) [#&#8203;59234](https://redirect.github.com/nodejs/node/pull/59234)
-
\[[`24762a10ca`](https://redirect.github.com/nodejs/node/commit/24762a10ca)]
- **deps**: fix OpenSSL security level at 1 (Richard Lau)
[#&#8203;59859](https://redirect.github.com/nodejs/node/pull/59859)
-
\[[`1233e92d10`](https://redirect.github.com/nodejs/node/commit/1233e92d10)]
- **diagnostics\_channel**: revoke DEP0163 (René)
[#&#8203;59758](https://redirect.github.com/nodejs/node/pull/59758)
-
\[[`34b25fd97b`](https://redirect.github.com/nodejs/node/commit/34b25fd97b)]
- **doc**: stabilize --disable-sigusr1 (Rafael Gonzaga)
[#&#8203;59707](https://redirect.github.com/nodejs/node/pull/59707)
-
\[[`d7adf8be64`](https://redirect.github.com/nodejs/node/commit/d7adf8be64)]
- **doc**: update "Type stripping in dependencies" section (Josh Kelley)
[#&#8203;59652](https://redirect.github.com/nodejs/node/pull/59652)
-
\[[`a1d7e4fdbf`](https://redirect.github.com/nodejs/node/commit/a1d7e4fdbf)]
- **doc**: add Miles Guicent as triager (Miles Guicent)
[#&#8203;59562](https://redirect.github.com/nodejs/node/pull/59562)
-
\[[`bf41218ed9`](https://redirect.github.com/nodejs/node/commit/bf41218ed9)]
- **doc**: mark `path.matchesGlob` as stable (Aviv Keller)
[#&#8203;59572](https://redirect.github.com/nodejs/node/pull/59572)
-
\[[`afaa1ccb74`](https://redirect.github.com/nodejs/node/commit/afaa1ccb74)]
- **doc**: improve documentation for raw headers in HTTP/2 APIs (Tim
Perry)
[#&#8203;59633](https://redirect.github.com/nodejs/node/pull/59633)
-
\[[`b95ff56102`](https://redirect.github.com/nodejs/node/commit/b95ff56102)]
- **doc**: update install\_tools.bat free disk space (Stefan Stojanovic)
[#&#8203;59579](https://redirect.github.com/nodejs/node/pull/59579)
-
\[[`6ff939b8d3`](https://redirect.github.com/nodejs/node/commit/6ff939b8d3)]
- **doc**: fix filehandle.read typo (Ruy Adorno)
[#&#8203;59635](https://redirect.github.com/nodejs/node/pull/59635)
-
\[[`963bfa9d6f`](https://redirect.github.com/nodejs/node/commit/963bfa9d6f)]
- **doc**: fix missing link to the Error documentation in the `http`
page (Alexander Makarenko)
[#&#8203;59080](https://redirect.github.com/nodejs/node/pull/59080)
-
\[[`0e10a8ea27`](https://redirect.github.com/nodejs/node/commit/0e10a8ea27)]
- **doc**: improve `sqlite.backup()` progress/fulfillment documentation
(René)
[#&#8203;59598](https://redirect.github.com/nodejs/node/pull/59598)
-
\[[`18ceefbabd`](https://redirect.github.com/nodejs/node/commit/18ceefbabd)]
- **doc**: clarify experimental platform vulnerability policy (Matteo
Collina)
[#&#8203;59591](https://redirect.github.com/nodejs/node/pull/59591)
-
\[[`66cdd00368`](https://redirect.github.com/nodejs/node/commit/66cdd00368)]
- **doc**: link to `TypedArray.from()` in signature (Aviv Keller)
[#&#8203;59226](https://redirect.github.com/nodejs/node/pull/59226)
-
\[[`9f058ce7c0`](https://redirect.github.com/nodejs/node/commit/9f058ce7c0)]
- **doc**: fix typos in `environment_variables.md` (PhistucK)
[#&#8203;59536](https://redirect.github.com/nodejs/node/pull/59536)
-
\[[`3cfec820e9`](https://redirect.github.com/nodejs/node/commit/3cfec820e9)]
- **doc**: add security incident reponse plan (Rafael Gonzaga)
[#&#8203;59470](https://redirect.github.com/nodejs/node/pull/59470)
-
\[[`46aa3434e6`](https://redirect.github.com/nodejs/node/commit/46aa3434e6)]
- **doc**: clarify maxRSS unit in `process.resourceUsage()` (Alex Yang)
[#&#8203;59511](https://redirect.github.com/nodejs/node/pull/59511)
-
\[[`adf98f600a`](https://redirect.github.com/nodejs/node/commit/adf98f600a)]
- **doc**: add missing Zstd strategy constants (RANDRIAMANANTENA
Narindra Tiana Annaick)
[#&#8203;59312](https://redirect.github.com/nodejs/node/pull/59312)
-
\[[`f335989942`](https://redirect.github.com/nodejs/node/commit/f335989942)]
- **doc**: fix the version tls.DEFAULT\_CIPHERS was added (Allon
Murienik)
[#&#8203;59247](https://redirect.github.com/nodejs/node/pull/59247)
-
\[[`7fa14fcf54`](https://redirect.github.com/nodejs/node/commit/7fa14fcf54)]
- **doc**: clarify glob's exclude option behavior (hotpineapple)
[#&#8203;59245](https://redirect.github.com/nodejs/node/pull/59245)
-
\[[`85b8d255c9`](https://redirect.github.com/nodejs/node/commit/85b8d255c9)]
- **doc**: add RafaelGSS as performance strategic lead (Rafael Gonzaga)
[#&#8203;59445](https://redirect.github.com/nodejs/node/pull/59445)
-
\[[`16b1f7a602`](https://redirect.github.com/nodejs/node/commit/16b1f7a602)]
- **doc**: add new environment variables doc page (Dario Piotrowicz)
[#&#8203;59052](https://redirect.github.com/nodejs/node/pull/59052)
-
\[[`b4a43ed83a`](https://redirect.github.com/nodejs/node/commit/b4a43ed83a)]
- **doc**: add missing environment variables to manpage (amir lavasani)
[#&#8203;58963](https://redirect.github.com/nodejs/node/pull/58963)
-
\[[`c923cfe898`](https://redirect.github.com/nodejs/node/commit/c923cfe898)]
- **doc**: fix links in test.md (Vas Sudanagunta)
[#&#8203;58876](https://redirect.github.com/nodejs/node/pull/58876)
-
\[[`a93a8b5eda`](https://redirect.github.com/nodejs/node/commit/a93a8b5eda)]
- **doc**: mark type stripping as release candidate (Marco Ippolito)
[#&#8203;57705](https://redirect.github.com/nodejs/node/pull/57705)
-
\[[`d302cb3bb2`](https://redirect.github.com/nodejs/node/commit/d302cb3bb2)]
- **esm**: add experimental support for addon modules (Chengzhong Wu)
[#&#8203;55844](https://redirect.github.com/nodejs/node/pull/55844)
-
\[[`d55c3e7f0b`](https://redirect.github.com/nodejs/node/commit/d55c3e7f0b)]
- **esm**: link modules synchronously when no async loader hooks are
used (Joyee Cheung)
[#&#8203;59519](https://redirect.github.com/nodejs/node/pull/59519)
-
\[[`9e1fbb620f`](https://redirect.github.com/nodejs/node/commit/9e1fbb620f)]
- **esm**: show race error message for inner module job race (Joyee
Cheung)
[#&#8203;59519](https://redirect.github.com/nodejs/node/pull/59519)
-
\[[`8c4dcd5199`](https://redirect.github.com/nodejs/node/commit/8c4dcd5199)]
- **esm**: sync-ify module translation (Joyee Cheung)
[#&#8203;59453](https://redirect.github.com/nodejs/node/pull/59453)
-
\[[`71038932d3`](https://redirect.github.com/nodejs/node/commit/71038932d3)]
- **fs**: fix wrong order of file names in cpSync error message
(Nicholas Paun)
[#&#8203;59775](https://redirect.github.com/nodejs/node/pull/59775)
-
\[[`5692dec451`](https://redirect.github.com/nodejs/node/commit/5692dec451)]
- **fs**: fix dereference: false on cpSync (Nicholas Paun)
[#&#8203;59681](https://redirect.github.com/nodejs/node/pull/59681)
-
\[[`dafd561d37`](https://redirect.github.com/nodejs/node/commit/dafd561d37)]
- **fs**: fix return value of fs APIs (theanarkh)
[#&#8203;58996](https://redirect.github.com/nodejs/node/pull/58996)
-
\[[`da6e8cb75b`](https://redirect.github.com/nodejs/node/commit/da6e8cb75b)]
- **http**: unbreak keepAliveTimeoutBuffer (Robert Nagy)
[#&#8203;59784](https://redirect.github.com/nodejs/node/pull/59784)
-
\[[`673a48f0a2`](https://redirect.github.com/nodejs/node/commit/673a48f0a2)]
- **http**: use cached '1.1' http version string (Robert Nagy)
[#&#8203;59717](https://redirect.github.com/nodejs/node/pull/59717)
-
\[[`1dbad2058f`](https://redirect.github.com/nodejs/node/commit/1dbad2058f)]
- **(SEMVER-MINOR)** **http**: add Agent.agentKeepAliveTimeoutBuffer
option (Haram Jeong)
[#&#8203;59315](https://redirect.github.com/nodejs/node/pull/59315)
-
\[[`062e837d5f`](https://redirect.github.com/nodejs/node/commit/062e837d5f)]
- **(SEMVER-MINOR)** **http2**: add support for raw header arrays in
h2Stream.respond() (Tim Perry)
[#&#8203;59455](https://redirect.github.com/nodejs/node/pull/59455)
-
\[[`4d4fb51b89`](https://redirect.github.com/nodejs/node/commit/4d4fb51b89)]
- **http2**: report sent headers object in client stream dcs (Darshan
Sen) [#&#8203;59419](https://redirect.github.com/nodejs/node/pull/59419)
-
\[[`b8066611c3`](https://redirect.github.com/nodejs/node/commit/b8066611c3)]
- **inspector**: add http2 tracking support (Darshan Sen)
[#&#8203;59611](https://redirect.github.com/nodejs/node/pull/59611)
-
\[[`9b2c013032`](https://redirect.github.com/nodejs/node/commit/9b2c013032)]
- **inspector**: prevent propagation of promise hooks to noPromise hooks
(Shima Ryuhei)
[#&#8203;58841](https://redirect.github.com/nodejs/node/pull/58841)
-
\[[`a2329895e7`](https://redirect.github.com/nodejs/node/commit/a2329895e7)]
- **lib**: fix DOMException subclass support (Chengzhong Wu)
[#&#8203;59680](https://redirect.github.com/nodejs/node/pull/59680)
-
\[[`edb9248bdd`](https://redirect.github.com/nodejs/node/commit/edb9248bdd)]
- **lib**: make domexception a native error (Chengzhong Wu)
[#&#8203;58691](https://redirect.github.com/nodejs/node/pull/58691)
-
\[[`ccf29cda19`](https://redirect.github.com/nodejs/node/commit/ccf29cda19)]
- ***Revert*** "**lib**: optimize writable stream buffer clearing" (Yoo)
[#&#8203;59743](https://redirect.github.com/nodejs/node/pull/59743)
-
\[[`f291eda277`](https://redirect.github.com/nodejs/node/commit/f291eda277)]
- **lib**: fix isReadable and isWritable return type value (Gabriel
Quaresma)
[#&#8203;59089](https://redirect.github.com/nodejs/node/pull/59089)
-
\[[`10ae8684ea`](https://redirect.github.com/nodejs/node/commit/10ae8684ea)]
- **lib**: revert to using default derived class constructors (René)
[#&#8203;59650](https://redirect.github.com/nodejs/node/pull/59650)
-
\[[`5d3b80d62d`](https://redirect.github.com/nodejs/node/commit/5d3b80d62d)]
- **lib**: do not modify prototype deprecated asyncResource (encore)
(Szymon Łągiewka)
[#&#8203;59518](https://redirect.github.com/nodejs/node/pull/59518)
-
\[[`3c4541f878`](https://redirect.github.com/nodejs/node/commit/3c4541f878)]
- **lib**: simplify IPv6 checks in isLoopback() (Krishnadas)
[#&#8203;59375](https://redirect.github.com/nodejs/node/pull/59375)
-
\[[`0b631bbffa`](https://redirect.github.com/nodejs/node/commit/0b631bbffa)]
- **lib**: handle windows reserved device names on UNC (Rafael Gonzaga)
[#&#8203;59286](https://redirect.github.com/nodejs/node/pull/59286)
-
\[[`297f62ba1f`](https://redirect.github.com/nodejs/node/commit/297f62ba1f)]
- **meta**: bump `codecov/codecov-action` (dependabot\[bot])
[#&#8203;59726](https://redirect.github.com/nodejs/node/pull/59726)
-
\[[`3dcd8446b6`](https://redirect.github.com/nodejs/node/commit/3dcd8446b6)]
- **meta**: bump actions/download-artifact from 4.3.0 to 5.0.0
(dependabot\[bot])
[#&#8203;59729](https://redirect.github.com/nodejs/node/pull/59729)
-
\[[`d0d357f683`](https://redirect.github.com/nodejs/node/commit/d0d357f683)]
- **meta**: bump github/codeql-action from 3.29.2 to 3.30.0
(dependabot\[bot])
[#&#8203;59728](https://redirect.github.com/nodejs/node/pull/59728)
-
\[[`2a0e264949`](https://redirect.github.com/nodejs/node/commit/2a0e264949)]
- **meta**: bump actions/cache from 4.2.3 to 4.2.4 (dependabot\[bot])
[#&#8203;59727](https://redirect.github.com/nodejs/node/pull/59727)
-
\[[`0a013d1da1`](https://redirect.github.com/nodejs/node/commit/0a013d1da1)]
- **meta**: bump actions/checkout from 4.2.2 to 5.0.0 (dependabot\[bot])
[#&#8203;59725](https://redirect.github.com/nodejs/node/pull/59725)
-
\[[`c690b53d24`](https://redirect.github.com/nodejs/node/commit/c690b53d24)]
- **meta**: update devcontainer to the latest schema (Aviv Keller)
[#&#8203;54347](https://redirect.github.com/nodejs/node/pull/54347)
-
\[[`61171c7756`](https://redirect.github.com/nodejs/node/commit/61171c7756)]
- **module**: correctly detect top-level await in ambiguous contexts
(Shima Ryuhei)
[#&#8203;58646](https://redirect.github.com/nodejs/node/pull/58646)
-
\[[`75bf3f4a87`](https://redirect.github.com/nodejs/node/commit/75bf3f4a87)]
- **node-api**: link to other programming language bindings (Chengzhong
Wu) [#&#8203;59516](https://redirect.github.com/nodejs/node/pull/59516)
-
\[[`9a05107558`](https://redirect.github.com/nodejs/node/commit/9a05107558)]
- **node-api**: clarify enum value ABI stability (Chengzhong Wu)
[#&#8203;59085](https://redirect.github.com/nodejs/node/pull/59085)
-
\[[`658c31d60c`](https://redirect.github.com/nodejs/node/commit/658c31d60c)]
- **path**: refactor path joining logic for clarity and performance (Lee
Jiho)
[#&#8203;59781](https://redirect.github.com/nodejs/node/pull/59781)
-
\[[`9cc89f55f7`](https://redirect.github.com/nodejs/node/commit/9cc89f55f7)]
- **path,win**: fix bug in resolve and normalize (Hüseyin Açacak)
[#&#8203;55623](https://redirect.github.com/nodejs/node/pull/55623)
-
\[[`24e825f8f5`](https://redirect.github.com/nodejs/node/commit/24e825f8f5)]
- **sea**: implement sea.getAssetKeys() (Joyee Cheung)
[#&#8203;59661](https://redirect.github.com/nodejs/node/pull/59661)
-
\[[`c66af21e55`](https://redirect.github.com/nodejs/node/commit/c66af21e55)]
- **sea**: allow using inspector command line flags with SEA (Joyee
Cheung)
[#&#8203;59568](https://redirect.github.com/nodejs/node/pull/59568)
-
\[[`9b7dd40da8`](https://redirect.github.com/nodejs/node/commit/9b7dd40da8)]
- **(SEMVER-MINOR)** **sea**: implement execArgvExtension (Joyee Cheung)
[#&#8203;59560](https://redirect.github.com/nodejs/node/pull/59560)
-
\[[`48bfbd3dca`](https://redirect.github.com/nodejs/node/commit/48bfbd3dca)]
- **(SEMVER-MINOR)** **sea**: support execArgv in sea config (Joyee
Cheung)
[#&#8203;59314](https://redirect.github.com/nodejs/node/pull/59314)
-
\[[`5559456fe4`](https://redirect.github.com/nodejs/node/commit/5559456fe4)]
- **sqlite**: add sqlite-type symbol for DatabaseSync (Alex Yang)
[#&#8203;59405](https://redirect.github.com/nodejs/node/pull/59405)
-
\[[`3478130da3`](https://redirect.github.com/nodejs/node/commit/3478130da3)]
- **sqlite**: handle ?NNN parameters as positional (Edy Silva)
[#&#8203;59350](https://redirect.github.com/nodejs/node/pull/59350)
-
\[[`312bc4e5d1`](https://redirect.github.com/nodejs/node/commit/312bc4e5d1)]
- **sqlite**: avoid useless call to FromMaybe() (Tobias Nießen)
[#&#8203;59490](https://redirect.github.com/nodejs/node/pull/59490)
-
\[[`937e9bb1c6`](https://redirect.github.com/nodejs/node/commit/937e9bb1c6)]
- **src**: track BaseObjects with an efficient list (Chengzhong Wu)
[#&#8203;55104](https://redirect.github.com/nodejs/node/pull/55104)
-
\[[`be2a5e170d`](https://redirect.github.com/nodejs/node/commit/be2a5e170d)]
- **src**: track async resources via pointers to stack-allocated handles
(Anna Henningsen)
[#&#8203;59704](https://redirect.github.com/nodejs/node/pull/59704)
-
\[[`f232bf2c11`](https://redirect.github.com/nodejs/node/commit/f232bf2c11)]
- **src**: fix build on NetBSD (Thomas Klausner)
[#&#8203;59718](https://redirect.github.com/nodejs/node/pull/59718)
-
\[[`e9a685bc3d`](https://redirect.github.com/nodejs/node/commit/e9a685bc3d)]
- **src**: fix race on process exit and off thread CA loading
(Chengzhong Wu)
[#&#8203;59632](https://redirect.github.com/nodejs/node/pull/59632)
-
\[[`24428fc8fb`](https://redirect.github.com/nodejs/node/commit/24428fc8fb)]
- **src**: add name for more threads (theanarkh)
[#&#8203;59601](https://redirect.github.com/nodejs/node/pull/59601)
-
\[[`fd7559f8c3`](https://redirect.github.com/nodejs/node/commit/fd7559f8c3)]
- **src**: remove JSONParser (Joyee Cheung)
[#&#8203;59619](https://redirect.github.com/nodejs/node/pull/59619)
-
\[[`8c296bac99`](https://redirect.github.com/nodejs/node/commit/8c296bac99)]
- **src**: enforce assumptions in FIXED\_ONE\_BYTE\_STRING (Tobias
Nießen)
[#&#8203;58155](https://redirect.github.com/nodejs/node/pull/58155)
-
\[[`1b4885a3f2`](https://redirect.github.com/nodejs/node/commit/1b4885a3f2)]
- **src**: use simdjson to parse --snapshot-config (Joyee Cheung)
[#&#8203;59473](https://redirect.github.com/nodejs/node/pull/59473)
-
\[[`9f798de6b0`](https://redirect.github.com/nodejs/node/commit/9f798de6b0)]
- **src**: fix order of CHECK\_NOT\_NULL/dereference (Tobias Nießen)
[#&#8203;59487](https://redirect.github.com/nodejs/node/pull/59487)
-
\[[`f764be27dc`](https://redirect.github.com/nodejs/node/commit/f764be27dc)]
- **src**: move shared\_ptr objects in KeyObjectData (Tobias Nießen)
[#&#8203;59472](https://redirect.github.com/nodejs/node/pull/59472)
-
\[[`d30287fe12`](https://redirect.github.com/nodejs/node/commit/d30287fe12)]
- **src**: iterate metadata version entries with std::array (Chengzhong
Wu) [#&#8203;57866](https://redirect.github.com/nodejs/node/pull/57866)
-
\[[`b2bf620c7b`](https://redirect.github.com/nodejs/node/commit/b2bf620c7b)]
- **src**: internalize `v8::ConvertableToTraceFormat` in traces
(Chengzhong Wu)
[#&#8203;57866](https://redirect.github.com/nodejs/node/pull/57866)
-
\[[`b3c507c8ef`](https://redirect.github.com/nodejs/node/commit/b3c507c8ef)]
- **src**: remove duplicate assignment of `O_EXCL` in node\_constants.cc
(Daniel Osvaldo R)
[#&#8203;59049](https://redirect.github.com/nodejs/node/pull/59049)
-
\[[`20aec239d4`](https://redirect.github.com/nodejs/node/commit/20aec239d4)]
- **src**: add Intel CET properties to large\_pages.S (tjuhaszrh)
[#&#8203;59363](https://redirect.github.com/nodejs/node/pull/59363)
-
\[[`8e0f9cd061`](https://redirect.github.com/nodejs/node/commit/8e0f9cd061)]
- **src**: remove unused DSAKeyExportJob (Filip Skokan)
[#&#8203;59291](https://redirect.github.com/nodejs/node/pull/59291)
-
\[[`0c2b6df94f`](https://redirect.github.com/nodejs/node/commit/0c2b6df94f)]
- **src,sqlite**: refactor value conversion (Edy Silva)
[#&#8203;59659](https://redirect.github.com/nodejs/node/pull/59659)
-
\[[`b95cfdf0e5`](https://redirect.github.com/nodejs/node/commit/b95cfdf0e5)]
- **stream**: replace manual function validation with validateFunction
(방진혁)
[#&#8203;59529](https://redirect.github.com/nodejs/node/pull/59529)
-
\[[`cf06e74076`](https://redirect.github.com/nodejs/node/commit/cf06e74076)]
- **(SEMVER-MINOR)** **stream**: add brotli support to CompressionStream
and DecompressionStream (Matthew Aitken)
[#&#8203;59464](https://redirect.github.com/nodejs/node/pull/59464)
-
\[[`903ebd373a`](https://redirect.github.com/nodejs/node/commit/903ebd373a)]
- **test**: skip more sea tests on Linux ppc64le (Richard Lau)
[#&#8203;59755](https://redirect.github.com/nodejs/node/pull/59755)
-
\[[`e961060bb6`](https://redirect.github.com/nodejs/node/commit/e961060bb6)]
- **test**: fix internet/test-dns (Michaël Zasso)
[#&#8203;59660](https://redirect.github.com/nodejs/node/pull/59660)
-
\[[`c2b22f50a8`](https://redirect.github.com/nodejs/node/commit/c2b22f50a8)]
- **test**: mark test-inspector-network-fetch as flaky again (Joyee
Cheung)
[#&#8203;59640](https://redirect.github.com/nodejs/node/pull/59640)
-
\[[`4ae958e59b`](https://redirect.github.com/nodejs/node/commit/4ae958e59b)]
- **test**: skip test-fs-cp\* tests that are constantly failing on
Windows (Joyee Cheung)
[#&#8203;59637](https://redirect.github.com/nodejs/node/pull/59637)
-
\[[`d5b0a64598`](https://redirect.github.com/nodejs/node/commit/d5b0a64598)]
- **test**: deflake test-http-keep-alive-empty-line (Luigi Pinca)
[#&#8203;59595](https://redirect.github.com/nodejs/node/pull/59595)
-
\[[`eb311f1754`](https://redirect.github.com/nodejs/node/commit/eb311f1754)]
- **test**: use mustSucceed in test-repl-tab-complete-import (Sohyeon
Kim) [#&#8203;59368](https://redirect.github.com/nodejs/node/pull/59368)
-
\[[`8e047e32be`](https://redirect.github.com/nodejs/node/commit/8e047e32be)]
- **test**: skip sea tests on Linux ppc64le (Richard Lau)
[#&#8203;59563](https://redirect.github.com/nodejs/node/pull/59563)
-
\[[`4a250479d8`](https://redirect.github.com/nodejs/node/commit/4a250479d8)]
- **test**: rename test-net-server-drop-connections-in-cluster.js to
-http- (Meghan Denny)
[#&#8203;59532](https://redirect.github.com/nodejs/node/pull/59532)
-
\[[`d22f113aaf`](https://redirect.github.com/nodejs/node/commit/d22f113aaf)]
- **test**: lazy-load internalTTy (Pietro Marchini)
[#&#8203;59517](https://redirect.github.com/nodejs/node/pull/59517)
-
\[[`36dd856897`](https://redirect.github.com/nodejs/node/commit/36dd856897)]
- **test**: fix `test-setproctitle` status when `ps` is not available
(Antoine du Hamel)
[#&#8203;59523](https://redirect.github.com/nodejs/node/pull/59523)
-
\[[`fd02295da6`](https://redirect.github.com/nodejs/node/commit/fd02295da6)]
- **test**: update WPT for WebCryptoAPI to
[`ff26d9b`](https://redirect.github.com/nodejs/node/commit/ff26d9b307)
(Node.js GitHub Bot)
[#&#8203;59497](https://redirect.github.com/nodejs/node/pull/59497)
-
\[[`cce938c5f9`](https://redirect.github.com/nodejs/node/commit/cce938c5f9)]
- **test**: make test-debug-process locale-independent (BCD1me)
[#&#8203;59254](https://redirect.github.com/nodejs/node/pull/59254)
-
\[[`5a8f03df9e`](https://redirect.github.com/nodejs/node/commit/5a8f03df9e)]
- **test**: mark test-wasi-pthread as flaky (Joyee Cheung)
[#&#8203;59488](https://redirect.github.com/nodejs/node/pull/59488)
-
\[[`94f6d6b969`](https://redirect.github.com/nodejs/node/commit/94f6d6b969)]
- **test**: split test-wasi.js (Joyee Cheung)
[#&#8203;59488](https://redirect.github.com/nodejs/node/pull/59488)
-
\[[`162ac9393c`](https://redirect.github.com/nodejs/node/commit/162ac9393c)]
- **test**: use case-insensitive path checking on Windows in fs.cpSync
tests (Joyee Cheung)
[#&#8203;59475](https://redirect.github.com/nodejs/node/pull/59475)
-
\[[`ce9d6776c9`](https://redirect.github.com/nodejs/node/commit/ce9d6776c9)]
- **test**: add missing hasPostData in
test-inspector-emit-protocol-event (Shima Ryuhei)
[#&#8203;59412](https://redirect.github.com/nodejs/node/pull/59412)
-
\[[`717ea2866d`](https://redirect.github.com/nodejs/node/commit/717ea2866d)]
- **test**: refactor error checks to use assert.ifError/mustSucceed
(Sohyeon Kim)
[#&#8203;59424](https://redirect.github.com/nodejs/node/pull/59424)
-
\[[`b1c3e4a17c`](https://redirect.github.com/nodejs/node/commit/b1c3e4a17c)]
- **test**: fix typos (Lee Jiho)
[#&#8203;59330](https://redirect.github.com/nodejs/node/pull/59330)
-
\[[`3f4bd94b1f`](https://redirect.github.com/nodejs/node/commit/3f4bd94b1f)]
- **test**: skip test-watch-mode inspect when no inspector (James M
Snell)
[#&#8203;59440](https://redirect.github.com/nodejs/node/pull/59440)
-
\[[`8b7a8efe96`](https://redirect.github.com/nodejs/node/commit/8b7a8efe96)]
- **test**: exclude mock from coverage (Shima Ryuhei)
[#&#8203;59348](https://redirect.github.com/nodejs/node/pull/59348)
-
\[[`f39352b55c`](https://redirect.github.com/nodejs/node/commit/f39352b55c)]
- **test**: split test-fs-cp.js (Joyee Cheung)
[#&#8203;59408](https://redirect.github.com/nodejs/node/pull/59408)
-
\[[`fb4180e9f6`](https://redirect.github.com/nodejs/node/commit/fb4180e9f6)]
- **test\_runner**: fix todo inheritance (Moshe Atlow)
[#&#8203;59721](https://redirect.github.com/nodejs/node/pull/59721)
-
\[[`76bf6b908d`](https://redirect.github.com/nodejs/node/commit/76bf6b908d)]
- **test\_runner**: set mock timer's interval undefined (hotpineapple)
[#&#8203;59479](https://redirect.github.com/nodejs/node/pull/59479)
-
\[[`0a05d06fcc`](https://redirect.github.com/nodejs/node/commit/0a05d06fcc)]
- **test\_runner**: do not error when getting `fullName` of root context
(René)
[#&#8203;59377](https://redirect.github.com/nodejs/node/pull/59377)
-
\[[`3fdfb187d6`](https://redirect.github.com/nodejs/node/commit/3fdfb187d6)]
- **test\_runner**: fix isSkipped check in junit (Sungwon)
[#&#8203;59414](https://redirect.github.com/nodejs/node/pull/59414)
-
\[[`37c6f7d7d8`](https://redirect.github.com/nodejs/node/commit/37c6f7d7d8)]
- **test\_runner**: remove unused callee convertion (Alex Yang)
[#&#8203;59221](https://redirect.github.com/nodejs/node/pull/59221)
-
\[[`57c30093e3`](https://redirect.github.com/nodejs/node/commit/57c30093e3)]
- **test\_runner**: clean up promisified interval generation (René)
[#&#8203;58824](https://redirect.github.com/nodejs/node/pull/58824)
-
\[[`88bf1bab91`](https://redirect.github.com/nodejs/node/commit/88bf1bab91)]
- **test\_runner**: correct "already mocked" error punctuation placement
(Jacob Smith)
[#&#8203;58840](https://redirect.github.com/nodejs/node/pull/58840)
-
\[[`d3259d660a`](https://redirect.github.com/nodejs/node/commit/d3259d660a)]
- **test\_runner**: prefer `Atomics` primordials (Renegade334)
[#&#8203;58716](https://redirect.github.com/nodejs/node/pull/58716)
-
\[[`62bb80c17e`](https://redirect.github.com/nodejs/node/commit/62bb80c17e)]
- **(SEMVER-MINOR)** **test\_runner**: support object property mocking
(Idan Goshen)
[#&#8203;58438](https://redirect.github.com/nodejs/node/pull/58438)
-
\[[`4b19439dea`](https://redirect.github.com/nodejs/node/commit/4b19439dea)]
- **tools**: print appropriate output when test aborted (hotpineapple)
[#&#8203;59794](https://redirect.github.com/nodejs/node/pull/59794)
-
\[[`847963bbba`](https://redirect.github.com/nodejs/node/commit/847963bbba)]
- **tools**: use sparse checkout in `build-tarball.yml` (Antoine du
Hamel)
[#&#8203;59788](https://redirect.github.com/nodejs/node/pull/59788)
-
\[[`ef11d118a4`](https://redirect.github.com/nodejs/node/commit/ef11d118a4)]
- **tools**: remove unused actions from `build-tarball.yml` (Antoine du
Hamel)
[#&#8203;59787](https://redirect.github.com/nodejs/node/pull/59787)
-
\[[`daa0615967`](https://redirect.github.com/nodejs/node/commit/daa0615967)]
- **tools**: do not attempt to compress tgz archive (Antoine du Hamel)
[#&#8203;59785](https://redirect.github.com/nodejs/node/pull/59785)
-
\[[`fdc85e5045`](https://redirect.github.com/nodejs/node/commit/fdc85e5045)]
- **tools**: add v8windbg target (Chengzhong Wu)
[#&#8203;59767](https://redirect.github.com/nodejs/node/pull/59767)
-
\[[`25801b9009`](https://redirect.github.com/nodejs/node/commit/25801b9009)]
- **tools**: improve error handling in node\_mksnapshot (James M Snell)
[#&#8203;59437](https://redirect.github.com/nodejs/node/pull/59437)
-
\[[`92100a813f`](https://redirect.github.com/nodejs/node/commit/92100a813f)]
- **tools**: add sccache to `test-internet` workflow (Antoine du Hamel)
[#&#8203;59720](https://redirect.github.com/nodejs/node/pull/59720)
-
\[[`5f0090af53`](https://redirect.github.com/nodejs/node/commit/5f0090af53)]
- **tools**: update gyp-next to 0.20.4 (Node.js GitHub Bot)
[#&#8203;59690](https://redirect.github.com/nodejs/node/pull/59690)
-
\[[`31ee7fc3e9`](https://redirect.github.com/nodejs/node/commit/31ee7fc3e9)]
- **tools**: add script to make reviewing backport PRs easier (Antoine
du Hamel)
[#&#8203;59161](https://redirect.github.com/nodejs/node/pull/59161)
-
\[[`45906b0d5c`](https://redirect.github.com/nodejs/node/commit/45906b0d5c)]
- **tools**: update gyp-next to 0.20.3 (Node.js GitHub Bot)
[#&#8203;59603](https://redirect.github.com/nodejs/node/pull/59603)
-
\[[`6197eeee9b`](https://redirect.github.com/nodejs/node/commit/6197eeee9b)]
- **tools**: avoid parsing test files twice (Pietro Marchini)
[#&#8203;59526](https://redirect.github.com/nodejs/node/pull/59526)
-
\[[`027ae4f67e`](https://redirect.github.com/nodejs/node/commit/027ae4f67e)]
- **tools**: fix return value of try\_check\_compiler (theanarkh)
[#&#8203;59434](https://redirect.github.com/nodejs/node/pull/59434)
-
\[[`77682b52a1`](https://redirect.github.com/nodejs/node/commit/77682b52a1)]
- **tools**: bump
[@&#8203;eslint/plugin-kit](https://redirect.github.com/eslint/plugin-kit)
from 0.3.3 to 0.3.4 in /tools/eslint (dependabot\[bot])
[#&#8203;59271](https://redirect.github.com/nodejs/node/pull/59271)
-
\[[`91fa83fffd`](https://redirect.github.com/nodejs/node/commit/91fa83fffd)]
- **tools**: disable nullability-completeness warnings (Michaël Zasso)
[#&#8203;59392](https://redirect.github.com/nodejs/node/pull/59392)
-
\[[`079a68d392`](https://redirect.github.com/nodejs/node/commit/079a68d392)]
- **typings**: add typing for 'uv' (방진혁)
[#&#8203;59606](https://redirect.github.com/nodejs/node/pull/59606)
-
\[[`b8927967d9`](https://redirect.github.com/nodejs/node/commit/b8927967d9)]
- **typings**: add missing properties in ConfigBinding (Lee Jiho)
[#&#8203;59585](https://redirect.github.com/nodejs/node/pull/59585)
-
\[[`9b66ce5ef7`](https://redirect.github.com/nodejs/node/commit/9b66ce5ef7)]
- **typings**: add missing URLBinding methods (성우현 | Woohyun Sung)
[#&#8203;59468](https://redirect.github.com/nodejs/node/pull/59468)
-
\[[`ba5b6597aa`](https://redirect.github.com/nodejs/node/commit/ba5b6597aa)]
- **url**: add err.input to ERR\_INVALID\_FILE\_URL\_PATH (Joyee Cheung)
[#&#8203;59730](https://redirect.github.com/nodejs/node/pull/59730)
-
\[[`f660943471`](https://redirect.github.com/nodejs/node/commit/f660943471)]
- **util**: fix numericSeparator with negative fractional numbers
(sangwook)
[#&#8203;59379](https://redirect.github.com/nodejs/node/pull/59379)
-
\[[`aed1b883f1`](https://redirect.github.com/nodejs/node/commit/aed1b883f1)]
- **util**: remove unnecessary template strings (btea)
[#&#8203;59201](https://redirect.github.com/nodejs/node/pull/59201)
-
\[[`91e9b8d135`](https://redirect.github.com/nodejs/node/commit/91e9b8d135)]
- **util**: remove outdated TODO comment (haramjeong)
[#&#8203;59760](https://redirect.github.com/nodejs/node/pull/59760)
-
\[[`421ab3c294`](https://redirect.github.com/nodejs/node/commit/421ab3c294)]
- **util**: use getOptionValue('--no-deprecation') in deprecated()
(haramjeong)
[#&#8203;59760](https://redirect.github.com/nodejs/node/pull/59760)
-
\[[`7864ad13bb`](https://redirect.github.com/nodejs/node/commit/7864ad13bb)]
- **util**: hide duplicated stack frames when using util.inspect (Ruben
Bridgewater)
[#&#8203;59447](https://redirect.github.com/nodejs/node/pull/59447)
-
\[[`a2d2003daa`](https://redirect.github.com/nodejs/node/commit/a2d2003daa)]
- **util**: fix error's namespaced node\_modules highlighting using
inspect (Ruben Bridgewater)
[#&#8203;59446](https://redirect.github.com/nodejs/node/pull/59446)
-
\[[`f64d0def94`](https://redirect.github.com/nodejs/node/commit/f64d0def94)]
- **util**: add some additional error classes to `wellKnownPrototypes`
(Mark S. Miller)
[#&#8203;59456](https://redirect.github.com/nodejs/node/pull/59456)
-
\[[`9807ffd6a0`](https://redirect.github.com/nodejs/node/commit/9807ffd6a0)]
- **vm**: expose import attributes on SourceTextModule.moduleRequests
(Chengzhong Wu)
[#&#8203;58829](https://redirect.github.com/nodejs/node/pull/58829)
-
\[[`f334e2d539`](https://redirect.github.com/nodejs/node/commit/f334e2d539)]
- **wasi**: fix `clean` target in `test/wasi/Makefile` (Antoine du
Hamel)
[#&#8203;59576](https://redirect.github.com/nodejs/node/pull/59576)
-
\[[`9e2aa23be9`](https://redirect.github.com/nodejs/node/commit/9e2aa23be9)]
- **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker
(theanarkh)
[#&#8203;59428](https://redirect.github.com/nodejs/node/pull/59428)
-
\[[`c5a93a3355`](https://redirect.github.com/nodejs/node/commit/c5a93a3355)]
- **worker**: fix worker name with \0 (theanarkh)
[#&#8203;59214](https://redirect.github.com/nodejs/node/pull/59214)
-
\[[`a5ed96bb97`](https://redirect.github.com/nodejs/node/commit/a5ed96bb97)]
- **worker**: add worker name to report (theanarkh)
[#&#8203;58935](https://redirect.github.com/nodejs/node/pull/58935)
-
\[[`98cd7e27d4`](https://redirect.github.com/nodejs/node/commit/98cd7e27d4)]
- **worker**: add name for worker (theanarkh)
[#&#8203;59213](https://redirect.github.com/nodejs/node/pull/59213)

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-09-24 19:31:23 +02:00
TrueCharts Bot
81bc7b5767 fix(website): update astro 5.13.10 → 5.13.11 (#39984)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.13.10` ->
`5.13.11`](https://renovatebot.com/diffs/npm/astro/5.13.10/5.13.11) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.13.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.13.10/5.13.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

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

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14409](https://redirect.github.com/withastro/astro/pull/14409)
[`250a595`](250a595596)
Thanks [@&#8203;louisescher](https://redirect.github.com/louisescher)! -
Fixes an issue where `astro info` would log errors to console in certain
cases.

-
[#&#8203;14398](https://redirect.github.com/withastro/astro/pull/14398)
[`a7df80d`](a7df80d284)
Thanks [@&#8203;idawnlight](https://redirect.github.com/idawnlight)! -
Fixes an unsatisfiable type definition when calling `addServerRenderer`
on an experimental container instance

-
[#&#8203;13747](https://redirect.github.com/withastro/astro/pull/13747)
[`120866f`](120866f35a)
Thanks [@&#8203;jp-knj](https://redirect.github.com/jp-knj)! - Adds
automatic request signal abortion when the underlying socket closes in
the Node.js adapter

The Node.js adapter now automatically aborts the `request.signal` when
the client connection is terminated. This enables better resource
management and allows applications to properly handle client
disconnections through the standard `AbortSignal` API.

-
[#&#8203;14428](https://redirect.github.com/withastro/astro/pull/14428)
[`32a8acb`](32a8acba50)
Thanks [@&#8203;drfuzzyness](https://redirect.github.com/drfuzzyness)! -
Force sharpService to return a Uint8Array if Sharp returns a
SharedArrayBuffer

-
[#&#8203;14411](https://redirect.github.com/withastro/astro/pull/14411)
[`a601186`](a601186fb9)
Thanks [@&#8203;GameRoMan](https://redirect.github.com/GameRoMan)! -
Fixes relative links to docs that could not be opened in the editor.

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-24 19:28:18 +02:00
TrueCharts Bot
978a2112bb chore(helm): update image ghcr.io/alexta69/metube 2025.09.06 → 2025.09.24 (#39981) 2025-09-24 19:27:03 +02:00
TrueCharts Bot
fe8fdd1970 chore(helm): update image docker.io/clickhouse/clickhouse-server 25.8.5.17 → 25.8.6.11 (#39979) 2025-09-24 19:26:58 +02:00
TrueCharts Bot
6ee883b2b8 chore(helm): update image ghcr.io/linuxserver/smokeping digest to 2166ab1 (#39977)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/smokeping](https://redirect.github.com/linuxserver/docker-smokeping/packages)
([source](https://redirect.github.com/linuxserver/docker-smokeping)) |
digest | `69a627b` -> `2166ab1` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-24 19:26:56 +02:00
TrueCharts Bot
9ca97566ec chore(helm): update image ghcr.io/linuxserver/remmina 1.4.35 → 1.4.40 (#39982)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/remmina](https://redirect.github.com/linuxserver/docker-remmina/packages)
([source](https://redirect.github.com/linuxserver/docker-remmina)) |
patch | `01d72f6` -> `c410163` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-24 19:26:16 +02:00
TrueCharts Bot
a7e985e239 chore(helm): update image docker.io/zwavejs/zwave-js-ui 11.3.0 → 11.3.1 (#39980) 2025-09-24 19:26:06 +02:00
TrueCharts Bot
6dbbbe0792 chore(helm): update image ghcr.io/linuxserver/synclounge digest to ba98011 (#39978)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/synclounge](https://redirect.github.com/linuxserver/docker-synclounge/packages)
([source](https://redirect.github.com/linuxserver/docker-synclounge)) |
digest | `519c464` -> `ba98011` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-24 19:26:00 +02:00
TrueCharts Bot
84318bd7dc chore(helm): update image ghcr.io/linuxserver/calibre digest to 7be820c (#39976)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/calibre](https://redirect.github.com/linuxserver/docker-calibre/packages)
([source](https://redirect.github.com/linuxserver/docker-calibre)) |
digest | `94af250` -> `7be820c` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-24 19:25:47 +02:00
TrueCharts Bot
89ca615cb4 chore(container): update docker.io/renovate/renovate docker tag to v41.128.1 (#39985)
This PR contains the following updates:

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

---

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

---

### Release Notes

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

###
[`v41.128.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.128.1)

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

##### Miscellaneous Chores

- **deps:** update actions/cache action to v4.3.0 (main)
([#&#8203;38205](https://redirect.github.com/renovatebot/renovate/issues/38205))
([f1cca44](f1cca44592))

##### Code Refactoring

- **tools:** convert check-fenced-code.mjs into typescript
([#&#8203;38190](https://redirect.github.com/renovatebot/renovate/issues/38190))
([63cf293](63cf293a5f))

##### Build System

- **deps:** update node.js to v22.20.0 (main)
([#&#8203;38204](https://redirect.github.com/renovatebot/renovate/issues/38204))
([ec712ae](ec712ae9d3))

###
[`v41.128.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.128.0)

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

##### Features

- **schema:** add `requiredIf` property for conditional schema
validation
([#&#8203;38148](https://redirect.github.com/renovatebot/renovate/issues/38148))
([7bfb4fc](7bfb4fc45d))

##### Bug Fixes

- **conan:** improve dependency detection
([#&#8203;38163](https://redirect.github.com/renovatebot/renovate/issues/38163))
([0384838](03848385e6))
- use a instead of an in reconfigure PR comment
([#&#8203;38199](https://redirect.github.com/renovatebot/renovate/issues/38199))
([6f1c64f](6f1c64fec8))

##### Miscellaneous Chores

- **deps:** update dependency memfs to v4.42.0 (main)
([#&#8203;38196](https://redirect.github.com/renovatebot/renovate/issues/38196))
([535f4a8](535f4a80a4))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-09-24 19:23:51 +02:00
TrueCharts Bot
b6e0171249 chore(helm): update image docker.io/mbentley/omada-controller digest to ec76807 (#39974) 2025-09-24 19:23:45 +02:00
TrueCharts Bot
69e68cc9b5 chore(helm): update image docker.io/linuxserver/transmission digest to 991b4ae (#39973)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/linuxserver/transmission](https://redirect.github.com/linuxserver/docker-transmission/packages)
([source](https://redirect.github.com/linuxserver/docker-transmission))
| digest | `8565764` -> `991b4ae` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-24 19:23:42 +02:00
TrueCharts Bot
8d3c15de12 chore(helm): update image docker.io/tracksapp/tracks digest to e879fdc (#39975)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/tracksapp/tracks | digest | `09572f3` -> `e879fdc` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-09-24 19:18:47 +02:00
TrueCharts Bot
979b1d90c4 chore(github-action): update actions/cache digest to 0057852 (#39972)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/cache](https://redirect.github.com/actions/cache) | action |
digest | `0400d5f` -> `0057852` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvZGlnZXN0Il19-->
2025-09-24 19:15:32 +02:00
TrueCharts Bot
458e3fe8a5 chore(helm): update image ghcr.io/linuxserver/jackett 0.23.56 → 0.23.59 (#39970) 2025-09-24 13:22:36 +02:00
TrueCharts Bot
41565abb2b chore(helm): update image twinproduction/gatus v5.24.1 → v5.24.3 (#39971)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [twinproduction/gatus](https://redirect.github.com/TwiN/gatus) | patch
| `fcd3ba5` -> `19b064c` |

---

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

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

---

### Release Notes

<details>
<summary>TwiN/gatus (twinproduction/gatus)</summary>

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

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

#### What's Changed

- fix(suites): Handle invalid paths in store and update needsToReadBody
to check store by [@&#8203;TwiN](https://redirect.github.com/TwiN) in
[#&#8203;1282](https://redirect.github.com/TwiN/gatus/pull/1282)
- fix(events): Retrieve newest events instead of oldest events by
[@&#8203;TwiN](https://redirect.github.com/TwiN) in
[#&#8203;1283](https://redirect.github.com/TwiN/gatus/pull/1283)

**Full Changelog**:
<https://github.com/TwiN/gatus/compare/v5.24.2...v5.24.3>

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

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

#### What's Changed

- fix(security): Make OIDC session TTL configurable by
[@&#8203;TwiN](https://redirect.github.com/TwiN) in
[#&#8203;1280](https://redirect.github.com/TwiN/gatus/pull/1280)
- fix(condition): Properly format conditions with invalid context
placeholders by [@&#8203;TwiN](https://redirect.github.com/TwiN) in
[#&#8203;1281](https://redirect.github.com/TwiN/gatus/pull/1281)
- fix(alerting): Support custom slack title by
[@&#8203;mehdiMj-ir](https://redirect.github.com/mehdiMj-ir) in
[#&#8203;1079](https://redirect.github.com/TwiN/gatus/pull/1079)

#### New Contributors

- [@&#8203;mehdiMj-ir](https://redirect.github.com/mehdiMj-ir) made
their first contribution in
[#&#8203;1079](https://redirect.github.com/TwiN/gatus/pull/1079)

**Full Changelog**:
<https://github.com/TwiN/gatus/compare/v5.24.1...v5.24.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-24 13:22:32 +02:00
TrueCharts Bot
04f956da12 chore(helm): update image lscr.io/linuxserver/blender digest to a525882 (#39964) 2025-09-24 13:19:47 +02:00
TrueCharts Bot
04dc219aaf chore(helm): update image docker.io/syncthing/syncthing 2.0.9 → 2.0.10 (#39967)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/syncthing/syncthing](https://syncthing.net)
([source](https://redirect.github.com/syncthing/syncthing)) | patch |
`e1bc00b` -> `3faeb52` |

---

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

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

[Compare
Source](https://redirect.github.com/syncthing/syncthing/compare/v2.0.9...v2.0.10)

#### Major changes in 2.0

- Database backend switched from LevelDB to SQLite. There is a migration
on
first launch which can be lengthy for larger setups. The new database is
  easier to understand and maintain and, hopefully, less buggy.

- The logging format has changed to use structured log entries (a
message
plus several key-value pairs). Additionally, we can now control the log
level per package, and a new log level WARNING has been inserted between
INFO and ERROR (which was previously known as WARNING...). The INFO
level
has become more verbose, indicating the sync actions taken by Syncthing.
A
  new command line flag `--log-level` sets the default log level for all
packages, and the `STTRACE` environment variable and GUI has been
updated
to set log levels per package. The `--verbose` and `--logflags` command
  line options have been removed and will be ignored if given.

- Deleted items are no longer kept forever in the database, instead they
are
forgotten after fifteen months. If your use case require deletes to take
  effect after more than a fifteen month delay, set the
  `--db-delete-retention-interval` command line option or corresponding
environment variable to zero, or a longer time interval of your
choosing.

- Modernised command line options parsing. Old single-dash long options
are
no longer supported, e.g. `-home` must be given as `--home`. Some
options
have been renamed, others have become subcommands. All serve options are
now also accepted as environment variables. See `syncthing --help` and
  `syncthing serve --help` for details.

- Rolling hash detection of shifted data is no longer supported as this
effectively never helped. Instead, scanning and syncing is faster and
more
  efficient without it.

- A "default folder" is no longer created on first startup.

- Multiple connections are now used by default between v2 devices. The
new
default value is to use three connections: one for index metadata and
two
  for data exchange.

- The following platforms unfortunately no longer get prebuilt binaries
for
download at syncthing.net and on GitHub, due to complexities related to
  cross compilation with SQLite:

  - dragonfly/amd64
  - solaris/amd64
  - linux/ppc64
  - netbsd/\*
  - openbsd/386 and openbsd/arm
  - windows/arm

- The handling of conflict resolution involving deleted files has
changed. A
delete can now be the winning outcome of conflict resolution, resulting
in
  the deleted file being moved to a conflict copy.

This release is also available as:

- APT repository: <https://apt.syncthing.net/>

- Docker image: `docker.io/syncthing/syncthing:2.0.10` or
`ghcr.io/syncthing/syncthing:2.0.10`
(`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major
version)

#### What's Changed

##### Fixes

- fix: improve conflict detection by tracking previous file hash (fixes
[#&#8203;10349](https://redirect.github.com/syncthing/syncthing/issues/10349))
by [@&#8203;calmh](https://redirect.github.com/calmh) in
[#&#8203;10351](https://redirect.github.com/syncthing/syncthing/pull/10351)
- fix(ur): properly skip zero/empty fields in report by
[@&#8203;calmh](https://redirect.github.com/calmh) in
[#&#8203;10394](https://redirect.github.com/syncthing/syncthing/pull/10394)
- fix(gui): don't fetch usage report preview unnecessarily on GUI load
by [@&#8203;calmh](https://redirect.github.com/calmh) in
[#&#8203;10395](https://redirect.github.com/syncthing/syncthing/pull/10395)
- fix(db): only perform foreign key checking when a migration was
applied by [@&#8203;pixelspark](https://redirect.github.com/pixelspark)
in
[#&#8203;10397](https://redirect.github.com/syncthing/syncthing/pull/10397)
- fix(syncthing): do not perform CPU benchmark on startup unless logging
enabled by [@&#8203;pixelspark](https://redirect.github.com/pixelspark)
in
[#&#8203;10398](https://redirect.github.com/syncthing/syncthing/pull/10398)
- fix(model): don't announce untrusted devices to other devices (fixes
[#&#8203;10393](https://redirect.github.com/syncthing/syncthing/issues/10393))
by [@&#8203;calmh](https://redirect.github.com/calmh) in
[#&#8203;10408](https://redirect.github.com/syncthing/syncthing/pull/10408)
- fix(sqlite): actually always insert blocks for local files (fixes
[#&#8203;10388](https://redirect.github.com/syncthing/syncthing/issues/10388))
by [@&#8203;calmh](https://redirect.github.com/calmh) in
[#&#8203;10411](https://redirect.github.com/syncthing/syncthing/pull/10411)

##### Other

- build: update GitHub actions by
[@&#8203;mrclmr](https://redirect.github.com/mrclmr) in
[#&#8203;10399](https://redirect.github.com/syncthing/syncthing/pull/10399)

**Full Changelog**:
<https://github.com/syncthing/syncthing/compare/v2.0.9...v2.0.10>

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-24 11:19:45 +00:00
TrueCharts Bot
34a30d2eed chore(helm): update image fyb3roptik/threadfin 1.2.37 → 1.2.38 (#39968)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[fyb3roptik/threadfin](https://redirect.github.com/Threadfin/Threadfin)
| patch | `96122ab` -> `1a4d776` |

---

> [!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.38`](https://redirect.github.com/Threadfin/Threadfin/releases/tag/1.2.38)

[Compare
Source](https://redirect.github.com/Threadfin/Threadfin/compare/1.2.37...1.2.38)

#### What's Changed

- Allows for non rewrite of Streams to https when force https if
ExcludeStreamHttps setting is set to true to ensure no issues with
ffmpeg by [@&#8203;iceman73](https://redirect.github.com/iceman73) in
[#&#8203;635](https://redirect.github.com/Threadfin/Threadfin/pull/635)
- EPG Update now no longer deleting channels
- Branch 1.2.38 by
[@&#8203;Fyb3roptik](https://redirect.github.com/Fyb3roptik) in
[#&#8203;641](https://redirect.github.com/Threadfin/Threadfin/pull/641)

#### New Contributors

- [@&#8203;iceman73](https://redirect.github.com/iceman73) made their
first contribution in
[#&#8203;635](https://redirect.github.com/Threadfin/Threadfin/pull/635)

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-24 13:19:41 +02:00