Block dreame_vacuum versions older than 1.0.4 (#116673)

This commit is contained in:
J. Nick Koston 2024-05-03 05:17:01 -05:00 committed by GitHub
parent 2b2b46c774
commit ee7f818fcd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -90,7 +90,12 @@ class BlockedIntegration:
BLOCKED_CUSTOM_INTEGRATIONS: dict[str, BlockedIntegration] = { BLOCKED_CUSTOM_INTEGRATIONS: dict[str, BlockedIntegration] = {
# Added in 2024.3.0 because of https://github.com/home-assistant/core/issues/112464 # 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" DATA_COMPONENTS = "components"