From e8a2d09906282a1c394ce6a79d0fce09057caaca Mon Sep 17 00:00:00 2001 From: Peter Lieven Date: Tue, 8 Apr 2025 15:14:03 +0000 Subject: [PATCH] fix: bump ESPAsyncWebServer to v3.7.6 after OpenDTU v24.9.30 was released there was a subtle change in the ESPAsyncWebServer which changed the internal data structure for AsyncResponseStream from cbuf to StringStream. This introduced WDT resets when scraping at least the prometheus API endpoint [1]. ESPAsyncWebServer v3.7.6 addresses this issue by reverting the data structure back to cbuf. [1] https://github.com/tbnobody/OpenDTU/issues/2535 Signed-off-by: Peter Lieven --- platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio.ini b/platformio.ini index 6d632763..4df46eda 100644 --- a/platformio.ini +++ b/platformio.ini @@ -42,7 +42,7 @@ build_unflags = -std=gnu++11 lib_deps = - ESP32Async/ESPAsyncWebServer @ 3.7.4 + ESP32Async/ESPAsyncWebServer @ 3.7.6 bblanchon/ArduinoJson @ 7.3.1 https://github.com/bertmelis/espMqttClient.git#v1.7.0 nrf24/RF24 @ 1.4.11