From 2a65da5db2392bb9e0230413f43017be3914d3a8 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 16 Jan 2020 19:31:18 +0100 Subject: [PATCH] Deprecate history_graph integration (#30835) --- homeassistant/components/history_graph/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/homeassistant/components/history_graph/__init__.py b/homeassistant/components/history_graph/__init__.py index 2b89556818f..e132b1d5d4c 100644 --- a/homeassistant/components/history_graph/__init__.py +++ b/homeassistant/components/history_graph/__init__.py @@ -35,6 +35,11 @@ CONFIG_SCHEMA = vol.Schema( async def async_setup(hass, config): """Load graph configurations.""" + _LOGGER.warning( + "The history_graph integration has been deprecated and is pending for removal " + "in Home Assistant 0.107.0." + ) + component = EntityComponent(_LOGGER, DOMAIN, hass) graphs = []