Automation stopped working after update

- alias: 'Door opened turn corridor light on'
  trigger:
    platform: state
    entity_id: binary_sensor.aeotec_dsb29_doorwindow_sensor_2nd_edition_sensor_3
    state: 'on'
  condition: 
     condition: and
     conditions:  
       - condition: state
         entity_id: sun.sun
         state: 'below_horizon'
       - condition: time
         after: '16:00'
         before: '07:00'
       - condition: numeric_state
         entity_id: sensor.aeotec_zw100_multisensor_6_luminance_2
         below: 4
  action:
    service: homeassistant.turn_on
    entity_id: script.corridorlight

Why is this automation after updating to the latest version not working?

Make sure all of your ZWave devices are present and correct - there was some additional validation added that in my case made them all disappear until I fixed the issue (it was well reported in the log).

i can see them under devices and they are reporting their status correct.
Should i do something with the Ywave control panel?

No, if they are there it must be another issue.

I’ve got a basic automation which stopped working (I upgraded from 0.28.something to 0.30.2 earlier today). I’m also using states as trigger/contition:

  alias: Start AVR when music is played
  trigger:
    platform: state
    entity_id: media_player.mpd
    to: 'playing'
  condition:
    condition: state
    entity_id: media_player.shieldtv
    state: 'playing'
  action:
    - service: media_player.turn_on
      entity_id: media_player.avr
    - service: media_player.select_source
      entity_id: media_player.avr
      data:
        source: 'Shield'

My automation is showing in the developer view (automation.start_avr_when_music_is_played), it’s enabled. I can see my entities turning to playing in the logbook, but the automation is not triggered. I have some other automations which still works.

Sorry to hijack this thread if the issue is not related, but I think we may have encountered the same bug here.

Try adding ’ ’ around the below:4. So it’ll look like below: '4' . Hope that works? It’s worked for me in the past when I couldn’t figure out why an automation wasn’t working. Worth a shot?