From a1ab86121ba8b2acb356f8824d1b55493d74fe8e Mon Sep 17 00:00:00 2001 From: SukramJ Date: Mon, 2 Sep 2024 13:06:45 +0200 Subject: [PATCH] Bump hahomematic to 2024.9.1 --- changelog.md | 3 ++- custom_components/homematicip_local/manifest.json | 2 +- custom_components/homematicip_local/strings.json | 2 +- .../homematicip_local/translations/de.json | 10 +++++----- .../homematicip_local/translations/en.json | 2 +- custom_components/homematicip_local/update.py | 2 +- requirements_test.txt | 4 ++-- 7 files changed, 13 insertions(+), 12 deletions(-) diff --git a/changelog.md b/changelog.md index 1e73538b..d4bc4855 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Version 1.66.0 (2024-09-01) -- Bump hahomematic to 2024.9.0 +- Bump hahomematic to 2024.9.1 - Add check for link paramsets - Add getLinkPeers XmlRPC method - Add paramset_key to entity_key @@ -8,6 +8,7 @@ - Check rx_mode - Do not create update entities that are not updatable (manually remove obsolete update entities) - Ensure only one load/save of cache file at time + - Improve paramset key check - Load all paramsets - Mark only level as relevant entity for DALI - Only try device update refresh if device is updatable diff --git a/custom_components/homematicip_local/manifest.json b/custom_components/homematicip_local/manifest.json index 2ba949e4..b606fad4 100644 --- a/custom_components/homematicip_local/manifest.json +++ b/custom_components/homematicip_local/manifest.json @@ -10,7 +10,7 @@ "iot_class": "local_push", "issue_tracker": "https://github.com/danielperna84/hahomematic/issues", "loggers": ["hahomematic"], - "requirements": ["hahomematic==2024.9.0"], + "requirements": ["hahomematic==2024.9.1"], "ssdp": [ { "manufacturer": "EQ3", diff --git a/custom_components/homematicip_local/strings.json b/custom_components/homematicip_local/strings.json index 6e140155..04bf2636 100644 --- a/custom_components/homematicip_local/strings.json +++ b/custom_components/homematicip_local/strings.json @@ -722,7 +722,7 @@ }, "name": "Get device value" }, - "get_link_peers": { + "get_link_peers": { "description": "Call to getLinkPeers in the RPC XML interface.", "fields": { "channel": { diff --git a/custom_components/homematicip_local/translations/de.json b/custom_components/homematicip_local/translations/de.json index b88e5ede..b1e16b29 100644 --- a/custom_components/homematicip_local/translations/de.json +++ b/custom_components/homematicip_local/translations/de.json @@ -693,7 +693,7 @@ "description": "Erzwingt die Verfügbarkeit eines Geräts. Dadurch wird der tatsächliche Status überschrieben.", "fields": { "device_address": { - "description": "Geben Sie eine Geräteadresse ein.", + "description": "Geben die Geräteadresse ein.", "name": "Geräteadresse" }, "device_id": { @@ -733,7 +733,7 @@ "name": "Kanal" }, "device_address": { - "description": "Geben Sie eine Geräteadresse ein.", + "description": "Geben die Geräteadresse ein.", "name": "Geräteadresse" }, "device_id": { @@ -751,7 +751,7 @@ "name": "Kanal" }, "device_address": { - "description": "Geben Sie eine Geräteadresse ein.", + "description": "Geben die Geräteadresse ein.", "name": "Geräteadresse" }, "device_id": { @@ -783,7 +783,7 @@ "name": "Kanal" }, "device_address": { - "description": "Geben Sie eine Geräteadresse ein.", + "description": "Geben die Geräteadresse ein.", "name": "Geräteadresse" }, "device_id": { @@ -835,7 +835,7 @@ "name": "Kanal" }, "device_address": { - "description": "Geben Sie eine Geräteadresse ein.", + "description": "Geben die Geräteadresse ein.", "name": "Geräteadresse" }, "device_id": { diff --git a/custom_components/homematicip_local/translations/en.json b/custom_components/homematicip_local/translations/en.json index 6e140155..04bf2636 100644 --- a/custom_components/homematicip_local/translations/en.json +++ b/custom_components/homematicip_local/translations/en.json @@ -722,7 +722,7 @@ }, "name": "Get device value" }, - "get_link_peers": { + "get_link_peers": { "description": "Call to getLinkPeers in the RPC XML interface.", "fields": { "channel": { diff --git a/custom_components/homematicip_local/update.py b/custom_components/homematicip_local/update.py index 861e7eec..4827a52a 100644 --- a/custom_components/homematicip_local/update.py +++ b/custom_components/homematicip_local/update.py @@ -98,7 +98,7 @@ def installed_version(self) -> str | None: @property def in_progress(self) -> bool | int | None: """Update installation progress.""" - return self._hm_entity.in_progress() + return self._hm_entity.in_progress @property def latest_version(self) -> str | None: diff --git a/requirements_test.txt b/requirements_test.txt index a43a89f2..5341108f 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -1,11 +1,11 @@ -r requirements_test_pre_commit.txt async-upnp-client==0.40.0 -hahomematic==2024.9.0 +hahomematic==2024.9.1 homeassistant==2024.9.0b2 mypy==1.11.2 mypy-dev==1.11.0a9 pre-commit==3.8.0 pydevccu==0.1.8 -pylint==3.2.6 +pylint==3.2.7 pytest-homeassistant-custom-component==0.13.158