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

Commit 1e176f0

Browse files
authored
Major Releases v1.4.0
### Major Releases v1.4.0 1. Add **LittleFS and SPIFFS** support to new **ESP32-S2** boards (**Arduino ESP32C3_DEV**). Check [HOWTO Install esp32 core for ESP32-S2 (Saola, AI-Thinker ESP-12K) and ESP32-C3 boards into Arduino IDE](#howto-install-esp32-core-for-esp32-s2-saola-ai-thinker-esp-12k-and-esp32-c3-boards-into-arduino-ide). 2. Add **EEPROM and SPIFFS** support to new **ESP32-C3** boards (**Arduino ESP32C3_DEV**). Check [HOWTO Install esp32 core for ESP32-S2 (Saola, AI-Thinker ESP-12K) and ESP32-C3 boards into Arduino IDE](#howto-install-esp32-core-for-esp32-s2-saola-ai-thinker-esp-12k-and-esp32-c3-boards-into-arduino-ide). 3. Fix SSL issue with Blynk Cloud Server 4. Update examples
1 parent d2db0fb commit 1e176f0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
* [Why do we need this Blynk_Async_WM library](#why-do-we-need-this-blynk_async_wm-library)
1616
* [Features](#features)
1717
* [Why using Async](#why-using-async)
18+
* [Why using SSL insecured mode now](#why-using-ssl-insecured-mode-now)
1819
* [Currently supported Boards](#currently-supported-boards)
1920
* [Changelog](#changelog)
2021
* [Major Releases v1.4.0](#major-releases-v140)
@@ -157,6 +158,18 @@ Thanks to this [**Blynk_Async_WM library**](https://github.com/khoih-prog/Blynk_
157158
- ServeStatic plugin that supports cache, Last-Modified, default index and more
158159
- Simple template processing engine to handle templates
159160

161+
#### Why using SSL insecured mode now
162+
163+
This so-called **"insecured mode"**
164+
165+
1. permits you to actually connect to a **TLS server** (port 443,9443, etc., especially with expired CA Certs such as **Blynk Cloud**). It won't let you connect to plain non-SSL server because full encryption is still required.
166+
2. You never have to worry about CA Certs' update and to include every trusted CA root certificate of every TLS server
167+
3. Still requires **encryption**. It just does not **validate the certificate or fingerprint**. Insecure because we could be subject to a **MITM** (**M**an-**I**n-**T**he-**M**iddle) attack.
168+
4. It's still much better than **plain non-SSL** mode which just communicates using no encryption at all.
169+
170+
So this is the much better choice.
171+
172+
For more information, check [Blynk WiFiManager for ESP8266/ESP32 (including ESP32-S2, ESP32-C3) with Multi-WiFi and Multi-Blynk. Fix SSL issue for Blynk Cloud Server now](https://community.blynk.cc/t/blynk-wifimanager-for-esp8266-esp32-including-esp32-s2-esp32-c3-with-multi-wifi-and-multi-blynk-fix-ssl-issue-for-blynk-cloud-server-now/41011/40) and [ESP8266 SSL connections down using Blynk_WiFiManager (ESP32 works fine, non-SSL 8266 works fine)](https://community.blynk.cc/t/esp8266-ssl-connections-down-using-blynk-wifimanager-esp32-works-fine-non-ssl-8266-works-fine/52144/19)
160173

161174
#### Currently supported Boards
162175

@@ -3154,6 +3167,10 @@ Submit issues to: [Blynk_Async_WM issues](https://github.com/khoih-prog/Blynk_As
31543167
23. Add Table of Contents and Version String
31553168
24. Clean-up all compiler warnings possible.
31563169
25. Add functions to control Config Portal from software or **Virtual Switches**.
3170+
26. Add support to **ESP32-S2 (ESP32-S2 Saola, AI-Thinker ESP-12K, etc.) using EEPROM, LittleFS and SPIFFS**
3171+
27. Configurable **Customs HTML Headers**, including Customs Style, Customs Head Elements, CORS Header
3172+
28. Add support to **ESP32-C3 using EEPROM and SPIFFS**
3173+
29. Fix SSL issue with Blynk Cloud Server by using SSL in unsecured mode. For more information, check [Blynk WiFiManager for ESP8266/ESP32 (including ESP32-S2, ESP32-C3) with Multi-WiFi and Multi-Blynk. Fix SSL issue for Blynk Cloud Server now](https://community.blynk.cc/t/blynk-wifimanager-for-esp8266-esp32-including-esp32-s2-esp32-c3-with-multi-wifi-and-multi-blynk-fix-ssl-issue-for-blynk-cloud-server-now/41011/40) and [ESP8266 SSL connections down using Blynk_WiFiManager (ESP32 works fine, non-SSL 8266 works fine)](https://community.blynk.cc/t/esp8266-ssl-connections-down-using-blynk-wifimanager-esp32-works-fine-non-ssl-8266-works-fine/52144/19)
31573174

31583175

31593176
---

0 commit comments

Comments
 (0)