From 981ca09d52c6dbfd57571cb1548e2b724a9f937d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 14 Aug 2026 22:08:15 +0000 Subject: [PATCH 1/2] Update homeassistant/home-assistant Docker tag to v2026.8.2 --- home_assistant/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home_assistant/Dockerfile b/home_assistant/Dockerfile index ddd12ed..032b0c3 100644 --- a/home_assistant/Dockerfile +++ b/home_assistant/Dockerfile @@ -1,4 +1,4 @@ -FROM homeassistant/home-assistant:2026.7.2 +FROM homeassistant/home-assistant:2026.8.2 COPY docker-healthcheck.sh /usr/local/bin/ RUN chmod +x /usr/local/bin/docker-healthcheck.sh From 8f2ed9173491c5c05d608ce5bcbbca13ab614662 Mon Sep 17 00:00:00 2001 From: Sean Vig Date: Sat, 15 Aug 2026 15:54:09 -0400 Subject: [PATCH 2/2] fix up patch --- home_assistant/01_venstar.patch | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/home_assistant/01_venstar.patch b/home_assistant/01_venstar.patch index 1781d5d..401d672 100644 --- a/home_assistant/01_venstar.patch +++ b/home_assistant/01_venstar.patch @@ -1,8 +1,8 @@ diff --git a/homeassistant/components/venstar/__init__.py b/homeassistant/components/venstar/__init__.py -index e85bb83ce23..e3fc15c92c2 100644 +index ab10ce7ea0b..26d528c360a 100644 --- a/homeassistant/components/venstar/__init__.py +++ b/homeassistant/components/venstar/__init__.py -@@ -20,6 +20,16 @@ from .coordinator import VenstarConfigEntry, VenstarDataUpdateCoordinator +@@ -18,6 +18,16 @@ from .coordinator import VenstarConfigEntry, VenstarDataUpdateCoordinator PLATFORMS = [Platform.BINARY_SENSOR, Platform.CLIMATE, Platform.SENSOR] @@ -19,7 +19,7 @@ index e85bb83ce23..e3fc15c92c2 100644 async def async_setup_entry( hass: HomeAssistant, config_entry: VenstarConfigEntry ) -> bool: -@@ -31,7 +41,7 @@ async def async_setup_entry( +@@ -29,7 +39,7 @@ async def async_setup_entry( timeout = VENSTAR_TIMEOUT protocol = "https" if config_entry.data[CONF_SSL] else "http" @@ -29,7 +29,7 @@ index e85bb83ce23..e3fc15c92c2 100644 timeout=timeout, user=username, diff --git a/homeassistant/components/venstar/const.py b/homeassistant/components/venstar/const.py -index a485adad8e7..9750e075679 100644 +index ea2a7142665..f7a5344e1a1 100644 --- a/homeassistant/components/venstar/const.py +++ b/homeassistant/components/venstar/const.py @@ -15,6 +15,6 @@ HOLD_MODE_OFF = "off" @@ -39,13 +39,13 @@ index a485adad8e7..9750e075679 100644 -VENSTAR_SLEEP = 1.0 +VENSTAR_SLEEP = 0.5 - _LOGGER = logging.getLogger(__name__) + LOGGER = logging.getLogger(__name__) diff --git a/homeassistant/components/venstar/coordinator.py b/homeassistant/components/venstar/coordinator.py -index 5438658c44b..e6d23a69df3 100644 +index 42dc63f0c74..04d14a01835 100644 --- a/homeassistant/components/venstar/coordinator.py +++ b/homeassistant/components/venstar/coordinator.py -@@ -34,7 +34,7 @@ class VenstarDataUpdateCoordinator(update_coordinator.DataUpdateCoordinator[None - _LOGGER, +@@ -33,7 +33,7 @@ class VenstarDataUpdateCoordinator(update_coordinator.DataUpdateCoordinator[None + LOGGER, config_entry=config_entry, name=DOMAIN, - update_interval=timedelta(seconds=60),