Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Matter Server to 3.5.1: some small fixes and stability improvements #94985

Merged
merged 5 commits into from
Jun 21, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions homeassistant/components/matter/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _create_device_registry(
get_clean_name(basic_info.nodeLabel)
or get_clean_name(basic_info.productLabel)
or get_clean_name(basic_info.productName)
or device_type.__class__.__name__
or device_type.__name__
if device_type
else None
)
Expand All @@ -117,7 +117,7 @@ def _create_device_registry(
identifiers.add((DOMAIN, f"{ID_TYPE_SERIAL}_{basic_info.serialNumber}"))

model = (
get_clean_name(basic_info.productName) or device_type.__class__.__name__
get_clean_name(basic_info.productName) or device_type.__name__
if device_type
else None
)
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/matter/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"dependencies": ["websocket_api"],
"documentation": "https://www.home-assistant.io/integrations/matter",
"iot_class": "local_push",
"requirements": ["python-matter-server==3.4.1"]
"requirements": ["python-matter-server==3.5.1"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2106,7 +2106,7 @@ python-kasa==0.5.1
# python-lirc==1.2.3

# homeassistant.components.matter
python-matter-server==3.4.1
python-matter-server==3.5.1

# homeassistant.components.xiaomi_miio
python-miio==0.5.12
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1541,7 +1541,7 @@ python-juicenet==1.1.0
python-kasa==0.5.1

# homeassistant.components.matter
python-matter-server==3.4.1
python-matter-server==3.5.1

# homeassistant.components.xiaomi_miio
python-miio==0.5.12
Expand Down