From 80e4451a3f01dc9841fa637f64f4106fe5b1538a Mon Sep 17 00:00:00 2001 From: Martin Hjelmare Date: Mon, 1 Sep 2025 13:50:22 +0200 Subject: [PATCH] Freeze development of alert integration (#151486) --- homeassistant/components/alert/__init__.py | 10 ++++++++-- homeassistant/components/alert/entity.py | 10 ++++++++-- homeassistant/components/alert/reproduce_state.py | 5 ++++- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/homeassistant/components/alert/__init__.py b/homeassistant/components/alert/__init__.py index b6ce87941f6..8be19850881 100644 --- a/homeassistant/components/alert/__init__.py +++ b/homeassistant/components/alert/__init__.py @@ -1,4 +1,7 @@ -"""Support for repeating alerts when conditions are met.""" +"""Support for repeating alerts when conditions are met. + +DEVELOPMENT OF THE ALERT INTEGRATION IS FROZEN. +""" from __future__ import annotations @@ -63,7 +66,10 @@ CONFIG_SCHEMA = vol.Schema( async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: - """Set up the Alert component.""" + """Set up the Alert component. + + DEVELOPMENT OF THE ALERT INTEGRATION IS FROZEN. + """ component = EntityComponent[AlertEntity](LOGGER, DOMAIN, hass) entities: list[AlertEntity] = [] diff --git a/homeassistant/components/alert/entity.py b/homeassistant/components/alert/entity.py index a11b281428f..f4497e0f7ad 100644 --- a/homeassistant/components/alert/entity.py +++ b/homeassistant/components/alert/entity.py @@ -1,4 +1,7 @@ -"""Support for repeating alerts when conditions are met.""" +"""Support for repeating alerts when conditions are met. + +DEVELOPMENT OF THE ALERT INTEGRATION IS FROZEN. +""" from __future__ import annotations @@ -27,7 +30,10 @@ from .const import DOMAIN, LOGGER class AlertEntity(Entity): - """Representation of an alert.""" + """Representation of an alert. + + DEVELOPMENT OF THE ALERT INTEGRATION IS FROZEN. + """ _attr_should_poll = False diff --git a/homeassistant/components/alert/reproduce_state.py b/homeassistant/components/alert/reproduce_state.py index db540369d84..dee20bc1c5d 100644 --- a/homeassistant/components/alert/reproduce_state.py +++ b/homeassistant/components/alert/reproduce_state.py @@ -1,4 +1,7 @@ -"""Reproduce an Alert state.""" +"""Reproduce an Alert state. + +DEVELOPMENT OF THE ALERT INTEGRATION IS FROZEN. +""" from __future__ import annotations