Extend deprecation of aux_heat in ClimateEntity (#125360)

This commit is contained in:
G Johansson 2024-09-05 22:34:35 +02:00 committed by GitHub
parent 9e312f2063
commit 2c0c0b9e21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -429,7 +429,7 @@ class ClimateEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
( (
"%s::%s implements the `is_aux_heat` property or uses the auxiliary " "%s::%s implements the `is_aux_heat` property or uses the auxiliary "
"heater methods in a subclass of ClimateEntity which is " "heater methods in a subclass of ClimateEntity which is "
"deprecated and will be unsupported from Home Assistant 2024.10." "deprecated and will be unsupported from Home Assistant 2025.4."
" Please %s" " Please %s"
), ),
self.platform.platform_name, self.platform.platform_name,
@ -451,7 +451,7 @@ class ClimateEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
self.hass, self.hass,
DOMAIN, DOMAIN,
f"deprecated_climate_aux_{self.platform.platform_name}", f"deprecated_climate_aux_{self.platform.platform_name}",
breaks_in_ha_version="2024.10.0", breaks_in_ha_version="2025.4.0",
is_fixable=False, is_fixable=False,
is_persistent=False, is_persistent=False,
issue_domain=self.platform.platform_name, issue_domain=self.platform.platform_name,

View File

@ -826,7 +826,7 @@ async def test_issue_aux_property_deprecated(
assert ( assert (
"test::MockClimateEntityWithAux implements the `is_aux_heat` property or uses " "test::MockClimateEntityWithAux implements the `is_aux_heat` property or uses "
"the auxiliary heater methods in a subclass of ClimateEntity which is deprecated " "the auxiliary heater methods in a subclass of ClimateEntity which is deprecated "
f"and will be unsupported from Home Assistant 2024.10. Please {report}" f"and will be unsupported from Home Assistant 2025.4. Please {report}"
) in caplog.text ) in caplog.text
# Assert we only log warning once # Assert we only log warning once