Skip to content

Commit 25b09ea

Browse files
committed
Release blog post for 0.30
1 parent 9918b67 commit 25b09ea

File tree

1 file changed

+163
-0
lines changed

1 file changed

+163
-0
lines changed
Lines changed: 163 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
---
2+
layout: post
3+
title: "0.30: More Async, HASSbian, Digital Ocean, statistics, REST"
4+
description: "More asynchronous, HASSbian image, Support for Digital Ocean, statistics, Västtrafik public transport, and Hacktoberfest."
5+
date: 2016-10-08 03:04:05 +0000
6+
date_formatted: "October 08, 2016"
7+
author: Fabian Affolter & Paulus Schoutsen
8+
author_twitter: fabaff
9+
comments: true
10+
categories: Release-Notes
11+
---
12+
13+
Yes, after only nine days comes 0.30. Don't worry, we will try to keep our usual release cycle and not start to release every day.
14+
15+
We guess that you already know: The [Raspberry Pi image][pi-image] is available now. For Hassbian, [@Landrash] has combined the most essential parts for a Home Assistant setup in an easy-to-use image for the Raspberry Pi device family. Hassbian is quite young, thus we are looking forward to recieve [feedback][hassbian-forum], [issue report][hassbian-forum], and [suggestions][hassbian-forum] to improve it.
16+
17+
A large amount of resources of the development are still focusing on the effort to move Home Assistant further to asynchronous programming. It's a labor-intensive task, comes with segmentation faults, and unstable instances when certain combinations of sensors are used. The benefit will be more speed in the near future.
18+
19+
To reduce the run-time of your tests, [@balloob] did a lot of tweaking. For now the RFXtrx tests are excluded which cut the needed time for running on your Pull Request in half.
20+
21+
### {% linkable_title Documentation %}
22+
23+
All configuration sample entries are now minimized. This should help to avoid problem for starters and newbies as they only get what's needed and not a full sample with all optional entries. If there is an issue with an entry in your `configuration.yaml` file the error message will provide you an URL that point to the documentation.
24+
25+
<p class='img'>
26+
<img src='{{site_root}}/images/screenshots/config-validation-url.png' />
27+
</p>
28+
29+
As soon as the [Hacktoberfest] started there were a lot of incoming Pull Requests for the documentation. A huge "Thank you" to all participants. Especially, we would like to give a cookie to [@hillaryfraley]. She created around a dozen Pull Requests so far and didn't only fix typos but complete sections. The [Hacktoberfest] is still on-going and we are looking forward to get more Pull Requests.
30+
31+
### {% linkable_title Statistics %}
32+
33+
With the [statistics sensor][stats-sensor] we would like to introduce a new sensor that is similar to the [template sensor][template-sensor] or the [trend sensor][trend-sensor]. This sensor is consuming values from another sensor and is doing some statistical analysis of the data. Over a group of samples is the average/mean, the min/max, the total, the standard deviation, and the variance calculated which can be used in your automation rules. If the source is a binary sensor then the state changes are counted.
34+
35+
<p class='img'>
36+
<img src='{{site_root}}/images/screenshots/stats-sensor.png' />
37+
</p>
38+
39+
As the results are processed on-the-fly you still need to use the data from your database for a in-depth analysis of your stored information. Check the latest [notebook] for doing statistics with your Home Assistant database.
40+
41+
### {% linkable_title REST! We don't... %}
42+
43+
There was a lot of work done on our implementation which are working with RESTful APIs. [@w1ll1am23] extended the [aREST] platforms to display if an aREST unit is available or not. The aREST is now covered by the configuration check as well. Please check the Breaking changes section for more details.
44+
45+
The [REST sensor][rest-sensor] supports now HTTP authentication (basic and digest) and custom header. This will allow you to access resources which are protected. This sample sensor will access GitHub and retrieve the latest release number while by-passing the rate limit for non-authenticated requests.
46+
47+
```yaml
48+
sensor
49+
- platform: rest
50+
resource: https://api.github.com/repos/home-assistant/home-assistant/releases/latest
51+
username: YOUR_GITHUB_USERNAME
52+
password: YOUR_GITHUB_ACCESS_TOKEN
53+
authentication: basic
54+
value_template: '{% raw %}{{ value_json.tag_name }}{% endraw %}'
55+
headers:
56+
Accept: application/vnd.github.v3+json
57+
Content-Type: application/json
58+
User-Agent: Home Assistant REST sensor
59+
```
60+
61+
### {% linkable_title Misc %}
62+
63+
- GitHub released with a recent update a review feature. This will give you more control over your comments while you review an open Pull Request.
64+
- Thanks to [@robbiet480] we are now running [mention-bot]. It will help you when you create a new Pull Request to identify potential reviewers.
65+
- The [Home Assistant Community Forum][forum] has now an additional section called "Installation".
66+
67+
### {% linkable_title All changes %}
68+
69+
<img src='/images/supported_brands/digital_ocean.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='100' /><img src='/images/supported_brands/volvo.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='100' /><img src='/images/supported_brands/dark_sky.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='100' /><img src='/images/supported_brands/vasttrafik.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='100' />
70+
71+
- Core: A lot of stuff is now async ([@balloob])
72+
- Nest: Support for operation modes ([@jawilson])
73+
- Z-Wave: Massive update for command classes and device classes ([@turbokongen])
74+
- Digital Ocean: New [switch][do-switch] to control and [binary sensor][do-bin-sensor] to monitor droplets ([@fabaff])
75+
- Cover: Support for [MySensors cover][mysensors-cover] ([@OttoWinter])
76+
- Wink: Support for oAuth2 and relay sensors ([@w1ll1am23])
77+
- Sensor: [Forecast][darksky] update interval is now configurable ([@KlaasH])
78+
- Core: Failed login attempts are reported as persistent notifications ([@fabaff])
79+
- Climate: Temperature convert now available in the Climate object ([@pvizeli])
80+
- Notify: Update to accept a list ([@robbiet480])
81+
- Device tracker: Support for tracking of your [Volvo] ([@molobrakos])
82+
- Switch: Flux improvements ([@jawilson])
83+
- InfluxDB: Time-out for connections ([@simonszu])
84+
- Sensor: New MySensors types available ([@MartinHjelmare])
85+
- Switch: [ANEL PwrCtrl][pwrctrl-switch] devices are now supported ([@mweinelt])
86+
- Frontend: Path of the configuration file now visible on the frontend ([@justweb1])
87+
- Homematic: Extended device support (RF, IP and wired devices) ([@pvizeli], [@danielperna84])
88+
- Sensor: New sensor for [statistical analysis][stats-sensor] ([@fabaff])
89+
- Sensor: Support for headers and HTTP authentication for [REST sensors][rest-sensor] ([@fabaff])
90+
- Device tracker: Support for encrypted Owntracks payload ([@molobrakos])
91+
- Tests: Improvement of the HTML5 notify tests ([@capellini])
92+
- Wink: Support for Wink Smoke and CO detectors ([@w1ll1am23])
93+
- Sensor: [TED5000][ted5000] sensor was included ([@gwendalg])
94+
- Sensor: Support for [Västtrafik][vasttrafik] public transport ([@persandstrom])
95+
- Notify: [Pushetta][pushetta] no longer sends message on start up ([@Danielhiversen])
96+
- Sensor: [Forecast.io][forecast] sensor was replaced by [Dark Sky][darksky] ([@fabaff])
97+
- Device Tracker: The `known_device.yaml` file is now validated ([@kellerza])
98+
- Minor features and bug fixes by [@tchellomello], [@pavoni], [@fabaff], [@pvizeli], [@lwis], [@turbokongen], [@Danielhiversen], [@persandstrom], [@balloob], [@robbiet480], [@sam-io], [@bbangert], and you if you are missing here.
99+
100+
### {% linkable_title Breaking changes %}
101+
102+
- All deprecated condition options from `automation` have been removed (deprecated since May and have printed warnings to your console):
103+
- `use_trigger_values` is gone. You have to copy your triggers to conditions and adjust for the correct config.
104+
- `condition_type` is gone. Use `condition: or` instead.
105+
- To specify the type of a condition, use `condition:` instead of `platform:`.
106+
- The [Forecast.io][forecast] was renamed to [Dark Sky][darksky]. Replace your `- platform: forecast` with `- platform: darksky`.
107+
- The [aREST][arest] configuration between the [sensor][arest-sensor] and the [switch][arest-switch] platform was aligned.
108+
109+
### {% linkable_title If you need help... %}
110+
...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 the former communication channels. Thanks.
111+
112+
[@balloob]: https://github.com/balloob
113+
[@bbangert]: https://github.com/bbangert
114+
[@capellini]: https://github.com/capellini
115+
[@Danielhiversen]: https://github.com/Danielhiversen
116+
[@danielperna84]: https://github.com/danielperna84
117+
[@fabaff]: https://github.com/fabaff
118+
[@gwendalg]: https://github.com/gwendalg
119+
[@hillaryfraley]: https://github.com/hillaryfraley
120+
[@jawilson]: https://github.com/jawilson
121+
[@justweb1]: https://github.com/justweb1
122+
[@kellerza]: https://github.com/kellerza
123+
[@KlaasH]: https://github.com/KlaasH
124+
[@Landrash]: https://github.com/Landrash
125+
[@lwis]: https://github.com/lwis
126+
[@MartinHjelmare]: https://github.com/MartinHjelmare
127+
[@molobrakos]: https://github.com/molobrakos
128+
[@mweinelt]: https://github.com/mweinelt
129+
[@OttoWinter]: https://github.com/OttoWinter
130+
[@pavoni]: https://github.com/pavoni
131+
[@persandstrom]: https://github.com/persandstrom
132+
[@pvizeli]: https://github.com/pvizeli
133+
[@robbiet480]: https://github.com/robbiet480
134+
[@sam-io]: https://github.com/sam-io
135+
[@simonszu]: https://github.com/simonszu
136+
[@tchellomello]: https://github.com/tchellomello
137+
[@turbokongen]: https://github.com/turbokongen
138+
[@w1ll1am23]: https://github.com/w1ll1am23
139+
140+
[arest]: https://arest.io/
141+
[arest-sensor]: /components/sensor.arest/
142+
[arest-switch]: /components/switch.arest/
143+
[darksky]: /components/sensor.darksky/
144+
[do-bin-sensor]: /components/binary_sensor.digital_ocean/
145+
[do-switch]: /components/switch.digital_ocean/
146+
[forecast]: /components/sensor.forecast/
147+
[forum]: https://community.home-assistant.io/
148+
[Hacktoberfest]: /blog/2016/10/02/hacktoberfest/
149+
[hassbian-forum]: https://community.home-assistant.io/c/hassbian
150+
[mention-bot]: https://github.com/mention-bot
151+
[mysensors-cover]: /components/cover.mysensors/
152+
[notebook]: http://nbviewer.jupyter.org/github/home-assistant/home-assistant-notebooks/blob/master/database-statistics.ipynb
153+
[pi-image]: /blog/2016/10/01/we-have-raspberry-image-now/
154+
[pushetta]: /components/notify.pushetta/
155+
[pwrctrl-switch]: /components/switch.pwrctrl/
156+
[rest-sensor]: /components/sensor.rest/
157+
[stats-sensor]: /components/sensor.statistics/
158+
[ted5000]: /components/sensor.ted5000/
159+
[template-sensor]: /components/sensor.template/
160+
[trend-sensor]: /components/binary_sensor.trend/
161+
[vasttrafik]: /components/sensor.vasttrafik/
162+
[Volvo]: /components/device_tracker.volvooncall/
163+

0 commit comments

Comments
 (0)