0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security
Although the summer is in full progress, the development hasn’t stalled. This release brings bug fixes, clean ups and another 8 new integrations. On top of that we are also introducing a new script editor!
To use the scripts editor, create a new file in your config directory named scripts.yaml
and copy your existing scripts over:
# scripts.yaml
turn_on_some_lights:
alias: "Turn on the lights"
sequence:
- data: {}
service: light.turn_on
Than update your configuration.yaml
to look like this:
# Configuration.yaml example
script: !include scripts.yaml
New Platforms
- Add version sensor (@fabaff
- #8912 ) (sensor.version docs) (new-platform) - Nello.io lock support (@pschmitt
- #8957 ) (lock.nello docs) (new-platform) - Add HipChat notify service. (@BioSehnsucht
- #8918 ) (new-platform) - Refactor USPS into component with Sensors+Camera (@mezz64
- #8679 ) (breaking change) (new-platform) - Adds London_air component (@robmarkcole
- #9020 ) (sensor.london_air docs) (new-platform) - Add Abode home security component (@arsaboo
- #9030 ) (abode docs) (alarm_control_panel.abode docs) (binary_sensor.abode docs) (new-platform) - Add support for Prowl notifications. (@mbrrg
- #9028 ) (notify.prowl docs) (new-platform) - Add worldtidesinfo sensor component (@aetolus
- #8860 ) (sensor.worldtidesinfo docs) (new-platform)
Release 0.52.1 - August 28
- Close stream request once we end up with proxy (@foxel
- #9110 ) - Fix issue #9116 in pushbullet (@danielhiversen
- #9128 ) (notify.pushbullet docs) - bug fix pushbullet (@danielhiversen
- #9139 ) (notify.pushbullet docs) - Fix import for foscam (@sdague
- #9140 ) (camera.foscam docs) - Bump aioautomatic to prevent leaking exceptions (@armills
- #9148 ) - Wrap state when iterating a domain in templates (@balloob
- #9157 ) - Prevent iCloud exceptions in logfile (@mjj4791
- #9179 ) (device_tracker.icloud docs) - bump ecobee version to fix issue 9190 (@nkgilley
- #9191 ) (ecobee docs) (climate.ecobee docs)
If you need help…
…don’t hesitate to use our very active forums or join us for a little chat
Reporting Issues
Experiencing issues introduced by this release? Please report them in our issue tracker
Backward-incompatible changes
- Remove spaces from Xiami switch attributes (@syssi
- #8952 ) (switch.xiaomi docs) (breaking change) - MQTT Switch: command and availability payload are now no longer linked. Command and availability payload default to ON/OFF and must be configured individually if custom values are required. (@timstanley1985
- #8934 ) (switch.mqtt docs) (breaking change)
- platform: mqtt
name: "Kitchen"
state_topic: "stat/sonoff_1/POWER"
command_topic: "cmnd/sonoff_1/POWER"
availability_topic: "tele/sonoff_1/LWT"
payload_available: "Online"
payload_not_available: "Offline"
retain: true
usps:
username: user
password: pass
name: optional
- eliqonline: The optional channel_id configuration variable of the Eliqonline sensor needs to be a positive integer. (@molobrakos
- #9072 ) (sensor.eliqonline docs) (breaking change) - MySensors: Not a breaking change per se but users that have not been following the mysensors serial API
could face dropped messages after this change. Messages are now validated according to the API before being passed along from/to devices. See 0.11 release notes for more info. (@MartinHjelmare - #9069 ) (mysensors docs) (binary_sensor.mysensors docs) (climate.mysensors docs) (cover.mysensors docs) (device_tracker.mysensors docs) (light.mysensors docs) (notify.mysensors docs) (sensor.mysensors docs) (switch.mysensors docs) (breaking change) - Automatic has disabled password authentication on their API. Home Assistant will now use OAuth2 to authenticate accounts. The following steps must be taken to transition your setup:
- Log in to your Automatic developer account. In the Automatic Developer Apps Manager, specify the OAuth Redirect URL in the developer page. This should be configured to
<home-assistant-url>/api/automatic/callback
. (Example:http://homeassistant.local:8123/api/automatic/callback
) Note that this URL only needs to be accessible from the browser you use to perform the authentication. - Remove username/password from your automatic device tracker configuration in configuration.yaml.
- If you have authorized your account for
scope:current_location
, addcurrent_location: true
to your automatic device tracker configuration in configuration.yaml. - When you restart Home Assistant, click on the Automatic Configure link in the Configurator card, and follow the instructions to authorize Home Assistant.
NOTE: Automatic’s API is currently not correctly authorizing with refresh tokens, so Step 4 currently needs to be performed after every restart. (@armills- #8962 #9002 ) (configurator docs) (breaking change)
- Log in to your Automatic developer account. In the Automatic Developer Apps Manager, specify the OAuth Redirect URL in the developer page. This should be configured to
All changes
- Add version sensor (@fabaff
- #8912 ) (sensor.version docs) (new-platform) - Fix hue lights for Philips and non-philips lights (@groth-its
- #8905 ) (light.hue docs) - Fixed cert_expiry sensor to delay firing on HA startup (@arsaboo
- #8920 ) (sensor.cert_expiry docs) - Remove spaces from Xiami switch attributes (@syssi
- #8952 ) (switch.xiaomi docs) (breaking change) - Add service to alarm control panel for night mode arming (@schmittx
- #8614 ) (alarm_control_panel docs) (alarm_control_panel.totalconnect docs) - Add support for Automatic OAuth2 authentication (@armills
- #8962 ) (configurator docs) (breaking change) - Nello.io lock support (@pschmitt
- #8957 ) (lock.nello docs) (new-platform) - Added continue-on-errors, added value template (@iamjackg
- #8971 ) (sensor.snmp docs) - Is_allowed_path raise for None path (@danielhiversen
- #8953 ) - Fix #8960 - Decora Wi-Fi Switch unable to set brightness (@tlyakhov
- #8989 ) (light.decora_wifi docs) - Adds port/SSL config options for RainMachine (@bachya
- #8986 ) (switch.rainmachine docs) - Automatic device tracker remove password (@armills
- #9002 ) (breaking change) - Add scripts editor backend (@balloob
- #8993 ) (config docs) (script docs) (new-platform) - MQTT Switch - Add configurable availability payload (@timstanley1985
- #8934 ) (switch.mqtt docs) (breaking change) - Buienradar newconditions (@mjj4791
- #8897 ) (sensor.buienradar docs) (weather.buienradar docs) - Pushbullet, fix multiple messages sent when url param is set (@karlkar
- #9006 ) (notify.pushbullet docs) - Update to pyenvisalink 2.2, and remove range validation on zonedump i… (@Cinntax
- #8981 ) (envisalink docs) - Fix #9010 - Swiss Public Transportation shows departure time in the past (@hertg
- #9011 ) (sensor.swiss_public_transport docs) - Add HipChat notify service. (@BioSehnsucht
- #8918 ) (new-platform) - Update onkyo-eiscp to 1.2.3 (@danieljkemp
- #9019 ) (media_player.onkyo docs) - Check if album image(s) exist in spotify (@Tommatheussen
- #9024 ) (media_player.spotify docs) - Update ffmpeg to 1.7 to fix severals problems (@pvizeli
- #9029 ) - Add state_with_unit property to state objects in templates (@balloob
- #9014 ) - Fix Geizhals index issue when not 4 prices available (@celeroll
- #9035 ) (sensor.geizhals docs) - Refactor USPS into component with Sensors+Camera (@mezz64
- #8679 ) (breaking change) (new-platform) - Set password after connecting. Fixes #8983 (@StevenLooman
- #9039 ) (media_player.mpd docs) - Update iOS sensor (battery icon fix and format updates) (@schmittx
- #9032 ) - Adds London_air component (@robmarkcole
- #9020 ) (sensor.london_air docs) (new-platform) - Update pwmled to 1.2.1. (@soldag
- #9040 ) (light.rpi_gpio_pwm docs) - Configurable timeout for webostv. (@soldag
- #9042 ) (media_player.webostv docs) - Update ios.py (@schmittx
- #9041 ) (sensor.ios docs) - Support Windows in UPNP discovery (@kabongsteve
- #8936 ) - Upgrade python-pushover to 0.3 (@fanaticDavid
- #9045 ) (notify.pushover docs) - Add speeds to fan dropdown in ISY fan component (@boojew
- #9004 ) (fan.isy994 docs) - Update Fitbit sensor (icons, formatting, client update) (@schmittx
- #9031 ) (sensor.fitbit docs) - Add Abode home security component (@arsaboo
- #9030 ) (abode docs) (alarm_control_panel.abode docs) (binary_sensor.abode docs) (new-platform) - LIFX: avoid rare NoneType errors (@amelchio
- #9054 ) (light.lifx docs) - Bump dlib face_recognition to 0.2.2 (@arsaboo
- #9060 ) (image_processing.dlib_face_detect docs) (image_processing.dlib_face_identify docs) - Update fitbit.py (@schmittx
- #9064 ) (sensor.fitbit docs) - Upgrade sendgrid to 5.0.0 (@fabaff
- #9062 ) (notify.sendgrid docs) - Upgrade slacker to 0.9.60 (@fabaff
- #9065 ) (notify.slack docs) - Add support for Prowl notifications. (@mbrrg
- #9028 ) (notify.prowl docs) (new-platform) - Upgrade onkyo-eiscp to 1.2.4 (fixes #8995) (@fabaff
- #9068 ) (media_player.onkyo docs) - Workday sensor offset (@LaStrada
- #8824 ) (binary_sensor.workday docs) - eliqonline: channel id is an integer (@molobrakos
- #9072 ) (sensor.eliqonline docs) (breaking change) - Use builtin constants for Abode alarm_control_panel (@arsaboo
- #9059 ) (alarm_control_panel.abode docs) - bump python-ecobee-api version to 0.0.8 (@nkgilley
- #9074 ) (ecobee docs) - Bump abodepy to 0.7.1 (@arsaboo
- #9077 ) (abode docs) - async_query returns False if connection to server failed, handle this properly (@molobrakos
- #9070 ) (media_player.squeezebox docs) - Added insteonplm device_override multiple capabilities (@teharris1
- #9078 ) (insteon_plm docs) - Upgrade uber_rides to 0.5.1 (@fabaff
- #9080 ) (sensor.uber docs) - Upgrade discord.py to 0.16.10 (@fabaff
- #9082 ) (notify.discord docs) - Fix
device
attribute in fritz_callmonitor.py (fixes #9055) (@max-te- #9081 ) (sensor.fritzbox_callmonitor docs) - Upgrade youtube_dl to 2017.8.18 (@fabaff
- #9079 ) (media_extractor docs) - Remove dash (@fabaff
- #9089 ) - Upgrade credstash to 1.13.3 (@fabaff
- #9088 ) - 9043 Fixed error while running dev docker (@MungoRae
- #9044 ) - Don’t redefine consts (@fabaff
- #9086 ) - Fix octoprint errors when printer is off/disconnected (@w1ll1am23
- #8988 ) (octoprint docs) (sensor.octoprint docs) - Pilight switch: restore last state after restart (@janLo
- #8580 ) (switch.pilight docs) - Fix netdata system_load and add disk_free. (@michaelarnauts
- #9091 ) (sensor.netdata docs) - Add worldtidesinfo sensor component (@aetolus
- #8860 ) (sensor.worldtidesinfo docs) (new-platform) - Support changing the bulb color for tplink smartbulbs, fixes #8766 (@rytilahti
- #8780 ) (light.tplink docs) - bump snapcast version (@happyleavesaoc
- #9100 ) (media_player.snapcast docs) - bump fedex version (@happyleavesaoc
- #9099 ) - Yeelight fix updates on hsv mode (@rytilahti
- #9093 ) (light.yeelight docs) - Catch exceptions (@fabaff
- #9085 ) (notify.discord docs) - Fix issue 8894 with uk_transport component if no next_buses or next_trains (@robmarkcole
- #9046 ) (sensor.uk_transport docs) - upgrade Xiaomi Gateway lib to 0.3 (@danielhiversen
- #9101 ) (xiaomi docs) - pythonegardia package requirement to .18 (@jeroenterheerdt
- #9104 ) (alarm_control_panel.egardia docs) - Simplisafe unknown status fix (@lekobob
- #9111 ) (alarm_control_panel.simplisafe docs) - Update flux_led.py (@danielhiversen
- #9122 ) (light.flux_led docs) - Xiaomi (@danielhiversen
- #9126 ) (xiaomi docs) - refactor pushbullet (@danielhiversen
- #9125 ) (notify.pushbullet docs) - optimistic mode for template covers (w/o timed movement) (@PhracturedBlue
- #8402 ) (cover.template docs) - Use const (@fabaff
- #9127 ) (prometheus docs) - Refactor mysensors callback and add validation (@MartinHjelmare
- #9069 ) (mysensors docs) (binary_sensor.mysensors docs) (climate.mysensors docs) (cover.mysensors docs) (device_tracker.mysensors docs) (light.mysensors docs) (notify.mysensors docs) (sensor.mysensors docs) (switch.mysensors docs) (breaking change)