From cce17bbd79a5fd65652ed1c5230cb232a0d49a52 Mon Sep 17 00:00:00 2001 From: Mark Grimes Date: Thu, 22 Feb 2018 09:13:26 -0500 Subject: [PATCH] Adds comment about deprecated homeassistant_start event The note in the documentation for triggers says that the homeassistant_start event has been deprecated. This PR just adds that note to the events page. It is unclear to me if homeassistant_stop has also been replaced by 'stop' on the 'homeassistant' platform. If so, the note should probably be expanded on both pages to indicate that. --- source/_docs/configuration/events.markdown | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/_docs/configuration/events.markdown b/source/_docs/configuration/events.markdown index 6ad5aa152d9..7d4be04c87f 100644 --- a/source/_docs/configuration/events.markdown +++ b/source/_docs/configuration/events.markdown @@ -17,6 +17,10 @@ Home Assistant contains a few built-in events that are used to coordinate betwee ### {% linkable_title Event `homeassistant_start` %} Event `homeassistant_start` is fired when all components from the configuration have been intitialized. This is the event that will start the timer firing off `time_changed` events. +

+ Starting 0.42, it is no longer possible to listen for event `homeassistant_start`. Use the 'homeassistant' [platform](docs/automation/trigger) instead. +

+ ### {% linkable_title Event `homeassistant_stop` %} Event `homeassistant_stop` is fired when Home Assistant is shutting down. It should be used to close any open connection or release any resources.