Compare commits
3 Commits
6.8.2
...
6.8.4.beta1
| Author | SHA1 | Date | |
|---|---|---|---|
| 02f60770e8 | |||
| 23ddff95b3 | |||
| 53160f1365 |
@@ -82,6 +82,10 @@ T = TypeVar("T", bound=UnderlyingEntity)
|
|||||||
class BaseThermostat(ClimateEntity, RestoreEntity, Generic[T]):
|
class BaseThermostat(ClimateEntity, RestoreEntity, Generic[T]):
|
||||||
"""Representation of a base class for all Versatile Thermostat device."""
|
"""Representation of a base class for all Versatile Thermostat device."""
|
||||||
|
|
||||||
|
# breaking change with 2024.12 climate workaround
|
||||||
|
_attr_swing_horizontal_modes = []
|
||||||
|
_attr_swing_horizontal_mode = ""
|
||||||
|
|
||||||
_entity_component_unrecorded_attributes = (
|
_entity_component_unrecorded_attributes = (
|
||||||
ClimateEntity._entity_component_unrecorded_attributes.union(
|
ClimateEntity._entity_component_unrecorded_attributes.union(
|
||||||
frozenset(
|
frozenset(
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ async def async_setup_entry(
|
|||||||
SERVICE_SET_AUTO_REGULATION_MODE,
|
SERVICE_SET_AUTO_REGULATION_MODE,
|
||||||
{
|
{
|
||||||
vol.Required("auto_regulation_mode"): vol.In(
|
vol.Required("auto_regulation_mode"): vol.In(
|
||||||
["None", "Light", "Medium", "Strong", "Slow"]
|
["None", "Light", "Medium", "Strong", "Slow", "Expert"]
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
"service_set_auto_regulation_mode",
|
"service_set_auto_regulation_mode",
|
||||||
|
|||||||
@@ -14,6 +14,6 @@
|
|||||||
"quality_scale": "silver",
|
"quality_scale": "silver",
|
||||||
"requirements": [],
|
"requirements": [],
|
||||||
"ssdp": [],
|
"ssdp": [],
|
||||||
"version": "6.8.2",
|
"version": "6.8.3",
|
||||||
"zeroconf": []
|
"zeroconf": []
|
||||||
}
|
}
|
||||||
@@ -3,5 +3,5 @@
|
|||||||
"content_in_root": false,
|
"content_in_root": false,
|
||||||
"render_readme": true,
|
"render_readme": true,
|
||||||
"hide_default_branch": false,
|
"hide_default_branch": false,
|
||||||
"homeassistant": "2024.10.4"
|
"homeassistant": "2024.12.3"
|
||||||
}
|
}
|
||||||
@@ -1 +1 @@
|
|||||||
homeassistant==2024.10.4
|
homeassistant==2024.12.3
|
||||||
|
|||||||
Reference in New Issue
Block a user