forked from khoih-prog/AsyncHTTPRequest_Generic
### Releases v1.5.0 1. Fix `multiple-definitions` linker error and weird bug related to `src_cpp`. Check [Different behaviour using the src_cpp or src_h lib #80](https://github.com/khoih-prog/ESPAsync_WiFiManager/discussions/80) 2. Optimize library code by using `reference-passing` instead of `value-passing` 3. Update all examples
5.0 KiB
5.0 KiB
AsyncHTTPRequest_Generic
Table of Contents
Changelog
Releases v1.5.0
- Fix
multiple-definitionslinker error and weird bug related tosrc_cpp. Check Different behaviour using the src_cpp or src_h lib #80 - Optimize library code by using
reference-passinginstead ofvalue-passing - Update all examples
Releases v1.4.1
Warning: Releases v1.4.1+ can be used and autodetect ESP32 core v2.0.0+ or v1.0.6- for WT32_ETH01
- Auto detect ESP32 core to use for WT32_ETH01
- Fix bug in WT32_ETH01 examples to reduce connection time
Releases v1.4.0
- Fix crashing bug when request a non-existing IP. Check Http GET polling causes crash when host disconnected #22
- Modify
platform.inito avoid compile error with PIO when using ESP8266/ESP32
Releases v1.3.1
- Update
platform.iniandlibrary.jsonto use originalkhoih-proginstead ofkhoih.progafter PIO fix - Update
Packages' Patches
Releases v1.3.0
- Add support to WT32_ETH01 (ESP32 + LAN8720) boards
- Add examples with new features
Releases v1.2.0
- Add support to LAN8720 Ethernet for many STM32F4 (F407xx, NUCLEO_F429ZI) and STM32F7 (DISCO_F746NG, NUCLEO_F746ZG, NUCLEO_F756ZG) boards.
- Add LAN8720 examples
- Add Packages' Patches for STM32 to use LAN8720 with STM32Ethernet and LwIP libraries
- Update ESP_WiFiManager-related example to fix multiWiFi timings to work better with latest esp32 core v1.0.6
Releases v1.1.5
- Fix dependency on unpublished STM32AsyncTCP Library. Check Compilation broken due to error in STM32AsyncTCP dependency and how to run one of the examples?.
Releases v1.1.4
- Fix
library.propertiesdependency
Releases v1.1.3
- Fix non-persistent Connection header bug. Check 'Connection' header expects 'disconnect' instead 'close' ? #13
- Add ESP32-S2 support
- Tested with Latest ESP32 Core 1.0.5 for ESP32-based boards.
Releases v1.1.2
- Rename _lock and _unlock to avoid conflict with ESP32/ESP8266 AsyncWebServer library. Check compatibility with ESPAsyncWebServer #11
- Fix compiler warnings.
Releases v1.1.1
- Prevent crash if request and/or method not correct.
Releases v1.1.0
- Add HTTP PUT, PATCH, DELETE and HEAD methods. Check Add support for sending PUT, PATCH, DELETE request
- Add Table of Contents
- Add Version String
Releases v1.0.2
- Make Mutex Lock and delete more reliable and error-proof to prevent random crash.
Releases v1.0.1
- Restore cpp code besides Impl.h code to use in case of
multiple definitionlinker error. Thanks to Daniel Brunner to report and make PR in Fixed linker errors when included in multiple .cpp files. See HOWTO FixMultiple DefinitionsLinker Error
Releases v1.0.0
- Initial coding to add support to STM32F/L/H/G/WB/MP1 using built-in LAN8742A Ethernet (Nucleo-144, DISCOVERY, etc).
- Add examples using STM32 boards.