Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions blog/2025-08-01-suggested-area-removed-from-deviceentry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
author: Erik Montnemery
authorURL: https://github.com/emontnemery
title: "The DeviceEntry.suggested_area attribute has been deprecated and will be removed"
---

The `DeviceEntry.suggested_area` attribute has been deprecated and will be removed in HA Core 2026.9. Also, `suggested_area` will no longer be present in `EVENT_DEVICE_REGISTRY_UPDATED` events when HA Core 2026.9 is released.

Custom integrations should not access `DeviceEntry.suggested_area`. If it's important to know which area a device is part of, use `DeviceEntry.area_id` instead.

During the deprecation period, accessing `DeviceEntry.suggested_area` will log a warning.

For more details, refer to the [DeviceEntry documentation](/docs/device_registry_index#device-properties) and core [PR 149730](https://github.com/home-assistant/core/pull/149730) which deprecated `DeviceEntry.suggested_area`.
1 change: 0 additions & 1 deletion docs/device_registry_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ Although not currently available, we could consider offering an option to users
| model | The model name of the device. |
| model_id | The model identifier of the device. |
| serial_number | The serial number of the device. Unlike a serial number in the `identifiers` set, this does not need to be unique. |
| suggested_area | The suggested name for the area where the device is located. |
| sw_version | The firmware version of the device. |
| via_device | Identifier of a device that routes messages between this device and Home Assistant. Examples of such devices are hubs, or parent devices of a sub-device. This is used to show device topology in Home Assistant. |

Expand Down