Skip to content

Commit

Permalink
Bump aioesphomeapi to 18.0.1 (#102028)
Browse files Browse the repository at this point in the history
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
  • Loading branch information
bdraco and joostlek authored Oct 15, 2023
1 parent f961599 commit 5b8da03
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/esphome/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ async def async_start(self) -> None:
on_connect=self.on_connect,
on_disconnect=self.on_disconnect,
zeroconf_instance=self.zeroconf_instance,
name=self.host,
name=entry.data.get(CONF_DEVICE_NAME, self.host),
on_connect_error=self.on_connect_error,
)
self.reconnect_logic = reconnect_logic
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/esphome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"loggers": ["aioesphomeapi", "noiseprotocol"],
"requirements": [
"async-interrupt==1.1.1",
"aioesphomeapi==17.2.0",
"aioesphomeapi==18.0.1",
"bluetooth-data-tools==1.12.0",
"esphome-dashboard-api==1.2.3"
],
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ aioecowitt==2023.5.0
aioemonitor==1.0.5

# homeassistant.components.esphome
aioesphomeapi==17.2.0
aioesphomeapi==18.0.1

# homeassistant.components.flo
aioflo==2021.11.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ aioecowitt==2023.5.0
aioemonitor==1.0.5

# homeassistant.components.esphome
aioesphomeapi==17.2.0
aioesphomeapi==18.0.1

# homeassistant.components.flo
aioflo==2021.11.0
Expand Down
1 change: 1 addition & 0 deletions tests/components/esphome/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ def mock_constructor(
mock_client.connect = AsyncMock()
mock_client.disconnect = AsyncMock()
mock_client.list_entities_services = AsyncMock(return_value=([], []))
mock_client.address = "127.0.0.1"
mock_client.api_version = APIVersion(99, 99)

with patch("homeassistant.components.esphome.APIClient", mock_client), patch(
Expand Down

0 comments on commit 5b8da03

Please sign in to comment.