Automation stopped working after 0.84.x

Can anyone help me understand or diagnose why the following automation would have just stopped working? It worked just fine before updating to 0.84.x. I am currently running 0.84.4. Also, I have not tried downgrading to 0.83.x to see if that is the case. I have tried removing the scene.turn_on actions but that did not help.

- alias: "Turn On Evening Lights"
  hide_entity: true
  trigger:
    platform: numeric_state
    entity_id: sun.sun
    value_template: '{{ state.attributes.elevation }}'
    below: 2.5
  action:
    - service: scene.turn_on
      entity_id: scene.turn_on_evening_lights
    - service: switch.turn_on
      entity_id: switch.garage_landscape_outlet

- alias: "Turn Off Evening Lights"
  hide_entity: true
  trigger:
    platform: numeric_state
    entity_id: sun.sun
    value_template: '{{ state.attributes.elevation }}'
    above: -4.0
  action:
    - service: scene.turn_on
      entity_id: scene.turn_off_evening_lights
    - service: switch.turn_off
      entity_id: switch.garage_landscape_outlet

Posted this too soon before reading another post about setting

initial_state: True