mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 12:47:08 +00:00
Block places <=2.7.0 custom integration from breaking the recorder (#121662)
This commit is contained in:
parent
65e03f952a
commit
e9b7cc1eba
@ -109,6 +109,11 @@ BLOCKED_CUSTOM_INTEGRATIONS: dict[str, BlockedIntegration] = {
|
|||||||
"icloud3": BlockedIntegration(
|
"icloud3": BlockedIntegration(
|
||||||
AwesomeVersion("3.0.5.3"), "prevents recorder from working"
|
AwesomeVersion("3.0.5.3"), "prevents recorder from working"
|
||||||
),
|
),
|
||||||
|
# Added in 2024.7.2 because of
|
||||||
|
# https://github.com/custom-components/places/issues/289
|
||||||
|
"places": BlockedIntegration(
|
||||||
|
AwesomeVersion("2.7.1"), "prevents recorder from working"
|
||||||
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
DATA_COMPONENTS: HassKey[dict[str, ModuleType | ComponentProtocol]] = HassKey(
|
DATA_COMPONENTS: HassKey[dict[str, ModuleType | ComponentProtocol]] = HassKey(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user