From 0944d022628fea532cc1f6dc0f2ad8d6306e22ec Mon Sep 17 00:00:00 2001 From: Joakim Plate Date: Fri, 3 Jan 2020 12:12:29 +0100 Subject: [PATCH] Mark API key as deprecated (#30402) Service account should be used instead --- homeassistant/components/google_assistant/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/google_assistant/__init__.py b/homeassistant/components/google_assistant/__init__.py index 107003db583..2d848101def 100644 --- a/homeassistant/components/google_assistant/__init__.py +++ b/homeassistant/components/google_assistant/__init__.py @@ -65,6 +65,7 @@ def _check_report_state(data): GOOGLE_ASSISTANT_SCHEMA = vol.All( cv.deprecated(CONF_ALLOW_UNLOCK, invalidation_version="0.95"), + cv.deprecated(CONF_API_KEY, invalidation_version="0.105"), vol.Schema( { vol.Required(CONF_PROJECT_ID): cv.string,