2019-10-10 19:07:05 +02:00

2.9 KiB

title, description, logo, ha_category, ha_qa_scale, ha_release
title description logo ha_category ha_qa_scale ha_release
Updater Detecting when Home Assistant updates are available. home-assistant.png
Binary Sensor
internal 0.8

The updater binary sensor will check daily for new releases. The state will be "on" when an update is available. Otherwise, the state will be "off". The newer version, as well as the link to the release notes, are attributes of the updater. As Hass.io has its own schedule for release it doesn't make sense to use this binary sensor on Hass.io.

The updater integration will also collect basic information about the running Home Assistant instance and its environment. The information includes the current Home Assistant version, the time zone, Python version and operating system information. No identifiable information (i.e., IP address, GPS coordinates, etc.) will ever be collected. If you are concerned about your privacy, you are welcome to scrutinize the Python source code.

The updater binary sensor will wait one hour after startup until it performs the first update. For this period it will be in the state unavailable. After that it will check once a day for new releases.

Configuration

To integrate this into Home Assistant, add the following section to your configuration.yaml file:

updater:

{% configuration %} reporting: description: Whether or not to share system information when checking for updates. required: false type: boolean default: true include_used_components: description: Whether or not to report the integrations that you are using in Home Assistant. required: false type: boolean default: false {% endconfiguration %}

For further information about the Updater's data, please check the detailed overview. If you choose not to share any information when checking for updates, you can set reporting: false.

It is possible to report the integrations that you are using to the Home Assistant developers. This will help them focus on improving the popular ones. To enable this option, you have to add include_used_components: true.

"components": [
    "apcupsd",
    "api",
    "automation",
    "binary_sensor",
    "binary_sensor.zwave",
    "camera",
    "camera.uvc",
    "config",
    "config.core",
    ...
]

Notification

For an added bonus, an automation integration can be created to send a message with a notifier when that state of this component's entity changes.

{% raw %}

# Example configuration.yaml entry
automation:
  alias: Update Available Notification
  trigger:
    - platform: state
      entity_id: binary_sensor.updater
      from: 'off'
      to: 'on'
  action:
    - service: notify.notify
      data_template:
        message: "Home Assistant {{ state_attr('binary_sensor.updater', 'newest_version') }} is available."

{% endraw %}