diff --git a/CHANGELOG_LATEST.md b/CHANGELOG_LATEST.md index 71d3887b0..4066a0e08 100644 --- a/CHANGELOG_LATEST.md +++ b/CHANGELOG_LATEST.md @@ -17,9 +17,12 @@ For more details go to [emsesp.org](https://emsesp.org/). - fix setting date/time on Junkers thermostats - offset of hpminflowtemp [#3144](https://github.com/emsesp/EMS-ESP32/issues/3144) - water circulation command [#3149](https://github.com/emsesp/EMS-ESP32/pull/3149) +- start scheduler after customEntities, delay scheduler loop after startup, handling of `system/reset` command [#3146](https://github.com/emsesp/EMS-ESP32/issues/3146) +- possible memory leaks fixed. ## Changed - call compute value direct, enlarge TCP stack [#3127](https://github.com/emsesp/EMS-ESP32/discussions/3127) - Dewtemperature for Easycontrol calculated by ems-esp [#3135](https://github.com/emsesp/EMS-ESP32/issues/3135) -- add option for sync thermostat to ntp, allow different time zones [#3148](https://github.com/emsesp/EMS-ESP32/discussions/3148), **defaults to no sync**. +- add option for sync thermostat to ntp, allow different time zones [#3148](https://github.com/emsesp/EMS-ESP32/discussions/3148), **defaults to sync**. +- block too many GET requests [mentioned in #3104](https://github.com/emsesp/EMS-ESP32/issues/3104) diff --git a/platformio.ini b/platformio.ini index 40e5057ef..e87eaaff6 100644 --- a/platformio.ini +++ b/platformio.ini @@ -105,7 +105,7 @@ board_build.filesystem = littlefs lib_deps = bblanchon/ArduinoJson @ 7.4.3 ESP32Async/AsyncTCP @ 3.4.10 - ESP32Async/ESPAsyncWebServer @ 3.11.0 + ESP32Async/ESPAsyncWebServer @ 3.11.2 ; https://github.com/emsesp/EMS-ESP-Modules.git @ 1.0.8 ; builds the web interface only, not the firmware diff --git a/src/emsesp_version.h b/src/emsesp_version.h index 110b4c43a..662177bb2 100644 --- a/src/emsesp_version.h +++ b/src/emsesp_version.h @@ -1 +1 @@ -#define EMSESP_APP_VERSION "3.8.3-dev.10" +#define EMSESP_APP_VERSION "3.8.3-dev.11"