diff --git a/homeassistant/components/aosmith/manifest.json b/homeassistant/components/aosmith/manifest.json index a928a6677cb2c6..bcc8d6859a084b 100644 --- a/homeassistant/components/aosmith/manifest.json +++ b/homeassistant/components/aosmith/manifest.json @@ -5,5 +5,5 @@ "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/aosmith", "iot_class": "cloud_polling", - "requirements": ["py-aosmith==1.0.12"] + "requirements": ["py-aosmith==1.0.14"] } diff --git a/homeassistant/components/frontend/manifest.json b/homeassistant/components/frontend/manifest.json index 2ecf80dcf217b0..b20f978758fdc6 100644 --- a/homeassistant/components/frontend/manifest.json +++ b/homeassistant/components/frontend/manifest.json @@ -20,5 +20,5 @@ "documentation": "https://www.home-assistant.io/integrations/frontend", "integration_type": "system", "quality_scale": "internal", - "requirements": ["home-assistant-frontend==20250901.0"] + "requirements": ["home-assistant-frontend==20250902.1"] } diff --git a/homeassistant/components/paperless_ngx/manifest.json b/homeassistant/components/paperless_ngx/manifest.json index 43c61185f3a2db..b2c80c5c18ff94 100644 --- a/homeassistant/components/paperless_ngx/manifest.json +++ b/homeassistant/components/paperless_ngx/manifest.json @@ -7,6 +7,6 @@ "integration_type": "service", "iot_class": "local_polling", "loggers": ["pypaperless"], - "quality_scale": "silver", + "quality_scale": "platinum", "requirements": ["pypaperless==4.1.1"] } diff --git a/homeassistant/components/paperless_ngx/quality_scale.yaml b/homeassistant/components/paperless_ngx/quality_scale.yaml index f0d3296da10f31..15f16f085d01f4 100644 --- a/homeassistant/components/paperless_ngx/quality_scale.yaml +++ b/homeassistant/components/paperless_ngx/quality_scale.yaml @@ -67,7 +67,10 @@ rules: exception-translations: done icon-translations: done reconfiguration-flow: done - repair-issues: todo + repair-issues: + status: exempt + comment: | + This integration doesn't have any cases where raising an issue is needed. stale-devices: status: exempt comment: Service type integration diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index 11b7b0234e5575..01636a9a732c0e 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -38,7 +38,7 @@ habluetooth==5.3.0 hass-nabucasa==1.0.0 hassil==3.2.0 home-assistant-bluetooth==1.13.1 -home-assistant-frontend==20250901.0 +home-assistant-frontend==20250902.1 home-assistant-intents==2025.8.29 httpx==0.28.1 ifaddr==0.2.0 diff --git a/requirements_all.txt b/requirements_all.txt index a0e6fddf3bdf8a..2ca771ae5851ab 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1178,7 +1178,7 @@ hole==0.9.0 holidays==0.79 # homeassistant.components.frontend -home-assistant-frontend==20250901.0 +home-assistant-frontend==20250902.1 # homeassistant.components.conversation home-assistant-intents==2025.8.29 @@ -1750,7 +1750,7 @@ pushover_complete==1.2.0 pvo==2.2.1 # homeassistant.components.aosmith -py-aosmith==1.0.12 +py-aosmith==1.0.14 # homeassistant.components.canary py-canary==0.5.4 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 19781c62a2a969..843f8935fca2b0 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -1027,7 +1027,7 @@ hole==0.9.0 holidays==0.79 # homeassistant.components.frontend -home-assistant-frontend==20250901.0 +home-assistant-frontend==20250902.1 # homeassistant.components.conversation home-assistant-intents==2025.8.29 @@ -1476,7 +1476,7 @@ pushover_complete==1.2.0 pvo==2.2.1 # homeassistant.components.aosmith -py-aosmith==1.0.12 +py-aosmith==1.0.14 # homeassistant.components.canary py-canary==0.5.4 diff --git a/tests/components/aosmith/conftest.py b/tests/components/aosmith/conftest.py index 564a986c126e20..2929d743d34b7f 100644 --- a/tests/components/aosmith/conftest.py +++ b/tests/components/aosmith/conftest.py @@ -37,6 +37,7 @@ def build_device_fixture( mode=OperationMode.ELECTRIC, original_name="ELECTRIC", has_day_selection=True, + supports_hot_water_plus=False, ), ] @@ -46,6 +47,7 @@ def build_device_fixture( mode=OperationMode.HYBRID, original_name="HYBRID", has_day_selection=False, + supports_hot_water_plus=False, ) ) supported_modes.append( @@ -53,6 +55,7 @@ def build_device_fixture( mode=OperationMode.HEAT_PUMP, original_name="HEAT_PUMP", has_day_selection=False, + supports_hot_water_plus=False, ) ) @@ -62,6 +65,7 @@ def build_device_fixture( mode=OperationMode.VACATION, original_name="VACATION", has_day_selection=True, + supports_hot_water_plus=False, ) ) @@ -83,6 +87,7 @@ def build_device_fixture( serial="serial", install_location="Basement", supported_modes=supported_modes, + supports_hot_water_plus=False, status=DeviceStatus( firmware_version="2.14", is_online=True, @@ -93,6 +98,7 @@ def build_device_fixture( temperature_setpoint_previous=130, temperature_setpoint_maximum=130, hot_water_status=90, + hot_water_plus_level=None, ), )