Skip to content

Commit 158549b

Browse files
committed
fix starting component in HA 2025.7
1 parent 9276d1e commit 158549b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

custom_components/bosch/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ async def async_init_bosch(self) -> bool:
331331
await self.gateway.custom_initialize(custom_db)
332332
if self.gateway.database:
333333
supported_bosch = await self.gateway.get_capabilities()
334+
_LOGGER.debug(f"Bosch supported capabilities: {supported_bosch}")
334335
for supported in supported_bosch:
335336
elements = SUPPORTED_PLATFORMS[supported]
336337
for element in elements:
@@ -492,7 +493,7 @@ async def make_rawscan(self, filename: str) -> dict:
492493

493494
async def async_reset(self) -> bool:
494495
"""Reset this device to default state."""
495-
_LOGGER.warn("Unloading Bosch module.")
496+
_LOGGER.warning("Unloading Bosch module.")
496497
_LOGGER.debug("Closing connection to gateway.")
497498
tasks: list[Awaitable] = [
498499
self.hass.config_entries.async_forward_entry_unload(

custom_components/bosch/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"dependencies": ["network", "persistent_notification"],
77
"after_dependencies": ["http", "recorder"],
88
"codeowners": ["@pszafer"],
9-
"requirements": ["bosch-thermostat-client==v0.28.0"],
10-
"version": "0.28.0",
9+
"requirements": ["bosch-thermostat-client==v0.28.2"],
10+
"version": "0.28.2",
1111
"zeroconf": ["_buderus._tcp.local."],
1212
"config_flow": true,
1313
"iot_class": "cloud_polling"

0 commit comments

Comments
 (0)