From aac89a349375bb33f30ce0fda81db61e8682a4cc Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 21 Jan 2023 12:05:06 -1000 Subject: [PATCH] Bump recommended esphome version for bluetooth proxies to 2022.12.4 (#86308) This will fix an MTU issue reported with airthings and other devices. needs https://github.com/esphome/esphome/pull/4323 --- homeassistant/components/esphome/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/esphome/__init__.py b/homeassistant/components/esphome/__init__.py index 4fabccb2892..826bf79260b 100644 --- a/homeassistant/components/esphome/__init__.py +++ b/homeassistant/components/esphome/__init__.py @@ -68,7 +68,7 @@ CONF_NOISE_PSK = "noise_psk" _LOGGER = logging.getLogger(__name__) _R = TypeVar("_R") -STABLE_BLE_VERSION_STR = "2022.12.0" +STABLE_BLE_VERSION_STR = "2022.12.4" STABLE_BLE_VERSION = AwesomeVersion(STABLE_BLE_VERSION_STR) PROJECT_URLS = { "esphome.bluetooth-proxy": "https://esphome.github.io/bluetooth-proxies/",