Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit b60a54a

Browse files
authored
v2.0.0 to permit HTTP/HTTPS
### Releases v2.0.0 1. Breaking change to permit coexisting with AsyncHTTPRequest library to send and receive both HTTP and HTTPS. 1. Add example [AsyncHTTP_HTTPSRequest_ESP](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/tree/main/examples/AsyncHTTP_HTTPSRequest_ESP) to demonstrate how to send HTTP and HTTPS requests to multiple addresses and receive responses from them.
1 parent 5360e66 commit b60a54a

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@
4444
* [1. AsyncHTTPSRequest_WT32_ETH01](examples/WT32_ETH01/AsyncHTTPSRequest_WT32_ETH01)
4545
* [For ESP32 or WT32_ETH01](#for-esp32-or-WT32_ETH01)
4646
* [1. multiFileProject](examples/multiFileProject)
47-
* [Example AsyncHTTPSRequest_ESP_Multi](#example-AsyncHTTPSRequest_ESP_Multi)
48-
* [1. File AsyncHTTPSRequest_ESP_Multi.ino](#1-file-AsyncHTTPSRequest_ESP_Multi)
47+
* [Example AsyncHTTP_HTTPSRequest_ESP](#example-AsyncHTTP_HTTPSRequest_ESP)
4948
* [Debug Terminal Output Samples](#debug-terminal-output-samples)
5049
* [ 1. AsyncHTTPSRequest_ESP on ESP32_DEV](#1-AsyncHTTPSRequest_ESP-on-ESP32_DEV)
5150
* [ 2. AsyncHTTPSRequest_ESP on ESP32S2_DEV](#2-AsyncHTTPSRequest_ESP-on-ESP32S2_DEV)

library.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@
4242
"version": ">=1.4.1",
4343
"platforms": ["espressif32"]
4444
},
45+
{
46+
"owner": "khoih-prog",
47+
"name": "AsyncHTTPRequest_Generic",
48+
"version": ">=1.7.1",
49+
"platforms": ["espressif8266", "espressif32"]
50+
},
4551
{
4652
"owner": "khoih-prog",
4753
"name": "ESPAsync_WiFiManager",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ paragraph=Supporting in the future for ESP8266, Portenta_H7, STM32 with LAN8720
88
category=Communication
99
url=https://github.com/khoih-prog/AsyncHTTPSRequest_Generic
1010
architectures=*
11-
depends=AsyncTCP_SSL, WebServer_WT32_ETH01
11+
depends=AsyncTCP_SSL, WebServer_WT32_ETH01, AsyncHTTPRequest_Generic
1212
includes=AsyncHTTPSRequest_Generic.h,AsyncHTTPSRequest_Generic.hpp

platformio/platformio.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@ lib_compat_mode = strict
3939
lib_deps =
4040
; PlatformIO 4.x
4141
; AsyncTCP_SSL@>=1.2.0
42+
; AsyncHTTPRequest_Generic@>=1.7.1
4243
; WebServer_WT32_ETH01@>=1.4.1
4344
; ESPAsync_WiFiManager@>=1.12.1
4445
; PlatformIO 5.x
4546
khoih-prog/AsyncTCP_SSL@>=1.2.0
47+
khoih-prog/AsyncHTTPRequest_Generic@>=1.7.1
4648
; khoih-prog/WebServer_WT32_ETH01@>=1.4.1
4749
; khoih-prog/ESPAsync_WiFiManager@>=1.12.1
4850

0 commit comments

Comments
 (0)