Hi! First, thank you for maintaining this integration — it's working well overall.
After updating to Home Assistant Core 2025.6, I've started seeing several compatibility warnings and one previously breaking issue that I’ve patched manually:
Previously breaking (now patched manually):
async_forward_entry_setup was removed in HA 2025.6 — had to replace with async_forward_entry_setups
Current warnings in logs:
HomeAssistantType is deprecated and should be replaced with HomeAssistant from homeassistant.core
- Light entity (e.g.
light.dishwasher_light) does not define supported_color_modes, which will break in a future HA version
- Sensor entity (e.g.
sensor.washing_machine_energy_consumption_current) is missing native_unit_of_measurement
- Detected blocking import:
import_module("python.appliances.wm") inside the event loop (non-breaking but suboptimal)
The integration is still functioning, but just flagging these for future compatibility. I’d be happy to help test any updates if needed. Thanks again!
Hi! First, thank you for maintaining this integration — it's working well overall.
After updating to Home Assistant Core 2025.6, I've started seeing several compatibility warnings and one previously breaking issue that I’ve patched manually:
Previously breaking (now patched manually):
async_forward_entry_setupwas removed in HA 2025.6 — had to replace withasync_forward_entry_setupsCurrent warnings in logs:
HomeAssistantTypeis deprecated and should be replaced withHomeAssistantfromhomeassistant.corelight.dishwasher_light) does not definesupported_color_modes, which will break in a future HA versionsensor.washing_machine_energy_consumption_current) is missingnative_unit_of_measurementimport_module("python.appliances.wm")inside the event loop (non-breaking but suboptimal)The integration is still functioning, but just flagging these for future compatibility. I’d be happy to help test any updates if needed. Thanks again!