Skip to content

Breakage upgrading to Home Assistant Core 2026.4.0 (with temporary fix) #8062

@hrfried

Description

@hrfried

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

  1. Upgrade home assistant core to 2026.4.0
  2. Failure to start services

Expected behaviour

  • home-assistant.service should load normally

Actual behaviour

  • Failure to start home-assistant.service

Extra details

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    External bug 🐞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.

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions