Block dreame_vacuum versions older than 1.0.4 (#116673)
This commit is contained in:
parent
2b2b46c774
commit
ee7f818fcd
1 changed files with 6 additions and 1 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue