Block variable <=3.4.4 custom integration from breaking the recorder (#121670)

This commit is contained in:
Franck Nijhof 2024-07-10 11:30:16 +02:00
parent 05ce3d35b3
commit 38a44676eb
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3

View File

@ -114,6 +114,11 @@ BLOCKED_CUSTOM_INTEGRATIONS: dict[str, BlockedIntegration] = {
"places": BlockedIntegration( "places": BlockedIntegration(
AwesomeVersion("2.7.1"), "prevents recorder from working" AwesomeVersion("2.7.1"), "prevents recorder from working"
), ),
# Added in 2024.7.2 because of
# https://github.com/enkama/hass-variables/issues/120
"variable": BlockedIntegration(
AwesomeVersion("3.4.4"), "prevents recorder from working"
),
} }
DATA_COMPONENTS: HassKey[dict[str, ModuleType | ComponentProtocol]] = HassKey( DATA_COMPONENTS: HassKey[dict[str, ModuleType | ComponentProtocol]] = HassKey(