From d376a98fd7d2a66c8a521ed3c9ae468c0f875894 Mon Sep 17 00:00:00 2001 From: kramttocs <11565750+kramttocs@users.noreply.github.com> Date: Sat, 5 Oct 2024 01:45:51 +0000 Subject: [PATCH 1/2] Added empty argument for discovery_keys to satisfy new requirement --- custom_components/blueiris/managers/config_flow_manager.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/custom_components/blueiris/managers/config_flow_manager.py b/custom_components/blueiris/managers/config_flow_manager.py index 4cdcd3c..3b0db6d 100644 --- a/custom_components/blueiris/managers/config_flow_manager.py +++ b/custom_components/blueiris/managers/config_flow_manager.py @@ -246,6 +246,7 @@ async def _update_entry(self): data=self._data, source="", options=self._options, + discovery_keys={}, ) await self._config_manager.update(entry) @@ -263,6 +264,7 @@ async def _update_entry(self): data=self._data, source="", options=self._options, + discovery_keys={}, ) await self._config_manager.update(entry) From d20106f68f334c6d0b0fe8e3715c2487aa5e1d7b Mon Sep 17 00:00:00 2001 From: kramttocs <11565750+kramttocs@users.noreply.github.com> Date: Sat, 5 Oct 2024 01:47:27 +0000 Subject: [PATCH 2/2] Added empty argument for discovery_keys to satisfy new requirement --- CHANGELOG.md | 4 ++++ custom_components/blueiris/manifest.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5f0b6f..78b2331 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.20 + +- Fix (another band-aid) for the ConfigEntry discovery_keys issue caused by 2024.10 + ## 1.0.19 - Fix (band-aid) for the ConfigEntry unique_id issue caused by 2024.6 diff --git a/custom_components/blueiris/manifest.json b/custom_components/blueiris/manifest.json index bfde859..e7f8fff 100644 --- a/custom_components/blueiris/manifest.json +++ b/custom_components/blueiris/manifest.json @@ -9,5 +9,5 @@ "iot_class": "local_polling", "issue_tracker": "https://github.com/elad-bar/ha-blueiris/issues", "requirements": [], - "version": "1.0.19" + "version": "1.0.20" }