Skip to content

v1.8.11

Choose a tag to compare

@Geek-MD Geek-MD released this 16 Feb 14:27
b4da250

v1.8.11 - 2026-02-16

Fixed

  • Critical fix for AttributeError in OptionsFlowHandler. The OptionsFlowHandler.__init__ method was attempting to set self.config_entry = config_entry, but config_entry is a read-only property inherited from config_entries.OptionsFlow without a setter. This caused an AttributeError: property 'config_entry' of 'OptionsFlowHandler' object has no setter when users tried to access the integration's options flow.
    • Removed the custom __init__ method from OptionsFlowHandler
    • The parent class config_entries.OptionsFlow automatically handles the config_entry parameter passed from async_get_options_flow()
    • The config_entry property is now properly accessible via the parent class's property getter
    • This follows the standard Home Assistant pattern where OptionsFlow subclasses don't need to override __init__