From e9b7cc1eba83c79624cbfc4c3c82334595b2f382 Mon Sep 17 00:00:00 2001 From: Franck Nijhof <git@frenck.dev> Date: Wed, 10 Jul 2024 10:24:44 +0200 Subject: [PATCH] Block places <=2.7.0 custom integration from breaking the recorder (#121662) --- homeassistant/loader.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/homeassistant/loader.py b/homeassistant/loader.py index a654904d69b..f889f8fcb6e 100644 --- a/homeassistant/loader.py +++ b/homeassistant/loader.py @@ -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( -- GitLab