|
17 | 17 | * [Supports](#supports) |
18 | 18 | * [Principles of operation](#principles-of-operation) |
19 | 19 | * [Currently supported Boards](#currently-supported-boards) |
20 | | -* [Changelog](#changelog) |
21 | | - * [Releases v1.3.0](#releases-v130) |
22 | | - * [Releases v1.2.0](#releases-v120) |
23 | | - * [Releases v1.1.5](#releases-v115) |
24 | | - * [Releases v1.1.4](#releases-v114) |
25 | | - * [Releases v1.1.3](#releases-v113) |
26 | | - * [Releases v1.1.2](#releases-v112) |
27 | | - * [Releases v1.1.1](#releases-v111) |
28 | | - * [Releases v1.1.0](#releases-v110) |
29 | | - * [Releases v1.0.2](#releases-v102) |
30 | | - * [Releases v1.0.1](#releases-v101) |
31 | | - * [Releases v1.0.0](#releases-v100) |
| 20 | +* [Changelog](changelog.md) |
32 | 21 | * [AsyncHTTPRequest_Generic for ESP32, ESP8266 using built-in WiFi and STM32 boards using built-in LAN8742A Ethernet](#asynchttprequest_generic-for-esp32-esp8266-using-built-in-wifi-and-stm32-boards-using-built-in-lan8742a-ethernet) |
33 | 22 | * [Prerequisites](#prerequisites) |
34 | 23 | * [Installation](#installation) |
|
111 | 100 | * [Debug](#debug) |
112 | 101 | * [Troubleshooting](#troubleshooting) |
113 | 102 | * [Issues](#issues) |
114 | | -* [Releases](#releases) |
115 | 103 | * [TO DO](#to-do) |
116 | 104 | * [DONE](#done) |
117 | 105 | * [Contributions and Thanks](#contributions-and-thanks) |
@@ -185,69 +173,6 @@ This library is based on, modified from: |
185 | 173 | --- |
186 | 174 | --- |
187 | 175 |
|
188 | | - |
189 | | -## Changelog |
190 | | - |
191 | | -### Releases v1.3.0 |
192 | | - |
193 | | -1. Add support to WT32_ETH01 (ESP32 + LAN8720) boards |
194 | | -2. Add examples with new features |
195 | | - |
196 | | -### Releases v1.2.0 |
197 | | - |
198 | | -1. Add support to **LAN8720** Ethernet for many **STM32F4** (F407xx, NUCLEO_F429ZI) and **STM32F7** (DISCO_F746NG, NUCLEO_F746ZG, NUCLEO_F756ZG) boards. |
199 | | -2. Add LAN8720 examples |
200 | | -3. Add Packages' Patches for STM32 to use LAN8720 with STM32Ethernet and LwIP libraries |
201 | | -4. Update ESP_WiFiManager-related example to fix multiWiFi timings to work better with latest esp32 core v1.0.6 |
202 | | - |
203 | | -### Releases v1.1.5 |
204 | | - |
205 | | -1. Fix dependency on unpublished [**STM32AsyncTCP Library**](https://github.com/philbowles/STM32AsyncTCP). Check [Compilation broken due to error in STM32AsyncTCP dependency](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/4) and [how to run one of the examples?](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/2). |
206 | | - |
207 | | -### Releases v1.1.4 |
208 | | - |
209 | | -1. Fix `library.properties` dependency |
210 | | - |
211 | | -### Releases v1.1.3 |
212 | | - |
213 | | -1. Fix non-persistent Connection header bug. Check [**'Connection' header expects 'disconnect' instead 'close' ? #13**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/13) |
214 | | -2. Add ESP32-S2 support |
215 | | -3. Tested with [**Latest ESP32 Core 1.0.5**](https://github.com/espressif/arduino-esp32) for ESP32-based boards. |
216 | | - |
217 | | -### Releases v1.1.2 |
218 | | - |
219 | | -1. Rename _lock and _unlock to avoid conflict with [**ESP32/ESP8266 AsyncWebServer**](https://github.com/me-no-dev/ESPAsyncWebServer) library. Check [**compatibility with ESPAsyncWebServer #11**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/11) |
220 | | -2. Fix compiler warnings. |
221 | | - |
222 | | -### Releases v1.1.1 |
223 | | - |
224 | | -1. Prevent crash if request and/or method not correct. |
225 | | - |
226 | | - |
227 | | -### Releases v1.1.0 |
228 | | - |
229 | | -1. Add HTTP PUT, PATCH, DELETE and HEAD methods. Check [Add support for sending PUT, PATCH, DELETE request](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/5) |
230 | | -2. Add Table of Contents |
231 | | -3. Add Version String |
232 | | - |
233 | | - |
234 | | -### Releases v1.0.2 |
235 | | - |
236 | | -1. Make Mutex Lock and delete more reliable and error-proof to prevent random crash. |
237 | | - |
238 | | -### Releases v1.0.1 |
239 | | - |
240 | | -1. Restore cpp code besides Impl.h code to use in case of `multiple definition` linker error. Thanks to [Daniel Brunner](https://github.com/0xFEEDC0DE64) to report and make PR in [**Fixed linker errors when included in multiple .cpp files**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/pull/1). See [**HOWTO Fix `Multiple Definitions` Linker Error**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic#HOWTO-Fix-Multiple-Definitions-Linker-Error) |
241 | | - |
242 | | - |
243 | | -### Releases v1.0.0 |
244 | | - |
245 | | -1. Initial coding to add support to **STM32F/L/H/G/WB/MP1** using built-in LAN8742A Ethernet (Nucleo-144, DISCOVERY, etc). |
246 | | -2. Add examples using STM32 boards. |
247 | | - |
248 | | ---- |
249 | | ---- |
250 | | - |
251 | 176 | ## Prerequisites |
252 | 177 |
|
253 | 178 | 1. [`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software) |
@@ -1377,62 +1302,6 @@ Submit issues to: [AsyncHTTPRequest_Generic issues](https://github.com/khoih-pro |
1377 | 1302 | 5. Add support to **Ethernet LAN8720** using [STM32Ethernet library](https://github.com/stm32duino/STM32Ethernet), for boards such as **Nucleo-144 (F429ZI, NUCLEO_F746NG, NUCLEO_F746ZG, NUCLEO_F756ZG), Discovery (DISCO_F746NG)** and **STM32F4 boards (BLACK_F407VE, BLACK_F407VG, BLACK_F407ZE, BLACK_F407ZG, BLACK_F407VE_Mini, DIYMORE_F407VGT, FK407M1)** |
1378 | 1303 | 6. Add support to **WT32_ETH01** using ESP32-based boards and LAN8720 Ethernet |
1379 | 1304 |
|
1380 | | ---- |
1381 | | - |
1382 | | -## Releases |
1383 | | - |
1384 | | -### Releases v1.3.0 |
1385 | | - |
1386 | | -1. Add support to WT32_ETH01 (ESP32 + LAN8720) boards |
1387 | | -2. Add examples with new features |
1388 | | - |
1389 | | -### Releases v1.2.0 |
1390 | | - |
1391 | | -1. Add support to **LAN8720** Ethernet for many **STM32F4** (F407xx, NUCLEO_F429ZI) and **STM32F7** (DISCO_F746NG, NUCLEO_F746ZG, NUCLEO_F756ZG) boards. |
1392 | | -2. Add LAN8720 examples |
1393 | | -3. Add Packages' Patches for STM32 to use LAN8720 with STM32Ethernet and LwIP libraries |
1394 | | -4. Update ESP_WiFiManager-related example to fix multiWiFi timings to work better with latest esp32 core v1.0.6 |
1395 | | - |
1396 | | -### Releases v1.1.5 |
1397 | | - |
1398 | | -1. Fix dependency on unpublished [**STM32AsyncTCP Library**](https://github.com/philbowles/STM32AsyncTCP). Check [Compilation broken due to error in STM32AsyncTCP dependency](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/4) and [how to run one of the examples?](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/2). |
1399 | | - |
1400 | | -### Releases v1.1.4 |
1401 | | - |
1402 | | -1. Fix `library.properties` dependency |
1403 | | - |
1404 | | -### Releases v1.1.3 |
1405 | | - |
1406 | | -1. Fix non-persistent Connection header bug. Check [**'Connection' header expects 'disconnect' instead 'close' ? #13**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/13) |
1407 | | -2. Add ESP32-S2 support |
1408 | | -3. Tested with [**Latest ESP32 Core 1.0.5**](https://github.com/espressif/arduino-esp32) for ESP32-based boards. |
1409 | | - |
1410 | | -### Releases v1.1.2 |
1411 | | - |
1412 | | -1. Rename _lock and _unlock to avoid conflict with [**ESP32/ESP8266 AsyncWebServer**](https://github.com/me-no-dev/ESPAsyncWebServer) library. Check [**compatibility with ESPAsyncWebServer #11**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/11) |
1413 | | -2. Fix compiler warnings. |
1414 | | - |
1415 | | -### Releases v1.1.1 |
1416 | | - |
1417 | | -1. Prevent crash if request and/or method not correct. |
1418 | | - |
1419 | | -### Releases v1.1.0 |
1420 | | - |
1421 | | -1. Add HTTP PUT, PATCH, DELETE and HEAD methods. Check [Add support for sending PUT, PATCH, DELETE request](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/5) |
1422 | | - |
1423 | | -### Releases v1.0.2 |
1424 | | - |
1425 | | -1. Make Mutex Lock and delete more reliable and error-proof to prevent random crash. |
1426 | | - |
1427 | | -### Releases v1.0.1 |
1428 | | - |
1429 | | -1. Restore cpp code besides Impl.h code to use in case of `multiple definition` linker error. Thanks to [Daniel Brunner](https://github.com/0xFEEDC0DE64) to report and make PR in [**Fixed linker errors when included in multiple .cpp files**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/pull/1). See [**HOWTO Fix `Multiple Definitions` Linker Error**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic#HOWTO-Fix-Multiple-Definitions-Linker-Error) |
1430 | | - |
1431 | | -### Releases v1.0.0 |
1432 | | - |
1433 | | -1. Initial coding to add support to **STM32F/L/H/G/WB/MP1** using built-in LAN8742A Ethernet (Nucleo-144, DISCOVERY, etc). |
1434 | | -2. Add examples using STM32 boards. |
1435 | | - |
1436 | 1305 | --- |
1437 | 1306 | --- |
1438 | 1307 |
|
|
0 commit comments