From 3fe8b79d472659ab6ee2a5af8ac356eccc493609 Mon Sep 17 00:00:00 2001 From: Robert Bradley Date: Wed, 23 Apr 2025 17:35:14 -0700 Subject: [PATCH 1/2] fix: Update docker-compose.yml Remove the need for password on VNC Thank you @davida72 --- .devcontainer/docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index 8814c2508b..4a3f16b50f 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -42,6 +42,7 @@ services: - SE_EVENT_BUS_HOST=selenium-hub - SE_EVENT_BUS_PUBLISH_PORT=4442 - SE_EVENT_BUS_SUBSCRIBE_PORT=4443 + - VNC_NO_PASSWORD=1 privileged: true restart: always @@ -59,6 +60,7 @@ services: - SE_EVENT_BUS_HOST=selenium-hub - SE_EVENT_BUS_PUBLISH_PORT=4442 - SE_EVENT_BUS_SUBSCRIBE_PORT=4443 + - VNC_NO_PASSWORD=1 privileged: true restart: always @@ -76,6 +78,7 @@ services: - SE_EVENT_BUS_HOST=selenium-hub - SE_EVENT_BUS_PUBLISH_PORT=4442 - SE_EVENT_BUS_SUBSCRIBE_PORT=4443 + - VNC_NO_PASSWORD=1 privileged: true restart: always @@ -93,6 +96,7 @@ services: - SE_EVENT_BUS_HOST=selenium-hub - SE_EVENT_BUS_PUBLISH_PORT=4442 - SE_EVENT_BUS_SUBSCRIBE_PORT=4443 + - VNC_NO_PASSWORD=1 privileged: true restart: always From 199243ee2492a47d5dc9c64bbccdb08f25e5f7bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 24 Apr 2025 00:35:37 +0000 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.148.1=20=E2=86=92=200.1?= =?UTF-8?q?48.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ custom_components/uk_bin_collection/config_flow.py | 2 +- custom_components/uk_bin_collection/manifest.json | 4 ++-- pyproject.toml | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fa48f7a37..be8fc24aec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ ======= +## 0.148.2 (2025-04-24) + +### Fix + +- Update docker-compose.yml + ## 0.148.1 (2025-04-22) ### Fix diff --git a/custom_components/uk_bin_collection/config_flow.py b/custom_components/uk_bin_collection/config_flow.py index 788c391678..1b3b6099a5 100644 --- a/custom_components/uk_bin_collection/config_flow.py +++ b/custom_components/uk_bin_collection/config_flow.py @@ -253,7 +253,7 @@ async def async_step_reconfigure_confirm( async def get_councils_json(self) -> Dict[str, Any]: """Fetch and return the supported councils data, including aliases and sorted alphabetically.""" - url = "https://raw.githubusercontent.com/robbrad/UKBinCollectionData/0.148.1/uk_bin_collection/tests/input.json" + url = "https://raw.githubusercontent.com/robbrad/UKBinCollectionData/0.148.2/uk_bin_collection/tests/input.json" try: async with aiohttp.ClientSession() as session: async with session.get(url) as response: diff --git a/custom_components/uk_bin_collection/manifest.json b/custom_components/uk_bin_collection/manifest.json index c84728b9ca..58202cbb1d 100644 --- a/custom_components/uk_bin_collection/manifest.json +++ b/custom_components/uk_bin_collection/manifest.json @@ -9,7 +9,7 @@ "integration_type": "service", "iot_class": "cloud_polling", "issue_tracker": "https://github.com/robbrad/UKBinCollectionData/issues", - "requirements": ["uk-bin-collection>=0.148.1"], - "version": "0.148.1", + "requirements": ["uk-bin-collection>=0.148.2"], + "version": "0.148.2", "zeroconf": [] } diff --git a/pyproject.toml b/pyproject.toml index 89c70ca46f..d9824075d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "uk_bin_collection" -version = "0.148.1" +version = "0.148.2" description = "Python Lib to collect UK Bin Data" readme = "README.md" authors = ["Robert Bradley "]