From 316a61fcdeb18f85e3ace4bc0434e3cf6655a2df Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Thu, 9 Jan 2025 11:20:08 +0100 Subject: [PATCH] Deprecate raw_value attribute in onewire entity (#135171) * Drop raw_value attribute in onewire entity * Deprecate only --- homeassistant/components/onewire/entity.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/onewire/entity.py b/homeassistant/components/onewire/entity.py index c8ad87fa34e..2ea21aca488 100644 --- a/homeassistant/components/onewire/entity.py +++ b/homeassistant/components/onewire/entity.py @@ -54,6 +54,7 @@ class OneWireEntity(Entity): """Return the state attributes of the entity.""" return { "device_file": self._device_file, + # raw_value attribute is deprecated and can be removed in 2025.8 "raw_value": self._value_raw, }