mirror of
https://github.com/home-assistant/core.git
synced 2025-06-25 01:21:51 +02:00
Bump habluetooth to 3.49.0 (#146111)
* Bump habluetooth to 3.49.0 changelog: https://github.com/Bluetooth-Devices/habluetooth/compare/v3.48.2...v3.49.0 * update diag * diag
This commit is contained in:
@ -21,6 +21,6 @@
|
||||
"bluetooth-auto-recovery==1.5.2",
|
||||
"bluetooth-data-tools==1.28.1",
|
||||
"dbus-fast==2.43.0",
|
||||
"habluetooth==3.48.2"
|
||||
"habluetooth==3.49.0"
|
||||
]
|
||||
}
|
||||
|
@ -34,7 +34,7 @@ dbus-fast==2.43.0
|
||||
fnv-hash-fast==1.5.0
|
||||
go2rtc-client==0.2.1
|
||||
ha-ffmpeg==3.2.2
|
||||
habluetooth==3.48.2
|
||||
habluetooth==3.49.0
|
||||
hass-nabucasa==0.101.0
|
||||
hassil==2.2.3
|
||||
home-assistant-bluetooth==1.13.1
|
||||
|
2
requirements_all.txt
generated
2
requirements_all.txt
generated
@ -1121,7 +1121,7 @@ ha-silabs-firmware-client==0.2.0
|
||||
habiticalib==0.4.0
|
||||
|
||||
# homeassistant.components.bluetooth
|
||||
habluetooth==3.48.2
|
||||
habluetooth==3.49.0
|
||||
|
||||
# homeassistant.components.cloud
|
||||
hass-nabucasa==0.101.0
|
||||
|
2
requirements_test_all.txt
generated
2
requirements_test_all.txt
generated
@ -976,7 +976,7 @@ ha-silabs-firmware-client==0.2.0
|
||||
habiticalib==0.4.0
|
||||
|
||||
# homeassistant.components.bluetooth
|
||||
habluetooth==3.48.2
|
||||
habluetooth==3.49.0
|
||||
|
||||
# homeassistant.components.cloud
|
||||
hass-nabucasa==0.101.0
|
||||
|
@ -655,6 +655,7 @@ async def test_diagnostics_remote_adapter(
|
||||
"source": "esp32",
|
||||
"start_time": ANY,
|
||||
"time_since_last_device_detection": {"44:44:33:11:23:45": ANY},
|
||||
"raw_advertisement_data": {"44:44:33:11:23:45": None},
|
||||
"type": "FakeScanner",
|
||||
},
|
||||
],
|
||||
|
@ -92,6 +92,7 @@ async def test_diagnostics_with_bluetooth(
|
||||
"scanning": True,
|
||||
"source": "AA:BB:CC:DD:EE:FC",
|
||||
"start_time": ANY,
|
||||
"raw_advertisement_data": {},
|
||||
"time_since_last_device_detection": {},
|
||||
"type": "ESPHomeScanner",
|
||||
},
|
||||
|
@ -103,7 +103,6 @@ async def test_rpc_config_entry_diagnostics(
|
||||
)
|
||||
|
||||
result = await get_diagnostics_for_config_entry(hass, hass_client, entry)
|
||||
|
||||
assert result == {
|
||||
"entry": entry_dict | {"discovery_keys": {}},
|
||||
"bluetooth": {
|
||||
@ -152,6 +151,12 @@ async def test_rpc_config_entry_diagnostics(
|
||||
"start_time": ANY,
|
||||
"source": "12:34:56:78:9A:BE",
|
||||
"time_since_last_device_detection": {"AA:BB:CC:DD:EE:FF": ANY},
|
||||
"raw_advertisement_data": {
|
||||
"AA:BB:CC:DD:EE:FF": {
|
||||
"__type": "<class 'bytes'>",
|
||||
"repr": "b'\\x02\\x01\\x06\\t\\xffY\\x00\\xd1\\xfb;t\\xc8\\x90\\x11\\x07\\x1b\\xc5\\xd5\\xa5\\x02\\x00\\xb8\\x9f\\xe6\\x11M\"\\x00\\r\\xa2\\xcb\\x06\\x16\\x00\\rH\\x10a'",
|
||||
}
|
||||
},
|
||||
"type": "ShellyBLEScanner",
|
||||
}
|
||||
},
|
||||
|
Reference in New Issue
Block a user