mirror of
https://github.com/home-assistant/core.git
synced 2025-07-18 18:57:06 +00:00
Bump aioesphomeapi to 18.0.1 (#102028)
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
This commit is contained in:
parent
f9615999db
commit
5b8da03596
@ -538,7 +538,7 @@ class ESPHomeManager:
|
|||||||
on_connect=self.on_connect,
|
on_connect=self.on_connect,
|
||||||
on_disconnect=self.on_disconnect,
|
on_disconnect=self.on_disconnect,
|
||||||
zeroconf_instance=self.zeroconf_instance,
|
zeroconf_instance=self.zeroconf_instance,
|
||||||
name=self.host,
|
name=entry.data.get(CONF_DEVICE_NAME, self.host),
|
||||||
on_connect_error=self.on_connect_error,
|
on_connect_error=self.on_connect_error,
|
||||||
)
|
)
|
||||||
self.reconnect_logic = reconnect_logic
|
self.reconnect_logic = reconnect_logic
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
"loggers": ["aioesphomeapi", "noiseprotocol"],
|
"loggers": ["aioesphomeapi", "noiseprotocol"],
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"async-interrupt==1.1.1",
|
"async-interrupt==1.1.1",
|
||||||
"aioesphomeapi==17.2.0",
|
"aioesphomeapi==18.0.1",
|
||||||
"bluetooth-data-tools==1.12.0",
|
"bluetooth-data-tools==1.12.0",
|
||||||
"esphome-dashboard-api==1.2.3"
|
"esphome-dashboard-api==1.2.3"
|
||||||
],
|
],
|
||||||
|
@ -237,7 +237,7 @@ aioecowitt==2023.5.0
|
|||||||
aioemonitor==1.0.5
|
aioemonitor==1.0.5
|
||||||
|
|
||||||
# homeassistant.components.esphome
|
# homeassistant.components.esphome
|
||||||
aioesphomeapi==17.2.0
|
aioesphomeapi==18.0.1
|
||||||
|
|
||||||
# homeassistant.components.flo
|
# homeassistant.components.flo
|
||||||
aioflo==2021.11.0
|
aioflo==2021.11.0
|
||||||
|
@ -218,7 +218,7 @@ aioecowitt==2023.5.0
|
|||||||
aioemonitor==1.0.5
|
aioemonitor==1.0.5
|
||||||
|
|
||||||
# homeassistant.components.esphome
|
# homeassistant.components.esphome
|
||||||
aioesphomeapi==17.2.0
|
aioesphomeapi==18.0.1
|
||||||
|
|
||||||
# homeassistant.components.flo
|
# homeassistant.components.flo
|
||||||
aioflo==2021.11.0
|
aioflo==2021.11.0
|
||||||
|
@ -129,6 +129,7 @@ def mock_client(mock_device_info) -> APIClient:
|
|||||||
mock_client.connect = AsyncMock()
|
mock_client.connect = AsyncMock()
|
||||||
mock_client.disconnect = AsyncMock()
|
mock_client.disconnect = AsyncMock()
|
||||||
mock_client.list_entities_services = AsyncMock(return_value=([], []))
|
mock_client.list_entities_services = AsyncMock(return_value=([], []))
|
||||||
|
mock_client.address = "127.0.0.1"
|
||||||
mock_client.api_version = APIVersion(99, 99)
|
mock_client.api_version = APIVersion(99, 99)
|
||||||
|
|
||||||
with patch("homeassistant.components.esphome.APIClient", mock_client), patch(
|
with patch("homeassistant.components.esphome.APIClient", mock_client), patch(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user