mirror of
https://github.com/home-assistant/core.git
synced 2025-07-17 18:27:09 +00:00
Bump aioesphomeapi to 29.3.1 (#139465)
This commit is contained in:
parent
e11ead410b
commit
0afdd9556f
@ -13,9 +13,7 @@ from . import CONF_NOISE_PSK
|
|||||||
from .dashboard import async_get_dashboard
|
from .dashboard import async_get_dashboard
|
||||||
from .entry_data import ESPHomeConfigEntry
|
from .entry_data import ESPHomeConfigEntry
|
||||||
|
|
||||||
CONF_MAC_ADDRESS = "mac_address"
|
REDACT_KEYS = {CONF_NOISE_PSK, CONF_PASSWORD, "mac_address", "bluetooth_mac_address"}
|
||||||
|
|
||||||
REDACT_KEYS = {CONF_NOISE_PSK, CONF_PASSWORD, CONF_MAC_ADDRESS}
|
|
||||||
|
|
||||||
|
|
||||||
async def async_get_config_entry_diagnostics(
|
async def async_get_config_entry_diagnostics(
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
"loggers": ["aioesphomeapi", "noiseprotocol", "bleak_esphome"],
|
"loggers": ["aioesphomeapi", "noiseprotocol", "bleak_esphome"],
|
||||||
"mqtt": ["esphome/discover/#"],
|
"mqtt": ["esphome/discover/#"],
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"aioesphomeapi==29.3.0",
|
"aioesphomeapi==29.3.1",
|
||||||
"esphome-dashboard-api==1.2.3",
|
"esphome-dashboard-api==1.2.3",
|
||||||
"bleak-esphome==2.8.0"
|
"bleak-esphome==2.8.0"
|
||||||
],
|
],
|
||||||
|
2
requirements_all.txt
generated
2
requirements_all.txt
generated
@ -243,7 +243,7 @@ aioelectricitymaps==0.4.0
|
|||||||
aioemonitor==1.0.5
|
aioemonitor==1.0.5
|
||||||
|
|
||||||
# homeassistant.components.esphome
|
# homeassistant.components.esphome
|
||||||
aioesphomeapi==29.3.0
|
aioesphomeapi==29.3.1
|
||||||
|
|
||||||
# homeassistant.components.flo
|
# homeassistant.components.flo
|
||||||
aioflo==2021.11.0
|
aioflo==2021.11.0
|
||||||
|
2
requirements_test_all.txt
generated
2
requirements_test_all.txt
generated
@ -231,7 +231,7 @@ aioelectricitymaps==0.4.0
|
|||||||
aioemonitor==1.0.5
|
aioemonitor==1.0.5
|
||||||
|
|
||||||
# homeassistant.components.esphome
|
# homeassistant.components.esphome
|
||||||
aioesphomeapi==29.3.0
|
aioesphomeapi==29.3.1
|
||||||
|
|
||||||
# homeassistant.components.flo
|
# homeassistant.components.flo
|
||||||
aioflo==2021.11.0
|
aioflo==2021.11.0
|
||||||
|
@ -581,7 +581,10 @@ async def mock_bluetooth_entry(
|
|||||||
return await _mock_generic_device_entry(
|
return await _mock_generic_device_entry(
|
||||||
hass,
|
hass,
|
||||||
mock_client,
|
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": {
|
"storage_data": {
|
||||||
"api_version": {"major": 99, "minor": 99},
|
"api_version": {"major": 99, "minor": 99},
|
||||||
"device_info": {
|
"device_info": {
|
||||||
|
"bluetooth_mac_address": "**REDACTED**",
|
||||||
"bluetooth_proxy_feature_flags": 63,
|
"bluetooth_proxy_feature_flags": 63,
|
||||||
"compilation_time": "",
|
"compilation_time": "",
|
||||||
"esphome_version": "1.0.0",
|
"esphome_version": "1.0.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user