diff --git a/homeassistant/components/roborock/manifest.json b/homeassistant/components/roborock/manifest.json index 946ba77b163..a7a7fe01d23 100644 --- a/homeassistant/components/roborock/manifest.json +++ b/homeassistant/components/roborock/manifest.json @@ -7,7 +7,7 @@ "iot_class": "local_polling", "loggers": ["roborock"], "requirements": [ - "python-roborock==0.39.2", + "python-roborock==0.40.0", "vacuum-map-parser-roborock==0.1.1" ] } diff --git a/requirements_all.txt b/requirements_all.txt index 68cad7a4c7c..cd87eb9f34b 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2282,7 +2282,7 @@ python-rabbitair==0.0.8 python-ripple-api==0.0.3 # homeassistant.components.roborock -python-roborock==0.39.2 +python-roborock==0.40.0 # homeassistant.components.smarttub python-smarttub==0.0.36 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 20fb6616b61..ac958da3ae6 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -1755,7 +1755,7 @@ python-qbittorrent==0.4.3 python-rabbitair==0.0.8 # homeassistant.components.roborock -python-roborock==0.39.2 +python-roborock==0.40.0 # homeassistant.components.smarttub python-smarttub==0.0.36 diff --git a/tests/components/roborock/snapshots/test_diagnostics.ambr b/tests/components/roborock/snapshots/test_diagnostics.ambr index 6bcd2152a95..3d78e5fd638 100644 --- a/tests/components/roborock/snapshots/test_diagnostics.ambr +++ b/tests/components/roborock/snapshots/test_diagnostics.ambr @@ -32,6 +32,8 @@ 'coordinators': dict({ '**REDACTED-0**': dict({ 'api': dict({ + 'misc_info': dict({ + }), }), 'roborock_device_info': dict({ 'device': dict({ @@ -309,6 +311,8 @@ }), '**REDACTED-1**': dict({ 'api': dict({ + 'misc_info': dict({ + }), }), 'roborock_device_info': dict({ 'device': dict({ diff --git a/tests/components/roborock/test_diagnostics.py b/tests/components/roborock/test_diagnostics.py index a10cbcf057e..cc02fff3edc 100644 --- a/tests/components/roborock/test_diagnostics.py +++ b/tests/components/roborock/test_diagnostics.py @@ -1,6 +1,7 @@ """Tests for the diagnostics data provided by the Roborock integration.""" from syrupy.assertion import SnapshotAssertion +from syrupy.filters import props from homeassistant.core import HomeAssistant @@ -20,4 +21,4 @@ async def test_diagnostics( result = await get_diagnostics_for_config_entry(hass, hass_client, setup_entry) assert isinstance(result, dict) - assert result == snapshot + assert result == snapshot(exclude=props("Nonce"))