c191ecfcac73fa2fa2cf54d92977abcaf7bc47ef
48056 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
c191ecfcac |
docs: add ORippler as a contributor for code (#40129)
Adds @ORippler as a contributor for code. This was requested by PrivatePuffin [in this comment](https://github.com/trueforge-org/truecharts/pull/40127#issuecomment-3342695131) --------- Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> |
||
|
|
58e97274e5 |
docs: add astro-stan as a contributor for code (#40128)
Adds @astro-stan as a contributor for code. This was requested by PrivatePuffin [in this comment](https://github.com/trueforge-org/truecharts/pull/40000#issuecomment-3342690404) --------- Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> |
||
|
|
fc31ef5436 |
feat(common): Add support for using custom CAs with Volsync (#40000)
**Description** Allows connecting volsync to an S3 API that uses a self-signed cert. Thiis is useful if you are self-hosting an S3 server and you are exposing it via a self-signed certificate. In my case this was needed because I am using the LAN IP of the server and my Let's encrypt cert does not have it as one of its SANs. To avoid making a LAN IP part of the cert history, I am instead using a self-signed cert with the IP set up as SAN. ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [X] ⚙️ 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?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> I rendered the authentik chart with the new common changes and deployed it manually to my cluster. What I have tested: - Output is identical to `master` when `customCA` is unset - When `customCA` is set to a non-empty string: - `ReplicationDestination` and `ReplicationSource` resources correctly render the `customCA` section - An opaque secret with a single field (`ca.crt`) and name `<chart-full-name>-volsync-ca-<credentials-name>` is correctly rendered - The chart installs correctly with `kubectl apply -f rendered-chart.yml` - The volsync backup job prints "Using custom CA" and then succeeds in creating a volume backup of the `blueprints` volume on my self-hosted S3 server with a self-signed cert **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [X] ⚖️ My code follows the style guidelines of this project - [X] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [X] 📄 I have made changes to the documentation - [X] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [X] ⬆️ I increased versions for any altered app according to semantic versioning - [X] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `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` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> |
||
|
|
91e77e4ed9 |
chore(helm): update chart redis 17.8.1 → 17.8.2 (#40118)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [redis](https://truecharts.org/charts/stable/redis) ([source](https://redirect.github.com/bitnami/bitnami-docker-redis)) | patch | `17.8.1` -> `17.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--> |
||
|
|
32942657ff |
fix(longhorn): Convert default values from int to string (#40127)
**Description** Flux seems to complain for default values provided as int: ``` Helm install failed for release longhorn-system/longhorn with chart longhorn@1.10.0: execution error at (longhorn/templates/default-setting.yaml:67:8): defaultSettings.* must be a string ``` for both `defaultReplicaCount` and `storageoverProvisioningPercentage` in the longhorn chart embedded into clustertool **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** `clustertool init` yielded the `helm-release.yaml` with `int`s, and I had to manually convert them to strings in order to get longhorn to deploy. Versions: `clustertool==2.0.6` and `talos==1.11.1` **📃 Notes:** Might be worth adding a test that covers this, though I'm not sure where to start. **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made 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 - [x] 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` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ |
||
|
|
fb4eb9a44f |
chore(helm): update image ghcr.io/mealie-recipes/mealie v3.2.1 → v3.3.0 (#40126)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/mealie-recipes/mealie](https://redirect.github.com/mealie-recipes/mealie) | minor | `322369a` -> `42a54cf` | --- > [!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>mealie-recipes/mealie (ghcr.io/mealie-recipes/mealie)</summary> ### [`v3.3.0`](https://redirect.github.com/mealie-recipes/mealie/releases/tag/v3.3.0): - Overhauled Ingredient Parsing [Compare Source](https://redirect.github.com/mealie-recipes/mealie/compare/v3.2.1...v3.3.0) ### 🍴🍴🍴🍴🍴🍴 **Welcome to the latest Mealie release!** This update brings a major update to how you parse recipes, home to some of the most heavily-requested features. This update also brings a truckload of fixes to round out some performance issues and fix some fairly-regular annoyances. #### 🎉 Highlights ##### 📋 Semi-automated Ingredient Parser Mealie v3.3.0 introduces [an entirely new workflow to parsing recipes](https://redirect.github.com/mealie-recipes/mealie/pull/6151). The new parsing workflow includes many heavily-requested features such as: - A more focused, guided ingredient parser which lets you parse one ingredient at a time - Initiate parsing immediately after creating a new recipe (with an option to turn this off, though we encourage you to try it!) - Automatically parse ingredients which can be matched with a reasonably high level of accuracy - Much much more! ##### Auth Timeout and `iframe` Support Users have been experiencing issues with authentication, including being logged-out seemingly randomly between sessions (even if `TOKEN_TIME` is set, [which is a requirement for longer session times](https://docs.mealie.io/documentation/getting-started/installation/backend-config/#general)). This update should resolve flaky session times ignoring the `TOKEN_TIME`. Additionally, support for hosting Mealie in an `iframe` (such as via Home Assistant) should be fixed. Note that `iframe` support *only works if being served over HTTPS*, which is a browser requirement. For more information, [see the samesite Cookie header spec](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Set-Cookie#samesitesamesite-value). #### ✨ New features - feat: Manually calculate OpenAI Parsing Confidence [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6141](https://redirect.github.com/mealie-recipes/mealie/issues/6141)) - feat: Upgraded Ingredient Parsing Workflow [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6151](https://redirect.github.com/mealie-recipes/mealie/issues/6151)) - feat: Ingredient Parser Enhancements [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6228](https://redirect.github.com/mealie-recipes/mealie/issues/6228)) - feat: Simplify Default Layout Logic and Add Household.name To Cookbooks API [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6243](https://redirect.github.com/mealie-recipes/mealie/issues/6243)) #### 🐛 Bug fixes - fix: Print Button Does Nothing [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6178](https://redirect.github.com/mealie-recipes/mealie/issues/6178)) - fix: ingredient linker and instructions titles [@​p0lycarpio](https://redirect.github.com/p0lycarpio) ([#​6146](https://redirect.github.com/mealie-recipes/mealie/issues/6146)) - fix: multiple RecipeRating backend calls [@​p0lycarpio](https://redirect.github.com/p0lycarpio) ([#​6194](https://redirect.github.com/mealie-recipes/mealie/issues/6194)) - fix: Actually Fix Token Time [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6215](https://redirect.github.com/mealie-recipes/mealie/issues/6215)) - fix: Remove explicit timeout from OpenAI image API Call [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6227](https://redirect.github.com/mealie-recipes/mealie/issues/6227)) - fix: Workflow Issues with Deleting Ingredient In Parser [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6230](https://redirect.github.com/mealie-recipes/mealie/issues/6230)) - fix: Enabled Using Mealie In iframe If Served Over HTTPS [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6128](https://redirect.github.com/mealie-recipes/mealie/issues/6128)) - fix: Remove constraint on unhashed password being 'LDAP' [@​cmintey](https://redirect.github.com/cmintey) ([#​6236](https://redirect.github.com/mealie-recipes/mealie/issues/6236)) - fix: Remove Double Cookie Refresh [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6242](https://redirect.github.com/mealie-recipes/mealie/issues/6242)) - fix: Misc Issues with Ingredient Parser [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6250](https://redirect.github.com/mealie-recipes/mealie/issues/6250)) - fix: Make Ingredient Parser Dialog Use Full Space [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6253](https://redirect.github.com/mealie-recipes/mealie/issues/6253)) - fix: Check for non-hid properties when injetcing SPA meta [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6256](https://redirect.github.com/mealie-recipes/mealie/issues/6256)) - fix: Stores Not Populating Sometimes [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6266](https://redirect.github.com/mealie-recipes/mealie/issues/6266)) #### 🧰 Maintenance <details> <summary>18 changes</summary> - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6145](https://redirect.github.com/mealie-recipes/mealie/issues/6145)) - chore(auto): Update pre-commit hooks [@​github-actions](https://redirect.github.com/github-actions) ([#​6174](https://redirect.github.com/mealie-recipes/mealie/issues/6174)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6176](https://redirect.github.com/mealie-recipes/mealie/issues/6176)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6213](https://redirect.github.com/mealie-recipes/mealie/issues/6213)) - chore(l10n): Crowdin locale sync [@​github-actions](https://redirect.github.com/github-actions) ([#​6206](https://redirect.github.com/mealie-recipes/mealie/issues/6206)) - chore(auto): Update pre-commit hooks [@​github-actions](https://redirect.github.com/github-actions) ([#​6222](https://redirect.github.com/mealie-recipes/mealie/issues/6222)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6218](https://redirect.github.com/mealie-recipes/mealie/issues/6218)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6224](https://redirect.github.com/mealie-recipes/mealie/issues/6224)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6225](https://redirect.github.com/mealie-recipes/mealie/issues/6225)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6231](https://redirect.github.com/mealie-recipes/mealie/issues/6231)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6234](https://redirect.github.com/mealie-recipes/mealie/issues/6234)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6237](https://redirect.github.com/mealie-recipes/mealie/issues/6237)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6241](https://redirect.github.com/mealie-recipes/mealie/issues/6241)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6254](https://redirect.github.com/mealie-recipes/mealie/issues/6254)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6257](https://redirect.github.com/mealie-recipes/mealie/issues/6257)) - chore: Upgrade Node and Nuxt [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6240](https://redirect.github.com/mealie-recipes/mealie/issues/6240)) - chore: Add Stricter Frontend Formatting [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6262](https://redirect.github.com/mealie-recipes/mealie/issues/6262)) - chore(l10n): New Crowdin updates [@​hay-kot](https://redirect.github.com/hay-kot) ([#​6264](https://redirect.github.com/mealie-recipes/mealie/issues/6264)) </details> #### 📚 Documentation - docs(auto): Update image tag, for release v3.2.1 [@​github-actions](https://redirect.github.com/github-actions) ([#​6172](https://redirect.github.com/mealie-recipes/mealie/issues/6172)) - docs: Add Info Regarding Theme Settings Config [@​michael-genson](https://redirect.github.com/michael-genson) ([#​6198](https://redirect.github.com/mealie-recipes/mealie/issues/6198)) - docs: Fix formatting in some community guides [@​lehnerpat](https://redirect.github.com/lehnerpat) ([#​6223](https://redirect.github.com/mealie-recipes/mealie/issues/6223)) - docs: Update navigation instructions for (admin) settings pages [@​lehnerpat](https://redirect.github.com/lehnerpat) ([#​6220](https://redirect.github.com/mealie-recipes/mealie/issues/6220)) - docs: Improve formatting in 'Automating Backups with n8n' community guide [@​lehnerpat](https://redirect.github.com/lehnerpat) ([#​6221](https://redirect.github.com/mealie-recipes/mealie/issues/6221)) #### ⬆️ Dependency updates <details> <summary>21 changes</summary> - chore(deps): update dependency ruff to ^0.13.0 [@​renovate](https://redirect.github.com/renovate) ([#​6148](https://redirect.github.com/mealie-recipes/mealie/issues/6148)) - chore(deps): update node.js to [`abcf9c9`](https://redirect.github.com/mealie-recipes/mealie/commit/abcf9c9) [@​renovate](https://redirect.github.com/renovate) ([#​6138](https://redirect.github.com/mealie-recipes/mealie/issues/6138)) - fix(deps): update dependency openai to v1.107.3 [@​renovate](https://redirect.github.com/renovate) ([#​6147](https://redirect.github.com/mealie-recipes/mealie/issues/6147)) - fix(deps): update dependency pydantic to v2.11.9 [@​renovate](https://redirect.github.com/renovate) ([#​6159](https://redirect.github.com/mealie-recipes/mealie/issues/6159)) - chore(deps): update dependency mypy to v1.18.1 [@​renovate](https://redirect.github.com/renovate) ([#​6161](https://redirect.github.com/mealie-recipes/mealie/issues/6161)) - chore(deps): update dependency pytest-asyncio to v1.2.0 [@​renovate](https://redirect.github.com/renovate) ([#​6162](https://redirect.github.com/mealie-recipes/mealie/issues/6162)) - chore(deps): update dependency mkdocs-material to v9.6.20 [@​renovate](https://redirect.github.com/renovate) ([#​6179](https://redirect.github.com/mealie-recipes/mealie/issues/6179)) - fix(deps): update dependency fastapi to v0.116.2 [@​renovate](https://redirect.github.com/renovate) ([#​6181](https://redirect.github.com/mealie-recipes/mealie/issues/6181)) - fix(deps): update dependency authlib to v1.6.4 [@​renovate](https://redirect.github.com/renovate) ([#​6182](https://redirect.github.com/mealie-recipes/mealie/issues/6182)) - fix(deps): update dependency openai to v1.108.0 [@​renovate](https://redirect.github.com/renovate) ([#​6185](https://redirect.github.com/mealie-recipes/mealie/issues/6185)) - chore(deps): update dependency ruff to v0.13.1 [@​renovate](https://redirect.github.com/renovate) ([#​6191](https://redirect.github.com/mealie-recipes/mealie/issues/6191)) - chore(deps): update dependency mypy to v1.18.2 [@​renovate](https://redirect.github.com/renovate) ([#​6193](https://redirect.github.com/mealie-recipes/mealie/issues/6193)) - chore(deps): update dependency openai to v1.109.1 [@​renovate](https://redirect.github.com/renovate) ([#​6196](https://redirect.github.com/mealie-recipes/mealie/issues/6196)) - chore(deps): update dependency ruff to v0.13.2 [@​renovate](https://redirect.github.com/renovate) ([#​6239](https://redirect.github.com/mealie-recipes/mealie/issues/6239)) - fix(deps): update dependency uvicorn to ^0.37.0 [@​renovate](https://redirect.github.com/renovate) ([#​6200](https://redirect.github.com/mealie-recipes/mealie/issues/6200)) - fix(deps): update dependency fastapi to ^0.117.0 [@​renovate](https://redirect.github.com/renovate) ([#​6205](https://redirect.github.com/mealie-recipes/mealie/issues/6205)) - chore(deps): update dependency coverage to v7.10.7 [@​renovate](https://redirect.github.com/renovate) ([#​6216](https://redirect.github.com/mealie-recipes/mealie/issues/6216)) - chore(deps): update dependency lxml to v6.0.2 [@​renovate](https://redirect.github.com/renovate) ([#​6219](https://redirect.github.com/mealie-recipes/mealie/issues/6219)) - chore(deps): update dependency pydantic-settings to v2.11.0 [@​renovate](https://redirect.github.com/renovate) ([#​6233](https://redirect.github.com/mealie-recipes/mealie/issues/6233)) - chore(deps): update dependency pyyaml to v6.0.3 [@​renovate](https://redirect.github.com/renovate) ([#​6245](https://redirect.github.com/mealie-recipes/mealie/issues/6245)) - fix(deps): update dependency bcrypt to v5 [@​renovate](https://redirect.github.com/renovate) ([#​6246](https://redirect.github.com/mealie-recipes/mealie/issues/6246)) </details> ### 🍴🍴🍴🍴🍴🍴 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
3966254059 |
chore(helm): update image ghcr.io/home-operations/jackett 0.23.71 → 0.23.74 (#40124)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/home-operations/jackett](https://ghcr.io/home-operations/jackett) ([source](https://redirect.github.com/Jackett/Jackett)) | patch | `3978520` -> `f00b909` | --- > [!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>Jackett/Jackett (ghcr.io/home-operations/jackett)</summary> ### [`v0.23.74`](https://redirect.github.com/Jackett/Jackett/releases/tag/v0.23.74) [Compare Source](https://redirect.github.com/Jackett/Jackett/compare/v0.23.71...v0.23.74) #### Changes: - [`e5f3722`](https://redirect.github.com/Jackett/Jackett/commit/e5f372225fd2cf2c39a5e3ba1bd57f2957836343) Update rudub - [`33bf0a1`](https://redirect.github.com/Jackett/Jackett/commit/33bf0a1d6485b39485690413df9114e88379154d) itorrent: removed. resolves [#​5459](https://redirect.github.com/Jackett/Jackett/issues/5459) - [`17f677e`](https://redirect.github.com/Jackett/Jackett/commit/17f677e42d954d144d8b9c7451cb7384c1ef0d80) bludv: new domain - [`8d58135`](https://redirect.github.com/Jackett/Jackett/commit/8d581355140be39aff941945957f1eacb02a6859) filmeshdtorrent: new domain - [`b517dd0`](https://redirect.github.com/Jackett/Jackett/commit/b517dd0943f3bb91a47b84e66164be575f02fa9d) torrentdosfilmes: new domains This list of changes was [auto generated](https://dev.azure.com/Jackett/Jackett/_build/results?buildId=14503\&view=logs). </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=--> |
||
|
|
a6e1b7748f |
chore(helm): update image docker.io/cthulhoo/ttrss-fpm-pgsql-static digest to b868c9a (#40120)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/cthulhoo/ttrss-fpm-pgsql-static | digest | `dea1671` -> `b868c9a` | --- > [!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--> |
||
|
|
1c4d2fc2af |
chore(helm): update image lscr.io/linuxserver/mylar3 digest to 9795f7a (#40122)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [lscr.io/linuxserver/mylar3](https://redirect.github.com/linuxserver/docker-mylar3/packages) ([source](https://redirect.github.com/linuxserver/docker-mylar3)) | digest | `63a8450` -> `9795f7a` | --- > [!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--> |
||
|
|
4f6d921503 | chore(helm): update image ghcr.io/linuxserver/jackett 0.23.71 → 0.23.74 (#40125) | ||
|
|
841c32a633 |
chore(helm): update image ghcr.io/alexta69/metube 2025.09.27 → 2025.09.28 (#40123)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/alexta69/metube | patch | `df89ae0` -> `dfcc268` | --- > [!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=--> |
||
|
|
5d9680150c |
chore(helm): update image docker.io/lswl/vertex digest to 48e0322 (#40121)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/lswl/vertex | digest | `0caaa5d` -> `48e0322` | --- > [!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--> |
||
|
|
327bf223f1 |
chore(helm): update chart mariadb 17.4.1 → 17.4.2 (#40115)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [mariadb](https://truecharts.org/charts/stable/mariadb) ([source](https://redirect.github.com/bitnami/bitnami-docker-mariadb)) | patch | `17.4.1` -> `17.4.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--> |
||
|
|
dc2781362f | chore(helm): update chart mongodb 16.7.1 → 16.7.2 (#40117) | ||
|
|
5934f81c60 |
chore(helm): update chart clickhouse 16.9.0 → 16.9.1 (#40114)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [clickhouse](https://truecharts.org/charts/stable/clickhouse) ([source](https://clickhouse.com/)) | patch | `16.9.0` -> `16.9.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
9c86b3edc8 |
chore(helm): update image docker.io/mbentley/omada-controller digest to 8131503 (#40103)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/mbentley/omada-controller](https://redirect.github.com/mbentley/docker-omada-controller) | digest | `ec76807` -> `8131503` | --- > [!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--> |
||
|
|
310f25005b |
chore(flux): update image spegel 4.7.0 → 4.7.1 (clustertool) (#40112)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [spegel](https://truecharts.org/charts/system/spegel) ([source](https://ghcr.io/spegel-org/spegel)) | patch | `4.7.0` -> `4.7.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
3e2a8d1e9c | chore(helm): update image docker.io/jgraph/drawio 28.2.3 → 28.2.5 (#40119) | ||
|
|
c1275541d3 |
chore(flux): update image kubernetes-reflector 7.6.1 → 7.6.2 (clustertool) (#40109)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [kubernetes-reflector](https://truecharts.org/charts/system/kubernetes-reflector) ([source](https://ghcr.io/emberstack/kubernetes-reflector)) | patch | `7.6.1` -> `7.6.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
0bc6936336 |
chore(helm): update chart memcached 16.7.1 → 16.7.2 (#40116)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [memcached](https://truecharts.org/charts/stable/memcached) ([source](https://redirect.github.com/bitnami/bitnami-docker-memcached)) | patch | `16.7.1` -> `16.7.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--> |
||
|
|
8dbedd1c41 |
chore(helm): update image ghcr.io/linuxserver/remmina digest to 9cf90cd (#40104)
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)) | digest | `c410163` -> `9cf90cd` | --- > [!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--> |
||
|
|
3506c66107 | chore(flux): update image blocky 18.14.1 → 18.14.2 (clustertool) (#40105) | ||
|
|
e4de5d7123 |
chore(flux): update image clusterissuer 10.6.0 → 10.6.1 (clustertool) (#40106)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [clusterissuer](https://truecharts.org/charts/premium/clusterissuer) ([source](https://cert-manager.io/)) | patch | `10.6.0` -> `10.6.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
bdef33a1bc | chore(flux): update image kubelet-csr-approver 2.6.0 → 2.6.1 (clustertool) (#40107) | ||
|
|
1ac79e4dee |
chore(flux): update image snapshot-controller 4.6.0 → 4.6.1 (clustertool) (#40111)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [snapshot-controller](https://truecharts.org/charts/system/snapshot-controller) ([source](https://redirect.github.com/kubernetes-csi/external-snapshotter)) | patch | `4.6.0` -> `4.6.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
cad8eb414c |
chore(flux): update image volsync 3.8.1 → 3.8.2 (clustertool) (#40113)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [volsync](https://truecharts.org/charts/system/volsync) ([source](https://redirect.github.com/backube/helm-charts)) | patch | `3.8.1` -> `3.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
d440c34f6a |
chore(flux): update image metallb-config 9.6.0 → 9.6.1 (clustertool) (#40110)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [metallb-config](https://truecharts.org/charts/premium/metallb-config) ([source](https://redirect.github.com/metallb/metallb)) | patch | `9.6.0` -> `9.6.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
43ea44d1c3 |
chore(flux): update image kubernetes-dashboard 2.6.0 → 2.6.1 (clustertool) (#40108)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [kubernetes-dashboard](https://truecharts.org/charts/premium/kubernetes-dashboard) ([source](https://redirect.github.com/kubernetes-dashboard/kubernetes-dashboard)) | patch | `2.6.0` -> `2.6.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
936f78cfd3 |
fix(cli): Change Actions to run on default group (#40102)
**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) - [x] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made 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 - [x] 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` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> |
||
|
|
481370b41a |
Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org> |
||
|
|
79b08e78a3 |
Update runner configuration for generate-readme job
Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> |
||
|
|
db202d7578 |
feat(app-template): add dependencies (#40101)
**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. --> To test and deploy charts added some depencies so you can use those with app-template when needed. ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [x] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [x] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `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` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ |
||
|
|
e3b2820089 |
chore(helm): update chart common 28.20.0 → 28.20.1 (#40097)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [common](https://truecharts.org/charts/library/common) ([source](https://ghcr.io/cloudnative-pg/postgis)) | patch | `28.20.0` -> `28.20.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL3BhdGNoIl19--> Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> |
||
|
|
aa8b39e497 |
chore(helm): update image docker.io/ghostfolio/ghostfolio 2.202.0 → 2.203.0 (#40100)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/ghostfolio/ghostfolio](https://redirect.github.com/ghostfolio/ghostfolio) | minor | `47e0497` -> `74e82ac` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>ghostfolio/ghostfolio (docker.io/ghostfolio/ghostfolio)</summary> ### [`v2.203.0`](https://redirect.github.com/ghostfolio/ghostfolio/blob/HEAD/CHANGELOG.md#22030---2025-09-27) [Compare Source](https://redirect.github.com/ghostfolio/ghostfolio/compare/2.202.0...2.203.0) ##### Added - Added support for column sorting to the queue jobs table in the admin control panel - Added a blog post: *Hacktoberfest 2025* ##### Changed - Removed the deprecated `ITEM` activity type </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=--> |
||
|
|
b3aaa4fb21 |
chore(helm): update image ghcr.io/jlesage/handbrake v25.09.1 → v25.09.2 (#40098)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/jlesage/handbrake](https://redirect.github.com/jlesage/docker-handbrake) | patch | `df472b1` -> `22a57a3` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>jlesage/docker-handbrake (ghcr.io/jlesage/handbrake)</summary> ### [`v25.09.2`](https://redirect.github.com/jlesage/docker-handbrake/releases/tag/v25.09.2): Version 25.09.2 [Compare Source](https://redirect.github.com/jlesage/docker-handbrake/compare/v25.09.1...v25.09.2) Changes in this release: - When possible, create a lock in the watch folder before starting conversion. This allows multiple containers to work on the same watch folder. </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=--> |
||
|
|
4e82b37fef |
chore(helm): update image ghcr.io/linuxserver/freshrss 1.27.0 → 1.27.1 (#40099)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/freshrss](https://redirect.github.com/linuxserver/docker-freshrss/packages) ([source](https://redirect.github.com/linuxserver/docker-freshrss)) | patch | `3c48add` -> `12e0731` | --- > [!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=--> |
||
|
|
809d640a48 |
chore(helm): update image ghcr.io/linuxserver/grav digest to 9717790 (#40095)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/grav](https://redirect.github.com/linuxserver/docker-grav/packages) ([source](https://redirect.github.com/linuxserver/docker-grav)) | digest | `6bcbeec` -> `9717790` | --- > [!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--> |
||
|
|
d08cecd5a1 |
chore(helm): update image ghcr.io/linuxserver/tvheadend digest to 7062a6a (#40096)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/linuxserver/tvheadend | digest | `f9fd89a` -> `7062a6a` | --- > [!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--> |
||
|
|
32585870eb |
chore(helm): update image oci.trueforge.org/tccr/code-server v4.104.1 → v4.104.2 (#40085)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [oci.trueforge.org/tccr/code-server](https://redirect.github.com/trueforge-org/truecharts) | patch | `82bcff7` -> `82dfb0c` | --- > [!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=--> --------- Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> |
||
|
|
95a8c172f6 |
chore(helm): update image ghcr.io/home-operations/jackett 0.23.69 → 0.23.71 (#40083)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/home-operations/jackett](https://ghcr.io/home-operations/jackett) ([source](https://redirect.github.com/Jackett/Jackett)) | patch | `2f93a89` -> `3978520` | --- > [!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>Jackett/Jackett (ghcr.io/home-operations/jackett)</summary> ### [`v0.23.71`](https://redirect.github.com/Jackett/Jackett/releases/tag/v0.23.71) [Compare Source](https://redirect.github.com/Jackett/Jackett/compare/v0.23.69...v0.23.71) #### Changes: - [`0e346c0`](https://redirect.github.com/Jackett/Jackett/commit/0e346c007c200db50198e2172f0db024405cbafc) Update rudub - [`aab59c0`](https://redirect.github.com/Jackett/Jackett/commit/aab59c06215168eb0548fe6e47f062c3ac5b72f2) torrenttip: add flaresolverr info - [`cdb1765`](https://redirect.github.com/Jackett/Jackett/commit/cdb17651203d69d797a2f1dcaca31f957463867a) torrentsome: add flaresolverr info - [`572e7b9`](https://redirect.github.com/Jackett/Jackett/commit/572e7b9cdc6bf73c4d05ebda56a4c5d48b792ca2) teamos: add config info VPN not allowed - [`c37ae99`](https://redirect.github.com/Jackett/Jackett/commit/c37ae999b36278448d30d9378bd8a718d1afc2ee) bitporn: -> 9.1.7 info\_hash removed - [`d96dff9`](https://redirect.github.com/Jackett/Jackett/commit/d96dff92f448565887ecc043480c265f3035cce6) 3dtorrents: update cats This list of changes was [auto generated](https://dev.azure.com/Jackett/Jackett/_build/results?buildId=14500\&view=logs). </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=--> |
||
|
|
a3e9db6720 |
chore(helm): update image ghcr.io/linuxserver/doublecommander digest to 3972e98 (#40081)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/linuxserver/doublecommander | digest | `1a9a777` -> `3972e98` | --- > [!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--> |
||
|
|
126cd8b723 |
chore(container): update docker.io/renovate/renovate docker tag to v41.131.8 (#40082)
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.131.6-full` -> `41.131.8-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.131.8`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.131.8) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/41.131.7...41.131.8) ##### Bug Fixes - **maven-wrapper:** handle artifacts update with `mvnw` as package file ([#​38253](https://redirect.github.com/renovatebot/renovate/issues/38253)) ([0ca7f88](https://redirect.github.com/renovatebot/renovate/commit/0ca7f888d6741bb5ccdf24961733ca44ceac7760)) ##### Miscellaneous Chores - ignore Git worktrees from Prettier checks ([#​38249](https://redirect.github.com/renovatebot/renovate/issues/38249)) ([7b057fd](https://redirect.github.com/renovatebot/renovate/commit/7b057fd4dd18e5ed6d2e51dd90dad78136e27542)) ##### Tests - correctly call `toMigrate` with vitest ([#​38242](https://redirect.github.com/renovatebot/renovate/issues/38242)) ([066c702](https://redirect.github.com/renovatebot/renovate/commit/066c7026e7be3dbfec606ef7d12e39000a7d2a1b)), closes [#​38240](https://redirect.github.com/renovatebot/renovate/issues/38240) ### [`v41.131.7`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.131.7) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/41.131.6...41.131.7) ##### Bug Fixes - **manager/mise:** fix jq release format ([#​38248](https://redirect.github.com/renovatebot/renovate/issues/38248)) ([8643583](https://redirect.github.com/renovatebot/renovate/commit/86435837f3a10d0a21253f6423cd09d2089990a3)) ##### Miscellaneous Chores - **deps:** update dependency type-fest to v5 (main) ([#​38258](https://redirect.github.com/renovatebot/renovate/issues/38258)) ([0c4bb26](https://redirect.github.com/renovatebot/renovate/commit/0c4bb2636a834bfb3eefac945e001db8531c4bcf)) </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=--> |
||
|
|
dbbd057f74 | chore(helm): update chart clickhouse 16.8.3 → 16.9.0 (#40094) | ||
|
|
6132553620 | chore(helm): update image fyb3roptik/threadfin 1.2.38 → 1.2.39 (#40093) | ||
|
|
0e73f248dc |
chore(helm): update image ghcr.io/ich777/steamcmd digest to 175c652 (#40091)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/ich777/steamcmd | digest | `6c14fc1` -> `175c652` | --- > [!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--> |
||
|
|
d770fdf799 |
chore(helm): update image docker.io/yacy/yacy_search_server digest to 3d7df8b (#40089)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/yacy/yacy_search_server | digest | `6eb48da` -> `3d7df8b` | --- > [!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--> |
||
|
|
c5f5d23f97 | chore(helm): update image docker digest to 2ceb471 (#40087) | ||
|
|
00f261c2ed |
chore(helm): update image docker.io/aeonlucid/impostor digest to 91327fa (#40088)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/aeonlucid/impostor | digest | `d35fbbe` -> `91327fa` | --- > [!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--> |
||
|
|
3ad6afac67 |
chore(helm): update image friendica digest to 22441e2 (#40090)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | friendica | digest | `828f39a` -> `22441e2` | --- > [!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--> |
||
|
|
b750c932ab |
chore(container): update traefik docker tag to v3.5.3 (#40092)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [traefik](https://redirect.github.com/containous/traefik) | final | patch | `v3.5.2` -> `v3.5.3` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>containous/traefik (traefik)</summary> ### [`v3.5.3`](https://redirect.github.com/traefik/traefik/releases/tag/v3.5.3) [Compare Source](https://redirect.github.com/containous/traefik/compare/v3.5.3...v3.5.3) **Bug fixes:** - **\[k8s/crd]** ServersTransport: set minimum MaxIdleConnsPerHost=-1 ([#​12077](https://redirect.github.com/traefik/traefik/pull/12077) by [xe-leon](https://redirect.github.com/xe-leon)) - **\[plugins]** Refactor plugins system ([#​12035](https://redirect.github.com/traefik/traefik/pull/12035) by [jspdown](https://redirect.github.com/jspdown)) - **\[server]** Use client conn to build the proxy protocol header ([#​12069](https://redirect.github.com/traefik/traefik/pull/12069) by [rtribotte](https://redirect.github.com/rtribotte)) - **\[webui]** Update hub-button-app to use a local script ([#​12060](https://redirect.github.com/traefik/traefik/pull/12060) by [mdeliatf](https://redirect.github.com/mdeliatf)) **Documentation:** - **\[acme,middleware]** Fix broken links in documentation ([#​12057](https://redirect.github.com/traefik/traefik/pull/12057) by [mloiseleur](https://redirect.github.com/mloiseleur)) - **\[k8s]** Create Traefik Service CRD sub-resource documentation page ([#​12080](https://redirect.github.com/traefik/traefik/pull/12080) by [nmengin](https://redirect.github.com/nmengin)) - **\[k8s]** Fix conflict in IngressRouteTCP documentation ([#​12064](https://redirect.github.com/traefik/traefik/pull/12064) by [MatBon01](https://redirect.github.com/MatBon01)) - Fix typo in rules and priority documentation ([#​12089](https://redirect.github.com/traefik/traefik/pull/12089) by [Darkangeel-hd](https://redirect.github.com/Darkangeel-hd)) - Add govern section ([#​12067](https://redirect.github.com/traefik/traefik/pull/12067) by [sheddy-traefik](https://redirect.github.com/sheddy-traefik)) - Fix entrypoint config examples ([#​12056](https://redirect.github.com/traefik/traefik/pull/12056) by [markormesher](https://redirect.github.com/markormesher)) - Reorganize the menu entries ([#​12044](https://redirect.github.com/traefik/traefik/pull/12044) by [nmengin](https://redirect.github.com/nmengin)) - Add New Secure Section to the Documentation ([#​11978](https://redirect.github.com/traefik/traefik/pull/11978) by [sheddy-traefik](https://redirect.github.com/sheddy-traefik)) ### [`v3.5.3`](https://redirect.github.com/traefik/traefik/releases/tag/v3.5.3) [Compare Source](https://redirect.github.com/containous/traefik/compare/v3.5.2...v3.5.3) **Bug fixes:** - **\[k8s/crd]** ServersTransport: set minimum MaxIdleConnsPerHost=-1 ([#​12077](https://redirect.github.com/traefik/traefik/pull/12077) by [xe-leon](https://redirect.github.com/xe-leon)) - **\[plugins]** Refactor plugins system ([#​12035](https://redirect.github.com/traefik/traefik/pull/12035) by [jspdown](https://redirect.github.com/jspdown)) - **\[server]** Use client conn to build the proxy protocol header ([#​12069](https://redirect.github.com/traefik/traefik/pull/12069) by [rtribotte](https://redirect.github.com/rtribotte)) - **\[webui]** Update hub-button-app to use a local script ([#​12060](https://redirect.github.com/traefik/traefik/pull/12060) by [mdeliatf](https://redirect.github.com/mdeliatf)) **Documentation:** - **\[acme,middleware]** Fix broken links in documentation ([#​12057](https://redirect.github.com/traefik/traefik/pull/12057) by [mloiseleur](https://redirect.github.com/mloiseleur)) - **\[k8s]** Create Traefik Service CRD sub-resource documentation page ([#​12080](https://redirect.github.com/traefik/traefik/pull/12080) by [nmengin](https://redirect.github.com/nmengin)) - **\[k8s]** Fix conflict in IngressRouteTCP documentation ([#​12064](https://redirect.github.com/traefik/traefik/pull/12064) by [MatBon01](https://redirect.github.com/MatBon01)) - Fix typo in rules and priority documentation ([#​12089](https://redirect.github.com/traefik/traefik/pull/12089) by [Darkangeel-hd](https://redirect.github.com/Darkangeel-hd)) - Add govern section ([#​12067](https://redirect.github.com/traefik/traefik/pull/12067) by [sheddy-traefik](https://redirect.github.com/sheddy-traefik)) - Fix entrypoint config examples ([#​12056](https://redirect.github.com/traefik/traefik/pull/12056) by [markormesher](https://redirect.github.com/markormesher)) - Reorganize the menu entries ([#​12044](https://redirect.github.com/traefik/traefik/pull/12044) by [nmengin](https://redirect.github.com/nmengin)) - Add New Secure Section to the Documentation ([#​11978](https://redirect.github.com/traefik/traefik/pull/11978) by [sheddy-traefik](https://redirect.github.com/sheddy-traefik)) </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=--> |