b01ac9dedd242b7856abf71c5d230f711f9d6930
49266 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
b01ac9dedd |
chore(helm): update image docker.io/diygod/rsshub digest to a72589c (#41353)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/diygod/rsshub | digest | `4bb0862` -> `a72589c` | --- > [!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--> |
||
|
|
d53a084234 |
chore(helm): update image docker.io/lancachenet/lancache-dns digest to 08c4ef2 (#41354)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/lancachenet/lancache-dns | digest | `b4b5a99` -> `08c4ef2` | --- > [!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--> |
||
|
|
f7eaf3abd3 |
fix(common): Improve Endpointslices (#41351)
**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. --> Continuation of https://github.com/trueforge-org/truecharts/pull/37019 ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 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 --> Common tests added **📃 Notes:** <!-- Please enter any other relevant information here --> Information: https://kubernetes.io/docs/reference/kubernetes-api/service-resources/endpoint-slice-v1/ https://kubernetes.io/docs/concepts/services-networking/endpoint-slices/ https://kubernetes.io/docs/concepts/services-networking/service/#endpointslices Regarding the added `conditions. ready` , nil value should be interpreted as "true", but I think it is good to set t explicity to "true". Let me know when we want to do that as well for `serving` ``` endpoints.conditions (EndpointConditions) conditions contains information about the current status of the endpoint. EndpointConditions represents the current condition of an endpoint. endpoints.conditions.ready (boolean) ready indicates that this endpoint is ready to receive traffic, according to whatever system is managing the endpoint. A nil value should be interpreted as "true". In general, an endpoint should be marked ready if it is serving and not terminating, though this can be overridden in some cases, such as when the associated Service has set the publishNotReadyAddresses flag. endpoints.conditions.serving (boolean) serving indicates that this endpoint is able to receive traffic, according to whatever system is managing the endpoint. For endpoints backed by pods, the EndpointSlice controller will mark the endpoint as serving if the pod's Ready condition is True. A nil value should be interpreted as "true". endpoints.conditions.terminating (boolean) terminating indicates that this endpoint is terminating. A nil value should be interpreted as "false". ``` Ragarding the added `Label`. This one is not handled by the default labels of TrueCharts already and therefore good to add. Upstream information: ``` For an EndpointSlice that you create yourself, or in your own code, you should also pick a value to use for the label [endpointslice.kubernetes.io/managed-by](https://kubernetes.io/docs/reference/labels-annotations-taints/#endpointslicekubernetesiomanaged-by). If you create your own controller code to manage EndpointSlices, consider using a value similar to "my-domain.example/name-of-controller". If you are using a third party tool, use the name of the tool in all-lowercase and change spaces and other punctuation to dashes (-). If people are directly using a tool such as kubectl to manage EndpointSlices, use a name that describes this manual management, such as "staff" or "cluster-admins". You should avoid using the reserved value "controller", which identifies EndpointSlices managed by Kubernetes' own control plane. ``` **✔️ 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 - [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._ |
||
|
|
356bdd9bab |
chore(helm): update image docker.io/wekanteam/wekan v8.15 → v8.16 (#41350)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/wekanteam/wekan](https://redirect.github.com/wekan/wekan) | minor | `53fc007` -> `bc18efd` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>wekan/wekan (docker.io/wekanteam/wekan)</summary> ### [`v8.16`](https://redirect.github.com/wekan/wekan/blob/HEAD/CHANGELOG.md#v816-2025-11-02-WeKan--release) [Compare Source](https://redirect.github.com/wekan/wekan/compare/v8.15...v8.16) This release fixes SpaceBleed that is the following CRITICAL SECURITY ISSUES: - [Fix SECURITY ISSUE 1: File Attachments enables stored XSS (High)](https://redirect.github.com/wekan/wekan/commit/e9a727301d7b4f1689a703503df668c0f4f4cab8). Thanks to Siam Thanat Hack (STH) and xet7. - [Fix SECURITY ISSUE 2: Access to boards of any Orgs/Teams, and avatar permissions](https://redirect.github.com/wekan/wekan/commit/f26d58201855e861bab1cd1fda4d62c664efdb81). Thanks to Siam Thanat Hack (STH) and xet7. - [Fix SECURITY ISSUE 3: Unauthenticated (or any) user can update board sort](https://redirect.github.com/wekan/wekan/commit/ea310d7508b344512e5de0dfbc9bdfd38145c5c5). Thanks to Siam Thanat Hack (STH) and xet7. - [Fix SECURITY ISSUE 4: Members can forge others’ votes (Low). Bonus: Similar fixes to planning poker too done by xet7](https://redirect.github.com/wekan/wekan/commit/0a1a075f3153e71d9a858576f1c68d2925230d9c). Thanks to Siam Thanat Hack (STH) and xet7. - [Fix SECURITY ISSUE 5: Attachment API uses bearer value as userId and DoS (Low)](https://redirect.github.com/wekan/wekan/commit/ccd90343394f433b287733ad0a33c08e0a71f53c). Thanks to Siam Thanat Hack (STH) and xet7. and adds the following new features: - [List menu / More / Delete duplicate lists that do not have any cards](https://redirect.github.com/wekan/wekan/commit/91b846e2cdee9154b045d11b4b4c1a7ae1d79016). Thanks to xet7. - [Disabled migrations that happen when opening board. Defaulting to per-swimlane lists and drag drop list to same or different swimlane](https://redirect.github.com/wekan/wekan/commit/034dc08269520ca31c780cce64e0150969e9228e). Thanks to xet7. and fixes the following bugs: - [Fix changing swimlane color to not reload webpage](https://redirect.github.com/wekan/wekan/commit/ecf2418347cae4329deb292b534f68eb099d3f90). Thanks to xet7. Thanks to above GitHub users for their contributions and translators for their translations. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
13ec8dbaf9 |
chore(helm): update image ghcr.io/linuxserver/piwigo digest to 54b3589 (#41344)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/piwigo](https://redirect.github.com/linuxserver/docker-piwigo/packages) ([source](https://redirect.github.com/linuxserver/docker-piwigo)) | digest | `2627575` -> `54b3589` | --- > [!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--> |
||
|
|
59b9abf34b | chore(helm): update image docker.io/docuseal/docuseal 2.1.8 → 2.2.0 (#41349) | ||
|
|
a8138600b5 |
chore(helm): update image ghcr.io/linuxserver/tvheadend digest to eee3daa (#41345)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/linuxserver/tvheadend | digest | `c692c85` -> `eee3daa` | --- > [!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--> |
||
|
|
a3bf35a5ee | chore(helm): update image ghcr.io/linuxserver/jackett 0.24.241 → 0.24.243 (#41348) | ||
|
|
4f194dafc8 |
chore(helm): update image ghcr.io/home-operations/jackett 0.24.241 → 0.24.243 (#41347)
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 | `c7b4b0b` -> `2097b6c` | --- > [!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.24.243`](https://redirect.github.com/Jackett/Jackett/releases/tag/v0.24.243) [Compare Source](https://redirect.github.com/Jackett/Jackett/compare/v0.24.241...v0.24.243) #### Changes: - [`1e90e0b`](https://redirect.github.com/Jackett/Jackett/commit/1e90e0ba5b3c8e7e45e41e9daf151d82db61e46d) Update rudub - [`72a5262`](https://redirect.github.com/Jackett/Jackett/commit/72a52629ab524cc7d0a1085572cd0377760e0c28) newheaven: attempt to use the full release title This list of changes was [auto generated](https://dev.azure.com/Jackett/Jackett/_build/results?buildId=14760\&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=--> |
||
|
|
e59236c1c1 |
chore(helm): update image ghcr.io/suwayomi/tachidesk digest to 0ca2538 (#41346)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/suwayomi/tachidesk | digest | `8fdd52b` -> `0ca2538` | --- > [!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--> |
||
|
|
e4264fdec1 |
chore(helm): update chart redis 17.13.3 → 17.13.4 (#41343)
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.13.3` -> `17.13.4` | --- > [!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--> |
||
|
|
405517a04d |
chore(helm): update chart mariadb 17.9.3 → 17.9.4 (#41340)
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.9.3` -> `17.9.4` | --- > [!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--> |
||
|
|
f5611e02d9 |
chore(helm): update chart memcached 16.12.3 → 16.12.4 (#41341)
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.12.3` -> `16.12.4` | --- > [!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--> |
||
|
|
bf108d2eb7 |
chore(helm): update chart clickhouse 16.15.0 → 16.15.1 (#41339)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [clickhouse](https://truecharts.org/charts/stable/clickhouse) ([source](https://clickhouse.com/)) | patch | `16.15.0` -> `16.15.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--> |
||
|
|
b4d995b40a |
chore(helm): update chart mongodb 16.12.3 → 16.12.4 (#41342)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [mongodb](https://truecharts.org/charts/stable/mongodb) ([source](https://redirect.github.com/bitnami/bitnami-docker-mongodb)) | patch | `16.12.3` -> `16.12.4` | --- > [!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--> |
||
|
|
2af9956272 |
chore(helm): update chart common 28.26.1 → 28.26.2 (#41140)
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.26.1` -> `28.26.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--> Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> |
||
|
|
894a5bac75 |
chore(helm): update image docker.io/ghostfolio/ghostfolio 2.213.0 → 2.214.0 (#41337)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/ghostfolio/ghostfolio](https://redirect.github.com/ghostfolio/ghostfolio) | minor | `3b8a1b5` -> `310861a` | --- > [!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.214.0`](https://redirect.github.com/ghostfolio/ghostfolio/blob/HEAD/CHANGELOG.md#22140---2025-11-01) [Compare Source](https://redirect.github.com/ghostfolio/ghostfolio/compare/2.213.0...2.214.0) ##### Changed - Improved the icon of the *View Holding* menu item in the activities table - Ensured atomic data replacement during historical market data gathering - Removed *Internet Identity* as a social login provider - Refreshed the cryptocurrencies list - Upgraded `countries-list` from version `3.1.1` to `3.2.0` - Upgraded `ng-extract-i18n-merge` from version `3.0.0` to `3.1.0` - Upgraded `twitter-api-v2` from version `1.23.0` to `1.27.0` </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
40fad811f7 |
chore(helm): update chart clickhouse 16.14.3 → 16.15.0 (#41336)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [clickhouse](https://truecharts.org/charts/stable/clickhouse) ([source](https://clickhouse.com/)) | minor | `16.14.3` -> `16.15.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL21pbm9yIl19--> |
||
|
|
51b6f0f3f4 |
chore(helm): update image docker.io/koenkk/zigbee2mqtt 2.6.2 → 2.6.3 (#41335)
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[docker.io/koenkk/zigbee2mqtt](https://redirect.github.com/Koenkk/zigbee2mqtt)
| patch | `ffabf25` -> `3baac2a` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Release Notes
<details>
<summary>Koenkk/zigbee2mqtt (docker.io/koenkk/zigbee2mqtt)</summary>
###
[`v2.6.3`](https://redirect.github.com/Koenkk/zigbee2mqtt/blob/HEAD/CHANGELOG.md#263-2025-11-01)
[Compare
Source](https://redirect.github.com/Koenkk/zigbee2mqtt/compare/2.6.2...2.6.3)
##### Bug Fixes
- Add pi cooling demand to Home Assistant auto discovery
([#​28843](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/28843))
([09fd675](https://redirect.github.com/Koenkk/zigbee2mqtt/commit/09fd675d0f215af11e64515ea60b91ed28b5e683))
- Fix `onEvent` called twice first time when device options are changed
([#​29322](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/29322))
([e037a2c](https://redirect.github.com/Koenkk/zigbee2mqtt/commit/e037a2c21cb985b6e71d9c1fa169f0886e8af832))
- Fix input onboarding environment variable disabled check
([#​29354](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/29354))
([c306300](https://redirect.github.com/Koenkk/zigbee2mqtt/commit/c30630091d1ac14fed6df9c5ee43a275db877821))
- Home Assistant: fix device and group configuration URL
([#​29211](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/29211))
([c0190c1](https://redirect.github.com/Koenkk/zigbee2mqtt/commit/c0190c18ede7accb407b805f6016c3242c11146a))
- Home Assistant: make PI heating demand from writable
([#​29188](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/29188))
([174ba64](https://redirect.github.com/Koenkk/zigbee2mqtt/commit/174ba64449b04777d1d5743fbb7b498a29c40ae2))
- **ignore:** bump
[@​types/node](https://redirect.github.com/types/node) from 24.7.2
to 24.8.1 in the minor-patch group
([#​29191](https://redirect.github.com/Koenkk/zigbee2mqtt/issues/29191))
([
|
||
|
|
f277aeac52 | chore(helm): update image ghcr.io/linuxserver/mysql-workbench digest to a875112 (#41334) | ||
|
|
30751b4528 |
chore(helm): update image ghcr.io/linuxserver/grav digest to f2b19f7 (#41333)
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 | `011b084` -> `f2b19f7` | --- > [!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--> |
||
|
|
93a497c90f |
chore(helm): update image docker.io/searxng/searxng digest to 50a94da (#41332)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/searxng/searxng | digest | `a943cb1` -> `50a94da` | --- > [!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--> |
||
|
|
2e563799f7 |
chore(helm): update image docker.io/shlinkio/shlink 4.5.3 → 4.6.0 (#41331)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/shlinkio/shlink](https://redirect.github.com/shlinkio/shlink) | minor | `bd4bf92` -> `e607cd6` | --- > [!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>shlinkio/shlink (docker.io/shlinkio/shlink)</summary> ### [`v4.6.0`](https://redirect.github.com/shlinkio/shlink/blob/HEAD/CHANGELOG.md#460---2025-11-01) [Compare Source](https://redirect.github.com/shlinkio/shlink/compare/v4.5.3...v4.6.0) ##### Added - [#​2327](https://redirect.github.com/shlinkio/shlink/issues/2327) Allow filtering short URL lists by those not including certain tags. Now, the `GET /short-urls` endpoint accepts two new params: `excludeTags`, which is an array of strings with the tags that should not be included, and `excludeTagsMode`, which accepts the values `any` and `all`, and determines if short URLs should be filtered out if they contain any of the excluded tags, or all the excluded tags. Additionally, the `short-url:list` command also supports the same feature via `--exclude-tag` option, which requires a value and can be provided multiple times, and `--exclude-tags-all`, which does not expect a value and determines if the mode should be `all`, or `any`. - [#​2192](https://redirect.github.com/shlinkio/shlink/issues/2192) Allow filtering short URL lists by the API key that was used to create them. Now, the `GET /short-urls` endpoint accepts a new `apiKeyName` param, which is ignored if the request is performed with a non-admin API key which name does not match the one provided here. Additionally, the `short-url:list` command also supports the same feature via the `--api-key-name` option. - [#​2330](https://redirect.github.com/shlinkio/shlink/issues/2330) Add support to serve Shlink with FrankenPHP, by providing a worker script in `bin/frankenphp-worker.php`. - [#​2449](https://redirect.github.com/shlinkio/shlink/issues/2449) Add support to provide redis credentials separately when using redis sentinels, where provided servers are the sentinels and not the redis instances. For this, Shlink supports two new env ras / config options, as `REDIS_SERVERS_USER` and `REDIS_SERVERS_PASSWORD`. - [#​2498](https://redirect.github.com/shlinkio/shlink/issues/2498) Allow orphan visits, non-orphan visits and tag visits lists to be filtered by domain. This is done via the `domain` query parameter in API endpoints, and via the `--domain` option in console commands. - [#​2472](https://redirect.github.com/shlinkio/shlink/issues/2472) Add support for PHP 8.5 - [#​2291](https://redirect.github.com/shlinkio/shlink/issues/2291) Add `api-key:delete` console command to delete API keys. ##### Changed - [#​2424](https://redirect.github.com/shlinkio/shlink/issues/2424) Make simple console commands invokable. ##### Deprecated - *Nothing* ##### Removed - *Nothing* ##### Fixed - *Nothing* </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=--> |
||
|
|
339bf6d15e | chore(helm): update image docker.io/clickhouse/clickhouse-server 25.9.5.21 → 25.10.1.3832 (#41329) | ||
|
|
5ceecbae8d |
chore(helm): update image docker.io/filebrowser/filebrowser v2.44.2 → v2.45.0 (#41330)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/filebrowser/filebrowser](https://redirect.github.com/filebrowser/filebrowser) | minor | `b79117d` -> `c751c3a` | --- > [!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.45.0`](https://redirect.github.com/filebrowser/filebrowser/releases/tag/v2.45.0) [Compare Source](https://redirect.github.com/filebrowser/filebrowser/compare/v2.44.2...v2.45.0) #### Changelog - [`99aeb76`](https://redirect.github.com/filebrowser/filebrowser/commit/99aeb766c3b8e4520acbdb51e16f0ef28f1e21be) chore(release): 2.45.0 - [`93fe31c`](https://redirect.github.com/filebrowser/filebrowser/commit/93fe31cc55c9d9d27c634993619a768fa700da1d) fix: support croatian ([#​5502](https://redirect.github.com/filebrowser/filebrowser/issues/5502)) - [`b9a03fa`](https://redirect.github.com/filebrowser/filebrowser/commit/b9a03fabd98119d6588882f5ba2a7d29b012d729) feat: update translations ([#​5458](https://redirect.github.com/filebrowser/filebrowser/issues/5458)) - [`d00b3ea`](https://redirect.github.com/filebrowser/filebrowser/commit/d00b3ea8f8f8cd48326a5bf7e2b44e9b510cca46) fix(img):Prevent thumbnail generation for large images </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=--> |
||
|
|
fbae291d35 |
chore(helm): update image ghcr.io/meeb/tubesync digest to 9342406 (#41328)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/meeb/tubesync | digest | `b080fcf` -> `9342406` | --- > [!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--> |
||
|
|
8cdada21ff |
chore(helm): update image docker.io/revenz/fileflows digest to 6582a35 (#41327)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/revenz/fileflows | digest | `121f6cd` -> `6582a35` | --- > [!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--> |
||
|
|
75d0a051a4 |
chore(helm): update chart redis 17.13.2 → 17.13.3 (#41322)
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.13.2` -> `17.13.3` | --- > [!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--> |
||
|
|
0b02b0c637 |
chore(helm): update image ghcr.io/linuxserver/jackett 0.24.234 → 0.24.241 (#41325)
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 | `52c9ed4` -> `945e4d5` | --- > [!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=--> |
||
|
|
c13d81dffa | chore(helm): update image docker.io/ollama/ollama 0.12.8 → 0.12.9 (#41323) | ||
|
|
e8d392e120 |
chore(helm): update chart mongodb 16.12.2 → 16.12.3 (#41321)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [mongodb](https://truecharts.org/charts/stable/mongodb) ([source](https://redirect.github.com/bitnami/bitnami-docker-mongodb)) | patch | `16.12.2` -> `16.12.3` | --- > [!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--> |
||
|
|
cb7e97bb64 | chore(helm): update image ghcr.io/home-operations/jackett 0.24.234 → 0.24.241 (#41324) | ||
|
|
1ab6176a71 |
chore(helm): update image docker.io/ronivay/xen-orchestra 5.190.1 → 5.192.0 (#41326)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/ronivay/xen-orchestra | minor | `411a5d8` -> `ac566f1` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
1f0b573325 |
chore(helm): update image docker.io/wiserain/flexget digest to 2c85b2a (#41320)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/wiserain/flexget](https://redirect.github.com/linuxserver/docker-baseimage-alpine/packages) ([source](https://redirect.github.com/wiserain/docker-flexget)) | digest | `4754892` -> `2c85b2a` | --- > [!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--> |
||
|
|
d0d9f381bc |
chore(helm): update image docker.io/bitnamisecure/wordpress digest to ff57957 (#41318)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/bitnamisecure/wordpress | digest | `adf6566` -> `ff57957` | --- > [!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--> |
||
|
|
52ecd2f364 |
chore(helm): update image docker.io/grafana/grafana-image-renderer digest to c73922a (#41319)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/grafana/grafana-image-renderer | digest | `8ac70d0` -> `c73922a` | --- > [!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--> |
||
|
|
e1cfe5cc40 |
chore(helm): update chart mariadb 17.9.2 → 17.9.3 (#41313)
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.9.2` -> `17.9.3` | --- > [!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--> |
||
|
|
a5462bfada |
chore(helm): update chart memcached 16.12.2 → 16.12.3 (#41314)
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.12.2` -> `16.12.3` | --- > [!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--> |
||
|
|
0dcffbfcf3 |
chore(helm): update image ghcr.io/hotio/whisparr v3-3.0.1.1324 → v3-3.0.1.1327 (#41316)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/hotio/whisparr](https://hotio.dev/containers/whisparr) ([source](https://redirect.github.com/hotio/whisparr)) | patch | `ac85888` -> `a4ebc8e` | --- > [!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=--> |
||
|
|
357d0ec0d9 |
chore(helm): update image docker.io/tailscale/tailscale v1.90.5 → v1.90.6 (#41315)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/tailscale/tailscale](https://tailscale.com/kb/1282/docker) ([source](https://redirect.github.com/tailscale/tailscale)) | patch | `8528b4f` -> `8eb8b45` | --- > [!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>tailscale/tailscale (docker.io/tailscale/tailscale)</summary> ### [`v1.90.6`](https://redirect.github.com/tailscale/tailscale/releases/tag/v1.90.6) [Compare Source](https://redirect.github.com/tailscale/tailscale/compare/v1.90.5...v1.90.6) Please refer to the changelog available at <https://tailscale.com/changelog> </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=--> |
||
|
|
c14070328d |
chore(helm): update image docker.io/localai/localai v3.6.0 → v3.7.0 (#41317)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `c199c96` -> `2613ada` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `0f20070` -> `bc0ff17` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `226fbce` -> `5438e38` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `3f969cf` -> `137dee3` | --- > [!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>mudler/LocalAI (docker.io/localai/localai)</summary> ### [`v3.7.0`](https://redirect.github.com/mudler/LocalAI/releases/tag/v3.7.0) [Compare Source](https://redirect.github.com/mudler/LocalAI/compare/v3.6.0...v3.7.0) ##### 🚀 LocalAI 3.7.0 <h1 align="center"> <br> <img height="300" src="https://raw.githubusercontent.com/mudler/LocalAI/refs/heads/master/core/http/static/logo.png"> <br> <br> </h1> Welcome to **LocalAI 3.7.0** 👋 This release introduces **Agentic MCP support with full WebUI integration**, a brand-new **neutts TTS backend**, **fuzzy model search**, **long-form TTS chunking** for chatterbox, and a complete **WebUI overhaul**. We’ve also fixed critical bugs, improved stability, and enhanced compatibility with OpenAI’s APIs. *** ##### 📌 TL;DR – What’s New in LocalAI 3.7.0 | Feature | Summary | | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | | 🤖 **Agentic MCP Support (WebUI-enabled)** | Build AI agents that use real tools (web search, code exec). Fully-OpenAI compatible and integrated into the WebUI. | | 🎙️ **neutts TTS Backend (Neuphonic-powered)** | Generate natural, high-quality speech with low-latency audio — ideal for voice assistants. | | 🖼️ **WebUI enhancements** | Faster, cleaner UI with real-time updates and full YAML model control. | | 💬 **Long-Text TTS Chunking (Chatterbox)** | Generate natural-sounding long-form audio by intelligently splitting text and preserving context. | | 🧩 **Advanced Agent Controls** | Fine-tune agent behavior with new options for retries, reasoning, and re-evaluation. | | 📸 **New Video Creation Endpoint** | We now support the OpenAI-compatible `/v1/videos` endpoint for text-to-video generation. | | 🐍 **Enhanced Whisper compatibility** | Whisper.cpp is now supported on various CPU variants (AVX, AVX2, etc.) to prevent `illegal instruction` crashes. | | 🔍 **Fuzzy Gallery Search** | Find models in the gallery even with typos (e.g., `gema` finds `gemma`). | | 📦 **Easier Model & Backend Management** | Import, edit, and delete models directly via clean YAML in the WebUI. | | ▶️ **Realtime Example** | Check out the new [realtime voice assistant example](https://redirect.github.com/mudler/LocalAI-examples/tree/main/realtime) (multilingual). | | ⚠️ **Security, Stability & API Compliance** | Fixed critical crashes, deadlocks, session events, OpenAI compliance, and JSON schema panics. | | 🧠 **Qwen 3 VL** | Support for Qwen 3 VL with llama.cpp/gguf models | ##### 🔥 What’s New in Detail ##### 🤖 **Agentic MCP Support – Build Intelligent, Tool-Using AI Agents** We're proud to announce **full Agentic MCP support** a feature for building AI agents that can **reason, plan, and execute actions using external tools** like web search, code execution, and data retrieval. You can use standard `chat/completions` endpoint, but powered by an agent in the background. Full documentation is available [here](https://localai.io/docs/features/mcp/) > ✅ **Now in WebUI**: A dedicated toggle appears in the chat interface when a model supports MCP. Just click to enable agent mode. ##### ✨ Key Features: - **New Endpoint**: `POST /mcp/v1/chat/completions` (OpenAI-compatible). - **Flexible Tool Configuration**: ```yaml mcp: stdio: | { "mcpServers": { "searxng": { "command": "docker", "args": ["run", "-i", "--rm", "ghcr.io/mudler/mcps/duckduckgo:master"] } } } ``` - **Advanced Agent Control** via `agent` config: ```yaml agent: max_attempts: 3 max_iterations: 5 enable_reasoning: true enable_re_evaluation: true ``` - `max_attempts`: Retry failed tool calls up to N times. - `max_iterations`: Limit how many times the agent can loop through reasoning. - `enable_reasoning`: Allow step-by-step thought processes (e.g., chain-of-thought). - `enable_re_evaluation`: Re-analyze decisions when tool results are ambiguous. > You can find some plug-n-play MCPs here: <https://github.com/mudler/MCPs> > Under the hood, MCP functionality is powered by <https://github.com/mudler/cogito> ##### 🖼️ **WebUI enhancements** WebUI had a major overhaul: - The chat view now has an MCP toggle in the chat for models that have `mcp` settings enabled in the model config file. - The Editor mask of the model has now been simplified to show/edit the YAML settings of the model - More reactive, dropped HTMX in favor of Alpine.js and vanilla javascript - Various fixes including deletion of models ##### 🎙️ **Introducing neutts TTS Backend – Natural Speech, Low Latency** Say hello to **neutts** a new, lightweight TTS backend powered by **Neuphonic**, delivering high-quality, natural-sounding speech with minimal overhead. ##### 🎛️ **Setup Example** ```yaml name: neutts-english backend: neutts parameters: model: neuphonic/neutts-air tts: audio_path: "./output.wav" streaming: true options: ##### text transcription of the provided audio file - ref_text: "So I'm live on radio..." known_usecases: - tts ``` ##### 🐍 Whisper.cpp enhancements `whisper.cpp` CPU variants are now available for: - `avx` - `avx2` - `avx512` - `fallback` (no optimized instructions available) These variants are optimized for specific instruction sets and reduce crashes on older or non-AVX CPUs. ##### 🔍 **Smarter Gallery Search: Fuzzy & Case-Insensitive Matching** Searching for `gemma` now finds `gemma-3`, `gemma2`, etc. — even with typos like `gemaa` or `gema`. ##### 🧩 **Improved Tool & Schema Handling – No More Crashes** We’ve fixed multiple edge cases that caused crashes or silent failures in tool usage. ##### ✅ Fixes: - **Nullable JSON Schemas**: `"type": ["string", "null"]` now works without panics. - **Empty Parameters**: Tools with missing or empty `parameters` now handled gracefully. - **Strict Mode Enforcement**: When `strict_mode: true`, the model **must** pick a tool — no more skipping. - **Multi-Type Arrays**: Safe handling of `["string", "null"]` in function definitions. > 🔄 **Interaction with Grammar Triggers**: `strict_mode` and grammar rules work together — if a tool is required and the function definition is invalid, the server returns a clear JSON error instead of crashing. ##### 📸 **New Video Creation Endpoint: OpenAI-Compatible** LocalAI now supports OpenAI’s `/v1/videos` endpoint for generating videos from text prompts. ##### 📌 Usage Example: ```bash curl http://localhost:8080/v1/videos \ -H "Content-Type: application/json" \ -H "Authorization: Bearer sk-..." \ -d '{ "model": "sora", "prompt": "A cat walking through a forest at sunset", "size": "1024x576", }' ``` ##### 🧠 Qwen 3 VL in llama.cpp Support has been added for Qwen 3 VL in llama.cpp. We have updated llama.cpp to latest! As a reminder, Qwen 3 VL and multimodal models are also compatible with our vLLM and MLX backends. Qwen 3 VL models are already available in the model gallery: - `qwen3-vl-30b-a3b-instruct` - `qwen3-vl-30b-a3b-thinking` - `qwen3-vl-4b-instruct` - `qwen3-vl-32b-instruct` - `qwen3-vl-4b-thinking` - `qwen3-vl-2b-thinking` - `qwen3-vl-2b-instruct` > Note: upgrading the llama.cpp backend is necessary if you already have a LocalAI installation. ##### 🚀 **(CI) Gallery Updater Agent: Auto-Detect & Suggest New Models** We’ve added an **autonomous CI agent** that scans Hugging Face daily for new models and opens PRs to update the gallery. ##### ✨ How It Works: 1. Scans HF for new, trending models 2. Extracts base model, quantization, and metadata. 3. Uses **cogito** (our agentic framework) to assign the model to the correct family and to obtain the model informations. 4. Opens a PR with: - Suggested `name`, `family`, and `usecases` - Link to HF model - YAML snippet for import ##### 🔧 **Critical Bug Fixes & Stability Improvements** | Issue | Fix | Impact | | ------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------ | | 📌 WebUI Crash on Model Load | Fixed `can't evaluate field Name in type string` error | Models now render even without config files | | 🔁 Deadlock in Model Load/Idle Checks | Guarded against race conditions during model loading | Improved performance under load | | 📞 Realtime API Compliance | Added `session.created` event; removed redundant `conversation.created` | Works with **VoxInput**, **OpenAI clients**, and more | | 📥 MCP Response Formatting | Output wrapped in `message` field | Matches OpenAI spec — better client compatibility | | 🛑 JSON Error Responses | Now return clean JSON instead of HTML | Scripts and libraries no longer break on auth failures | | 🔄 Session Registration | Fixed initial MCP calls failing due to cache issues | Reliable first-time use | | 🎧 `kokoro` TTS | Returns full audio, not partial | Better for long-form TTS | ##### 🚀 The Complete Local Stack for Privacy-First AI <table> <tr> <td width="30%" valign="top" align="center"> <a href="https://redirect.github.com/mudler/LocalAI"> <img src="https://raw.githubusercontent.com/mudler/LocalAI/refs/heads/master/core/http/static/logo.png" width="200" alt="LocalAI Logo"> <h3>LocalAI</h3> </a> </td> <td width="70%" valign="top"> <p>The free, Open Source OpenAI alternative. Acts as a drop-in replacement REST API compatible with OpenAI specifications for local AI inferencing. No GPU required.</p> <p><em>Link:</em> <a href="https://redirect.github.com/mudler/LocalAI">https://github.com/mudler/LocalAI</a></p> </td> </tr> <tr> <td width="30%" valign="top" align="center"> <a href="https://redirect.github.com/mudler/LocalAGI"> <img src="https://raw.githubusercontent.com/mudler/LocalAGI/refs/heads/main/webui/react-ui/public/logo_2.png" width="200" alt="LocalAGI Logo"> <h3>LocalAGI</h3> </a> </td> <td width="70%" valign="top"> <p>A powerful Local AI agent management platform. Serves as a drop-in replacement for OpenAI's Responses API, supercharged with advanced agentic capabilities and a no-code UI.</p> <p><em>Link:</em> <a href="https://redirect.github.com/mudler/LocalAGI">https://github.com/mudler/LocalAGI</a></p> </td> </tr> <tr> <td width="30%" valign="top" align="center"> <a href="https://redirect.github.com/mudler/LocalRecall"> <img src="https://raw.githubusercontent.com/mudler/LocalRecall/refs/heads/main/static/localrecall_horizontal.png" width="200" alt="LocalRecall Logo"> <h3>LocalRecall</h3> </a> </td> <td width="70%" valign="top"> <p>A RESTful API and knowledge base management system providing persistent memory and storage capabilities for AI agents. Designed to work alongside LocalAI and LocalAGI.</p> <p><em>Link:</em> <a href="https://redirect.github.com/mudler/LocalRecall">https://github.com/mudler/LocalRecall</a></p> </td> </tr> </table> *** ##### ❤️ Thank You! A huge **THANK YOU** to our growing community! With over **35,000 stars**, LocalAI is a true FOSS movement — built by people, for people, with no corporate backing. If you love privacy-first AI and open source, please: - ✅ **Star** the repo - 💬 **Contribute** code, docs, or feedback - 📣 **Share** with others Your support keeps this stack alive and evolving! *** ##### ✅ Full Changelog <details> <summary>📋 Click to expand full changelog</summary> <!-- Release notes generated using configuration in .github/release.yml at master --> ##### What's Changed ##### Bug fixes 🐛 - fix(chatterbox): chunk long text by [@​mudler](https://redirect.github.com/mudler) in [#​6407](https://redirect.github.com/mudler/LocalAI/pull/6407) - fix(grammars): handle empty parameters on object types by [@​mudler](https://redirect.github.com/mudler) in [#​6409](https://redirect.github.com/mudler/LocalAI/pull/6409) - fix(mcp): register sessions by [@​mudler](https://redirect.github.com/mudler) in [#​6429](https://redirect.github.com/mudler/LocalAI/pull/6429) - fix(llama.cpp): correctly set grammar triggers by [@​mudler](https://redirect.github.com/mudler) in [#​6432](https://redirect.github.com/mudler/LocalAI/pull/6432) - fix(mcp): make responses compliant to OpenAI APIs by [@​mudler](https://redirect.github.com/mudler) in [#​6436](https://redirect.github.com/mudler/LocalAI/pull/6436) - fix(ui): models without config don't have a .Name field by [@​mudler](https://redirect.github.com/mudler) in [#​6438](https://redirect.github.com/mudler/LocalAI/pull/6438) - fix(realtime): Add transcription session created event, match OpenAI behavior by [@​richiejp](https://redirect.github.com/richiejp) in [#​6445](https://redirect.github.com/mudler/LocalAI/pull/6445) - fix: guard from potential deadlock with requests in flight by [@​mudler](https://redirect.github.com/mudler) in [#​6484](https://redirect.github.com/mudler/LocalAI/pull/6484) - fix: handle multi-type arrays in JSON schema to prevent panic by [@​robert-cronin](https://redirect.github.com/robert-cronin) in [#​6495](https://redirect.github.com/mudler/LocalAI/pull/6495) - fix: properly terminate llama.cpp kv\_overrides array with empty key + updated doc by [@​blob42](https://redirect.github.com/blob42) in [#​6672](https://redirect.github.com/mudler/LocalAI/pull/6672) - fix: llama dockerfile make package by [@​blob42](https://redirect.github.com/blob42) in [#​6694](https://redirect.github.com/mudler/LocalAI/pull/6694) - feat: return complete audio for kokoro by [@​lukasdotcom](https://redirect.github.com/lukasdotcom) in [#​6842](https://redirect.github.com/mudler/LocalAI/pull/6842) ##### Exciting New Features 🎉 - feat: Add Agentic MCP support with a new chat/completion endpoint by [@​mudler](https://redirect.github.com/mudler) in [#​6381](https://redirect.github.com/mudler/LocalAI/pull/6381) - fix: add strict mode check for no action function by [@​mudler](https://redirect.github.com/mudler) in [#​6294](https://redirect.github.com/mudler/LocalAI/pull/6294) - feat: add agent options to model config by [@​mudler](https://redirect.github.com/mudler) in [#​6383](https://redirect.github.com/mudler/LocalAI/pull/6383) - feat(ui): add button to enable Agentic MCP by [@​mudler](https://redirect.github.com/mudler) in [#​6400](https://redirect.github.com/mudler/LocalAI/pull/6400) - feat(api): support both /v1 and not on openai routes by [@​mudler](https://redirect.github.com/mudler) in [#​6403](https://redirect.github.com/mudler/LocalAI/pull/6403) - feat(ui): display in index when a model supports MCP by [@​mudler](https://redirect.github.com/mudler) in [#​6406](https://redirect.github.com/mudler/LocalAI/pull/6406) - feat(neutts): add backend by [@​mudler](https://redirect.github.com/mudler) in [#​6404](https://redirect.github.com/mudler/LocalAI/pull/6404) - feat(ui): use Alpine.js and drop HTMX by [@​mudler](https://redirect.github.com/mudler) in [#​6418](https://redirect.github.com/mudler/LocalAI/pull/6418) - chore: change color palette such as is closer to the logo by [@​mudler](https://redirect.github.com/mudler) in [#​6423](https://redirect.github.com/mudler/LocalAI/pull/6423) - chore(ui): simplify editing and importing models via YAML by [@​mudler](https://redirect.github.com/mudler) in [#​6424](https://redirect.github.com/mudler/LocalAI/pull/6424) - chore(api): return json errors by [@​mudler](https://redirect.github.com/mudler) in [#​6428](https://redirect.github.com/mudler/LocalAI/pull/6428) - chore(ui): display models and backends in tables by [@​mudler](https://redirect.github.com/mudler) in [#​6430](https://redirect.github.com/mudler/LocalAI/pull/6430) - feat(ci): add gallery updater agent by [@​mudler](https://redirect.github.com/mudler) in [#​6467](https://redirect.github.com/mudler/LocalAI/pull/6467) - feat(gallery): add fuzzy search by [@​mudler](https://redirect.github.com/mudler) in [#​6481](https://redirect.github.com/mudler/LocalAI/pull/6481) - chore(gallery search): fuzzy with case insentivie by [@​mudler](https://redirect.github.com/mudler) in [#​6490](https://redirect.github.com/mudler/LocalAI/pull/6490) - feat(ui): add system backend metadata and deletion in index by [@​mudler](https://redirect.github.com/mudler) in [#​6546](https://redirect.github.com/mudler/LocalAI/pull/6546) - feat(api): OpenAI video create enpoint integration by [@​gmaOCR](https://redirect.github.com/gmaOCR) in [#​6777](https://redirect.github.com/mudler/LocalAI/pull/6777) - feat: add CPU variants for whisper.cpp by [@​mudler](https://redirect.github.com/mudler) in [#​6855](https://redirect.github.com/mudler/LocalAI/pull/6855) - feat: do also text match by [@​mudler](https://redirect.github.com/mudler) in [#​6891](https://redirect.github.com/mudler/LocalAI/pull/6891) ##### 🧠 Models - chore(model gallery): add lemon07r\_vellummini-0.1-qwen3-14b by [@​mudler](https://redirect.github.com/mudler) in [#​6386](https://redirect.github.com/mudler/LocalAI/pull/6386) - chore(model gallery): add liquidai\_lfm2-350m-extract by [@​mudler](https://redirect.github.com/mudler) in [#​6387](https://redirect.github.com/mudler/LocalAI/pull/6387) - chore(model gallery): add liquidai\_lfm2-1.2b-extract by [@​mudler](https://redirect.github.com/mudler) in [#​6388](https://redirect.github.com/mudler/LocalAI/pull/6388) - chore(model gallery): add liquidai\_lfm2-1.2b-rag by [@​mudler](https://redirect.github.com/mudler) in [#​6389](https://redirect.github.com/mudler/LocalAI/pull/6389) - chore(model gallery): add liquidai\_lfm2-1.2b-tool by [@​mudler](https://redirect.github.com/mudler) in [#​6390](https://redirect.github.com/mudler/LocalAI/pull/6390) - chore(model gallery): add liquidai\_lfm2-350m-math by [@​mudler](https://redirect.github.com/mudler) in [#​6391](https://redirect.github.com/mudler/LocalAI/pull/6391) - chore(model gallery): add liquidai\_lfm2-8b-a1b by [@​mudler](https://redirect.github.com/mudler) in [#​6414](https://redirect.github.com/mudler/LocalAI/pull/6414) - chore(model gallery): add gliese-4b-oss-0410-i1 by [@​mudler](https://redirect.github.com/mudler) in [#​6415](https://redirect.github.com/mudler/LocalAI/pull/6415) - chore(model gallery): add qwen3-deckard-large-almost-human-6b-i1 by [@​mudler](https://redirect.github.com/mudler) in [#​6416](https://redirect.github.com/mudler/LocalAI/pull/6416) - chore(model gallery): add ai21labs\_ai21-jamba-reasoning-3b by [@​mudler](https://redirect.github.com/mudler) in [#​6417](https://redirect.github.com/mudler/LocalAI/pull/6417) - chore(ui): skip duplicated entries in search list by [@​mudler](https://redirect.github.com/mudler) in [#​6425](https://redirect.github.com/mudler/LocalAI/pull/6425) - chore(model gallery): add yanolja\_yanoljanext-rosetta-12b-2510 by [@​mudler](https://redirect.github.com/mudler) in [#​6442](https://redirect.github.com/mudler/LocalAI/pull/6442) - chore(model gallery): add agentflow\_agentflow-planner-7b by [@​mudler](https://redirect.github.com/mudler) in [#​6443](https://redirect.github.com/mudler/LocalAI/pull/6443) - chore(model gallery): add gustavecortal\_beck by [@​mudler](https://redirect.github.com/mudler) in [#​6444](https://redirect.github.com/mudler/LocalAI/pull/6444) - chore(model gallery): add qwen3-4b-ra-sft by [@​mudler](https://redirect.github.com/mudler) in [#​6458](https://redirect.github.com/mudler/LocalAI/pull/6458) - chore(model gallery): add demyagent-4b-i1 by [@​mudler](https://redirect.github.com/mudler) in [#​6459](https://redirect.github.com/mudler/LocalAI/pull/6459) - chore(model gallery): add boomerang-qwen3-2.3b by [@​mudler](https://redirect.github.com/mudler) in [#​6460](https://redirect.github.com/mudler/LocalAI/pull/6460) - chore(model gallery): add boomerang-qwen3-4.9b by [@​mudler](https://redirect.github.com/mudler) in [#​6461](https://redirect.github.com/mudler/LocalAI/pull/6461) - gallery: 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6478](https://redirect.github.com/mudler/LocalAI/pull/6478) - gallery: 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6480](https://redirect.github.com/mudler/LocalAI/pull/6480) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6501](https://redirect.github.com/mudler/LocalAI/pull/6501) - chore(model gallery): add mira-v1.7-27b-i1 by [@​mudler](https://redirect.github.com/mudler) in [#​6503](https://redirect.github.com/mudler/LocalAI/pull/6503) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6504](https://redirect.github.com/mudler/LocalAI/pull/6504) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6507](https://redirect.github.com/mudler/LocalAI/pull/6507) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6512](https://redirect.github.com/mudler/LocalAI/pull/6512) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6515](https://redirect.github.com/mudler/LocalAI/pull/6515) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6516](https://redirect.github.com/mudler/LocalAI/pull/6516) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6519](https://redirect.github.com/mudler/LocalAI/pull/6519) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6522](https://redirect.github.com/mudler/LocalAI/pull/6522) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6524](https://redirect.github.com/mudler/LocalAI/pull/6524) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6534](https://redirect.github.com/mudler/LocalAI/pull/6534) - chore(model gallery): 🤖 add new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6536](https://redirect.github.com/mudler/LocalAI/pull/6536) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6557](https://redirect.github.com/mudler/LocalAI/pull/6557) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6566](https://redirect.github.com/mudler/LocalAI/pull/6566) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6581](https://redirect.github.com/mudler/LocalAI/pull/6581) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6597](https://redirect.github.com/mudler/LocalAI/pull/6597) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6636](https://redirect.github.com/mudler/LocalAI/pull/6636) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6640](https://redirect.github.com/mudler/LocalAI/pull/6640) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6646](https://redirect.github.com/mudler/LocalAI/pull/6646) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6658](https://redirect.github.com/mudler/LocalAI/pull/6658) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6664](https://redirect.github.com/mudler/LocalAI/pull/6664) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6691](https://redirect.github.com/mudler/LocalAI/pull/6691) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6697](https://redirect.github.com/mudler/LocalAI/pull/6697) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6706](https://redirect.github.com/mudler/LocalAI/pull/6706) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6721](https://redirect.github.com/mudler/LocalAI/pull/6721) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6767](https://redirect.github.com/mudler/LocalAI/pull/6767) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6776](https://redirect.github.com/mudler/LocalAI/pull/6776) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6784](https://redirect.github.com/mudler/LocalAI/pull/6784) - chore(model gallery): add allenai\_olmocr-2-7b-1025 by [@​mudler](https://redirect.github.com/mudler) in [#​6797](https://redirect.github.com/mudler/LocalAI/pull/6797) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6799](https://redirect.github.com/mudler/LocalAI/pull/6799) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6854](https://redirect.github.com/mudler/LocalAI/pull/6854) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6862](https://redirect.github.com/mudler/LocalAI/pull/6862) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6863](https://redirect.github.com/mudler/LocalAI/pull/6863) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6864](https://redirect.github.com/mudler/LocalAI/pull/6864) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6879](https://redirect.github.com/mudler/LocalAI/pull/6879) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6884](https://redirect.github.com/mudler/LocalAI/pull/6884) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6908](https://redirect.github.com/mudler/LocalAI/pull/6908) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6910](https://redirect.github.com/mudler/LocalAI/pull/6910) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6911](https://redirect.github.com/mudler/LocalAI/pull/6911) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6919](https://redirect.github.com/mudler/LocalAI/pull/6919) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6921](https://redirect.github.com/mudler/LocalAI/pull/6921) - chore(model gallery): 🤖 add 1 new models via gallery agent by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6940](https://redirect.github.com/mudler/LocalAI/pull/6940) - chore(model gallery): add qwen3-vl-30b-a3b-instruct by [@​mudler](https://redirect.github.com/mudler) in [#​6960](https://redirect.github.com/mudler/LocalAI/pull/6960) - chore(model gallery): add huihui-qwen3-vl-30b-a3b-instruct-abliterated by [@​mudler](https://redirect.github.com/mudler) in [#​6961](https://redirect.github.com/mudler/LocalAI/pull/6961) - chore(model gallery): add qwen3-vl-30b-a3b-thinking by [@​mudler](https://redirect.github.com/mudler) in [#​6962](https://redirect.github.com/mudler/LocalAI/pull/6962) - chore(model gallery): add qwen3-vl-4b-instruct by [@​mudler](https://redirect.github.com/mudler) in [#​6963](https://redirect.github.com/mudler/LocalAI/pull/6963) - chore(model gallery): add qwen3-vl-32b-instruct by [@​mudler](https://redirect.github.com/mudler) in [#​6964](https://redirect.github.com/mudler/LocalAI/pull/6964) - chore(model gallery): add qwen3-vl-4b-thinking by [@​mudler](https://redirect.github.com/mudler) in [#​6965](https://redirect.github.com/mudler/LocalAI/pull/6965) - chore(model gallery): add qwen3-vl-2b-thinking by [@​mudler](https://redirect.github.com/mudler) in [#​6966](https://redirect.github.com/mudler/LocalAI/pull/6966) - chore(model gallery): add qwen3-vl-2b-instruct by [@​mudler](https://redirect.github.com/mudler) in [#​6967](https://redirect.github.com/mudler/LocalAI/pull/6967) ##### 📖 Documentation and examples - chore(docs): add MCP example by [@​mudler](https://redirect.github.com/mudler) in [#​6405](https://redirect.github.com/mudler/LocalAI/pull/6405) - chore(docs): enhancements and clarifications by [@​mudler](https://redirect.github.com/mudler) in [#​6433](https://redirect.github.com/mudler/LocalAI/pull/6433) ##### 👒 Dependencies - chore(deps): bump actions/stale from 10.0.0 to 10.1.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6392](https://redirect.github.com/mudler/LocalAI/pull/6392) - chore(deps): bump github.com/rs/zerolog from 1.33.0 to 1.34.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6274](https://redirect.github.com/mudler/LocalAI/pull/6274) - chore(deps): bump github.com/nikolalohinski/gonja/v2 from 2.3.2 to 2.4.1 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6394](https://redirect.github.com/mudler/LocalAI/pull/6394) - chore(deps): bump github.com/docker/go-connections from 0.5.0 to 0.6.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6393](https://redirect.github.com/mudler/LocalAI/pull/6393) - chore: update cogito and simplify MCP logics by [@​mudler](https://redirect.github.com/mudler) in [#​6413](https://redirect.github.com/mudler/LocalAI/pull/6413) - chore(deps): bump github.com/docker/docker from 28.3.3+incompatible to 28.5.0+incompatible by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6399](https://redirect.github.com/mudler/LocalAI/pull/6399) - chore(deps): bump github.com/multiformats/go-multiaddr from 0.16.0 to 0.16.1 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6277](https://redirect.github.com/mudler/LocalAI/pull/6277) - chore(deps): bump github.com/quic-go/quic-go from 0.54.0 to 0.54.1 in the go\_modules group across 1 directory by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6431](https://redirect.github.com/mudler/LocalAI/pull/6431) - chore(deps): bump github/codeql-action from 3 to 4 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6451](https://redirect.github.com/mudler/LocalAI/pull/6451) - chore(deps): bump github.com/containerd/containerd from 1.7.27 to 1.7.28 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6448](https://redirect.github.com/mudler/LocalAI/pull/6448) - chore(deps): bump github.com/schollz/progressbar/v3 from 3.14.4 to 3.18.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6446](https://redirect.github.com/mudler/LocalAI/pull/6446) - chore(deps): bump dario.cat/mergo from 1.0.1 to 1.0.2 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6447](https://redirect.github.com/mudler/LocalAI/pull/6447) - chore(deps): bump github.com/ebitengine/purego from 0.8.4 to 0.9.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6450](https://redirect.github.com/mudler/LocalAI/pull/6450) - chore(deps): bump google.golang.org/grpc from 1.67.1 to 1.76.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6449](https://redirect.github.com/mudler/LocalAI/pull/6449) - feat(mcp): add planning and reevaluation by [@​mudler](https://redirect.github.com/mudler) in [#​6541](https://redirect.github.com/mudler/LocalAI/pull/6541) - chore(deps): bump github.com/prometheus/client\_golang from 1.23.0 to 1.23.2 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6600](https://redirect.github.com/mudler/LocalAI/pull/6600) - chore(deps): bump github.com/tmc/langchaingo from 0.1.13 to 0.1.14 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6604](https://redirect.github.com/mudler/LocalAI/pull/6604) - chore(deps): bump securego/gosec from 2.22.9 to 2.22.10 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6599](https://redirect.github.com/mudler/LocalAI/pull/6599) - chore(deps): bump github.com/gpustack/gguf-parser-go from 0.17.0 to 0.22.1 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6602](https://redirect.github.com/mudler/LocalAI/pull/6602) - chore(deps): bump github.com/onsi/ginkgo/v2 from 2.25.3 to 2.26.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6601](https://redirect.github.com/mudler/LocalAI/pull/6601) - chore(deps): bump github.com/gofrs/flock from 0.12.1 to 0.13.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6598](https://redirect.github.com/mudler/LocalAI/pull/6598) - chore(deps): bump cogito by [@​mudler](https://redirect.github.com/mudler) in [#​6785](https://redirect.github.com/mudler/LocalAI/pull/6785) - chore(deps): bump github.com/gofiber/contrib/fiberzerolog from 1.0.2 to 1.0.3 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6816](https://redirect.github.com/mudler/LocalAI/pull/6816) - chore(deps): bump grpcio from 1.75.1 to 1.76.0 in /backend/python/coqui by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6822](https://redirect.github.com/mudler/LocalAI/pull/6822) - chore(deps): bump mxschmitt/action-tmate from 3.22 to 3.23 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6831](https://redirect.github.com/mudler/LocalAI/pull/6831) - chore(deps): bump github.com/gofiber/swagger from 1.0.0 to 1.1.1 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6825](https://redirect.github.com/mudler/LocalAI/pull/6825) - chore(deps): bump github.com/alecthomas/kong from 0.9.0 to 1.12.1 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6829](https://redirect.github.com/mudler/LocalAI/pull/6829) - chore(deps): bump actions/upload-artifact from 4 to 5 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6824](https://redirect.github.com/mudler/LocalAI/pull/6824) - chore(deps): bump github.com/klauspost/cpuid/v2 from 2.2.10 to 2.3.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6821](https://redirect.github.com/mudler/LocalAI/pull/6821) - chore(deps): bump grpcio from 1.75.1 to 1.76.0 in /backend/python/rerankers by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6819](https://redirect.github.com/mudler/LocalAI/pull/6819) - chore(deps): bump grpcio from 1.75.1 to 1.76.0 in /backend/python/common/template by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6830](https://redirect.github.com/mudler/LocalAI/pull/6830) - chore(deps): bump grpcio from 1.75.1 to 1.76.0 in /backend/python/bark by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6826](https://redirect.github.com/mudler/LocalAI/pull/6826) - chore(deps): bump grpcio from 1.75.1 to 1.76.0 in /backend/python/vllm by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6827](https://redirect.github.com/mudler/LocalAI/pull/6827) - chore(deps): bump grpcio from 1.75.1 to 1.76.0 in /backend/python/exllama2 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6836](https://redirect.github.com/mudler/LocalAI/pull/6836) - chore(deps): bump grpcio from 1.75.1 to 1.76.0 in /backend/python/transformers by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6828](https://redirect.github.com/mudler/LocalAI/pull/6828) - chore(deps): bump grpcio from 1.75.1 to 1.76.0 in /backend/python/diffusers by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6839](https://redirect.github.com/mudler/LocalAI/pull/6839) - chore(deps): bump actions/download-artifact from 5 to 6 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6837](https://redirect.github.com/mudler/LocalAI/pull/6837) - chore(deps): bump github.com/gofiber/template/html/v2 from 2.1.2 to 2.1.3 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6832](https://redirect.github.com/mudler/LocalAI/pull/6832) - chore(deps): bump fyne.io/fyne/v2 from 2.6.3 to 2.7.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​6840](https://redirect.github.com/mudler/LocalAI/pull/6840) ##### Other Changes - docs: :arrow\_up: update docs version mudler/LocalAI by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6378](https://redirect.github.com/mudler/LocalAI/pull/6378) - chore: :arrow\_up: Update ggml-org/llama.cpp to `128d522c04286e019666bd6ee4d18e3fbf8772e2` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6379](https://redirect.github.com/mudler/LocalAI/pull/6379) - chore: :arrow\_up: Update ggml-org/llama.cpp to `86df2c9ae4f2f1ee63d2558a9dc797b98524639b` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6382](https://redirect.github.com/mudler/LocalAI/pull/6382) - feat(swagger): update swagger by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6384](https://redirect.github.com/mudler/LocalAI/pull/6384) - chore: :arrow\_up: Update ggml-org/llama.cpp to `ca71fb9b368e3db96e028f80c4c9df6b6b370edd` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6385](https://redirect.github.com/mudler/LocalAI/pull/6385) - chore: :arrow\_up: Update ggml-org/llama.cpp to `3df2244df40c67dfd6ad548b40ccc507a066af2b` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6401](https://redirect.github.com/mudler/LocalAI/pull/6401) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `c8223a8548ad64435266e551385fc51aca9ee8ab` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6402](https://redirect.github.com/mudler/LocalAI/pull/6402) - chore: :arrow\_up: Update ggml-org/llama.cpp to `aeaf8a36f06b5810f5ae4bbefe26edb33925cf5e` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6408](https://redirect.github.com/mudler/LocalAI/pull/6408) - chore: :arrow\_up: Update ggml-org/llama.cpp to `9d0882840e6c3fb62965d03af0e22880ea90e012` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6410](https://redirect.github.com/mudler/LocalAI/pull/6410) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `8877dfc11a9322ce1990958494cf2e41c54657eb` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6411](https://redirect.github.com/mudler/LocalAI/pull/6411) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `98930fded1c06e601a38903607af262f04893880` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6420](https://redirect.github.com/mudler/LocalAI/pull/6420) - chore(deps): bump llama.cpp to '1deee0f8d494981c32597dca8b5f8696d399b0f2' by [@​mudler](https://redirect.github.com/mudler) in [#​6421](https://redirect.github.com/mudler/LocalAI/pull/6421) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `85871a946971955c635f56bca24ea2a37fed6324` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6435](https://redirect.github.com/mudler/LocalAI/pull/6435) - chore: :arrow\_up: Update ggml-org/llama.cpp to `e60f01d941bc5b7fae62dd57fee4cec76ec0ea6e` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6434](https://redirect.github.com/mudler/LocalAI/pull/6434) - chore: :arrow\_up: Update ggml-org/llama.cpp to `11f0af5504252e453d57406a935480c909e3ff37` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6437](https://redirect.github.com/mudler/LocalAI/pull/6437) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `a91dd3be72f70dd1b3cb6e252f35fa17b93f596c` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6439](https://redirect.github.com/mudler/LocalAI/pull/6439) - chore: :arrow\_up: Update ggml-org/llama.cpp to `a31cf36ad946a13b3a646bf0dadf2a481e89f944` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6440](https://redirect.github.com/mudler/LocalAI/pull/6440) - chore: :arrow\_up: Update ggml-org/llama.cpp to `e60f241eacec42d3bd7c9edd37d236ebf35132a8` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6452](https://redirect.github.com/mudler/LocalAI/pull/6452) - chore: :arrow\_up: Update ggml-org/llama.cpp to `fa882fd2b1bcb663de23af06fdc391489d05b007` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6454](https://redirect.github.com/mudler/LocalAI/pull/6454) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `4979e04f5dcaccb36057e059bbaed8a2f5288315` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6462](https://redirect.github.com/mudler/LocalAI/pull/6462) - chore: :arrow\_up: Update ggml-org/llama.cpp to `466c1911ab736f0b7366127edee99f8ee5687417` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6463](https://redirect.github.com/mudler/LocalAI/pull/6463) - chore: :arrow\_up: Update ggml-org/llama.cpp to `1bb4f43380944e94c9a86e305789ba103f5e62bd` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6488](https://redirect.github.com/mudler/LocalAI/pull/6488) - chore: :arrow\_up: Update ggml-org/llama.cpp to `66b0dbcb2d462e7b70ba5a69ee8c3899ac2efb1c` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6520](https://redirect.github.com/mudler/LocalAI/pull/6520) - chore: :arrow\_up: Update ggml-org/llama.cpp to `ee09828cb057460b369576410601a3a09279e23c` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6550](https://redirect.github.com/mudler/LocalAI/pull/6550) - chore: :arrow\_up: Update ggml-org/llama.cpp to `cec5edbcaec69bbf6d5851cabce4ac148be41701` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6576](https://redirect.github.com/mudler/LocalAI/pull/6576) - chore: :arrow\_up: Update ggml-org/llama.cpp to `84bf3c677857279037adf67cdcfd89eaa4ca9281` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6621](https://redirect.github.com/mudler/LocalAI/pull/6621) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `23c19308d8a5786c65effa4570204a881660ff31` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6622](https://redirect.github.com/mudler/LocalAI/pull/6622) - Revert "chore(deps): bump securego/gosec from 2.22.9 to 2.22.10" by [@​mudler](https://redirect.github.com/mudler) in [#​6638](https://redirect.github.com/mudler/LocalAI/pull/6638) - chore: :arrow\_up: Update ggml-org/llama.cpp to `03792ad93609fc67e41041c6347d9aa14e5e0d74` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6651](https://redirect.github.com/mudler/LocalAI/pull/6651) - chore: :arrow\_up: Update ggml-org/llama.cpp to `a2e0088d9242bd9e57f8b852b05a6e47843b5a45` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6676](https://redirect.github.com/mudler/LocalAI/pull/6676) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `322c2adb753a9506f0becee134a7f75e2a6b5687` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6677](https://redirect.github.com/mudler/LocalAI/pull/6677) - chore: :arrow\_up: Update ggml-org/llama.cpp to `0bf47a1dbba4d36f2aff4e8c34b06210ba34e688` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6703](https://redirect.github.com/mudler/LocalAI/pull/6703) - chore: :arrow\_up: Update ggml-org/llama.cpp to `55945d2ef51b93821d4b6f4a9b994393344a90db` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6729](https://redirect.github.com/mudler/LocalAI/pull/6729) - chore: :arrow\_up: Update ggml-org/llama.cpp to `5d195f17bc60eacc15cfb929f9403cf29ccdf419` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6757](https://redirect.github.com/mudler/LocalAI/pull/6757) - chore: :arrow\_up: Update ggml-org/llama.cpp to `bbac6a26b2bd7f7c1f0831cb1e7b52734c66673b` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6783](https://redirect.github.com/mudler/LocalAI/pull/6783) - feat(swagger): update swagger by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6834](https://redirect.github.com/mudler/LocalAI/pull/6834) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `f16c12f3f55f5bd3d6ac8cf2f31ab90a42c884d5` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6835](https://redirect.github.com/mudler/LocalAI/pull/6835) - chore: :arrow\_up: Update ggml-org/llama.cpp to `5a4ff43e7dd049e35942bc3d12361dab2f155544` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6841](https://redirect.github.com/mudler/LocalAI/pull/6841) - chore: :arrow\_up: Update ggml-org/whisper.cpp to `c62adfbd1ecdaea9e295c72d672992514a2d887c` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6868](https://redirect.github.com/mudler/LocalAI/pull/6868) - chore: :arrow\_up: Update ggml-org/llama.cpp to `851553ea6b24cb39fd5fd188b437d777cb411de8` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6869](https://redirect.github.com/mudler/LocalAI/pull/6869) - chore: :arrow\_up: Update ggml-org/llama.cpp to `3464bdac37027c5e9661621fc75ffcef3c19c6ef` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6896](https://redirect.github.com/mudler/LocalAI/pull/6896) - chore: :arrow\_up: Update ggml-org/llama.cpp to `16724b5b6836a2d4b8936a5824d2ff27c52b4517` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6925](https://redirect.github.com/mudler/LocalAI/pull/6925) - chore: :arrow\_up: Update ggml-org/llama.cpp to `4146d6a1a6228711a487a1e3e9ddd120f8d027d7` by [@​localai-bot](https://redirect.github.com/localai-bot) in [#​6945](https://redirect.github.com/mudler/LocalAI/pull/6945) </details> ##### New Contributors * @​robert-cronin made their first contributi[https://github.com/mudler/LocalAI/pull/6495](https://redirect.github.com/mudler/LocalAI/pull/6495)l/6495 * @​gmaOCR made their first contributi[https://github.com/mudler/LocalAI/pull/6777](https://redirect.github.com/mudler/LocalAI/pull/6777)l/6777 * @​lukasdotcom made their first contributi[https://github.com/mudler/LocalAI/pull/6842](https://redirect.github.com/mudler/LocalAI/pull/6842)l/6842 **Full Changelog**: <https://github.com/mudler/LocalAI/compare/v3.6.0...v3.7.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
b30189fd43 | chore(helm): update image lscr.io/linuxserver/pyload-ng digest to 532879d (#41311) | ||
|
|
4c81ebfb93 |
chore(helm): update image docker.io/foxxmd/multi-scrobbler digest to e1e4832 (#41309)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/foxxmd/multi-scrobbler | digest | `e23ddda` -> `e1e4832` | --- > [!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--> |
||
|
|
33ec3ffae0 |
chore(helm): update image docker.io/lancachenet/monolithic digest to 34c6139 (#41310)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/lancachenet/monolithic | digest | `2906722` -> `34c6139` | --- > [!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--> |
||
|
|
022dbf9c98 |
chore(helm): update image docker.io/bitnamisecure/mongodb digest to d25fe32 (#41307)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/bitnamisecure/mongodb | digest | `5b1213a` -> `d25fe32` | --- > [!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--> |
||
|
|
d13ebbedf5 |
chore(helm): update image docker.io/bitnamisecure/redis digest to 7a367f2 (#41308)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/bitnamisecure/redis | digest | `f8fc4ba` -> `7a367f2` | --- > [!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--> |
||
|
|
a5f2c2a3d5 |
chore(helm): update image ghcr.io/kiwix/kiwix-serve 3.7.0 → 3.8.0 (#41304)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/kiwix/kiwix-serve](https://redirect.github.com/openzim/kiwix-tools) | minor | `6ac2c4f` -> `40799fe` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> |
||
|
|
6b970eda25 |
feat(booklore) move booklore to stable (#41286)
**Description** Move Booklore to stable ⚒️ Fixes # **⚙️ 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?** **📃 Notes:** **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made 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._ |
||
|
|
f668253f0b |
chore(helm): update immich v2.2.0 → v2.2.1 (patch) (#41303)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/immich-app/immich-machine-learning](https://redirect.github.com/immich-app/immich) | patch | `640d85e` -> `c0e1fd0` | | [ghcr.io/immich-app/immich-machine-learning](https://redirect.github.com/immich-app/immich) | patch | `0cbaebf` -> `b91fd52` | | [ghcr.io/immich-app/immich-machine-learning](https://redirect.github.com/immich-app/immich) | patch | `c3676c2` -> `d25ad04` | | [ghcr.io/immich-app/immich-machine-learning](https://redirect.github.com/immich-app/immich) | patch | `5df77af` -> `590a76b` | | [ghcr.io/immich-app/immich-server](https://redirect.github.com/immich-app/immich) | patch | `9062750` -> `2c951a4` | --- > [!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>immich-app/immich (ghcr.io/immich-app/immich-machine-learning)</summary> ### [`v2.2.1`](https://redirect.github.com/immich-app/immich/releases/tag/v2.2.1) [Compare Source](https://redirect.github.com/immich-app/immich/compare/v2.2.0...v2.2.1) <!-- Release notes generated using configuration in .github/release.yml at v2.2.1 --> ##### What's Changed ##### 🐛 Bug fixes - fix(mobile): regression - not displayed activity button in top bar by [@​idubnori](https://redirect.github.com/idubnori) in [#​23366](https://redirect.github.com/immich-app/immich/pull/23366) - fix: asset copy validation error by [@​danieldietzler](https://redirect.github.com/danieldietzler) in [#​23387](https://redirect.github.com/immich-app/immich/pull/23387) - fix(ml): ocr failing with rootless docker by [@​mertalev](https://redirect.github.com/mertalev) in [#​23402](https://redirect.github.com/immich-app/immich/pull/23402) - fix(mobile): video seeking on android by [@​mertalev](https://redirect.github.com/mertalev) in [#​23405](https://redirect.github.com/immich-app/immich/pull/23405) - fix: button condition rendering by [@​alextran1502](https://redirect.github.com/alextran1502) in [#​23400](https://redirect.github.com/immich-app/immich/pull/23400) - fix: view in timeline does not jump to the timeline correctly by [@​alextran1502](https://redirect.github.com/alextran1502) in [#​23428](https://redirect.github.com/immich-app/immich/pull/23428) - fix: show close button on purchase modal by [@​alextran1502](https://redirect.github.com/alextran1502) in [#​23436](https://redirect.github.com/immich-app/immich/pull/23436) ##### 📚 Documentation - chore: update android signing fingerprints to docs by [@​luneth](https://redirect.github.com/luneth) in [#​23361](https://redirect.github.com/immich-app/immich/pull/23361) ##### 🌐 Translations - chore(web): update translations by [@​weblate](https://redirect.github.com/weblate) in [#​23375](https://redirect.github.com/immich-app/immich/pull/23375) ##### New Contributors - [@​luneth](https://redirect.github.com/luneth) made their first contribution in [#​23361](https://redirect.github.com/immich-app/immich/pull/23361) **Full Changelog**: <https://github.com/immich-app/immich/compare/v2.2.0...v2.2.1> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
0b51ed02f3 |
chore(helm): update image twinproduction/gatus v5.29.0 → v5.30.0 (#41306)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [twinproduction/gatus](https://redirect.github.com/TwiN/gatus) | minor | `b4afbca` -> `bab5a31` | --- > [!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.30.0`](https://redirect.github.com/TwiN/gatus/releases/tag/v5.30.0) [Compare Source](https://redirect.github.com/TwiN/gatus/compare/v5.29.0...v5.30.0)  #### What's Changed - feat(condition): Format certificate and domain expiration durations in human-readable format by [@​TwiN](https://redirect.github.com/TwiN) in [#​1370](https://redirect.github.com/TwiN/gatus/pull/1370) - fix(external-endpoint): check per-endpoint maintenance windows by [@​zapteryx](https://redirect.github.com/zapteryx) in [#​1369](https://redirect.github.com/TwiN/gatus/pull/1369) - fix(ui): Modernize response time chart by [@​TwiN](https://redirect.github.com/TwiN) in [#​1373](https://redirect.github.com/TwiN/gatus/pull/1373) #### New Contributors - [@​zapteryx](https://redirect.github.com/zapteryx) made their first contribution in [#​1369](https://redirect.github.com/TwiN/gatus/pull/1369) **Full Changelog**: <https://github.com/TwiN/gatus/compare/v5.29.0...v5.30.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |