Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2023.5.3 #93066

Merged
merged 36 commits into from
May 14, 2023
Merged

2023.5.3 #93066

Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ac9da5c
Roborock continue on failed mqtt disconnect (#92502)
Lash-L May 5, 2023
dd51bba
Bump bimmer_connected to 0.13.3 (#92648)
rikroe May 6, 2023
dcc5940
Fix parallel_updates being acquired too late for entity executor jobs…
bdraco May 6, 2023
96ff24a
Always request at least one zone for multi-zone LIFX devices (#92683)
bdraco May 11, 2023
996c6c4
Fix onvif reauth when device returns a http 401/403 error (#92690)
bdraco May 6, 2023
91e9d21
Bump `aionotion` to 2023.05.1 (#92697)
bachya May 6, 2023
4895ca2
Bump pyoverkiz to 1.7.8 (#92702)
iMicknl May 6, 2023
b1111eb
Bump aiowebostv to 0.3.3 to fix Python 3.11 support (#92736)
thecode May 7, 2023
d4acb2a
Update deprecated functions in SIA (#92737)
eavanvalkenburg May 7, 2023
7173a4f
Bump aioesphomeapi to 3.7.4 to fix proxied BLE connections not retryi…
bdraco May 8, 2023
8d0da78
Increase timeout to 30 seconds for Mazda integration (#92744)
bdr99 May 7, 2023
f866d61
Fix zwave_js services example data (#92748)
karwosts May 7, 2023
16020d8
Bump asyncsleepiq to 1.3.5 (#92759)
kbickar May 7, 2023
5c949bd
Update aioairzone to v0.5.3 (#92780)
Noltari May 8, 2023
84ce2f1
Fix race in Alexa async_enable_proactive_mode (#92785)
emontnemery May 9, 2023
a551de0
Fix Airzone Auto operation mode (#92796)
Noltari May 12, 2023
7361c29
Update aioairzone to v0.5.5 (#92812)
Noltari May 9, 2023
3c45bda
Don't try to restore unavailable nor unknown states (#92825)
dgomes May 9, 2023
c1b18dc
Bump sonos-websocket to 0.1.1 (#92834)
jjlawren May 9, 2023
5e77de3
Allow "no" to match "nb" in language util (#92862)
synesthesiam May 9, 2023
91faa31
Bump ZHA dependencies (#92870)
puddly May 10, 2023
8e40733
Add ONVIF services to diagnostics (#92878)
bdraco May 11, 2023
252b99f
Bump UPB integration library to 0.5.4 (#92879)
gwww May 10, 2023
7abe9f1
Bump bluetooth-auto-recovery to 1.2.0 (#92893)
bdraco May 11, 2023
413dbe8
Fix already_configured string in workday (#92901)
gjohansson-ST May 13, 2023
60fb711
Fix uptime sensor deviation detection in Fritz!Tools (#92907)
mib1185 May 11, 2023
fe308e2
Bump volvooncall to 0.10.3 to fix sensor type error (#92913)
decompil3d May 11, 2023
b0520cc
Bump eternalegypt to 0.0.16 (#92919)
tkdrob May 11, 2023
a3f3b43
Bump python-vehicle to 1.0.1 (#92933)
joostlek May 11, 2023
a8cf3fa
Fix remove of device when surveillance station is not used in Synolog…
mib1185 May 12, 2023
d840d27
Bump reolink-aio to 0.5.15 (#92979)
starkillerOG May 12, 2023
304c34a
Bump bellows to 0.35.5 to fix Aqara Zigbee connectivity issue (#92999)
puddly May 13, 2023
13c51e9
Disable cleanup_closed for aiohttp.TCPConnector with cpython 3.11.1+ …
bdraco May 14, 2023
6424dee
Fix sslv2/sslv3 with unverified connections (#93037)
bdraco May 14, 2023
ff14277
Fix a series of bugs due to Notion API changes (#93039)
bachya May 14, 2023
1f6a601
Bumped version to 2023.5.3
balloob May 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix uptime sensor deviation detection in Fritz!Tools (#92907)
  • Loading branch information
mib1185 authored and balloob committed May 14, 2023
commit 60fb71159d31d2e9af36ef4cbea6ab8c7ffca75f
2 changes: 1 addition & 1 deletion homeassistant/components/fritz/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ async def _async_update_data(self) -> UpdateCoordinatorDataType:
entity_data["entity_states"][
key
] = await self.hass.async_add_executor_job(
update_fn, self.fritz_status, self.data.get(key)
update_fn, self.fritz_status, self.data["entity_states"].get(key)
)
if self.has_call_deflections:
entity_data[
Expand Down