Bump reolink-aio to 0.14.7 (#151045)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
starkillerOG
2025-08-26 12:11:33 +02:00
committed by GitHub
parent 340a5f92e5
commit 4c166c2320
7 changed files with 8 additions and 3 deletions

View File

@@ -253,6 +253,7 @@ class ReolinkChimeCoordinatorEntity(ReolinkChannelCoordinatorEntity):
coordinator: DataUpdateCoordinator[None] | None = None,
) -> None:
"""Initialize ReolinkChimeCoordinatorEntity for a chime."""
assert chime.channel is not None
super().__init__(reolink_data, chime.channel, coordinator)
self._chime = chime

View File

@@ -19,5 +19,5 @@
"iot_class": "local_push",
"loggers": ["reolink_aio"],
"quality_scale": "platinum",
"requirements": ["reolink-aio==0.14.6"]
"requirements": ["reolink-aio==0.14.7"]
}

View File

@@ -816,6 +816,8 @@ async def async_setup_entry(
ReolinkChimeNumberEntity(reolink_data, chime, entity_description)
for entity_description in CHIME_NUMBER_ENTITIES
for chime in api.chime_list
for chime in api.chime_list
if chime.channel is not None
)
async_add_entities(entities)

View File

@@ -381,6 +381,7 @@ async def async_setup_entry(
for entity_description in CHIME_SELECT_ENTITIES
for chime in reolink_data.host.api.chime_list
if entity_description.supported(chime)
if entity_description.supported(chime) and chime.channel is not None
)
async_add_entities(entities)

View File

@@ -381,6 +381,7 @@ async def async_setup_entry(
ReolinkChimeSwitchEntity(reolink_data, chime, entity_description)
for entity_description in CHIME_SWITCH_ENTITIES
for chime in reolink_data.host.api.chime_list
if chime.channel is not None
)
# Can be removed in HA 2025.4.0

2
requirements_all.txt generated
View File

@@ -2661,7 +2661,7 @@ renault-api==0.4.0
renson-endura-delta==1.7.2
# homeassistant.components.reolink
reolink-aio==0.14.6
reolink-aio==0.14.7
# homeassistant.components.idteck_prox
rfk101py==0.0.1

View File

@@ -2207,7 +2207,7 @@ renault-api==0.4.0
renson-endura-delta==1.7.2
# homeassistant.components.reolink
reolink-aio==0.14.6
reolink-aio==0.14.7
# homeassistant.components.rflink
rflink==0.0.67