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

Commit 560c3f0

Browse files
authored
v1.7.8 to Sync with SSLClient v1.6.11
### Releases v1.7.8 1. Sync with [SSLClient v1.6.11](https://github.com/OPEnSLab-OSU/SSLClient/releases/tag/v1.6.11). Check [Pull in OPEnSLab-OSU's SSLClient v1.6.11 #17](#17) 2. Add example [AWS_IoT](examples/AWS_IoT) 3. Change default SS pin for RP2040 using [ArduinoCore-mbed core](https://github.com/arduino/ArduinoCore-mbed) to 17 from 5 to be the same as [arduino-pico core](https://github.com/earlephilhower/arduino-pico) 4. Update `Packages' Patches`
1 parent fa72e7a commit 560c3f0

26 files changed

+55
-29
lines changed

src/EthernetHttpClient_SSL.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,6 +23,7 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728

2829
// Library to simplify HTTP fetching on Arduino

src/EthernetWebServer_SSL-impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,6 +23,7 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728

2829
#pragma once

src/EthernetWebServer_SSL.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,17 +23,18 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728

2829
#pragma once
2930

30-
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.7.7"
31+
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.7.8"
3132

3233
#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
3334
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 7
34-
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 7
35+
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 8
3536

36-
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007007
37+
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007008
3738

3839
#define USE_NEW_WEBSERVER_VERSION true
3940

src/EthernetWrapper_SSL.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,6 +23,7 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728
#pragma once
2829

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,6 +23,7 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728

2829
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,6 +23,7 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728

2829
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,6 +23,7 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728

2829
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,6 +23,7 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728

2829
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,6 +23,7 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728

2829
// (c) Copyright Arduino. 2016

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.7
11+
Version: 1.7.8
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -23,6 +23,7 @@
2323
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26+
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2627
*****************************************************************************************************************************/
2728

2829
// (c) Copyright Arduino. 2016

0 commit comments

Comments
 (0)