diff --git a/homeassistant/components/cloud/__init__.py b/homeassistant/components/cloud/__init__.py index 2c7c6f80d49..7b025501d0c 100644 --- a/homeassistant/components/cloud/__init__.py +++ b/homeassistant/components/cloud/__init__.py @@ -53,7 +53,6 @@ from .const import ( CONF_ACME_SERVER, CONF_ALEXA, CONF_ALIASES, - CONF_CLOUDHOOK_SERVER, CONF_COGNITO_CLIENT_ID, CONF_ENTITY_CONFIG, CONF_FILTER, @@ -130,7 +129,6 @@ CONFIG_SCHEMA = vol.Schema( vol.Optional(CONF_ACCOUNT_LINK_SERVER): str, vol.Optional(CONF_ACCOUNTS_SERVER): str, vol.Optional(CONF_ACME_SERVER): str, - vol.Optional(CONF_CLOUDHOOK_SERVER): str, vol.Optional(CONF_RELAYER_SERVER): str, vol.Optional(CONF_REMOTESTATE_SERVER): str, vol.Optional(CONF_SERVICEHANDLERS_SERVER): str, diff --git a/homeassistant/components/cloud/const.py b/homeassistant/components/cloud/const.py index 1f154832ef9..23f857b9bff 100644 --- a/homeassistant/components/cloud/const.py +++ b/homeassistant/components/cloud/const.py @@ -78,7 +78,6 @@ CONF_USER_POOL_ID = "user_pool_id" CONF_ACCOUNT_LINK_SERVER = "account_link_server" CONF_ACCOUNTS_SERVER = "accounts_server" CONF_ACME_SERVER = "acme_server" -CONF_CLOUDHOOK_SERVER = "cloudhook_server" CONF_RELAYER_SERVER = "relayer_server" CONF_REMOTESTATE_SERVER = "remotestate_server" CONF_SERVICEHANDLERS_SERVER = "servicehandlers_server" diff --git a/homeassistant/components/cloud/manifest.json b/homeassistant/components/cloud/manifest.json index 1912c20e8d8..134c9127512 100644 --- a/homeassistant/components/cloud/manifest.json +++ b/homeassistant/components/cloud/manifest.json @@ -13,6 +13,6 @@ "integration_type": "system", "iot_class": "cloud_push", "loggers": ["acme", "hass_nabucasa", "snitun"], - "requirements": ["hass-nabucasa==1.1.2"], + "requirements": ["hass-nabucasa==1.2.0"], "single_config_entry": true } diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index fccb5db82cc..b77d9913c76 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -36,7 +36,7 @@ fnv-hash-fast==1.5.0 go2rtc-client==0.2.1 ha-ffmpeg==3.2.2 habluetooth==5.6.4 -hass-nabucasa==1.1.2 +hass-nabucasa==1.2.0 hassil==3.2.0 home-assistant-bluetooth==1.13.1 home-assistant-frontend==20250926.0 diff --git a/pyproject.toml b/pyproject.toml index 4b84c63d951..4ee9024c53f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ dependencies = [ "fnv-hash-fast==1.5.0", # hass-nabucasa is imported by helpers which don't depend on the cloud # integration - "hass-nabucasa==1.1.2", + "hass-nabucasa==1.2.0", # When bumping httpx, please check the version pins of # httpcore, anyio, and h11 in gen_requirements_all "httpx==0.28.1", diff --git a/requirements.txt b/requirements.txt index 237ecebb661..57a2035cdcb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,7 +22,7 @@ certifi>=2021.5.30 ciso8601==2.3.3 cronsim==2.6 fnv-hash-fast==1.5.0 -hass-nabucasa==1.1.2 +hass-nabucasa==1.2.0 httpx==0.28.1 home-assistant-bluetooth==1.13.1 ifaddr==0.2.0 diff --git a/requirements_all.txt b/requirements_all.txt index fd44f263847..334e3693f68 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1145,7 +1145,7 @@ habiticalib==0.4.5 habluetooth==5.6.4 # homeassistant.components.cloud -hass-nabucasa==1.1.2 +hass-nabucasa==1.2.0 # homeassistant.components.splunk hass-splunk==0.1.1 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 02d281fcf9e..351d3419f34 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -1006,7 +1006,7 @@ habiticalib==0.4.5 habluetooth==5.6.4 # homeassistant.components.cloud -hass-nabucasa==1.1.2 +hass-nabucasa==1.2.0 # homeassistant.components.assist_satellite # homeassistant.components.conversation diff --git a/tests/components/cloud/test_init.py b/tests/components/cloud/test_init.py index 9a6d4abfc93..a12411b1eb2 100644 --- a/tests/components/cloud/test_init.py +++ b/tests/components/cloud/test_init.py @@ -44,7 +44,6 @@ async def test_constructor_loads_info_from_config(hass: HomeAssistant) -> None: "region": "test-region", "relayer_server": "test-relayer-server", "accounts_server": "test-acounts-server", - "cloudhook_server": "test-cloudhook-server", "acme_server": "test-acme-server", "remotestate_server": "test-remotestate-server", }, @@ -60,7 +59,6 @@ async def test_constructor_loads_info_from_config(hass: HomeAssistant) -> None: assert cl.relayer_server == "test-relayer-server" assert cl.iot.ws_server_url == "wss://test-relayer-server/websocket" assert cl.accounts_server == "test-acounts-server" - assert cl.cloudhook_server == "test-cloudhook-server" assert cl.acme_server == "test-acme-server" assert cl.remotestate_server == "test-remotestate-server"