Skip to content

Commit

Permalink
Merge pull request #456 from asantaga/dev
Browse files Browse the repository at this point in the history
v3.4.6
  • Loading branch information
msp1974 authored Mar 8, 2024
2 parents 3cff816 + 71e5db9 commit 8277c74
Show file tree
Hide file tree
Showing 13 changed files with 716 additions and 38 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Wiser Home Assistant Integration v3.4.5
# Wiser Home Assistant Integration v3.4.6

[![hacs_badge](https://img.shields.io/badge/HACS-Default-orange.svg?style=for-the-badge)](https://github.com/hacs/integration)
[![downloads](https://shields.io/github/downloads/asantaga/wiserHomeAssistantPlatform/latest/total?style=for-the-badge)](https://github.com/asantaga/wiserHomeAssistantPlatform)
Expand All @@ -21,9 +21,18 @@ For more information checkout the AMAZING community thread available on

- Added support for v2 hub
- Added PowerTagE support
- Climate entity for controlling hot water with external tank temp sensor

## Change log

- v3.4.6
- Bump api to v1.5.13 to improve retry handling to include hub conneciton error
- Prevent entities going unavailable if hub update failed
- Fix issue with floor temp offset slider not loading
- Fix hass.components.websocket_api deprecation warning in HA 2024.3 (issue [#455](https://github.com/asantaga/wiserHomeAssistantPlatform/issues/455))
- Fix unique ids not unique error when changing configuration options
- Add new automation to control hot water with a climate entity and an external temperature sensor on your water tank by @markchalloner. See wiki for more info.

- v3.4.5
- Bump api to v1.5.12 to improve performance of improved retry handling
- Fixed issue caused by v3.4.4 that heating actuators and power tags error on load (issue [#449](https://github.com/asantaga/wiserHomeAssistantPlatform/issues/449), [#450](https://github.com/asantaga/wiserHomeAssistantPlatform/issues/450))
Expand All @@ -47,7 +56,6 @@ For more information checkout the AMAZING community thread available on
- Fixed Warning error in logs caused by new HA2024.2 requirement to explicity support Turn On/Off for climate entities (issue [#435](https://github.com/asantaga/wiserHomeAssistantPlatform/issues/435))
- Bump api to v1.5.7 to fix issue setting lower target temp when in passive mode


- v3.4.2
- Reverted to using aiohttp for communication and resolved issues caused by HA2023.12
- Bumped api to v1.5.5
Expand Down
2 changes: 1 addition & 1 deletion custom_components/wiser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry):

await coordinator.async_config_entry_first_refresh()

if not coordinator.last_update_success:
if not coordinator.last_update_status == "Success":
raise ConfigEntryNotReady

# Update listener for config option changes
Expand Down
Loading

0 comments on commit 8277c74

Please sign in to comment.