From 1e5186fe94e81930ef286c32e888618c900f90c3 Mon Sep 17 00:00:00 2001 From: Xiaonan Shen Date: Mon, 14 Sep 2020 18:14:13 +0800 Subject: [PATCH] Deprecate the synology integration (#39958) * Deprecate the synology integration * Add release to remove synology --- homeassistant/components/synology/camera.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/homeassistant/components/synology/camera.py b/homeassistant/components/synology/camera.py index 5a619c821dc..4417f72918d 100644 --- a/homeassistant/components/synology/camera.py +++ b/homeassistant/components/synology/camera.py @@ -42,6 +42,13 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend( async def async_setup_platform(hass, config, async_add_entities, discovery_info=None): """Set up a Synology IP Camera.""" + _LOGGER.warning( + "The Synology integration is deprecated." + " Please use the Synology DSM integration" + " (https://www.home-assistant.io/integrations/synology_dsm/) instead." + " This integration will be removed in version 0.118.0." + ) + verify_ssl = config.get(CONF_VERIFY_SSL) timeout = config.get(CONF_TIMEOUT)