Since. 0.114.3 I noticed that my sensor seemed stuck. When I took a look though, it seems that https://updater.home-assistant.io/ hasn’t yet been updated to point to 0.114.3.
My question is this … there seem to be pro’s and con’s each way, but is there a better approach to get an accurate and timely updater that either of the above?
- platform: version
name: Current Version
image: intel-nuc ### Adjust for your system, see https://www.home-assistant.io/integrations/version/
source: local
- platform: version
name: Latest Version
image: intel-nuc ### Adjust for your system, see https://www.home-assistant.io/integrations/version/
source: hassio
Automation:
- id: update_available
alias: 'Update Available'
trigger:
platform: template
value_template: "{{ states('sensor.latest_version') != states('sensor.current_version') }}"
action:
- service: notify.telegram_system
data_template:
title: '*Information*'
message: "An update for Home Assistant is available. You are running {{states('sensor.current_version') }}, the latest version is {{ states('sensor.latest_version') }}."