Paulus Schoutsen
d297be2698
Bumped version to 0.113.0b1
0.113.0b1
2020-07-17 00:51:53 +00:00
de67135e86
Ensure a state change tracker setup from inside a state change listener does not fire immediately ( #37924 )
...
Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io >
2020-07-17 00:51:37 +00:00
Anders Melchiorsen and Paulus Schoutsen
b684007fbb
Upgrade pysonos to 0.0.32 ( #37923 )
2020-07-17 00:51:37 +00:00
cgtobi and Paulus Schoutsen
98347345d1
Fix unavailable when value is zero ( #37918 )
2020-07-17 00:51:36 +00:00
Alexei Chetroi and Paulus Schoutsen
c0302e6eca
Fix ZHA electrical measurement sensor initialization ( #37915 )
...
* Refactor cached ZHA channel reads.
If doing a cached ZCL attribute read, do "only_from_cache" read for
battery operated devices only. Mains operated devices will do a network
read in case of a cache miss.
* Use cached attributes for ZHA electrical measurement
* Bump up ZHA zigpy dependency.
2020-07-17 00:51:35 +00:00
Bram Kragten and Paulus Schoutsen
06bc98a3a2
Updated frontend to 20200716.0 ( #37910 )
2020-07-17 00:51:34 +00:00
Phil Bruckner and Paulus Schoutsen
32858bcea3
Fix automation & script restart mode bug ( #37909 )
2020-07-17 00:51:33 +00:00
Franck Nijhof and Paulus Schoutsen
979260f4be
Fix swapped variables deprecation in log message ( #37901 )
2020-07-17 00:51:33 +00:00
Bram Kragten and Paulus Schoutsen
408b52de1b
Update frontend to 20200715.1 ( #37888 )
2020-07-17 00:50:26 +00:00
Franck Nijhof
b81b57cdf7
Bumped version to 0.113.0b0
0.113.0b0
2020-07-15 21:29:28 +02:00
f4c3f5d074
Revert breaking change for Automation ( #37885 )
...
Co-authored-by: Paulus Schoutsen <balloob@gmail.com >
2020-07-15 20:38:29 +02:00
J. Nick Koston and GitHub
abe3e3094e
Provide workaround for missing/disabled/broken IPv6 ( #37887 )
2020-07-15 11:26:40 -07:00
Erik Montnemery and GitHub
53d6f4948e
Adapt MQTT config flow to default birth and will ( #37875 )
2020-07-15 11:16:03 -07:00
Bram Kragten and GitHub
1b09c65e74
Updated frontend to 20200715.0 ( #37884 )
2020-07-15 07:41:39 -10:00
Phil and Paulus Schoutsen
21649244e9
Update per review 3
2020-07-15 16:58:42 +00:00
Phil and Paulus Schoutsen
741c702ff3
Add tests
2020-07-15 16:58:42 +00:00
Phil Bruckner and GitHub
cf498b7beb
Stop running scripts at shutdown ( #37858 )
2020-07-15 09:28:32 -07:00
Daniel Shokouhi and GitHub
f24fe9c246
Improve Neato error logging by including device name ( #37865 )
2020-07-15 09:26:57 -07:00
d37a5cdde5
Fix yeelight flash ( #37743 )
...
* Fix yeelight flash
* Use cast instead of string comparison
Co-authored-by: Franck Nijhof <frenck@frenck.nl >
Co-authored-by: Franck Nijhof <frenck@frenck.nl >
2020-07-15 15:51:33 +02:00
Franck Nijhof and GitHub
a3174a88f5
Don't reuse venv cache when Python version changes ( #37881 )
2020-07-15 15:08:38 +02:00
shker and GitHub
c3724186cf
Use supervisord "group:name" when get process info ( #37678 )
2020-07-15 13:45:29 +02:00
Paulus Schoutsen and GitHub
633f9b2f01
Prefer external URLs because internal can't have valid SSL ( #37872 )
2020-07-15 09:23:16 +02:00
1d7f3416d3
Switch async_track_state_change to the faster async_track_state_change_event part 7 ( #37870 )
...
Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io >
2020-07-14 23:37:25 -07:00
J. Nick Koston and GitHub
44fefb3216
Improve handling of template platforms when entity extraction fails ( #37831 )
...
Most of the the template platforms would check for
extract_entities failing to extract entities and avoid
setting up a state change listner for MATCH_ALL after
extract_entities had warned that it could not extract
the entities and updates would need to be done manually.
This protection has been extended to all template platforms.
Alter the behavior of extract_entities to return the
successfully extracted entities if one or more templates
fail extraction instead of returning MATCH_ALL
2020-07-14 22:34:35 -07:00
J. Nick Koston and GitHub
e938dcfbda
Switch universal media_player to use async_track_state_change_event ( #37832 )
...
async_track_state_change_event is faster than async_track_state_change
and since we do not care about the data being returned to the callback
this is a simple speedup
2020-07-14 22:32:03 -07:00
J. Nick Koston and GitHub
20d5d3c162
Switch a few more async_track_state_change to the faster async_track_state_change_event ( #37833 )
...
async_track_state_change_event is faster than async_track_state_change
and since we do not care about the data being returned to the callback
this is a simple speedup
2020-07-14 22:31:34 -07:00
J. Nick Koston and GitHub
b12566e265
Switch async_track_state_change to the faster async_track_state_change_event ( #37834 )
...
async_track_state_change_event is faster than async_track_state_change
2020-07-14 22:30:47 -07:00
J. Nick Koston and GitHub
b430496b13
Switch async_track_state_change to the faster async_track_state_change_event part 4 ( #37863 )
...
* Switch async_track_state_change to the faster async_track_state_change_event part 4
Calling async_track_state_change_event directly is faster than async_track_state_change (see #37251 ) since async_track_state_change is a wrapper around async_track_state_change_event now
* pylint
2020-07-14 22:25:48 -07:00
J. Nick Koston and GitHub
aed98a830f
Switch async_track_state_change to the faster async_track_state_change_event part 5 ( #37866 )
...
Calling async_track_state_change_event directly is faster than async_track_state_change (see #37251 ) since async_track_state_change is a wrapper around async_track_state_change_event now
2020-07-14 22:25:12 -07:00
J. Nick Koston and GitHub
e65235b207
Switch async_track_state_change to the faster async_track_state_change_event part 6 ( #37869 )
...
Calling async_track_state_change_event directly is faster than async_track_state_change (see #37251 ) since async_track_state_change is a wrapper around async_track_state_change_event now
2020-07-14 22:24:27 -07:00
J. Nick Koston and GitHub
bf72e3c965
Update august manufacturer name ( #37867 )
...
* Update august manufacturer name
This allows homekit to link the accessories to the august app
* yeah.. update the test
2020-07-14 18:03:24 -10:00
Eugene Prystupa and GitHub
b07d09f7dc
Add support for fireplaces to bond integration ( #37850 )
2020-07-14 22:27:03 -05:00
J. Nick Koston and GitHub
41cd90648e
Have async_track_point_in_utc_time call async_run_job directly from call_at ( #37790 )
...
We do not need a nested function here since call_at
takes args
2020-07-14 17:24:36 -10:00
HomeAssistant Azure
e852a2eb9b
[ci skip] Translation update
2020-07-15 00:02:40 +00:00
Bram Kragten and GitHub
c62345b9a3
Updated frontend to 20200714.0 ( #37862 )
2020-07-14 13:50:19 -10:00
David F. Mulcahey and GitHub
69d1faea35
bump zigpy and zha quirks ( #37859 )
2020-07-14 19:34:57 -04:00
Franck Nijhof
706eb8f36a
Merge branch 'master' into dev
2020-07-14 23:08:43 +02:00
Daniel Shokouhi and GitHub
ddfbeffd28
Fix zone cleaning and raise config entry not ready when needed ( #37741 )
2020-07-14 22:59:03 +02:00
Jannik Beyerstedt and GitHub
d8c2732bcb
Do no crash Luftdaten on additional data returned by the API ( #37763 )
2020-07-14 22:56:02 +02:00
Daniel Pervan and GitHub
5b3d094a1e
Fix Fibaro HC light switches not being configured as Light entities ( #37690 )
2020-07-14 22:47:05 +02:00
SukramJ and GitHub
d119c96aee
Add HmIP-FSI16 to HomematicIP Cloud ( #37715 )
2020-07-14 22:43:21 +02:00
J. Nick Koston and GitHub
d4111617ca
Ensure HomeKit does not throw when a linked motion sensor is removed ( #37773 )
2020-07-14 22:38:55 +02:00
J. Nick Koston and GitHub
f8d547f2d3
Adjust history as all scripts can now be canceled ( #37820 )
2020-07-14 22:31:34 +02:00
Aidan Timson and GitHub
36dde3ff68
Use size of camera in Agent DVR ( #36375 )
2020-07-14 22:25:34 +02:00
Franck Nijhof and GitHub
209f9b6722
Always expose Toon gas sensors ( #37829 )
2020-07-14 22:22:44 +02:00
J. Nick Koston and GitHub
f5cbae0cd5
Avoid homekit crash when temperature is clamped above max value ( #37746 )
2020-07-14 22:21:10 +02:00
Bram Kragten and GitHub
9ecaa10e51
Adjust icons for MDI bump ( #37730 )
2020-07-14 22:17:14 +02:00
J. Nick Koston and GitHub
5cd6370822
Switch async_track_state_change to the faster async_track_state_change_event part 3 ( #37852 )
...
async_track_state_change_event is faster than async_track_state_change
2020-07-14 09:40:01 -10:00
Bram Kragten and GitHub
ea17d36cbb
Frontend: deprecate extra_html_url ( #37843 )
2020-07-14 21:06:36 +02:00
Adam Liddell and GitHub
c3f63e0739
Fix media_content_id attribute in Spotify integration ( #37853 )
...
Previously, the media_content_id field would contain the track name, which
appears was a regression when the Spotify integration was rewritten in
7e4b9adc . The media_content_id now reverts to containing the Spotify
track 'uri' field, which has the form 'spotify:track:...'
2020-07-14 20:37:08 +02:00