v2.8.2 — HA 2026.3 compatibility fixes
🦾 Maintenance release
Fixes
Critical fixes for Home Assistant 2026.3 compatibility:
-
fix: OptionsFlow config_entry is now read-only in HA 2026.3 — Options flow crashed with
AttributeError: property 'config_entry' has no setter. Fixed by callingsuper().__init__()instead of manually assigning the property. -
fix: entities not created after startup —
async_block_till_done()deadlocks when called inside theEVENT_HOMEASSISTANT_STARTEDhandler, causing all auto_areas entities (presence sensors, cover groups, light groups) to never be created. Reverted to a shortasyncio.sleep(2).