From a896a6e8db50be4001f82cc4fa10e16af4baad78 Mon Sep 17 00:00:00 2001 From: Qwal Date: Tue, 10 Dec 2024 13:29:00 +0100 Subject: [PATCH] fix(mealie): homepage widget (#29815) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Fix mealie homepage widget displaying an error on default version: 1 ![image](https://github.com/user-attachments/assets/fc9d6d8f-46ad-4b69-ae15-ab1f4140eb28) This is presumably related to this breaking API change since setting version to 2 works fine https://github.com/gethomepage/homepage/pull/3895 ⚒️ Fixes # **⚙️ 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 **🧪 How Has This Been Tested?** Manually added a widget in homepage with version: 2 ![image](https://github.com/user-attachments/assets/220a5f8c-5a29-46da-86a6-34d7f6905277) ~~I haven't tested the changes directly (not sure how).~~ Added the version as customkv to my values and that fixes the widget aswell. **📃 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 corresponding changes to the documentation - [x] ⚠️ My changes generate no new warnings - [ ] 🧪 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):` or `chore(chart-name):` **➕ 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._ --- charts/stable/mealie/Chart.yaml | 2 +- charts/stable/mealie/values.yaml | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/charts/stable/mealie/Chart.yaml b/charts/stable/mealie/Chart.yaml index 1dbe03cc428..54905ac4910 100644 --- a/charts/stable/mealie/Chart.yaml +++ b/charts/stable/mealie/Chart.yaml @@ -32,4 +32,4 @@ sources: - https://github.com/mealie-recipes/mealie - https://github.com/truecharts/charts/tree/master/charts/stable/mealie type: application -version: 24.1.1 +version: 24.1.2 diff --git a/charts/stable/mealie/values.yaml b/charts/stable/mealie/values.yaml index f6c75947105..1dba5b24c91 100644 --- a/charts/stable/mealie/values.yaml +++ b/charts/stable/mealie/values.yaml @@ -115,3 +115,10 @@ cnpg: portal: open: enabled: true + +ingress: + main: + integrations: + homepage: + widget: + version: 2 \ No newline at end of file