Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Ongoing

- Remove serial_number, ZigBee MAC address is now shown in HA, via PR [400](https://github.com/plugwise/plugwise_usb-beta/pull/400)

## v0.58.2 - 2026-01-29

- Update plugwise_usb to [v0.47.2](https://github.com/plugwise/python-plugwise-usb/releases/tag/v0.47.2) fixing a bug.
Expand Down
1 change: 0 additions & 1 deletion custom_components/plugwise_usb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ def _async_migrate_entity_entry(
manufacturer="Plugwise",
model="Stick",
name=str(api_stick.name),
serial_number=str(api_stick.mac_stick),
sw_version=str(api_stick.firmware),
)

Expand Down
1 change: 0 additions & 1 deletion custom_components/plugwise_usb/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def device_info(self) -> DeviceInfo:
model=str(self._node_info.model),
model_id=self._node_info.model_type,
name=str(self._node_info.name),
serial_number=str(self._node_info.mac),
sw_version=str(self._node_info.firmware),
via_device=self._via_device,
)
Expand Down
Loading