-
-
Notifications
You must be signed in to change notification settings - Fork 546
Breakage upgrading to Home Assistant Core 2026.4.0 (with temporary fix) #8062
Copy link
Copy link
Open
Labels
External bug 🐞For bugs which are not caused by DietPi.For bugs which are not caused by DietPi.Waiting for external fix ⏳Workaround available 🆗Workaround is available/has been implemented, but a definite solution should be found when possible.Workaround is available/has been implemented, but a definite solution should be found when possible.
Milestone
Description
Creating a bug report/issue
- I have searched the existing open and closed issues
Required Information
- DietPi version | 10.2.3 (probably affects all versions)
- Distro version | bookworm (probably affects all versions)
- Kernel version | Linux DietPi8G 6.12.75+rpt-rpi-v8 (probably affects all versions)
- SBC model | RPi 4 Model B (aarch64)
- Power supply used | Irrelevant
- SD card used | Irrelevant
Additional Information (if applicable)
- Software title | Home Assistant
- Was the software title installed freshly or updated/migrated? Upgraded from 2026.3.4 to 2026.4.0
- Can this issue be replicated on a fresh installation of DietPi? Probably
Steps to reproduce
- Upgrade home assistant core to 2026.4.0
- Failure to start services
Expected behaviour
home-assistant.serviceshould load normally
Actual behaviour
- Failure to start
home-assistant.service
Extra details
- See ha core bug report: Home Assistant Core (venv installation) fails to start because it incorrectly loads the hassio integration during bootstrap. home-assistant/core#166976
- Temporary fix (thanks to user a323870 who I'm not tagging, as they may not want notifications from this repo) : try/except importing IngressPanel
Example diff that allows homeassistant to work correctly after upgrade to 2026.4.0:
--- /home/dietpi/backups/ha-core-2026-4-0-issue_2026-04-01/addon_panel.py 2026-04-01 11:55:41.446406790 -0400
+++ /home/homeassistant/.pyenv/versions/3.14.3/lib/python3.14/site-packages/homeassistant/components/hassio/addon_panel.py 2026-04-01 11:59:07.554406667 -0400
@@ -4,7 +4,10 @@
import logging
from aiohasupervisor import SupervisorError
-from aiohasupervisor.models import IngressPanel
+try:
+ from aiohasupervisor.models import IngressPanel
+except Exception:
+ IngressPanel = None
from aiohttp import web
from homeassistant.components import frontend
Creating mostly for visibility as it's really an upstream problem.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
External bug 🐞For bugs which are not caused by DietPi.For bugs which are not caused by DietPi.Waiting for external fix ⏳Workaround available 🆗Workaround is available/has been implemented, but a definite solution should be found when possible.Workaround is available/has been implemented, but a definite solution should be found when possible.