home-assistant.github.io/blog/categories/release-notes/atom.xml
2017-03-25 18:24:32 +00:00

1158 lines
67 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[Category: Release-Notes | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/release-notes/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2017-03-25T18:21:02+00:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Home Assistant]]></name>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[0.40.2 and broken dependencies]]></title>
<link href="https://home-assistant.io/blog/2017/03/22/broken-dependencies/"/>
<updated>2017-03-22T08:04:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/03/22/broken-dependencies</id>
<content type="html"><![CDATA[TL; DR: We have just released version 0.40.2 that includes a fix related to the installation of dependencies.
Some users in the last few days have been reporting that their Home Assistant installation fails to start with an error in the http component:
```
ImportError: No module named 'aiohttp.file_sender'
```
The problem is that Home Assistant did not handle the case where a dependency would want to install a core dependency of Home Assistant that is newer than what Home Assistant works with. For now, we have identified the following two components that can cause this issue:
- AppleTV (0.38+)
- Android IP Webcam (0.40+)
This issue has been resolved by 0.40.2. If you are on an impacted version and cannot upgrade to the latest version just yet, a temporary workaround will be to remove the `<config dir>/deps` directory and stop using the above mentioned integrations. In the case of AppleTV, you will also have to disable the discovery component to prevent it from being auto-detected.]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Home Assistant 0.40: Turn any Android phone into an IP Webcam]]></title>
<link href="https://home-assistant.io/blog/2017/03/11/repurpose-any-android-phone-as-ip-camera/"/>
<updated>2017-03-11T08:04:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/03/11/repurpose-any-android-phone-as-ip-camera</id>
<content type="html"><![CDATA[<a href='https://home-assistant.io/components/#added_in_current_version/'><img src='https://home-assistant.io/images/blog/2017-03-0.40/social.png' style='border: 0;box-shadow: none;'></a>
It's time for version 0.40 already! For this version, the main focus was on performance and bug fixes. Big thanks to [@pvizeli] for driving this effort. Startup is now super fast. We have also continued with adding warnings for components and platforms that are slowing down Home Assistant.
Some people have interpreted our recent added warnings as if 0.39 introduced the issues that caused the warning. This is not the case, the platforms and components have been misbehaving for a while but now we are adding warnings so we are able to track down the culprits.
Before we continue talking about all the improvements in this release I want to take a moment to thank a few people from the Home Assistant community that are fundamental to the success of Home Assistant. Big thanks to [@dale3h], [@CCOSTAN], [@skalavala], [@rrubin0], [@brahmafear], [@bassclarinetl2], and [@torn8o]! These are all people that hang out in our [main chat channel] and help new users get started and help existing users when running into trouble. Home Assistant would not be there without all the effort you put in! 🙇
And that our community kicks ass is also shown in the numbers. We have already raised together over $700 for the [EFF] via the sale of [our t-shirts][hass-shirt]! All of you rock! Another number worth mentioning is that this release brings us passed 600 integrations for Home Assistant. All of you rock, again!
## Z-Wave is now threadsafe
[@andrey-git] has spend a lot of time to make Z-Wave perform better. It should no longer cause Home Assistant to run slower or raise warnings about the timer getting out of sync.
## Update on the MQTT Out of Memory errors in 0.39
MQTT started causing "Out of Memory" errors for some people on a Raspberry Pi. We have been able to track this down to Raspberry Pis that are using an older firmware. If you are experiencing this issue, please [upgrade your firmware using `rpi-update`](https://github.com/Hexxeh/rpi-update#installing).
## Turn any Android phone into an IP Camera
With the new support for [IP Webcam](/components/android_ip_webcam/) added by [@robbiet480] and [@pvizeli] you are now able to re-purpose any Android phone to become a multifunctional IP webcam. Some of the cool things that you can do:
- Integrate the Android device camera
- Binary sensor when motion is detected
- Sensors to expose the device sensors, including pressure, sound, battery, light
- Control device features like the GPS, night vision and camera flash
<p class='img'>
<img src='https://home-assistant.io/images/blog/2017-03-0.40/ipwebcam.png' />
Screenshot of all the different functionality the IP webcam integration offers.
</p>
## Other Highlights
- Support added for Austrian weather using Zamg weather data ([@Zac-HD])
- Ring.com video doorbell integration added ([@tchellomello])
- Blink Home Security Camera support added ([@fronzbot])
- AppleTV has been converted to push data to Home Assistant instead of us having to poll ([@postlund])
## Breaking changes
- Vera entity ids have changed. This is a one time change to migrate to a model that will prevent future conflicts.
- The Twilio notify platforms now have to be configured via the twilio component.
```yaml
twilio:
account_sid: "abc"
auth_token: "xyz"
```
- If you are using async custom components, the passed in `async_add_devices` method is now a callback instead of a coroutine function.
### If you need help...
...don't hesitate to use our very active [forums][forum] or join us for a little [chat][gitter]. The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks.
### Reporting Issues
Experiencing issues introduced by this release? Please report them in our [issue tracker][issue]. Make sure to fill in all fields of the issue template.
### <a class='title-link' name='release-0401---march-16' href='#release-0401---march-16'></a> Release 0.40.1 - March 16
- Fix wake_on_lan ping with None as host ([@iamtpage] - [#6532])
- Don't start the push updater if the Apple TV is 'off' ([@jnewland] - [#6552])
- Fix for the case of zwave value used in several devices. ([@andrey-git] - [#6577])
- Fix hydroquebec ([@titilambert] - [#6574])
- Update pyecobee version to 0.0.7 ([@dale3h] - [#6593])
- Update SMA solar sensor to work with the new add_devices callback ([@kellerza] - [#6602])
- since knx_2_float can't handle 0, bypass converting 0 value from knx to float ([@goofz] - [#6626])
- Fix Osram Lightify colors ([@deisi] - [#6598])
- Bugfix RFLINK remove group ([@pvizeli] - [#6580])
### <a class='title-link' name='release-0402---march-22' href='#release-0402---march-22'></a> Release 0.40.2 - March 22
Hot fix release to fix dependency issues. More detailed information about the issue in [this blog post](/blog/2017/03/22/broken-dependencies/).
- Prevent dependencies that are installed on demand from installing different versions of core dependencies ([@balloob] - [#6738])
- Upgrade PyChromecast to silent some benign errors ([@balloob] - [#6702])
<!--more-->
## All changes
- Cleanup run_callback_threadsafe ([@pvizeli])
- Use H2 headers to split up the different sections ([@colinodell])
- Refactory of envisalink ([@pvizeli])
- Create zwave devices on OZW thread and only add them during discovery ([@andrey-git])
- Bugfix restore startup state ([@kellerza])
- Random test fixes ([@balloob])
- Remove automatically reloading group config ([@balloob])
- Default config to setup group editor ([@balloob])
- minor broadlink fix ([@danielhiversen])
- Update Yeelight Sunflower light platform to 0.0.6 ([@lindsaymarkwawrd])
- Some zwave cleanup ([@andrey-git])
- sensor.speedtest: provide a default icon ([@molobrakos])
- Test the temperature returned by RM2 ([@aronsky])
- Zamg weather ([@Zac-HD])
- Fix reporting on bad login ([@balloob])
- Move mqtt from eventbus to dispatcher / add unsub for dispatcher ([@pvizeli])
- Update flake8 and pylint to latest ([@andrey-git])
- Fix link ([@fabaff])
- Make glob preserve order ([@andrey-git])
- Update regex ([@fabaff])
- Fix recorder async ([@balloob])
- Fix livebox-play interactions for Python < 3.6 ([@pschmitt])
- Ensure we properly close HASS instances. ([@balloob])
- Add service to change log levels ([@postlund])
- Move ffmpeg to dispatcher from hass.data entity store. ([@pvizeli])
- Feature/reorg recorder ([@balloob])
- Bugfix mqtt socket error ([@pvizeli])
- Notify ciscospark ([@shenning00])
- Config fix ([@balloob])
- Bugfix mqtt paho client to speend time ([@pvizeli])
- Properly report features for each hue bulb type ([@jawilson])
- Local file camera now supports yet inexisting files. ([@jjmontestl])
- light.transition now supports float instead of int in order to be able to perform faster transitions ([@BillyNate])
- Fix for OSRAM lights connected to hue bridge ([@groth-its])
- Add support for MAX!Cube thermostats and window shutter sensors ([@BastianPoe])
- Analog modem callerid support ([@vroomfonde1])
- [sensor.dnsip] New Sensor: DNS IP ([@danielperna84])
- Update library version for Yeelight Sunflower lights platform (fix for packaging problem with 0.0.7) ([@lindsaymarkwawrd])
- Prevent duplicate names on Vera devices by appending the device id ([@arjenfvellinga])
- Add temperature support for MH-Z19 CO2 sensor. ([@andrey-git])
- improve history_stats accuracy ([@bokub])
- Updated pyitachip2ir ([@alanfischer])
- Influx fix ([@open-homeautomation])
- Fix toggle and media_play_pause post async ([@armills])
- Migrate calendar setup to async. ([@pvizeli])
- Frontier silicon ([@zhelev])
- Bootstrap / Component setup async ([@pvizeli])
- Convert kpH and mpH to kph and mph ([@ericgingras])
- Rollback netdisco to 0.8.2 to resolve #6165 ([@jumpkick])
- Log errors when loading yaml ([@kellerza])
- Bootstrap tweaks tests ([@balloob])
- Telegram webhooks new text event ([@scipioni])
- Cleanup component track_point_in_utc_time usage ([@pvizeli])
- Discovery fix ([@balloob])
- Test against 3.6-dev ([@balloob])
- Bugfix ZigBee / Move from eventbus to dispatcher ([@pvizeli])
- Bump netdisco to 0.9.1 ([@balloob])
- sensor.dovado: compute state in update ([@molobrakos])
- Fix mysensors callback race ([@MartinHjelmare])
- Upgrade TwitterAPI to 2.4.5 ([@fabaff])
- Upgrade py-cpuinfo to 0.2.6 ([@fabaff])
- Template sensor change flow / add restore ([@pvizeli])
- Zwave optimize value_added ([@andrey-git])
- Update Vagrant provision.sh ([@shaftoe])
- Update Adafruit_Python_DHT to support new raspberry kernel ([@masarliev])
- Add fallback for name if userdevicename isn't set using old serialnumber logic ([@reedriley])
- Improve Honeywell US climate component ([@titilambert])
- Template binary_sensor change flow / add restore ([@pvizeli])
- Additional support for ecobee hold mode ([@Duoxilian])
- Update Formulas in Convert XY to RGB ([@dramamoose])
- Use dynamic ports for test instances ([@armills])
- Added support for multiple codes executed in a row ([@martinfrancois])
- Use push updates in Apple TV ([@postlund])
- Fix command sudo not found error in dev Dockerfile ([@jawilson])
- Fix calendar authentication text, and handle calendar events without summaries. ([@alanfischer])
- Move dispatcher out of init. ([@pvizeli])
- Zwave: Add remove/replace failed node services. ([@andrey-git])
- Template switch change flow / add restore ([@pvizeli])
- Bump limitlessled dependency to 1.0.5. ([@janLo])
- snmp: upgrade pysnmp to 4.3.4 ([@milaq])
- Bugfix new async_add_devices function ([@pvizeli])
- Restore for input_slider ([@pvizeli])
- Added IPv4 data collector ([@open-homeautomation])
- Return None instead of raising ValueException from as_timestamp template function. ([@jjmontestl])
- [recorder] Catch more startup errors #6179 ([@kellerza])
- twilio component ([@happyleavesaoc])
- Add Z-Wave battery level as a sensor. ([@andrey-git])
- OwnTrack Async ([@pvizeli])
- Fix possibility that have multible topic subscribe mqtt ([@pvizeli])
- Migrate mqtt tracker and arwn sensor to async / cleanup owntrack ([@pvizeli])
- Z-Wave prevent I/O event loop ([@balloob])
- Update pwaqi to 3.0 to use public API ([@valentinalexeev])
- Update Hikvision Binary Sensors to latest library, remove pyDispatcher ([@mezz64])
- Don't initialize components which have already been discovered ([@colinodell])
- Comed Hourly Pricing sensor ([@joe248])
- Add multi contracts support for Hydroquebec ([@titilambert])
- Add Zwave refresh services ([@andrey-git])
- Add keep-alive feature to the generic thermostat ([@aronsky])
- Fix wake_on_lan for german version of Windows 10 (#6397) ([@siebert])
- flux led lib ([@danielhiversen])
- Cleanup async handling ([@pvizeli])
- Restore for automation entities ([@kellerza])
- Fix tests no internet ([@balloob])
- Prevent more I/O in apns ([@balloob])
- Restore flow on device_tracker platform ([@pvizeli])
- switch.tplink: catch exceptions coming from pyHS100 to avoid flooding the logs when the plug is not available ([@rytilahti])
- Added sensors to support Ring.com devices ([@tchellomello])
- Split bootstrap into bs + setup ([@balloob])
- Tweak recorder/restore_state ([@balloob])
- Fix unnecessary warning for ip bans.yaml ([@balloob])
- Better restore_state warnings ([@balloob])
- Set new color before turning LIFX bulbs on ([@amelchio])
- Don't log username and password in camera url ([@ishults])
- Ignore deleted mails in IMAP unread count (#6394) ([@amelchio])
- Delay zwave updates for 100ms to group them. ([@andrey-git])
- Rename _scheduled_update to _update_scheduled ([@andrey-git])
- Revert "Use dynamic port allocation for tests" ([@armills])
- Tado device_tracker exception when mobile device has geofencing enabled but location is currently unknown. ([@jmvermeulen])
- Add a Z-wave workaround to do full refresh on update ([@andrey-git])
- Use bundled certificates if port matches mqtts ([@dennisdegreef])
- Bugfix samsungtv discovery ([@pvizeli])
- Added unittest for Ring sensor ([@tchellomello])
- Shorten recorder connection init ([@balloob])
- KWB Easyfire support ([@bimbar])
- Bumped version number for supporting lib ([@bazwilliams])
- Send a logo with webostv notifications ([@andersonshatch])
- Upgrade netdisco to 0.9.2 ([@balloob])
- Allow testing against uvloop ([@balloob])
- fix issue ([@appzer])
- Remove connection status state. ([@aequitas])
- Support for Blink Camera System ([@fronzbot])
- Add warning for slow platforms/components ([@balloob])
- Fix wake_on_lan ping for Linux. ([@siebert])
- Add support for remove services / Reload script support ([@pvizeli])
- Expand MQTT lights ([@robbiet480])
- Allow configurable conditions for Pi-Hole sensor ([@colinodell])
- Improved iCloud 2FA support. ([@reedriley])
- Update pymyq requirement ([@arraylabs])
- Not always asume manufacturername is present ([@balloob])
- Add first pass at Z-Wave light tests ([@balloob])
- Bugfix mqtt socket memory error ([@pvizeli])
- Increase upper limit on light transitions ([@amelchio])
- Bugfix android camera autodiscovery settings ([@pvizeli])
- Update to Pyunifi2.0 ([@finish06])
- Insteon lib ([@wardcraigj])
- Bugfix rpi_rf cleanup ([@pvizeli])
- Android webcam better error handling / pump library 0.4 ([@pvizeli])
[@BastianPoe]: https://github.com/BastianPoe
[@BillyNate]: https://github.com/BillyNate
[@Duoxilian]: https://github.com/Duoxilian
[@MartinHjelmare]: https://github.com/MartinHjelmare
[@Zac-HD]: https://github.com/Zac-HD
[@aequitas]: https://github.com/aequitas
[@alanfischer]: https://github.com/alanfischer
[@amelchio]: https://github.com/amelchio
[@andersonshatch]: https://github.com/andersonshatch
[@andrey-git]: https://github.com/andrey-git
[@appzer]: https://github.com/appzer
[@arjenfvellinga]: https://github.com/arjenfvellinga
[@armills]: https://github.com/armills
[@aronsky]: https://github.com/aronsky
[@arraylabs]: https://github.com/arraylabs
[@balloob]: https://github.com/balloob
[@bazwilliams]: https://github.com/bazwilliams
[@bimbar]: https://github.com/bimbar
[@bokub]: https://github.com/bokub
[@colinodell]: https://github.com/colinodell
[@danielhiversen]: https://github.com/danielhiversen
[@danielperna84]: https://github.com/danielperna84
[@dennisdegreef]: https://github.com/dennisdegreef
[@dramamoose]: https://github.com/dramamoose
[@ericgingras]: https://github.com/ericgingras
[@fabaff]: https://github.com/fabaff
[@finish06]: https://github.com/finish06
[@fronzbot]: https://github.com/fronzbot
[@groth-its]: https://github.com/groth-its
[@happyleavesaoc]: https://github.com/happyleavesaoc
[@ishults]: https://github.com/ishults
[@janLo]: https://github.com/janLo
[@jawilson]: https://github.com/jawilson
[@jjmontestl]: https://github.com/jjmontestl
[@jmvermeulen]: https://github.com/jmvermeulen
[@joe248]: https://github.com/joe248
[@jumpkick]: https://github.com/jumpkick
[@kellerza]: https://github.com/kellerza
[@lindsaymarkwawrd]: https://github.com/lindsaymarkwawrd
[@martinfrancois]: https://github.com/martinfrancois
[@masarliev]: https://github.com/masarliev
[@mezz64]: https://github.com/mezz64
[@milaq]: https://github.com/milaq
[@molobrakos]: https://github.com/molobrakos
[@open-homeautomation]: https://github.com/open-homeautomation
[@postlund]: https://github.com/postlund
[@pschmitt]: https://github.com/pschmitt
[@pvizeli]: https://github.com/pvizeli
[@reedriley]: https://github.com/reedriley
[@robbiet480]: https://github.com/robbiet480
[@rytilahti]: https://github.com/rytilahti
[@scipioni]: https://github.com/scipioni
[@shaftoe]: https://github.com/shaftoe
[@shenning00]: https://github.com/shenning00
[@siebert]: https://github.com/siebert
[@tchellomello]: https://github.com/tchellomello
[@titilambert]: https://github.com/titilambert
[@valentinalexeev]: https://github.com/valentinalexeev
[@vroomfonde1]: https://github.com/vroomfonde1
[@wardcraigj]: https://github.com/wardcraigj
[@zhelev]: https://github.com/zhelev
[main chat channel]: https://gitter.im/home-assistant/home-assistant
[@dale3h]: https://github.com/dale3h
[@CCOSTAN]: https://github.com/CCOSTAN
[@skalavala]: https://github.com/skalavala
[@rrubin0]: https://github.com/rrubin0
[@brahmafear]: https://github.com/brahmafear
[@bassclarinetl2]: https://github.com/bassclarinetl2
[@torn8o]: https://github.com/torn8o
[forum]: https://community.home-assistant.io/
[gitter]: https://gitter.im/home-assistant/home-assistant
[issue]: https://github.com/home-assistant/home-assistant/issues
[EFF]: https://www.eff.org
[hass-shirt]: https://home-assistant.io/blog/2017/02/22/home-assistant-tshirts-have-arrived/
[#6532]: https://github.com/home-assistant/home-assistant/pull/6532
[#6552]: https://github.com/home-assistant/home-assistant/pull/6552
[#6574]: https://github.com/home-assistant/home-assistant/pull/6574
[#6577]: https://github.com/home-assistant/home-assistant/pull/6577
[#6580]: https://github.com/home-assistant/home-assistant/pull/6580
[#6593]: https://github.com/home-assistant/home-assistant/pull/6593
[#6598]: https://github.com/home-assistant/home-assistant/pull/6598
[#6602]: https://github.com/home-assistant/home-assistant/pull/6602
[#6626]: https://github.com/home-assistant/home-assistant/pull/6626
[@deisi]: https://github.com/deisi
[@goofz]: https://github.com/goofz
[@iamtpage]: https://github.com/iamtpage
[@jnewland]: https://github.com/jnewland
[#6702]: https://github.com/home-assistant/home-assistant/pull/6702
[#6738]: https://github.com/home-assistant/home-assistant/pull/6738
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[0.39: Configuration panel, state restoration and improved docs]]></title>
<link href="https://home-assistant.io/blog/2017/02/25/config-panel-and-state-restoration/"/>
<updated>2017-02-25T08:04:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/02/25/config-panel-and-state-restoration</id>
<content type="html"><![CDATA[It's time for 0.39 and this release has some amazing new features!
<a href='https://home-assistant.io/components/#added_in_current_version/'><img src='https://home-assistant.io/images/blog/2017-02-0.39/social.png' style='border: 0;box-shadow: none;'></a>
## T-Shirts
First off, in case you haven't seen it yet: [we have t-shirts][t-shirt] now and they are beautiful. All proceeds from the shirts will be donated to the Electronic Frontier Foundation. The first three days all of you have already raised $400! Still waiting for Teespring to get back to me so stay tuned for the EU store.
## Configuration panel
Yep, you read that right. We have a configuration panel. It's just the first of many small steps. Putting in a foundation is important and gives us something to iterate on.
To start, we have three simple configuration panels:
- Core: allows you to validate config, reload core/group/automation config and restart/stop Home Assistant
- Group: allows you to rename groups, change type between group/view and reorder entities.
- Z-Wave: allows you to set device specific configuration settings
<p class='img'>
<img src='https://home-assistant.io/images/blog/2017-02-0.39/config.png'>
Screenshot of our new configuration panel.
</p>
As a security measure, the configuration panel will need to be activated in the config file to be activated. This can be done by adding the following to your `configuration.yaml`:
```yaml
config:
```
Using our configuration panels will require you to structure your groups and Z-Wave device config according to how the configuration panel expects it. This is on purpose as it we will not be aiming to build a system that supports both our extended set of configuration extend hooks and our configuration panels. It's one or the other.
To activate them in your config, create empty files `groups.yaml` and `zwave_device_config.yaml` in your config dir and add the following entries to your config:
```yaml
group: !include groups.yaml
zwave:
device_config: !include zwave_device_config.yaml
```
_Note that this is the first release. Things will be missing, things might be broken._
## Reorganized documentation
Thanks to [Fabian][@fabaff] we have a great re-organized documentation. Is it perfect yet? No. But we are getting close. We put a lot of focus on making sure the Raspberry Pi is the main focus of our getting started. The other instructions are still available, just not as part of the main getting started.
## State restoration
Ever have some input components or integrations and get annoyed with the fact that their state is lost after a restart? Don't worry any longer. [Johann][@kellerza] has added the foundation for state restoration to Home Assistant. For the initial release support has been added to to `input_select` and `input_boolean` components. We will be adding this to more integrations in the future.
## Breaking changes to customize and Z-Wave "customize"
A couple of releases ago we introduced a new way of doing `customize`. It became a list that allowed different ways of matching the config to the entity.
We realized that this was leading into a rabbit hole that we had to get out off. Besides making it unnecessarily complicated it also blocked the road to config panels. And who doesn't like config panels?
So starting this release, we had to make some breaking changes to right the wrong. We will be releasing an online tool to help you convert your config to the new format later today.
[**Update: the online tool can be found here.**](https://jsfiddle.net/balloob/d2e56q6f/74/)
#### Customize has been reverted to it's original config
The old customize is back. The options to match by domain or using glob have been moved to it's own options. It will now look like this:
```yaml
homeassistant:
customize:
light.kitchen:
hidden: true
customize_domain:
light:
icon: mdi:home
customize_glob:
"light.kitchen_*":
icon: mid:description
```
#### Z-Wave customize is now device config
Ever wondered why the Z-Wave customize was called customize? Yeah, so did we. So when migrating this to the new config format, we decided to upgrade the name too:
```yaml
zwave:
device_config:
light.kitchen:
ignored: true
device_config_domain:
light:
polling_intensity: 2
device_config_glob:
"light.kitchen_*":
polling_intensity: 0
```
## Speed improvements
And a final shout out to [Pascal][@pvizeli]. He keeps improving the performance of components and platforms all over Home Assistant.
<!--more-->
## All changes
#### New platforms/components
- [Telegram] webhooks ([@scipioni])
- Added [Openhome][openhome] support ([@bazwilliams])
- [UPS][ups] sensor ([@happyleavesaoc])
- [FEDex][fedex] sensor ([@happyleavesaoc])
- [Gstreamer][gstreamer] media player ([@happyleavesaoc])
- [iTach Remote][itach] Platform ([@alanfischer])
- [myq] cover component ([@arraylabs])
- Support for the [Open Energy Monitor Thermostat][oemt] ([@Cadair])
- Added Fritzbox [Netmonitor][netmonitor] ([@PetePriority])
- Add platform for [Yeelight Sunflower lights][sunflowers] ([@lindsaymarkward])
- Support for [Pocket Casts][pocket] ([@molobrakos])
- [VolvoOnCall][volvo] component with support for sensors, heater and lock ([@molobrakos])
- Add [pushsafer.com][pushsafer] notification service ([@appzer])
- [Websocket push][kodi] notifications for Kodi ([@armills])
- New component 'insteon_plm' and related platforms ([@nugget])
- Add [aurora][aurora] sensor ([@walkerdb])
- Add [Ebox][ebox] sensor platform ([@titilambert])
- Mediaplayer [clementine][clementine] remote ([@jjmontesl])
- Add [Fido][fido] sensor ([@titilambert])
- Add [History Statistics][history_stats] sensor platform ([@bokub])
#### Improvements
- Tellduslive: Don't throw exception if connection to server is lost ([@molobrakos])
- Core: Convert config.components to a set ([@balloob])
- Media Player - Apple TV: Handle connection errors when connecting to Apple TVs, re-use aiohttp session , add fake support for turn on/off ([@postlund])
- Zoneminder: Refactoring and JSON decode error handling ([@pschmitt])
- Recorder: Add tests for full schema migration, limit to session scope ([@armills])
- Device tracker - Tado: Add support for multiple devices to Tado device tracker ([@markoudev])
- Z-Wave: Fix zwave helper getter not to fail on some None results. ([@andrey-git])
- Core: `sensor_class` migrate to `device_class` ([@armills])
- Sensor - Amcrest: Avoid traceback for Amcrest cameras/firmware that does not have the software_information API call ([@tchellomello])
- Media Player - MPD: Adds play URL support to mpd ([@jjmontesl])
- Logbook: Component set add using OR ([@kellerza])
- Config: Add config component and hassbian example panel ([@balloob])
- Proximity: Fixed proximity zone incorrectly using name instead of zone setting ([@jjmontesl])
- Z-Wave: Add device_class support to cover component ([@armills])
- Config: Add check_config API ([@balloob])
- Media player: Add media_image to media_player component ([@postlund])
- Sensor- Vasttrafik.py: vasttrafik: update token on read error ([@persandstrom])
- Z-Wave.py: force_update zwave sensors ([@andrey-git])
- Core: Two stage shutdown ([@pvizeli])
- Z-Wave: Rename customize to device_config ([@balloob])
- Thingspeak: Use the correct API key ([@fabaff])
- Lock - Nuki: Reduce battery drain on Nuki Lock ([@pschmitt])
- Notify - Webostv: Only try to pair notify.webostv when not paired ([@andersonshatch])
- KNX: Fix slow status updates from the knx bus ([@keerts])
- HDMI CEC: HDMI_CEC customization [Breaking change] ([@balloob], [@andrey-git])
- Sensor - Moon: Remove unit of measurement ([@fabaff])
- Z-Wave: Add initial Z-Wave config panel ([@balloob])
- History: Allow printing the number of states returned by history and time it took to extract and add day ([@andrey-git])
- MQTT: Enable sensor for discovery ([@fabaff])
- Light - Limitlessled: Added limitlessled support for bridge v6 and RGBWW bulbs. ([@soldag])
- Config - Hassbian: Update hassbian component with real output ([@balloob])
- Media Player -Sonos: Bugfix sonos favorite_source after lost connection ([@pvizeli])
- Sensor - SenseHAT: Add flag to declare if SenseHAT is attached ([@nodinosaur])
- RFLink: Reconnect robustness, expose connection state. ([@aequitas])
- Media player - CMUS: Remove IO from properties ([@armills])
- Light - Litejet: Lights should have the option to dim in the UI. ([@joncar])
- Light - Hue: Add effect_list to hue light ([@armills])
- Meida player - Liveboxplaytv: Update liveboxplaytv and catch connection errors ([@pschmitt])
- Llight - Lifx: Fix colortemp conversion for lifx lights ([@kitcorey])
- Light - Flux_LED: Update FLUX_LED by adding Effects ([@dramamoose])
- Alarm control panel - Simplisafe: SimpliSafe updates ([@w1ll1am23])
- Cover Add supported_features to cover component ([@armills])
- Wink: Added tamper detection to Wink devices. ([@w1ll1am23])
- Sensor - onewire: Add support for aliased owfs sensors ([@normakm])
- Weather: Forecast ([@Tommatheussen])
- Device tracker - ASUSwrt: Added support for alternate SSH ports in AsusWRT ([@swbradshaw])
- Zoneminder: Add camera mjpeg stream support ([@mnoorenberghe])
- Restore: Restore_state helper to restore entity states from the DB on startup ([@kellerza])
- Sensor - Darksky: Add 'entity_picture' to Darksky component ([@aronsky])
- Media Player - Samsungtv: Add support for waking up Samsung TVs over the network ([@justin8])
- MQTT: Convert MQTT platforms to async ([@pvizeli])
- tests/components/device_tracker/test_init.py: Restore for device_tracker ([@kellerza])
- Discovery: Make it possible to ignore platforms in discovery ([@postlund])
- Image processing: Add `device_class` ([@pvizeli])
### <a class='title-link' name='release-0391---february-27' href='#release-0391---february-27'></a> Release 0.39.1 - February 27
- Add workaround for Paho out of memory issues ([@pvizeli])
- When an error occurs while storing group config, fail instead of wiping config. ([@balloob])
### <a class='title-link' name='release-0392---march-1' href='#release-0392---march-1'></a> Release 0.39.2 - March 1
- Move Zigbee from eventbus to dispatcher ([@pvizeli])
- Fix discovery taking up all memory and cpu ([@balloob] + [@tomusher])
### <a class='title-link' name='release-0393---march-4' href='#release-0393---march-4'></a> Release 0.39.3 - March 4
- Prevent discovered services and devices to be handled twice (@colinodell)
#### Breaking changes
- VolvoOnCall has been extended with more features and had to be converted to a component
- Limitlessled support for Bridge v6 and RGBWW bulbs require users to specify `version` and `port
- hdmi_cec config now requires users to set the types in the hdmi_cec config instead of using `customize`:
```yaml
hdmi_cec:
types:
hdmi_cec.hdmi_5: media_player
```
#### Bugfixes:
[@pvizeli], [@LinuxChristian], [@molobrakos], [@balloob], [@rytilahti], [@fabaff], [@andrey-git], [@aequitas], [@konikvranik], [@Danielhiversen], [@colinodell], [@pschmitt], [@bachp], [@bachp],[@w1ll1am23], [@valentinalexeev], [@robbiet480], [@MartinHjelmare], [@happyleavesaoc], [@tdickman], [@arraylabs], [@lwis], [@titilambert]
### If you need help...
...don't hesitate to use our very active [forums][forum] or join us for a little [chat][gitter]. The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks.
### Reporting Issues
Experiencing issues introduced by this release? Please report them in our [issue tracker][issue]. Make sure to fill in all fields of the issue template.
[@tomusher]: https://github.com/tomusher
[@turbokongen]: https://github.com/turbokongen
[@w1ll1am23]: https://github.com/w1ll1am23
[@nugget]: https://github.com/nugget
[@PetePriority]: https://github.com/PetePriority
[@dramamoose]: https://github.com/dramamoose
[@fabaff]: https://github.com/fabaff
[@joncar]: https://github.com/joncar
[@alanfischer]: https://github.com/alanfischer
[@LinuxChristian]: https://github.com/LinuxChristian
[@justin8]: https://github.com/justin8
[@jjmontesl]: https://github.com/jjmontesl
[@tdickman]: https://github.com/tdickman
[@Danielhiversen]: https://github.com/Danielhiversen
[@pavoni]: https://github.com/pavoni
[@Tommatheussen]: https://github.com/Tommatheussen
[@pvizeli]: https://github.com/pvizeli
[@keerts]: https://github.com/keerts
[@arraylabs]: https://github.com/arraylabs
[@soldag]: https://github.com/soldag
[@walkerdb]: https://github.com/walkerdb
[@kellerza]: https://github.com/kellerza
[@MartinHjelmare]: https://github.com/MartinHjelmare
[@bazwilliams]: https://github.com/bazwilliams
[@appzer]: https://github.com/appzer
[@tchellomello]: https://github.com/tchellomello
[@aronsky]: https://github.com/aronsky
[@swbradshaw]: https://github.com/swbradshaw
[@colinodell]: https://github.com/colinodell
[@nodinosaur]: https://github.com/nodinosaur
[@happyleavesaoc]: https://github.com/happyleavesaoc
[@bokub]: https://github.com/bokub
[@markoudev]: https://github.com/markoudev
[@titilambert]: https://github.com/titilambert
[@aequitas]: https://github.com/aequitas
[@mnoorenberghe]: https://github.com/mnoorenberghe
[@Cadair]: https://github.com/Cadair
[@postlund]: https://github.com/postlund
[@konikvranik]: https://github.com/konikvranik
[@scipioni]: https://github.com/scipioni
[@andrey-git]: https://github.com/andrey-git
[@persandstrom]: https://github.com/persandstrom
[@lwis]: https://github.com/lwis
[@balloob]: https://github.com/balloob
[@bachp]: https://github.com/bachp
[@robbiet480]: https://github.com/robbiet480
[@lindsaymarkward]: https://github.com/lindsaymarkward
[@valentinalexeev]: https://github.com/valentinalexeev
[@armills]: https://github.com/armills
[@molobrakos]: https://github.com/molobrakos
[@normakm]: https://github.com/normakm
[@rytilahti]: https://github.com/rytilahti
[@pschmitt]: https://github.com/pschmitt
[@kitcorey]: https://github.com/kitcorey
[@andersonshatch]: https://github.com/andersonshatch
[telegram]: https://home-assistant.io/componet/telegram_webhooks/
[pushsafer]: https://home-assistant.io/components/notify.pushsafer/
[openhome]: https://home-assistant.io/components/media_player.openhome/
[ups]: https://home-assistant.io/components/sensor.ups/
[fedex]: https://home-assistant.io/components/sensor.fedex/
[fido]: https://home-assistant.io/components/sensor.fido/
[gstreamer]: https://home-assistant.io/components/media_player.gstreamer/
[clementine]: https://home-assistant.io/components/media_player.clementine/
[ebox]: https://home-assistant.io/components/sensor.ebox/
[aurora]: https://home-assistant.io/components/binary_sensor.aurora/
[netmonitor]: https://home-assistant.io/components/sensor.fritzbox_netmonitor/
[itach]: https://home-assistant.io/components/remote.itach/
[sunflowers]: https://home-assistant.io/components/light.yeelightsunflower/
[kodi]: https://home-assistant.io/components/media_player.kodi/
[myq]: https://home-assistant.io/components/cover.myq/
[oemt]: https://home-assistant.io/components/climate.oem/
[volvo]: https://home-assistant.io/components/volvooncall/
[pocket]: https://home-assistant.io/components/sensor.pocketcasts/
[config]: https://home-assistant.io/components/config/
[history_stats]: https://home-assistant.io/components/sensor.history_stats/
[docs]: https://home-assistant.io/docs/
[getting-started]: https://home-assistant.io/getting-started/
[docs-issue]: https://github.com/home-assistant/home-assistant.github.io/issues/1603
[forum]: https://community.home-assistant.io/
[gitter]: https://gitter.im/home-assistant/home-assistant
[issue]: https://github.com/home-assistant/home-assistant/issues
[t-shirt]: https://home-assistant.io/blog/2017/02/22/home-assistant-tshirts-have-arrived/
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[0.38: Alert, AppleTV, MQTT discovery, and Yeelight]]></title>
<link href="https://home-assistant.io/blog/2017/02/11/alert-appletv-mqtt-yeelight/"/>
<updated>2017-02-11T08:04:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/02/11/alert-appletv-mqtt-yeelight</id>
<content type="html"><![CDATA[Another Saturday, another release!
### <a class='title-link' name='core-updates' href='#core-updates'></a> Core updates
- Thanks to [@pvizeli], all the core components are now written asynchronously. All entity components are now migrated from synchronously to asynchronously code!
- Now when you restart Home Assistant using the `homeassistant.restart` service, your configuration is checked. If it appears to be invalid the restart will fail.
### <a class='title-link' name='rewritten-frontend' href='#rewritten-frontend'></a> Rewritten frontend
The frontend has been completely been rewritten, optimizing for speed and lost connection recovery. Even on the slowest phones it should fly now. The frontend also now uses the new [WebSockets API][websocket-api] instead of the [EventStream API][event-stream-api].
### <a class='title-link' name='custom-state-card-ui' href='#custom-state-card-ui'></a> Custom state card UI
A nice new feature is the possibility to create [custom state cards][custom-ui] in the frontend. Go ahead and write your own state card for [lights][light], sensors, locks, etc.
### <a class='title-link' name='mqtt-discovery' href='#mqtt-discovery'></a> MQTT discovery
MQTT now has [discovery][mqtt-discovery] support which is different than our [`discovery`][discovery] component. Similar to the HTTP sensor and HTTP binary sensor, MQTT discovery removes the need for configuration by allowing devices to make their presence known to Home Assistant.
### <a class='title-link' name='alert-component' href='#alert-component'></a> Alert component
If you left your front door open, then the new [`alert`][alert] component can be used to remind you of this by sending you repeating notifications at a given interval.
### <a class='title-link' name='yeelight' href='#yeelight'></a> Yeelight
The [`yeelight`][yeelight] component has been ported to use a more stable and feature-complete [python-yeelight][python-yeelight] backend, and supports now both white and RGB bulbs. The component also supports transitions and can be configured to save the settings to the bulb on changes. The users currently using custom components for Yeelight are encouraged to move back to use the included version and report any problems with it to our [issue tracker][issue].
### <a class='title-link' name='apple-tv' href='#apple-tv'></a> Apple TV
[Apple TV][apple-tv] is now a supported [`media_player`][media-player]! It has support for just about every media player function, including a realtime display of playback status and artwork.
### <a class='title-link' name='all-changes' href='#all-changes'></a> All changes
#### <a class='title-link' name='new-platformscomponents' href='#new-platformscomponents'></a> New platforms/components
- Sensor: Support for monitoring [OpenEVSE][openevse] chargers ([@miniconfig])
- Voice command [API.AI][apiai] ([@adrianlzt])
- [Alert][alert] Component ([@rmkraus])
- [Rflink][rflink] 433Mhz gateway platform and components ([@aequitas])
- Lock: Support for [Nuki.io][nuki] smart locks ([@pschmitt])
- Sensor: [QNAP][qnap] Sensor ([@colinodell])
- Switch: Add support for [FRITZ!DECT][fritz] wireless switches based on fritzhome ([@BastianPoe])
- Sensor: Add [moon][moon] sensor ([@fabaff])
- Media player: Support for the [Orange Livebox Play TV][orange] appliance ([@pschmitt])
- Media player: [Apple TV][apple-tv] support ([@postlund])
- MQTT: [MQTT discovery][mqtt-discovery] support ([@balloob], [@fabaff])
- Notify: [Mailgun][mailgun] notify service ([@pschmitt])
- Image Processing: Support [Microsoft Face detection][face-detect] ([@pvizeli])
#### <a class='title-link' name='improvements' href='#improvements'></a> Improvements
- Switch - Pilight: Validation no longer rejects alphanumeric IDs ([@DavidLP])
- Device tracker - ASUSWrt: Fixes `ip neigh` regex to handle the possible IPv6 "router" flag ([@kylehendricks])
- Light - MySensors: Fix mysensors RGB and W light turn on ([@MartinHjelmare])
- Light - Yeelight: new yeelight backend lib, new features ([@rytilahti])
- Climate - Eq3btsmart: Cleanup modes & available, bump version requirement ([@rytilahti])
- Sensor - SMA: Handle units correctly ([@kellerza])
- MQTT eventstream: Prevent infinite loop in cross configured MQTT event streams ([@aequitas])
- Light - [Hue][hue]: Fix lightgroups not syncing state ([@tboyce1])
- Dvice tracker - Owntracks: Fix OwnTracks state names ([@tboyce1])
- Wink: Wink AC and additional sensor support ([@w1ll1am23])
- Modbus: Modbus write_register accept list ([@benvm])
- Device tracker - Ping: Add devices detected by ping as SOURCE_TYPE_ROUTER instead of GPS ([@michaelarnauts])
- Climate - Ecobee: Cleanup climate and ecobee ([@Duoxilian])
- Sensor - Miflora: Allow specification of bluetooth adapter ([@Danielhiversen])
- Sensor - [Systemmonitor][systemmonitor]: Add average load to systemmonitor ([@eagleamon])
- Sensor - [Openweathermap][owm]: Add wind bearing ([@fabaff])
- Notify - Facebook: Allow to use data for enhanced messages ([@adrianlzt])
- Light - Hyperion: Change CONF_DEFAULT_COLOR CV type ([@Joeboyc2])
- Mysensors: Fix validation of serial port on windows ([@MartinHjelmare])
- Notify - Webostv: Store the key file in the configuration directory ([@pschmitt])
- TTS: TTS ID3 support ([@robbiet480])
- Switch - Broadlink: Add send packet service ([@Yannic-HAW])
- Wink: Add support for position on Wink cover ([@albertoarias])
- Light - Flux: Make brightness display work for RGB devices. ([@aequitas])
- Media player - Roku: Fix attribute error for media_player/roku ([@tchellomello])
- Light - MQTT template: Fix brightness slider for MQTT template lights ([@ray0711])
- Template: Add `min` and `max` Jinja2 [filters][filters] ([@sbidoul])
- Device tracker - Skyhub: Improve Sky Hub error handling ([@alexmogavero])
- Notify - SMTP: Add error checking to the MIMEImage encoding ([@stratosmacker])
- Light - MQTT: Check for command topics when determining the capabilities of an MQTT light ([@herm])
- Core: Check config before restarting ([@andrey-git])
- Light - [Hue][hue]: Fix groups with same names ([@tboyce1])
- Template: Add icon_template to template sensor ([@tboyce1])
- Recorder: Refactoring, scoping, and better handling of SQLAlchemy Sessions ([@kellerza])
- Light - Flux: Add support for fluxled discovery. ([@aequitas])
- Media player - AppleTV: Add discovery support to Apple TV ([@postlund])
- Sensor - Template: Improve warning message in template rendering ([@Danielhiversen])
- Light - Demo: Add available property and typing hints ([@rytilahti])
- Sensor - ARWN: Enhancements to [ARWN][arwn] platform ([@sdague])
- Fan - ISY994: Change medium state for filtering ([@Teagan42])
- Climate - Ecobee: Support away_mode as permanent hold and hold_mode as temporary hold. ([@Duoxilian])
- Tellduslive: Don't throw exception if connection to server is lost ([@molobrakos])
- Zoneminder: Refactoring and JSON decode error handling ([@pschmitt])
- Image processing: Cleanup Base face class add support for microsoft face detect ([@pvizeli])
Bugfixes: [@balloob], [@fabaff], [@pvizeli], [@mnoorenberghe] [@Danielhiversen], [@armills], [@tchellomello], [@aequitas], [@mathewpeterson], [@molobrakos], [@michaelarnauts], [@jabesq], [@turbokongen], [@JshWright], [@andriej], [@jawilson], [@andrey-git], [@nodinosaur], [@konikvranik], and you if you are missing here.
### <a class='title-link' name='release-0381---february-12' href='#release-0381---february-12'></a> Release 0.38.1 - February 12
- Fix logbook ordering ([@balloob])
- Fix AppleTV conflicting dependency breaking websockets ([@balloob])
### <a class='title-link' name='release-0382---february-12' href='#release-0382---february-12'></a> Release 0.38.2 - February 12
- Validate config will now respect custom config location ([@balloob])
- Fix Nuki lock on Python 3.4 ([@pschmitt])
- Fix login issues for myusps ([@happyleavesaoc])
- Fix hdmi_cec with new customize ([@andrey-git])
- Fix MQTT discovery ([@fabaff])
- Fix Z-Wave thermostat units ([@turbokongen])
### <a class='title-link' name='release-0383---february-15' href='#release-0383---february-15'></a> Release 0.38.3 - February 15
- Sonos: fix losing favorite sources on disconnect ([@pvizeli])
- Google Calendar: fix timeMin losing events ([@happyleavesaoc])
- Fix Wink PubNub subscription ([@w1ll1am23])
- Z-Wave: getter not to ignore label ([@andrey-git])
- Moon: remove unit of measurement ([@fabaff])
- MySensors: add version requirement to notify and device tracker ([@MartinHjelmare])
### <a class='title-link' name='release-0384---february-21' href='#release-0384---february-21'></a> Release 0.38.4 - February 21
- Discovery: flux_led discovery led to problems on systems and has been removed ([@bazwilliams])
- Hidden devices are no longer visible on views ([@balloob])
### <a class='title-link' name='breaking-changes' href='#breaking-changes'></a> Breaking changes
- The support for [LG webOS Smart TVs][webostv] was improved. This requires you to move `$HOME/.pylgtv` to `$HASS_CONFIG_DIR/webostv.conf` or Home Assistant will need to be paired with the TV again.
- Image processing events have been renamed: `identify_face` has become `image_processing.detect_face`, `found_plate` has become `image_processing.found_plate`
- The [FFmpeg binary sensor][ffmpeg-bin] change the platform name from `ffmpeg` to `ffmpeg_noise` and `ffmpeg_motion`. Also all FFmpeg-related services are moved from a platform implementation to a the [FFmpeg components][ffmpeg] and were rename from `binary_sensor.ffmpeg_xy` to `ffmpeg.xy`.
- The frontend core changes have caused all custom panels to break. Docs have not been updated yet. The gist is that you have to use `this.hass.entities`, `this.hass.callService` and `this.hass.callApi`.
### <a class='title-link' name='if-you-need-help' href='#if-you-need-help'></a> If you need help...
...don't hesitate to use our very active [forums][forum] or join us for a little [chat][gitter]. The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks.
### <a class='title-link' name='reporting-issues' href='#reporting-issues'></a> Reporting Issues
Experiencing issues introduced by this release? Please report them in our [issue tracker][issue]. Make sure to fill in all fields of the issue template.
[@bazwilliams]: https://github.com/bazwilliams
[@acambitsis]: https://github.com/acambitsis
[@adrianlzt]: https://github.com/adrianlzt
[@aequitas]: https://github.com/aequitas
[@albertoarias]: https://github.com/albertoarias
[@alexmogavero]: https://github.com/alexmogavero
[@andrey-git]: https://github.com/andrey-git
[@andriej]: https://github.com/andriej
[@armills]: https://github.com/armills
[@balloob]: https://github.com/balloob
[@BastianPoe]: https://github.com/BastianPoe
[@benvm]: https://github.com/benvm
[@colinodell]: https://github.com/colinodell
[@Danielhiversen]: https://github.com/Danielhiversen
[@DavidLP]: https://github.com/DavidLP
[@Duoxilian]: https://github.com/Duoxilian
[@eagleamon]: https://github.com/eagleamon
[@fabaff]: https://github.com/fabaff
[@happyleavesaoc]: https://github.com/happyleavesaoc
[@herm]: https://github.com/herm
[@jabesq]: https://github.com/jabesq
[@jawilson]: https://github.com/jawilson
[@Joeboyc2]: https://github.com/Joeboyc2
[@JshWright]: https://github.com/JshWright
[@kellerza]: https://github.com/kellerza
[@konikvranik]: https://github.com/konikvranik
[@kylehendricks]: https://github.com/kylehendricks
[@LinuxChristian]: https://github.com/LinuxChristian
[@MartinHjelmare]: https://github.com/MartinHjelmare
[@mathewpeterson]: https://github.com/mathewpeterson
[@michaelarnauts]: https://github.com/michaelarnauts
[@miniconfig]: https://github.com/miniconfig
[@mnoorenberghe]: https://github.com/mnoorenberghe
[@molobrakos]: https://github.com/molobrakos
[@nodinosaur]: https://github.com/nodinosaur
[@postlund]: https://github.com/postlund
[@pschmitt]: https://github.com/pschmitt
[@pvizeli]: https://github.com/pvizeli
[@ray0711]: https://github.com/ray0711
[@rmkraus]: https://github.com/rmkraus
[@robbiet480]: https://github.com/robbiet480
[@rytilahti]: https://github.com/rytilahti
[@sbidoul]: https://github.com/sbidoul
[@sdague]: https://github.com/sdague
[@stratosmacker]: https://github.com/stratosmacker
[@tboyce1]: https://github.com/tboyce1
[@tchellomello]: https://github.com/tchellomello
[@Teagan42]: https://github.com/Teagan42
[@turbokongen]: https://github.com/turbokongen
[@valentinalexeev]: https://github.com/valentinalexeev
[@w1ll1am23]: https://github.com/w1ll1am23
[@Yannic-HAW]: https://github.com/Yannic-HAW
[alert]: https://home-assistant.io/components/alert/
[apiai]: https://home-assistant.io/components/apiai/
[apple-tv]: https://home-assistant.io/components/media_player.apple_tv/
[arwn]: https://home-assistant.io/components/sensor.arwn/
[custom-ui]: https://home-assistant.io/developers/frontend_creating_custom_ui/
[discovery]: https://home-assistant.io/components/discovery/
[face-detect]: https://home-assistant.io/components/image_processing.microsoft_face_detect/
[ffmpeg-bin]: https://home-assistant.io/components/binary_sensor.ffmpeg/
[ffmpeg]: https://home-assistant.io/components/ffmpeg/
[filters]: https://home-assistant.io/topics/templating/#home-assistant-template-extensions
[fritz]: https://home-assistant.io/components/switch.fritzdect/
[hue]: https://home-assistant.io/components/light.hue/
[light]: https://home-assistant.io/cookbook/custom_ui_by_andrey-git
[mailgun]: https://home-assistant.io/components/notify.mailgun/
[media-player]: https://home-assistant.io/components/media_player/
[moon]: https://home-assistant.io/components/sensor.moon/
[mqtt-discovery]: https://home-assistant.io/components/mqtt/#discovery
[nuki]: https://home-assistant.io/components/lock.nuki/
[openevse]: https://home-assistant.io/components/sensor.openevse/
[orange]: https://home-assistant.io/components/media_player.liveboxplaytv/
[owm]: https://home-assistant.io/components/sensor.openweathermap/
[python-yeelight]: https://gitlab.com/stavros/python-yeelight
[qnap]: https://home-assistant.io/components/sensor.qnap/
[rflink]: https://home-assistant.io/components/rflink/
[systemmonitor]: https://home-assistant.io/components/sensor.systemmonitor/
[webostv]: https://home-assistant.io/components/media_player.webostv/
[yeelight]: https://home-assistant.io/components/light.yeelight/
[event-stream-api]: https://home-assistant.io/developers/server_sent_events/
[forum]: https://community.home-assistant.io/
[gitter]: https://gitter.im/home-assistant/home-assistant
[issue]: https://github.com/home-assistant/home-assistant/issues
[websocket-api]: https://home-assistant.io/developers/websocket_api/
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[0.37: Face detection, Coffee, Wink]]></title>
<link href="https://home-assistant.io/blog/2017/01/28/face-coffee-wink/"/>
<updated>2017-01-28T08:04:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/01/28/face-coffee-wink</id>
<content type="html"><![CDATA[No stats, no numbers, and alike this time. Ok, just one number: 0.37. We are back on track with our bi-weekly release cycle. Beside some organizational changes is this release shipping again cool features and new integrations. Please keep an eye on the "Breaking changes" section because there are also massive improvements for some platforms and components.
### <a class='title-link' name='governance' href='#governance'></a> Governance
As announced, the new [Governance][gov] requires for developers to sign the CLA. [Code of Conduct][coc], [Contributor License Agreement][cla], and proper [Licensing][license] will to protect all involved parties in the Home Assistant eco-system from users and community members to contributors.
### <a class='title-link' name='face-recognition-using-the-microsoft-face-api' href='#face-recognition-using-the-microsoft-face-api'></a> Face recognition using the Microsoft Face API
[@pvizeli] has been on a roll with the image processing integrations. This time it's the [Microsoft Face API][face]. This means that now it will be possible to train the API with the people you want to recognize and send images from your camera to the API as another source of automation.
Want to play a personalized tune when someone enters the house? It is now possible 😎
### <a class='title-link' name='improved-camera-security' href='#improved-camera-security'></a> Improved camera security
After a security audit by Stephen O'Conner, he found that our source for randomly generated access tokens for camera feeds were reasonable predictable and could be brute force attacked in 2.5 weeks. A fix has been included in this release that uses the system provided random number generator for maximum randomness and rotates the keys every 10 minutes to reduce the window in which a brute force attack can happen.
Although the old method is not insecure, the new method is a lot more secure. Upgrading to the latest version is encouraged.
### <a class='title-link' name='new-customization-options' href='#new-customization-options'></a> New customization options
[@Andrey-git] has added some great new options to the customize functionality. It is now possible to specify customizations as a wildcard for entities or for a specific domain.
### <a class='title-link' name='major-wink-and-hdmi-cec-improvements' href='#major-wink-and-hdmi-cec-improvements'></a> Major Wink and HDMI CEC improvements
[@w1ll1am23] did an amazing job fixing a ton of bugs and issues with the Wink integration. Biggest improvement is that it now is able to automatically refresh the authentication tokens. This means that if you have your email address and password in your `configuration.yaml` file, no `client_id` and `client_secret` are needed, and token which was generated with the generator located in the [Wink][wink] documentation.
The new Wink support will cause renaming of all the binary sensors and will also create new sensors for devices that weren't previously detected or supported in the older version.
Thanks to [@konikvranik] the [HDMI CEC][cec] integration got a huge update with a lot of improvements. This update should make it easier to work with HDMI CEC and give you more control.
### <a class='title-link' name='first-coffee-maker-supported' href='#first-coffee-maker-supported'></a> First Coffee Maker supported
[@stu-gott] has added support for the first coffee maker in Home Assistant: [Mr. Coffee Smart Optimal Brew][coffee]. Happy brewing!
### <a class='title-link' name='all-changes' href='#all-changes'></a> All changes
#### <a class='title-link' name='new-platformscomponents' href='#new-platformscomponents'></a> New platforms/components
- Netatmo: [Netatmo][netatmo] Presence support ([@gieljnssns])
- Sensor: [Amcrest][amcrest] camera sensors ([@tchellomello])
- Notify: New [Discord][discord] notification component ([@Deinara])
- Device tracker: [Tado][tado] device tracker support ([@jmvermeulen])
- Sensor: Add [Skybeacon][skybeacon] BLE temperature/humidity sensor ([@anpetrov])
- New [Zabbix][zabbix] component ([@Whytey])
- Media player: New platform [Anthemav][anthem] Media player ([@nugget])
- Light: Add support for [Avion][avion] Bluetooth dimmer switches ([@mjg59])
- Binary sensor: [Beaglebone Black][bb-bin] binary sensor ([@MatoKafkac])
- Light: [Piglow][piglow] support ([@xarnze])
- [Face][face] recognition for automation ([@pvizeli])
- Sensor: New [Washington State DOT][wsdot] sensor ([@partofthething])
- Support for Wemo CoffeeMaker devices ([@stu-gott])
- Device tracker: [Sky hub][sky] support ([@alexmogavero])
- Support for [Lutron][lutron] RadioRA 2 ([@thecynic])
- TTS: Amazon [Polly TTS][polly] platform ([@robbiet480])
- Device tracker: Support for [Linksys][linksys] Access Points ([@lukas-hetzenecker])
- Notify: Make calls with [Twilio][twilio] ([@fakezeta])
#### <a class='title-link' name='improvements' href='#improvements'></a> Improvements
- Script: Fix script release ([@balloob])
- Camera - Amcrest: Add support for direct MJPEG streams from Amcrest cameras ([@colinodell])
- Sensor - Miflora: Removing throttle decorator ([@freol35241])
- Notify - Lannouncer: Fix `get_service` method ([@mKeRix])
- Sensor - WAQI: Add station parameter to waqi sensor ([@whhsw])
- Sensor - USPS: Absolute path to save cookie used by USPS sensor ([@tchellomello])
- Nest: Fix python-nest release number ([@Danielhiversen])
- Keyboard remote: Improve support ([@MrMep])
- Device tracker - VolvoOnCall: Fix timedelta ([@pvizeli])
- Climate - eq3btsmart: Expose away attribute ([@rytilahti])
- Remote: Reserve a test port for broken API to fix race ([@armills])
- Climate - Ecobee: Made target temperature sensitive to auto mode ([@Duoxilian])
- Configuration: Fix load_yaml default value ([@balloob])
- Notify - Facebook: Fix encoding error ([@Danielhiversen])
- Emulated_hue: Add `upnp_bind_multicast` option, default type to Google, and persist emulated hue IDs ([@hoopty], [@balloob])
- Docker: Install phantomjs in Docker container ([@jnewland])
- Media player - MPD: Add listing and selection of available MPD playlists ([@partofthething])
- Media player - Denon AVR: Denon improvements ([@glance-])
- Light - x10.py: Improved x10 state monitoring ([@martst])
- Sensor - DSMR: TCP, reconnecting and V4 CRC support ([@aequitas])
- Media player - Yamaha.py: Fix Yamaha doing I/O in event loop ([@balloob])
- Device tracker UPC: Make upc more robust ([@pvizeli])
- Climate - Generic thermostat: Update ([@MrMep])
- Device tracker - Xiaomi.py: Xiaomi Mi Router token refresh ([@RiRomain])
- Camera - MJPEG: Support still image for thumbmail ([@pvizeli])
- Sensor - ZAMG: Updated valid station id list ([@HerrHofrat])
- Light - ISY994: Not overwrite `state_attributes` ([@rmkraus])[emul-hue]
- Light - Zwave: Use only supported features for devices ([@turbokongen])
- Media player - Kodi: Support for volume stepping ([@armills])
- Media player- roku: Use `is_screensaver`, update IDLE state, and use device name ([@robbiet480], [@xhostplus])
- Switch - HDMI CEC: Support for devices and commands ([@konikvranik])
- Lock - Zwave: Improvements to Zwave lock platform ([@turbokongen])
- TTS: Invalidate broken file cache entries ([@stu-gott])
- Light - Hue: Improvements ([@robbiet480])
- TTS - YandexTTS: Added speed and emotion to Yandex TTS ([@lupin-de-mid])
- Light - tellstick.py: Tellstick light fix ([@stefan-jonasson])
- Switch - insteon_local.py: only check for devices when not defined in config ([@wardcraigj])
- Notify - Twitter: Allow direct messaging to user ([@fabaff])
- Fan - MQTT: Dont set a speed when fan turns on ([@robbiet480])
- Config: Allow easier customization of whole domain, entity lists, globs ([@andrey-git])
- Sensor - Homematic: Update device support ([@danielperna84])
- Binary sensor - ISS: Add location to attributes and option to show position on the map ([@fabaff])
- Media player - Kodi: Add SSL configuration option ([@ecksun])
- Sensor - WAQI: Add missing particle value ([@fabaff])
- Wink: Support for python-wink 1.0.0 ([@w1ll1am23])
- Binary sensor - RPi GPIO: Add a small sleep before reading the sensor ([@snagytx])
- Sensor - USPS: Add name to configuration ([@happyleavesaoc])
- Sensor - Miflora: Remove throttle decorator from miflora platform ([@freol35241])
- Device tracker - asuswrt.py: Add IPv6 support when parsing neighbors ([@leppa])
- iOS: Discover notify.ios when iOS component loads ([@robbiet480])
- Homematic: Add MAX shutter contact class ([@jannau])
- Sensor - Darksky: Added forecast support ([@nordlead2005])
- Switch - Pilight: Implement echo config option ([@janLo])
- Core: Support customize in packages ([@kellerza])
- Switch - Flux: Allow disabling setting the brightness ([@rytilahti])
- Media player - Sonos: Add `is_coordinator`, set coordinator after join/unjoin, and no emtpy image ([@pvizeli], [@andrey-git], [@robbiet480])
- Climate: Hold mode ([@Duoxilian])
- Switch - TPlink: No longer doing I/O in event bus ([@balloob])
- Light - Insteon local: Improve Insteon configuration ([@wardcraigj])
- Emulated Hue: Emulated Hue "host-ip" fails to bind when running in docker without `--net=host` ([@jeremydk])
- Climate - EQ3 BT smart: Add reporting for availability ([@rytilahti])
Bugfix: [@balloob], [@fabaff], [@freol35241], [@pvizeli], [@Danielhiversen], [@tdickman], [@armills], [@rytilahti], [@R1chardTM], [@asbach], [@happyleavesaoc], [@robbiet480], [@colinodell], [@joopert], [@dale3h], [@pavoni], [@jaharkes], [@MartinHjelmare], [@mezz64], [@jabesq], and you if you are missing in this list.
### <a class='title-link' name='release-0371---february-2' href='#release-0371---february-2'></a> Release 0.37.1 - February 2
- Do not reject alphanumeric IDs for PiLight ([@DavidLP])
- Fix broken Hue discovery ([@DanielHiversen])
- Fix Amcrest ([@tchellomello])
- Fix Telldus Live dim level error on startup ([@molobrakos])
- Fix Sonos group coordinators ([@pvizeli])
- UPC Connect: Parse XML outside event loop ([@pvizeli])
- Fix Netatmo SSL issue with VPN url ([@jabesq])
- Homematic: Fix bug with UNREACH device state/restore and variables not updating ([@pvizeli])
- Sonos: Prevent duplicate entries in favorite list ([@pvizeli])
- Fix Schlage Connect deadbolt integration via Z-Wave ([@turbokongen])
- Prevent infinite loop in crossconfigured mqtt event streams ([@aequitas])
- Fix Hue lightgroups failing on startup ([@tboyce1])
### <a class='title-link' name='breaking-changes' href='#breaking-changes'></a> Breaking changes
- A **major** breaking change in the [`emulated_hue`][emul-hue] component means that unless you set `type: alexa` before starting up the newer Home Assistant version you will lose all devices that Alexa has discovered and will need to re-add them as well as create new groups.
- The platform of the [ISS][iss] integration was change to `binary_sensor`. Please check the platform documentation.
- The [Roku][roku] media uses now a new format for the entity IDs.
- [OpenALPR][openalpr] is no longer a component. It's now a platform for [Image processing][image].
- Due to massive improvements of the [Wink][wink] integration, the names of your binary sensors will change and new devices can show up.
- The [MySensors][mysensors] component now requires all persistence file paths to be set if any is set by the user. This is to avoid name conflicts for the paths. If no path is set Home Assistant will set all paths for you.
- The [Sonos][sonos] service `sonos_group_players` was removed. Use now `sonos_join` for this function.
- TTS cache have change for the last time. Files use now also a option hash as part of the name. If you want to use the cache, it need to be renamed or cleared, new created. E. g. `HASH_LANG_PLATFORM.xxx` -> `HASH_LANG_OPTIONS_PLATFORM.xxx`, replace *OPTIONS* with `-` on exiting platforms.
### <a class='title-link' name='if-you-need-help' href='#if-you-need-help'></a> If you need help...
...don't hesitate to use our [Forum](https://community.home-assistant.io/) or join us for a little [chat](https://gitter.im/home-assistant/home-assistant). The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks.
### <a class='title-link' name='reporting-issues' href='#reporting-issues'></a> Reporting Issues
Experiencing issues introduced by this release? Please report them in our [issue tracker](https://github.com/home-assistant/home-assistant/issues). Make sure to fill in all fields of the issue template.
[@DavidLP]: https://github.com/DavidLP
[@molobrakos]: https://github.com/molobrakos
[@tboyce1]: https://github.com/tboyce1
[@MrMep]: https://github.com/MrMep
[@joopert]: https://github.com/joopert
[@armills]: https://github.com/armills
[@janLo]: https://github.com/janLo
[@happyleavesaoc]: https://github.com/happyleavesaoc
[@danielperna84]: https://github.com/danielperna84
[@lukas-hetzenecker]: https://github.com/lukas-hetzenecker
[@robbiet480]: https://github.com/robbiet480
[@mjg59]: https://github.com/mjg59
[@turbokongen]: https://github.com/turbokongen
[@whhsw]: https://github.com/whhsw
[@jabesq]: https://github.com/jabesq
[@asbach]: https://github.com/asbach
[@stefan-jonasson]: https://github.com/stefan-jonasson
[@fabaff]: https://github.com/fabaff
[@RiRomain]: https://github.com/RiRomain
[@freol35241]: https://github.com/freol35241
[@jmvermeulen]: https://github.com/jmvermeulen
[@thecynic]: https://github.com/thecynic
[@aequitas]: https://github.com/aequitas
[@balloob]: https://github.com/balloob
[@konikvranik]: https://github.com/konikvranik
[@jeremydk]: https://github.com/jeremydk
[@alexmogavero]: https://github.com/alexmogavero
[@Duoxilian]: https://github.com/Duoxilian
[@nugget]: https://github.com/nugget
[@mezz64]: https://github.com/mezz64
[@pavoni]: https://github.com/pavoni
[@MartinHjelmare]: https://github.com/MartinHjelmare
[@R1chardTM]: https://github.com/R1chardTM
[@andrey-git]: https://github.com/andrey-git
[@kellerza]: https://github.com/kellerza
[@dale3h]: https://github.com/dale3h
[@Deinara]: https://github.com/Deinara
[@jaharkes]: https://github.com/jaharkes
[@tchellomello]: https://github.com/tchellomello
[@jannau]: https://github.com/jannau
[@glance-]: https://github.com/glance-
[@w1ll1am23]: https://github.com/w1ll1am23
[@ecksun]: https://github.com/ecksun
[@nordlead2005]: https://github.com/nordlead2005
[@rytilahti]: https://github.com/rytilahti
[@rmkraus]: https://github.com/rmkraus
[@pvizeli]: https://github.com/pvizeli
[@anpetrov]: https://github.com/anpetrov
[@partofthething]: https://github.com/partofthething
[@wardcraigj]: https://github.com/wardcraigj
[@Danielhiversen]: https://github.com/Danielhiversen
[@colinodell]: https://github.com/colinodell
[@hoopty]: https://github.com/hoopty
[@martst]: https://github.com/martst
[@Whytey]: https://github.com/Whytey
[@MatoKafkac]: https://github.com/MatoKafkac
[@stu-gott]: https://github.com/stu-gott
[@jnewland]: https://github.com/jnewland
[@tdickman]: https://github.com/tdickman
[@xarnze]: https://github.com/xarnze
[@snagytx]: https://github.com/snagytx
[@gieljnssns]: https://github.com/gieljnssns
[@leppa]: https://github.com/leppa
[@lupin-de-mid]: https://github.com/lupin-de-mid
[@HerrHofrat]: https://github.com/HerrHofrat
[@xhostplus]: https://github.com/xhostplus
[@mKeRix]: https://github.com/mKeRix
[@fakezeta]: https://github.com/fakezeta
[amcrest]: https://home-assistant.io/components/binary_sensor.amcrest/
[discord]: https://home-assistant.io/components/notify.discord/
[tado]: https://home-assistant.io/components/device_tracker.tado/
[sky]: https://home-assistant.io/components/device_tracker.sky_hub/
[zabbix]: https://home-assistant.io/components/zabbix/
[avion]: https://home-assistant.io/components/light.avion/
[anthem]: https://home-assistant.io/components/media_player.anthemav/
[bb-bin]: https://home-assistant.io/components/binary_sensor.bbb_gpio/
[piglow]: https://home-assistant.io/components/light.piglow/
[wsdot]: https://home-assistant.io/components/sensor.wsdot/
[skybeacon]: https://home-assistant.io/components/sensor.skybeacon/
[lutron]: https://home-assistant.io/components/lutron/
[polly]: https://home-assistant.io/components/tts.amazon_polly/
[linksys]: https://home-assistant.io/components/device_tracker.linksys_ap/
[emul-hue]: https://home-assistant.io/components/emulated_hue/
[netatmo]: https://home-assistant.io/components/netatmo/
[face]: https://home-assistant.io/components/microsoft_face/
[iss]: https://home-assistant.io/components/binary_sensor.iss/
[roku]: https://home-assistant.io/components/media_player.roku/
[openalpr]: https://home-assistant.io/components/#image-processing
[image]: https://home-assistant.io/components/image_processing/
[emul_hue]: https://github.com/home-assistant/home-assistant/pull/5549
[coc]: https://home-assistant.io/developers/code_of_conduct/
[cla]: https://home-assistant.io/developers/cla/
[gov]: https://home-assistant.io/blog/2017/01/21/home-assistant-governance/
[license]: https://home-assistant.io/developers/license/
[wink]: https://home-assistant.io/components/wink/
[coffee]: https://home-assistant.io/components/switch.wemo/
[cec]: https://home-assistant.io/components/hdmi_cec/
[mysensors]: https://home-assistant.io/components/mysensors/
[sonos]: https://home-assistant.io/components/media_player.sonos/
[twilio]: https://home-assistant.io/components/notify.twilio_call/
]]></content>
</entry>
</feed>