Error after upgrading? [hours] is an invalid option for [automation]

Hi all.
I’ve just done an update on my hassio setup.

All seems to have gone well, however there are errors coming back around automation that use ‘Hours’?

Error message:
Invalid config for [automation]: [hours] is an invalid option for [automation].

I guess the code it doesn’t like is…

   - alias: 'Turn off tortoise lamp at mid day'
     trigger:
       platform: time
       hours: 12
       minutes: 00
       seconds: 00
     action:
       - service: homeassistant.turn_off
         entity_id: switch.giles_lamp

Any ideas?
Cheers folks.

Change

platform: time 

to

platform: time_pattern

Or if you only want it to fire at noon (and not midnight):

platform: time
at: '12:00:00'

Perfect, thank you so much for your help!
Jason