Skip to content

Commit

Permalink
Block dreame_vacuum versions older than 1.0.4 (#116673)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored May 3, 2024
1 parent 2b2b46c commit ee7f818
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion homeassistant/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,12 @@ class BlockedIntegration:

BLOCKED_CUSTOM_INTEGRATIONS: dict[str, BlockedIntegration] = {
# Added in 2024.3.0 because of https://github.com/home-assistant/core/issues/112464
"start_time": BlockedIntegration(AwesomeVersion("1.1.7"), "breaks Home Assistant")
"start_time": BlockedIntegration(AwesomeVersion("1.1.7"), "breaks Home Assistant"),
# Added in 2024.5.1 because of
# https://community.home-assistant.io/t/psa-2024-5-upgrade-failure-and-dreame-vacuum-custom-integration/724612
"dreame_vacuum": BlockedIntegration(
AwesomeVersion("1.0.4"), "crashes Home Assistant"
),
}

DATA_COMPONENTS = "components"
Expand Down

0 comments on commit ee7f818

Please sign in to comment.