Skip to content

v2.8.2 — HA 2026.3 compatibility fixes

Choose a tag to compare

@c-st c-st released this 27 Mar 20:39
a418f70

🦾 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 calling super().__init__() instead of manually assigning the property.

  • fix: entities not created after startupasync_block_till_done() deadlocks when called inside the EVENT_HOMEASSISTANT_STARTED handler, causing all auto_areas entities (presence sensors, cover groups, light groups) to never be created. Reverted to a short asyncio.sleep(2).