Bump aioesphomeapi to 29.3.1 (#139465)
parent
e11ead410b
commit
0afdd9556f
|
@ -13,9 +13,7 @@ from . import CONF_NOISE_PSK
|
|||
from .dashboard import async_get_dashboard
|
||||
from .entry_data import ESPHomeConfigEntry
|
||||
|
||||
CONF_MAC_ADDRESS = "mac_address"
|
||||
|
||||
REDACT_KEYS = {CONF_NOISE_PSK, CONF_PASSWORD, CONF_MAC_ADDRESS}
|
||||
REDACT_KEYS = {CONF_NOISE_PSK, CONF_PASSWORD, "mac_address", "bluetooth_mac_address"}
|
||||
|
||||
|
||||
async def async_get_config_entry_diagnostics(
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"loggers": ["aioesphomeapi", "noiseprotocol", "bleak_esphome"],
|
||||
"mqtt": ["esphome/discover/#"],
|
||||
"requirements": [
|
||||
"aioesphomeapi==29.3.0",
|
||||
"aioesphomeapi==29.3.1",
|
||||
"esphome-dashboard-api==1.2.3",
|
||||
"bleak-esphome==2.8.0"
|
||||
],
|
||||
|
|
|
@ -243,7 +243,7 @@ aioelectricitymaps==0.4.0
|
|||
aioemonitor==1.0.5
|
||||
|
||||
# homeassistant.components.esphome
|
||||
aioesphomeapi==29.3.0
|
||||
aioesphomeapi==29.3.1
|
||||
|
||||
# homeassistant.components.flo
|
||||
aioflo==2021.11.0
|
||||
|
|
|
@ -231,7 +231,7 @@ aioelectricitymaps==0.4.0
|
|||
aioemonitor==1.0.5
|
||||
|
||||
# homeassistant.components.esphome
|
||||
aioesphomeapi==29.3.0
|
||||
aioesphomeapi==29.3.1
|
||||
|
||||
# homeassistant.components.flo
|
||||
aioflo==2021.11.0
|
||||
|
|
|
@ -581,7 +581,10 @@ async def mock_bluetooth_entry(
|
|||
return await _mock_generic_device_entry(
|
||||
hass,
|
||||
mock_client,
|
||||
{"bluetooth_proxy_feature_flags": bluetooth_proxy_feature_flags},
|
||||
{
|
||||
"bluetooth_mac_address": "AA:BB:CC:DD:EE:FC",
|
||||
"bluetooth_proxy_feature_flags": bluetooth_proxy_feature_flags,
|
||||
},
|
||||
([], []),
|
||||
[],
|
||||
)
|
||||
|
|
|
@ -89,6 +89,7 @@ async def test_diagnostics_with_bluetooth(
|
|||
"storage_data": {
|
||||
"api_version": {"major": 99, "minor": 99},
|
||||
"device_info": {
|
||||
"bluetooth_mac_address": "**REDACTED**",
|
||||
"bluetooth_proxy_feature_flags": 63,
|
||||
"compilation_time": "",
|
||||
"esphome_version": "1.0.0",
|
||||
|
|
Loading…
Reference in New Issue