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

Commit d7f3a7b

Browse files
authored
v1.4.2 to fix libb64 fallthrough compile warning
### Releases v1.4.2 1. Fix libb64 `fallthrough` compile warnings
1 parent 6fbf2e1 commit d7f3a7b

22 files changed

+70
-34
lines changed

src/EthernetHttpClient_SSL_STM32.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
99
Licensed under MIT license
1010
11-
Version: 1.4.1
11+
Version: 1.4.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2323
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2424
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
25+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2526
*************************************************************************************************************************************/
2627

2728
// Library to simplify HTTP fetching on Arduino

src/EthernetWebServer_SSL_STM32-impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Licensed under MIT license
1313
14-
Version: 1.4.1
14+
Version: 1.4.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2626
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2727
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2829
*************************************************************************************************************************************/
2930

3031
#pragma once

src/EthernetWebServer_SSL_STM32.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Licensed under MIT license
1313
14-
Version: 1.4.1
14+
Version: 1.4.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2626
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2727
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2829
*************************************************************************************************************************************/
2930

3031
#pragma once
@@ -35,13 +36,13 @@
3536
#error This code is designed to run on STM32F/L/H/G/WB/MP1 platform! Please check your Tools->Board setting.
3637
#endif
3738

38-
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION "EthernetWebServer_SSL_STM32 v1.4.1"
39+
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION "EthernetWebServer_SSL_STM32 v1.4.2"
3940

4041
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MAJOR 1
4142
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MINOR 4
42-
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 1
43+
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 2
4344

44-
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1004001
45+
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1004002
4546

4647
#define USE_NEW_WEBSERVER_VERSION true
4748

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Licensed under MIT license
1313
14-
Version: 1.4.1
14+
Version: 1.4.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2626
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2727
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2829
*************************************************************************************************************************************/
2930

3031
// 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
@@ -11,7 +11,7 @@
1111
1212
Licensed under MIT license
1313
14-
Version: 1.4.1
14+
Version: 1.4.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2626
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2727
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2829
*************************************************************************************************************************************/
2930

3031
// 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
@@ -11,7 +11,7 @@
1111
1212
Licensed under MIT license
1313
14-
Version: 1.4.1
14+
Version: 1.4.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2626
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2727
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2829
*************************************************************************************************************************************/
2930

3031
// 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
@@ -11,7 +11,7 @@
1111
1212
Licensed under MIT license
1313
14-
Version: 1.4.1
14+
Version: 1.4.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2626
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2727
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2829
*************************************************************************************************************************************/
2930

3031
// 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
@@ -11,7 +11,7 @@
1111
1212
Licensed under MIT license
1313
14-
Version: 1.4.1
14+
Version: 1.4.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2626
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2727
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2829
*************************************************************************************************************************************/
2930

3031
// (c) Copyright Arduino. 2016

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Licensed under MIT license
1313
14-
Version: 1.4.1
14+
Version: 1.4.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2626
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2727
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2829
*************************************************************************************************************************************/
2930

3031
// (c) Copyright Arduino. 2016

src/Parsing_SSL_STM32-impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Licensed under MIT license
1313
14-
Version: 1.4.1
14+
Version: 1.4.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
2626
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
2727
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28+
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2829
*************************************************************************************************************************************/
2930

3031
#pragma once

0 commit comments

Comments
 (0)