Skip to content

0.42

Compare
Choose a tag to compare
@balloob balloob released this 08 Apr 22:40
· 80442 commits to master since this release

New integrations

Breaking changes

  • We were incorrectly treating groups named default_view as default views. Make sure you set view: true in the config for these groups. #251 (frontend)
  • The last release introduced a revamped LIFX platform. We only realised after deploy that this version does not work on Windows. We have added the old LIFX implementation back as lifx_legacy.
  • We added indexes to the database to speed up the history view. Initial boot can take a couple of minutes. Do not shut down while migration is occurring. #6688
  • Z-Wave cover workaround has been removed. Use device config instead. #6832
zwave:
  device_config:
    cover.my_cover:
      invert_openclose_buttons: true
  • If you set an initial state for an automation, input_boolean, input_slider or input_select it will overrule over the previous state. #6911 #6924
  • Z-Wave rename node service parameter entity_id has been replaced with node_id to align parameters #6938
  • Automations are now initialized when Home Assistant finishes starting up. This means that it is deprecated to listen for event homeassistant_start. Instead, use the new homeassistant automation platform. #6936
automation:
  trigger:
    platform: homeassistant
    event: start
  action:
    service: light.turn_on
  • The Ring component has moved the authentication to a dedicated ring component. #6520
ring:
    username: !secret ring_username
    password: !secret ring_password

binary_sensor:
  - platform: ring
    monitored_conditions:
      - ding
      - motion

sensor:
  - platform: ring
    monitored_conditions:
      - battery
      - last_activity
      - last_ding
      - last_motion
      - volume

All changes