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 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 "]