From 6954a69ed299630c5a03ceee11e091991f396acc Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 24 Jan 2026 21:48:47 -1000 Subject: [PATCH 1/4] 3.9.5 --- esphome/components/web_server_base/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/web_server_base/__init__.py b/esphome/components/web_server_base/__init__.py index d5d75b395d..0120152904 100644 --- a/esphome/components/web_server_base/__init__.py +++ b/esphome/components/web_server_base/__init__.py @@ -48,4 +48,4 @@ async def to_code(config): if CORE.is_libretiny: CORE.add_platformio_option("lib_ignore", ["ESPAsyncTCP", "RPAsyncTCP"]) # https://github.com/ESP32Async/ESPAsyncWebServer/blob/main/library.json - cg.add_library("ESP32Async/ESPAsyncWebServer", "3.7.10") + cg.add_library("esphome/ESPAsyncWebServer", "3.9.5") From 7e456265a4fc6e02be3ad6217635e75e582c5490 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 24 Jan 2026 21:49:40 -1000 Subject: [PATCH 2/4] Update ESPAsyncWebServer in platformio.ini to 3.9.5 --- .clang-tidy.hash | 2 +- platformio.ini | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.clang-tidy.hash b/.clang-tidy.hash index 0a272d21ba..fdf11f6b55 100644 --- a/.clang-tidy.hash +++ b/.clang-tidy.hash @@ -1 +1 @@ -15dc295268b2dcf75942f42759b3ddec64eba89f75525698eb39c95a7f4b14ce +f7dbc1d3c6faff31fbf40bf879294bedcf8d0b22833e15cb3ccb0d9ceb7c0293 diff --git a/platformio.ini b/platformio.ini index e9a588e4fd..b643f86e58 100644 --- a/platformio.ini +++ b/platformio.ini @@ -114,7 +114,7 @@ lib_deps = ESP8266WiFi ; wifi (Arduino built-in) Update ; ota (Arduino built-in) ESP32Async/ESPAsyncTCP@2.0.0 ; async_tcp - ESP32Async/ESPAsyncWebServer@3.7.8 ; web_server_base + esphome/ESPAsyncWebServer@3.9.5 ; web_server_base makuna/NeoPixelBus@2.7.3 ; neopixelbus ESP8266HTTPClient ; http_request (Arduino built-in) ESP8266mDNS ; mdns (Arduino built-in) @@ -201,7 +201,7 @@ framework = arduino lib_deps = ${common:arduino.lib_deps} bblanchon/ArduinoJson@7.4.2 ; json - ESP32Async/ESPAsyncWebServer@3.7.8 ; web_server_base + esphome/ESPAsyncWebServer@3.9.5 ; web_server_base build_flags = ${common:arduino.build_flags} -DUSE_RP2040 @@ -217,7 +217,7 @@ framework = arduino lib_compat_mode = soft lib_deps = bblanchon/ArduinoJson@7.4.2 ; json - ESP32Async/ESPAsyncWebServer@3.7.8 ; web_server_base + esphome/ESPAsyncWebServer@3.9.5 ; web_server_base droscy/esp_wireguard@0.4.2 ; wireguard build_flags = ${common:arduino.build_flags} From 8a0d99285cec64b78811f914663af709ca3c2c0a Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 24 Jan 2026 21:50:42 -1000 Subject: [PATCH 3/4] tweak --- .clang-tidy.hash | 2 +- platformio.ini | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.clang-tidy.hash b/.clang-tidy.hash index fdf11f6b55..0fac1d0717 100644 --- a/.clang-tidy.hash +++ b/.clang-tidy.hash @@ -1 +1 @@ -f7dbc1d3c6faff31fbf40bf879294bedcf8d0b22833e15cb3ccb0d9ceb7c0293 +ae90e8b3c1abaf90cbda209be4f7a592cd03b608082c02e0ca8801224565406b diff --git a/platformio.ini b/platformio.ini index b643f86e58..f26d69d8d9 100644 --- a/platformio.ini +++ b/platformio.ini @@ -114,7 +114,7 @@ lib_deps = ESP8266WiFi ; wifi (Arduino built-in) Update ; ota (Arduino built-in) ESP32Async/ESPAsyncTCP@2.0.0 ; async_tcp - esphome/ESPAsyncWebServer@3.9.5 ; web_server_base + esphome/ESPAsyncWebServer@3.9.5 ; web_server_base makuna/NeoPixelBus@2.7.3 ; neopixelbus ESP8266HTTPClient ; http_request (Arduino built-in) ESP8266mDNS ; mdns (Arduino built-in) @@ -201,7 +201,7 @@ framework = arduino lib_deps = ${common:arduino.lib_deps} bblanchon/ArduinoJson@7.4.2 ; json - esphome/ESPAsyncWebServer@3.9.5 ; web_server_base + esphome/ESPAsyncWebServer@3.9.5 ; web_server_base build_flags = ${common:arduino.build_flags} -DUSE_RP2040 @@ -217,7 +217,7 @@ framework = arduino lib_compat_mode = soft lib_deps = bblanchon/ArduinoJson@7.4.2 ; json - esphome/ESPAsyncWebServer@3.9.5 ; web_server_base + esphome/ESPAsyncWebServer@3.9.5 ; web_server_base droscy/esp_wireguard@0.4.2 ; wireguard build_flags = ${common:arduino.build_flags} From 51bf568b8fea042e3c8a2fefe9037f46f5163342 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 24 Jan 2026 21:52:47 -1000 Subject: [PATCH 4/4] fix --- .clang-tidy.hash | 2 +- esphome/components/web_server_base/__init__.py | 2 +- platformio.ini | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.clang-tidy.hash b/.clang-tidy.hash index 0fac1d0717..f0b96167e1 100644 --- a/.clang-tidy.hash +++ b/.clang-tidy.hash @@ -1 +1 @@ -ae90e8b3c1abaf90cbda209be4f7a592cd03b608082c02e0ca8801224565406b +a5eed002f632b349071098533ebf1ff16b68a6d99eac5ba5850e80dbfa95f86e diff --git a/esphome/components/web_server_base/__init__.py b/esphome/components/web_server_base/__init__.py index 0120152904..e0eec7dedb 100644 --- a/esphome/components/web_server_base/__init__.py +++ b/esphome/components/web_server_base/__init__.py @@ -48,4 +48,4 @@ async def to_code(config): if CORE.is_libretiny: CORE.add_platformio_option("lib_ignore", ["ESPAsyncTCP", "RPAsyncTCP"]) # https://github.com/ESP32Async/ESPAsyncWebServer/blob/main/library.json - cg.add_library("esphome/ESPAsyncWebServer", "3.9.5") + cg.add_library("ESP32Async/ESPAsyncWebServer", "3.9.5") diff --git a/platformio.ini b/platformio.ini index f26d69d8d9..7e80694bb1 100644 --- a/platformio.ini +++ b/platformio.ini @@ -114,7 +114,7 @@ lib_deps = ESP8266WiFi ; wifi (Arduino built-in) Update ; ota (Arduino built-in) ESP32Async/ESPAsyncTCP@2.0.0 ; async_tcp - esphome/ESPAsyncWebServer@3.9.5 ; web_server_base + ESP32Async/ESPAsyncWebServer@3.9.5 ; web_server_base makuna/NeoPixelBus@2.7.3 ; neopixelbus ESP8266HTTPClient ; http_request (Arduino built-in) ESP8266mDNS ; mdns (Arduino built-in) @@ -201,7 +201,7 @@ framework = arduino lib_deps = ${common:arduino.lib_deps} bblanchon/ArduinoJson@7.4.2 ; json - esphome/ESPAsyncWebServer@3.9.5 ; web_server_base + ESP32Async/ESPAsyncWebServer@3.9.5 ; web_server_base build_flags = ${common:arduino.build_flags} -DUSE_RP2040 @@ -217,7 +217,7 @@ framework = arduino lib_compat_mode = soft lib_deps = bblanchon/ArduinoJson@7.4.2 ; json - esphome/ESPAsyncWebServer@3.9.5 ; web_server_base + ESP32Async/ESPAsyncWebServer@3.9.5 ; web_server_base droscy/esp_wireguard@0.4.2 ; wireguard build_flags = ${common:arduino.build_flags}