Upgrading to 0.86 broke all of my automations

I’ve done some reading and as I understand it, something broke with time. Since all my automations broke anyway, I figured I might as well use this as an opportunity to clean those up.

I am however confused about it. For example, this one turned off a light automatically 5 minutes after it was turned on, and it no longer works.

- id: '1545329806286'
  alias: Basement Light Auto Off
  trigger:
  - entity_id: light.basement
    for: 00:05:00
    from: 'off'
    platform: state
    to: 'on'
  condition: []
  action:
  - data:
      entity_id: light.basement
    service: light.turn_off

I’m confused, is the ‘for’ part a different syntax now, or do I have to add something to my config? I also don’t understand why ALL of my automations broke, when only a small percentage used any sort of time or timer function.

- id: '1545329806286'
  alias: Basement Light Auto Off
  trigger:
    - platform: state
      entity_id: light.basement
      from: 'off'
      to: 'on' 
      for:
        minutes: 5
  action:
    - service: light.turn_off
      entity_id: light.basement

Always reference the docs

I made a few changes in the formatting just to make it make sense in my head. Important changes are the addtion of minutes under for per the docs.

HA loads your entire config all at once. It can drop an entire platform (ie. automations) and still start but cannot only drop one automation.

I have the same mess…plus my groups are not loading or customize and worst of all, all my hue lights refuse to appear.

Exactly the same problems for me. Don’t understand why Hue isn’t working anymore. I also changed the time_pattern in automation for minutes

EDIT:
Solved it by deleting the wrong entities in my groups file. You can find them by searching on a double underscore __

zwave switches
icloud devices
tp bulbs

all don’t show up
this is what I am seeing in the logs

2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of switch. Setup failed for dependencies: group
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Setup failed for switch: Could not set up all dependencies.
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of automation. Setup failed for dependencies: group
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Setup failed for automation: Could not set up all dependencies.
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of light. Setup failed for dependencies: group
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Setup failed for light: Could not set up all dependencies.
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of cover. Setup failed for dependencies: group
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Setup failed for cover: Could not set up all dependencies.
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of script. Setup failed for dependencies: group
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Setup failed for script: Could not set up all dependencies.
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of device_tracker. Setup failed for dependencies: group
2019-01-24 14:03:32 ERROR (MainThread) [homeassistant.setup] Setup failed for device_tracker: Could not set up all dependencies.
2019-01-24 14:03:33 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of fan. Setup failed for dependencies: group
2019-01-24 14:03:33 ERROR (MainThread) [homeassistant.setup] Setup failed for fan: Could not set up all dependencies.
2019-01-24 14:03:33 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of lock. Setup failed for dependencies: group
2019-01-24 14:03:33 ERROR (MainThread) [homeassistant.setup] Setup failed for lock: Could not set up all dependencies.
2019-01-24 14:03:33 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of ios. Setup failed for dependencies: device_tracker
2019-01-24 14:03:33 ERROR (MainThread) [homeassistant.setup] Setup failed for ios: Could not set up all dependencies.