mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 20:27:08 +00:00
Update nibe to 1.6.0 (#84449)
* Bump nibe to 1.6.0 * Only fail coordinator if all updates failed
This commit is contained in:
parent
75739d8621
commit
ffb1722ca8
@ -282,7 +282,11 @@ class Coordinator(ContextCoordinator[dict[int, Coil], int]):
|
|||||||
result[coil.address] = coil
|
result[coil.address] = coil
|
||||||
self.seed.pop(coil.address, None)
|
self.seed.pop(coil.address, None)
|
||||||
except CoilReadException as exception:
|
except CoilReadException as exception:
|
||||||
raise UpdateFailed(f"Failed to update: {exception}") from exception
|
if not result:
|
||||||
|
raise UpdateFailed(f"Failed to update: {exception}") from exception
|
||||||
|
self.logger.debug(
|
||||||
|
"Some coils failed to update, and may be unsupported: %s", exception
|
||||||
|
)
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "Nibe Heat Pump",
|
"name": "Nibe Heat Pump",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/nibe_heatpump",
|
"documentation": "https://www.home-assistant.io/integrations/nibe_heatpump",
|
||||||
"requirements": ["nibe==1.5.0"],
|
"requirements": ["nibe==1.6.0"],
|
||||||
"codeowners": ["@elupus"],
|
"codeowners": ["@elupus"],
|
||||||
"iot_class": "local_polling"
|
"iot_class": "local_polling"
|
||||||
}
|
}
|
||||||
|
@ -1173,7 +1173,7 @@ nextcord==2.0.0a8
|
|||||||
nextdns==1.2.2
|
nextdns==1.2.2
|
||||||
|
|
||||||
# homeassistant.components.nibe_heatpump
|
# homeassistant.components.nibe_heatpump
|
||||||
nibe==1.5.0
|
nibe==1.6.0
|
||||||
|
|
||||||
# homeassistant.components.niko_home_control
|
# homeassistant.components.niko_home_control
|
||||||
niko-home-control==0.2.1
|
niko-home-control==0.2.1
|
||||||
|
@ -860,7 +860,7 @@ nextcord==2.0.0a8
|
|||||||
nextdns==1.2.2
|
nextdns==1.2.2
|
||||||
|
|
||||||
# homeassistant.components.nibe_heatpump
|
# homeassistant.components.nibe_heatpump
|
||||||
nibe==1.5.0
|
nibe==1.6.0
|
||||||
|
|
||||||
# homeassistant.components.nfandroidtv
|
# homeassistant.components.nfandroidtv
|
||||||
notifications-android-tv==0.1.5
|
notifications-android-tv==0.1.5
|
||||||
|
Loading…
x
Reference in New Issue
Block a user