Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/aosmith/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
2 changes: 1 addition & 1 deletion homeassistant/components/frontend/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
2 changes: 1 addition & 1 deletion homeassistant/components/paperless_ngx/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"integration_type": "service",
"iot_class": "local_polling",
"loggers": ["pypaperless"],
"quality_scale": "silver",
"quality_scale": "platinum",
"requirements": ["pypaperless==4.1.1"]
}
5 changes: 4 additions & 1 deletion homeassistant/components/paperless_ngx/quality_scale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions requirements_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions requirements_test_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions tests/components/aosmith/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def build_device_fixture(
mode=OperationMode.ELECTRIC,
original_name="ELECTRIC",
has_day_selection=True,
supports_hot_water_plus=False,
),
]

Expand All @@ -46,13 +47,15 @@ def build_device_fixture(
mode=OperationMode.HYBRID,
original_name="HYBRID",
has_day_selection=False,
supports_hot_water_plus=False,
)
)
supported_modes.append(
SupportedOperationModeInfo(
mode=OperationMode.HEAT_PUMP,
original_name="HEAT_PUMP",
has_day_selection=False,
supports_hot_water_plus=False,
)
)

Expand All @@ -62,6 +65,7 @@ def build_device_fixture(
mode=OperationMode.VACATION,
original_name="VACATION",
has_day_selection=True,
supports_hot_water_plus=False,
)
)

Expand All @@ -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,
Expand All @@ -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,
),
)

Expand Down
Loading