You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 4, 2023. It is now read-only.
Starting AsyncHTTPRequest_ESP using ESP8266_NODEMCU
627
-
AsyncHTTPRequest_Generic v1.10.0
627
+
AsyncHTTPRequest_Generic v1.10.1
628
628
Connecting to WiFi SSID: HueNet1
629
629
...........
630
630
HTTP WebServer is @ IP : 192.168.2.81
@@ -656,7 +656,7 @@ HHHHHHHHH HHHHHHHHHH HHHHHHHHHH H
656
656
657
657
```
658
658
Start AsyncWebClientRepeating_STM32 on NUCLEO_F767ZI
659
-
AsyncHTTPRequest_Generic v1.10.0
659
+
AsyncHTTPRequest_Generic v1.10.1
660
660
AsyncHTTPRequest @ IP : 192.168.2.72
661
661
662
662
**************************************
@@ -710,7 +710,7 @@ AsyncHTTPRequest @ IP : 192.168.2.72
710
710
```
711
711
Starting AsyncHTTPRequest_WT32_ETH01 on ESP32_DEV with ETH_PHY_LAN8720
712
712
WebServer_WT32_ETH01 v1.5.1
713
-
AsyncHTTPRequest_Generic v1.10.0
713
+
AsyncHTTPRequest_Generic v1.10.1
714
714
ETH MAC: A8:03:2A:A1:61:73, IPv4: 192.168.2.232, FULL_DUPLEX, 100Mbps
715
715
AsyncHTTPRequest @ IP : 192.168.2.232
716
716
@@ -740,7 +740,7 @@ week_number: 42
740
740
```
741
741
Starting AsyncHTTPRequest_ESP_WiFiManager using LittleFS on ESP32C3_DEV
742
742
ESPAsync_WiFiManager v1.15.0
743
-
AsyncHTTPRequest_Generic v1.10.0
743
+
AsyncHTTPRequest_Generic v1.10.1
744
744
Stored: SSID = HueNet1, Pass = password
745
745
Got stored Credentials. Timeout 120s
746
746
ConnectMultiWiFi in setup
@@ -791,7 +791,7 @@ week_number: 42
791
791
```
792
792
Starting AsyncHTTPRequest_ESP_WiFiManager using LittleFS on ESP32S3_DEV
793
793
ESPAsync_WiFiManager v1.15.0
794
-
AsyncHTTPRequest_Generic v1.10.0
794
+
AsyncHTTPRequest_Generic v1.10.1
795
795
Stored: SSID = HueNet1, Pass = password
796
796
Got stored Credentials. Timeout 120s
797
797
ConnectMultiWiFi in setup
@@ -843,7 +843,7 @@ The terminal output of [AsyncHTTPRequest_ESP_Multi example](examples/AsyncHTTPRe
843
843
844
844
```
845
845
Starting AsyncHTTPRequest_ESP_Multi using ESP32_DEV
846
-
AsyncHTTPRequest_Generic v1.10.0
846
+
AsyncHTTPRequest_Generic v1.10.1
847
847
Connecting to WiFi SSID: HueNet1
848
848
.......
849
849
AsyncHTTPSRequest @ IP : 192.168.2.88
@@ -904,7 +904,7 @@ The terminal output of [AsyncHTTPRequest_ESP8266_Ethernet example](examples/Asyn
904
904
905
905
```
906
906
Starting AsyncHTTPRequest_ESP8266_Ethernet on ESP8266_NODEMCU_ESP12E using ESP8266_W5500 Ethernet
907
-
AsyncHTTPRequest_Generic v1.10.0
907
+
AsyncHTTPRequest_Generic v1.10.1
908
908
Connecting ethernet..
909
909
Ethernet IP address: 192.168.2.187
910
910
@@ -954,7 +954,7 @@ The terminal output of [AsyncHTTPRequest_ESP8266_Ethernet example](examples/Asyn
954
954
955
955
```
956
956
Starting AsyncHTTPRequest_ESP8266_Ethernet on ESP8266_NODEMCU_ESP12E using ESP8266_ENC28J60 Ethernet
957
-
AsyncHTTPRequest_Generic v1.10.0
957
+
AsyncHTTPRequest_Generic v1.10.1
958
958
Connecting to network : ..........................................................
959
959
Ethernet IP address: 192.168.2.187
960
960
@@ -1059,7 +1059,7 @@ Submit issues to: [AsyncHTTPRequest_Generic issues](https://github.com/khoih-pro
1059
1059
20. Fix ESP32 chipID for example`AsyncHTTPRequest_ESP_WiFiManager`
1060
1060
21. Remove dependency on `LittleFS_esp32` library to prevent PIO error when using new ESP32 core v1.0.6+
1061
1061
22. Not try to reconnect to the same `host:port` after connected
1062
-
1062
+
23. Fix bug of wrong `reqStates` introduced from `v1.9.0`
1063
1063
1064
1064
---
1065
1065
---
@@ -1068,15 +1068,17 @@ Submit issues to: [AsyncHTTPRequest_Generic issues](https://github.com/khoih-pro
1068
1068
1069
1069
This library is based on, modified, bug-fixed and improved from:
1070
1070
1071
-
1.[Bob Lemaire's **asyncHTTPrequest Library**](https://github.com/boblemaire/asyncHTTPrequest) to use the better **asynchronous** features of these following Async TCP Libraries : ( [`ESPAsyncTCP`](https://github.com/me-no-dev/ESPAsyncTCP), [`AsyncTCP`](https://github.com/me-no-dev/AsyncTCP), and [`STM32AsyncTCP`](https://github.com/philbowles/STM32AsyncTCP) ).
1072
-
2. 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) leading to v1.0.1. See [**HOWTO Fix `Multiple Definitions` Linker Error**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic#HOWTO-Fix-Multiple-Definitions-Linker-Error)
1073
-
3. Thanks to [gleniat](https://github.com/gleniat) to make enhancement request in [Add support for sending PUT, PATCH, DELETE request](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/5) leading to v1.1.0.
1074
-
4. Thanks to [BadDwarf](https://github.com/baddwarf) to report [**compatibility with ESPAsyncWebServer #11**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/11) leading to the enhancement in v1.1.2.
1075
-
5. Thanks to [spdi](https://github.com/spdi) to report [**'Connection' header expects 'disconnect' instead 'close' ? #13**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/13) leading to new release v1.1.3 to fix bug.
1076
-
6. Thanks to [andrewk123](https://github.com/andrewk123) to report [**Http GET polling causes crash when host disconnected #22**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/22) leading to new release v1.4.0 to fix bug.
1077
-
7. Thanks to [DavidAntonin](https://github.com/DavidAntonin) to report [Cannot send requests to different addresses #4](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/issues/4) leading to new release v1.7.1 to demonstrate how to send requests to multiple addresses and receive responses from them.
1078
-
8. Thanks to [per1234](https://github.com/per1234) to make PR [Remove unavailable items from depends field of library.properties](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/pull/35) leading to v1.8.2
1079
-
9. Thanks to [miwied](https://github.com/miwied) to report [setTimeout() hasn't any effect #38](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/38) leading to new release v1.9.0
1071
+
1.[Bob Lemaire's **asyncHTTPrequest Library**](https://github.com/boblemaire/asyncHTTPrequest) to use the better **asynchronous** features of these following Async TCP Libraries : ( [`ESPAsyncTCP`](https://github.com/me-no-dev/ESPAsyncTCP), [`AsyncTCP`](https://github.com/me-no-dev/AsyncTCP), and [`STM32AsyncTCP`](https://github.com/philbowles/STM32AsyncTCP) ).
1072
+
2. 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) leading to v1.0.1. See [**HOWTO Fix `Multiple Definitions` Linker Error**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic#HOWTO-Fix-Multiple-Definitions-Linker-Error)
1073
+
3. Thanks to [gleniat](https://github.com/gleniat) to make enhancement request in [Add support for sending PUT, PATCH, DELETE request](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/5) leading to v1.1.0.
1074
+
4. Thanks to [BadDwarf](https://github.com/baddwarf) to report [**compatibility with ESPAsyncWebServer #11**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/11) leading to the enhancement in v1.1.2.
1075
+
5. Thanks to [spdi](https://github.com/spdi) to report [**'Connection' header expects 'disconnect' instead 'close' ? #13**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/13) leading to new release v1.1.3 to fix bug.
1076
+
6. Thanks to [andrewk123](https://github.com/andrewk123) to report [**Http GET polling causes crash when host disconnected #22**](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/22) leading to new release v1.4.0 to fix bug.
1077
+
7. Thanks to [DavidAntonin](https://github.com/DavidAntonin) to report [Cannot send requests to different addresses #4](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/issues/4) leading to new release v1.7.1 to demonstrate how to send requests to multiple addresses and receive responses from them.
1078
+
8. Thanks to [per1234](https://github.com/per1234) to make PR [Remove unavailable items from depends field of library.properties](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/pull/35) leading to v1.8.2
1079
+
9. Thanks to [miwied](https://github.com/miwied) to report [setTimeout() hasn't any effect #38](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/38) leading to new release v1.9.0
1080
+
10. Thanks to [ValentinsStorre](https://github.com/ValentinsStorre) to report [Release 1.9 breakes previously running code #39](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/39) leading to new release v1.10.1
1081
+
11. Thanks to [Dirk Vranckaert](https://github.com/dirkvranckaert) to report [Callback behaviour is buggy (ESP8266) #43](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/43) leading to new release v1.10.1
1080
1082
1081
1083
<table>
1082
1084
<tr>
@@ -1091,6 +1093,8 @@ This library is based on, modified, bug-fixed and improved from:
0 commit comments