Skip to content
Merged
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

## 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.

## v0.58.1 - 2025-09-27

- Cache-related bugfix via plugwise_usb [v0.47.1](https://github.com/plugwise/python-plugwise-usb/releases/tag/v0.47.1)
Expand Down
4 changes: 2 additions & 2 deletions custom_components/plugwise_usb/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/plugwise/python-plugwise-usb/issues",
"loggers": ["plugwise_usb"],
"requirements": ["plugwise-usb==0.47.1"],
"version": "0.58.1"
"requirements": ["plugwise-usb==0.47.2"],
"version": "0.58.2"
Comment on lines +12 to +13
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🌐 Web query:

plugwise-usb 0.47.2 release notes

💡 Result:

I couldn’t find any plugwise-usb / plugwise_usb v0.47.2 release (and therefore no v0.47.2 release notes). The latest published version I can verify is 0.47.1 (uploaded Sep 27, 2025) on PyPI, and piwheels also only lists releases up to 0.47.1. [1] [2]

If you meant a different project/package (e.g., the Home Assistant custom integration plugwise_usb-beta), tell me which repo/package link you’re using and I’ll look up that specific v0.47.2.

Sources: [1] [2]


🏁 Script executed:

cd custom_components/plugwise_usb && git log --oneline -n 20 manifest.json

Repository: plugwise/plugwise_usb-beta

Length of output: 119


🏁 Script executed:

cd custom_components/plugwise_usb && git show 935fa0c -- manifest.json

Repository: plugwise/plugwise_usb-beta

Length of output: 1009


🏁 Script executed:

cat custom_components/plugwise_usb/../CHANGELOG.md 2>/dev/null || cat CHANGELOG.md 2>/dev/null || find . -name "CHANGELOG*" -type f | head -5

Repository: plugwise/plugwise_usb-beta

Length of output: 31534


Correct the plugwise-usb version to 0.47.1 or ensure 0.47.2 is released to PyPI before merging.

plugwise-usb v0.47.2 does not exist on PyPI (latest available is v0.47.1). This will cause installation failures. Either update the manifest to pin plugwise-usb==0.47.1, or ensure v0.47.2 is published to PyPI before this integration is released.

🤖 Prompt for AI Agents
In `@custom_components/plugwise_usb/manifest.json` around lines 12 - 13, Update
the manifest's requirements to use the published plugwise-usb version: change
the "requirements" entry that currently pins "plugwise-usb==0.47.2" to
"plugwise-usb==0.47.1" (or alternatively ensure plugwise-usb v0.47.2 is
published to PyPI before merging) so installation won't fail; verify the change
by checking the "requirements" array in manifest.json where
"plugwise-usb==0.47.2" is defined.

}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "plugwise_usb-beta"
version = "0.58.1"
version = "0.58.2"
description = "Plugwise USB custom_component (BETA)"
readme = "README.md"
requires-python = ">=3.13"
Expand Down
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

from custom_components.plugwise_usb.const import CONF_USB_PATH, DOMAIN
from homeassistant.core import HomeAssistant

from pytest_homeassistant_custom_component.common import MockConfigEntry

TEST_MAC: Final[str] = "01:23:45:67:AB"
Expand Down
Loading