mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Release 113.3 (#14127)
This commit is contained in:
parent
2676956b16
commit
bbe1ce8e6c
@ -101,8 +101,8 @@ social:
|
|||||||
# Home Assistant release details
|
# Home Assistant release details
|
||||||
current_major_version: 0
|
current_major_version: 0
|
||||||
current_minor_version: 113
|
current_minor_version: 113
|
||||||
current_patch_version: 2
|
current_patch_version: 3
|
||||||
date_released: 2020-07-28
|
date_released: 2020-08-01
|
||||||
|
|
||||||
# Either # or the anchor link to latest release notes in the blog post.
|
# Either # or the anchor link to latest release notes in the blog post.
|
||||||
# Must be prefixed with a # and have double quotes around it.
|
# Must be prefixed with a # and have double quotes around it.
|
||||||
|
@ -234,20 +234,20 @@ automation:
|
|||||||
- binary_sensor.button3
|
- binary_sensor.button3
|
||||||
action:
|
action:
|
||||||
- choose:
|
- choose:
|
||||||
- conditions:
|
- conditions:
|
||||||
- condition: state
|
- condition: state
|
||||||
entity_id: binary_sensor.button1
|
entity_id: binary_sensor.button1
|
||||||
state: "on"
|
state: "on"
|
||||||
sequence:
|
sequence:
|
||||||
- service: light.turn_on
|
- service: light.turn_on
|
||||||
entity_id: light.bulb
|
entity_id: light.bulb
|
||||||
- conditions:
|
- conditions:
|
||||||
- condition: state
|
- condition: state
|
||||||
entity_id: binary_sensor.button2
|
entity_id: binary_sensor.button2
|
||||||
state: "on"
|
state: "on"
|
||||||
sequence:
|
sequence:
|
||||||
- service: light.turn_off
|
- service: light.turn_off
|
||||||
entity_id: light.bulb
|
entity_id: light.bulb
|
||||||
default:
|
default:
|
||||||
- service: notify.frenck
|
- service: notify.frenck
|
||||||
data:
|
data:
|
||||||
@ -283,10 +283,10 @@ script:
|
|||||||
repeat:
|
repeat:
|
||||||
count: 10
|
count: 10
|
||||||
sequence:
|
sequence:
|
||||||
- service: light.toggle
|
- service: light.toggle
|
||||||
entity_id: light.bulb
|
entity_id: light.bulb
|
||||||
- delay:
|
- delay:
|
||||||
milliseconds: 500
|
milliseconds: 500
|
||||||
```
|
```
|
||||||
|
|
||||||
### Automations & Scripts: Bonus! Cool down
|
### Automations & Scripts: Bonus! Cool down
|
||||||
@ -674,12 +674,12 @@ instead of being delayed until the activity is finished setting up.
|
|||||||
<summary><b>Xiaomi Miio</b></summary>
|
<summary><b>Xiaomi Miio</b></summary>
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
Fan and remote components now have unique LED strings.
|
Fan and remote components now have unique LED strings.
|
||||||
If you had previously set your automation calls from
|
If you had previously set your automation calls from
|
||||||
"**fan**_set_led_on/off" to "**remote**_set_led_on/off",
|
"**fan**\_set_led_on/off" to "**remote**\_set_led_on/off",
|
||||||
you will now need to set those back to "fan".
|
you will now need to set those back to "fan".
|
||||||
|
|
||||||
([@alexhardwicke] - [#37605]) ([xiaomi_miio docs])
|
([@alexhardwicke] - [#37605]) ([xiaomi_miio docs])
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
</details>
|
</details>
|
||||||
@ -691,6 +691,7 @@ instead of being delayed until the activity is finished setting up.
|
|||||||
Syncthru configuration is now done through the integrations UI page.
|
Syncthru configuration is now done through the integrations UI page.
|
||||||
|
|
||||||
([@scop] - [#36690]) ([discovery docs]) ([syncthru docs])
|
([@scop] - [#36690]) ([discovery docs]) ([syncthru docs])
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
@ -718,7 +719,7 @@ the Slack integration documentation.
|
|||||||
- The events signalled from entity id's are removed in favor of events from an integration level.
|
- The events signalled from entity id's are removed in favor of events from an integration level.
|
||||||
- The events format has changed.
|
- The events format has changed.
|
||||||
|
|
||||||
([@elupus] - [#37742] [#37565]) ([rfxtrx docs])
|
([@elupus] - [#37742][#37565]) ([rfxtrx docs])
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
</details>
|
</details>
|
||||||
@ -747,8 +748,8 @@ component instead of JavaScript. That's why we have always supported importing
|
|||||||
extra HTML in the frontend and custom panels.
|
extra HTML in the frontend and custom panels.
|
||||||
|
|
||||||
This has been deprecated and superseded by ES modules since some time and has
|
This has been deprecated and superseded by ES modules since some time and has
|
||||||
no support anymore in browsers. We have a polyfill in place to still support
|
no support anymore in browsers. We have a polyfill in place to still support
|
||||||
this, but we are going to remove this.
|
this, but we are going to remove this.
|
||||||
|
|
||||||
In version 0.115 we will remove the ability to import HTML, you can use ES
|
In version 0.115 we will remove the ability to import HTML, you can use ES
|
||||||
modules as a replacement.
|
modules as a replacement.
|
||||||
@ -802,16 +803,16 @@ In general, all variables that start with `paper` will be removed at some point.
|
|||||||
[#38149]: https://github.com/home-assistant/core/pull/38149
|
[#38149]: https://github.com/home-assistant/core/pull/38149
|
||||||
[#38159]: https://github.com/home-assistant/core/pull/38159
|
[#38159]: https://github.com/home-assistant/core/pull/38159
|
||||||
[#38163]: https://github.com/home-assistant/core/pull/38163
|
[#38163]: https://github.com/home-assistant/core/pull/38163
|
||||||
[@DubhAd]: https://github.com/DubhAd
|
[@dubhad]: https://github.com/DubhAd
|
||||||
[@JeffLIrion]: https://github.com/JeffLIrion
|
[@jefflirion]: https://github.com/JeffLIrion
|
||||||
[@RobBie1221]: https://github.com/RobBie1221
|
[@robbie1221]: https://github.com/RobBie1221
|
||||||
[@andrewsayre]: https://github.com/andrewsayre
|
[@andrewsayre]: https://github.com/andrewsayre
|
||||||
[@bachya]: https://github.com/bachya
|
[@bachya]: https://github.com/bachya
|
||||||
[@balloob]: https://github.com/balloob
|
[@balloob]: https://github.com/balloob
|
||||||
[@bdraco]: https://github.com/bdraco
|
[@bdraco]: https://github.com/bdraco
|
||||||
[@frenck]: https://github.com/frenck
|
[@frenck]: https://github.com/frenck
|
||||||
[@ludeeus]: https://github.com/ludeeus
|
[@ludeeus]: https://github.com/ludeeus
|
||||||
[@mKeRix]: https://github.com/mKeRix
|
[@mkerix]: https://github.com/mKeRix
|
||||||
[@pnbruckner]: https://github.com/pnbruckner
|
[@pnbruckner]: https://github.com/pnbruckner
|
||||||
[@pschmitt]: https://github.com/pschmitt
|
[@pschmitt]: https://github.com/pschmitt
|
||||||
[androidtv docs]: /integrations/androidtv/
|
[androidtv docs]: /integrations/androidtv/
|
||||||
@ -861,7 +862,7 @@ In general, all variables that start with `paper` will be removed at some point.
|
|||||||
[#38308]: https://github.com/home-assistant/core/pull/38308
|
[#38308]: https://github.com/home-assistant/core/pull/38308
|
||||||
[#38311]: https://github.com/home-assistant/core/pull/38311
|
[#38311]: https://github.com/home-assistant/core/pull/38311
|
||||||
[#38326]: https://github.com/home-assistant/core/pull/38326
|
[#38326]: https://github.com/home-assistant/core/pull/38326
|
||||||
[@MisterWil]: https://github.com/MisterWil
|
[@misterwil]: https://github.com/MisterWil
|
||||||
[@bdraco]: https://github.com/bdraco
|
[@bdraco]: https://github.com/bdraco
|
||||||
[@frenck]: https://github.com/frenck
|
[@frenck]: https://github.com/frenck
|
||||||
[@kylehendricks]: https://github.com/kylehendricks
|
[@kylehendricks]: https://github.com/kylehendricks
|
||||||
@ -887,6 +888,60 @@ In general, all variables that start with `paper` will be removed at some point.
|
|||||||
[xbox_live docs]: /integrations/xbox_live/
|
[xbox_live docs]: /integrations/xbox_live/
|
||||||
[xiaomi_miio docs]: /integrations/xiaomi_miio/
|
[xiaomi_miio docs]: /integrations/xiaomi_miio/
|
||||||
|
|
||||||
|
## Release 0.113.3 - August 1
|
||||||
|
|
||||||
|
- Add Abode camera on and off support ([@shred86] - [#35164]) ([abode docs])
|
||||||
|
- Fix songpal already configured check in config flow ([@shenxn] - [#37813]) ([songpal docs])
|
||||||
|
- Prevent kodi from blocking startup ([@bdraco] - [#38257]) ([kodi docs])
|
||||||
|
- Ignore remote Plex clients during plex.tv lookup ([@jjlawren] - [#38327]) ([plex docs])
|
||||||
|
- Bump androidtv to 0.0.47 and adb-shell to 0.2.1 ([@JeffLIrion] - [#38344]) ([androidtv docs])
|
||||||
|
- Bump pychromecast to 7.2.0 ([@emontnemery] - [#38351]) ([cast docs])
|
||||||
|
- Update aioharmony to 0.2.6 ([@ehendrix23] - [#38360]) ([harmony docs])
|
||||||
|
- Avoid error with ignored harmony config entries ([@bdraco] - [#38367]) ([harmony docs])
|
||||||
|
- Prevent nut config flow error when checking ignored entries ([@bdraco] - [#38372]) ([nut docs])
|
||||||
|
- Ensure Toon webhook ID isn't registered on re-registration ([@frenck] - [#38376]) ([toon docs])
|
||||||
|
- Fix rmvtransport breaking when destinations don't match ([@cgtobi] - [#38401]) ([rmvtransport docs])
|
||||||
|
- Fix ads integration after 0.113 ([@stlehmann] - [#38402]) ([ads docs])
|
||||||
|
- Pin yarl dependency to 1.4.2 as core dependency ([@frenck] - [#38428])
|
||||||
|
- Fix double encoding issue in google_translate TTS ([@frenck] - [#38429]) ([google_translate docs])
|
||||||
|
|
||||||
|
[#35164]: https://github.com/home-assistant/core/pull/35164
|
||||||
|
[#37813]: https://github.com/home-assistant/core/pull/37813
|
||||||
|
[#38257]: https://github.com/home-assistant/core/pull/38257
|
||||||
|
[#38327]: https://github.com/home-assistant/core/pull/38327
|
||||||
|
[#38344]: https://github.com/home-assistant/core/pull/38344
|
||||||
|
[#38351]: https://github.com/home-assistant/core/pull/38351
|
||||||
|
[#38360]: https://github.com/home-assistant/core/pull/38360
|
||||||
|
[#38367]: https://github.com/home-assistant/core/pull/38367
|
||||||
|
[#38372]: https://github.com/home-assistant/core/pull/38372
|
||||||
|
[#38376]: https://github.com/home-assistant/core/pull/38376
|
||||||
|
[#38401]: https://github.com/home-assistant/core/pull/38401
|
||||||
|
[#38402]: https://github.com/home-assistant/core/pull/38402
|
||||||
|
[#38428]: https://github.com/home-assistant/core/pull/38428
|
||||||
|
[#38429]: https://github.com/home-assistant/core/pull/38429
|
||||||
|
[@jefflirion]: https://github.com/JeffLIrion
|
||||||
|
[@bdraco]: https://github.com/bdraco
|
||||||
|
[@cgtobi]: https://github.com/cgtobi
|
||||||
|
[@ehendrix23]: https://github.com/ehendrix23
|
||||||
|
[@emontnemery]: https://github.com/emontnemery
|
||||||
|
[@frenck]: https://github.com/frenck
|
||||||
|
[@jjlawren]: https://github.com/jjlawren
|
||||||
|
[@shenxn]: https://github.com/shenxn
|
||||||
|
[@shred86]: https://github.com/shred86
|
||||||
|
[@stlehmann]: https://github.com/stlehmann
|
||||||
|
[abode docs]: /integrations/abode/
|
||||||
|
[ads docs]: /integrations/ads/
|
||||||
|
[androidtv docs]: /integrations/androidtv/
|
||||||
|
[cast docs]: /integrations/cast/
|
||||||
|
[google_translate docs]: /integrations/google_translate/
|
||||||
|
[harmony docs]: /integrations/harmony/
|
||||||
|
[kodi docs]: /integrations/kodi/
|
||||||
|
[nut docs]: /integrations/nut/
|
||||||
|
[plex docs]: /integrations/plex/
|
||||||
|
[rmvtransport docs]: /integrations/rmvtransport/
|
||||||
|
[songpal docs]: /integrations/songpal/
|
||||||
|
[toon docs]: /integrations/toon/
|
||||||
|
|
||||||
## All changes
|
## All changes
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
@ -1526,26 +1581,26 @@ In general, all variables that start with `paper` will be removed at some point.
|
|||||||
[#38043]: https://github.com/home-assistant/core/pull/38043
|
[#38043]: https://github.com/home-assistant/core/pull/38043
|
||||||
[#38049]: https://github.com/home-assistant/core/pull/38049
|
[#38049]: https://github.com/home-assistant/core/pull/38049
|
||||||
[#38057]: https://github.com/home-assistant/core/pull/38057
|
[#38057]: https://github.com/home-assistant/core/pull/38057
|
||||||
[@2Fake]: https://github.com/2Fake
|
[@2fake]: https://github.com/2Fake
|
||||||
[@Adminiuga]: https://github.com/Adminiuga
|
[@adminiuga]: https://github.com/Adminiuga
|
||||||
[@CoMPaTech]: https://github.com/CoMPaTech
|
[@compatech]: https://github.com/CoMPaTech
|
||||||
[@DarkFox]: https://github.com/DarkFox
|
[@darkfox]: https://github.com/DarkFox
|
||||||
[@GMTA]: https://github.com/GMTA
|
[@gmta]: https://github.com/GMTA
|
||||||
[@Harryjholmes]: https://github.com/Harryjholmes
|
[@harryjholmes]: https://github.com/Harryjholmes
|
||||||
[@InduPrakash]: https://github.com/InduPrakash
|
[@induprakash]: https://github.com/InduPrakash
|
||||||
[@Jc2k]: https://github.com/Jc2k
|
[@jc2k]: https://github.com/Jc2k
|
||||||
[@JeffLIrion]: https://github.com/JeffLIrion
|
[@jefflirion]: https://github.com/JeffLIrion
|
||||||
[@Kdemontf]: https://github.com/Kdemontf
|
[@kdemontf]: https://github.com/Kdemontf
|
||||||
[@MartinHjelmare]: https://github.com/MartinHjelmare
|
[@martinhjelmare]: https://github.com/MartinHjelmare
|
||||||
[@MatthewFlamm]: https://github.com/MatthewFlamm
|
[@matthewflamm]: https://github.com/MatthewFlamm
|
||||||
[@Michsior14]: https://github.com/Michsior14
|
[@michsior14]: https://github.com/Michsior14
|
||||||
[@PaulAnnekov]: https://github.com/PaulAnnekov
|
[@paulannekov]: https://github.com/PaulAnnekov
|
||||||
[@Quentame]: https://github.com/Quentame
|
[@quentame]: https://github.com/Quentame
|
||||||
[@RogerSelwyn]: https://github.com/RogerSelwyn
|
[@rogerselwyn]: https://github.com/RogerSelwyn
|
||||||
[@SeraphimSerapis]: https://github.com/SeraphimSerapis
|
[@seraphimserapis]: https://github.com/SeraphimSerapis
|
||||||
[@Shulyaka]: https://github.com/Shulyaka
|
[@shulyaka]: https://github.com/Shulyaka
|
||||||
[@SukramJ]: https://github.com/SukramJ
|
[@sukramj]: https://github.com/SukramJ
|
||||||
[@TheLastGimbus]: https://github.com/TheLastGimbus
|
[@thelastgimbus]: https://github.com/TheLastGimbus
|
||||||
[@aaliddell]: https://github.com/aaliddell
|
[@aaliddell]: https://github.com/aaliddell
|
||||||
[@abmantis]: https://github.com/abmantis
|
[@abmantis]: https://github.com/abmantis
|
||||||
[@ajschmidt8]: https://github.com/ajschmidt8
|
[@ajschmidt8]: https://github.com/ajschmidt8
|
||||||
@ -1612,7 +1667,7 @@ In general, all variables that start with `paper` will be removed at some point.
|
|||||||
[@shenxn]: https://github.com/shenxn
|
[@shenxn]: https://github.com/shenxn
|
||||||
[@shermdog]: https://github.com/shermdog
|
[@shermdog]: https://github.com/shermdog
|
||||||
[@smugleafdev]: https://github.com/smugleafdev
|
[@smugleafdev]: https://github.com/smugleafdev
|
||||||
[@starkillerOG]: https://github.com/starkillerOG
|
[@starkillerog]: https://github.com/starkillerOG
|
||||||
[@teharris1]: https://github.com/teharris1
|
[@teharris1]: https://github.com/teharris1
|
||||||
[@timmo001]: https://github.com/timmo001
|
[@timmo001]: https://github.com/timmo001
|
||||||
[@timvancann]: https://github.com/timvancann
|
[@timvancann]: https://github.com/timvancann
|
||||||
|
Loading…
x
Reference in New Issue
Block a user