Block places <=2.7.0 custom integration from breaking the recorder (#121662)

This commit is contained in:
Franck Nijhof 2024-07-10 10:24:44 +02:00
parent ac3eecc879
commit 9c83af3789
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3

View File

@ -109,6 +109,11 @@ BLOCKED_CUSTOM_INTEGRATIONS: dict[str, BlockedIntegration] = {
"icloud3": BlockedIntegration(
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(