From ec0910e3da20ec1ad813b2e89eb8966d95f11d8f Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 10 Jul 2024 09:47:15 +0200 Subject: [PATCH] Block icloud3 custom integration from breaking the recorder (#121658) --- homeassistant/loader.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/homeassistant/loader.py b/homeassistant/loader.py index 9afad61042052b..a654904d69be84 100644 --- a/homeassistant/loader.py +++ b/homeassistant/loader.py @@ -102,6 +102,13 @@ class BlockedIntegration: "mydolphin_plus": BlockedIntegration( AwesomeVersion("1.0.13"), "crashes Home Assistant" ), + # Added in 2024.7.2 because of + # https://github.com/gcobb321/icloud3/issues/349 + # Note: Current version 3.0.5.2, the fixed version is a guesstimate, + # as no solution is available at time of writing. + "icloud3": BlockedIntegration( + AwesomeVersion("3.0.5.3"), "prevents recorder from working" + ), } DATA_COMPONENTS: HassKey[dict[str, ModuleType | ComponentProtocol]] = HassKey(