From 2a14946ddc6578680fffba0d6e631670436f6d16 Mon Sep 17 00:00:00 2001 From: Gil Maimon Date: Fri, 7 Jun 2019 13:10:22 +0300 Subject: [PATCH] Advanced to path 0.4.3 - FireFox client issues now fixed --- README.md | 5 +++-- library.properties | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d811117..3431eeb 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The library provides simple and easy interface for websockets work (Client and S This section should help you get started with the library. If you have any questions feel free to open an issue. ### Prerequisites -Currently (version 0.4.2) the library only works with `ESP8266` and `ESP32`. +Currently (version 0.4.*) the library only works with `ESP8266` and `ESP32`. ### Installing @@ -249,4 +249,5 @@ Contributions are welcomed! Please open issues if you have troubles while using - **06/04/2019 (v0.3.5)** - added very basic support for WSS in esp8266 (no support for fingerprint/ca or any kind of chain validation). - **22/04/2019 (v0.4.0)** - Added WSS support for both esp8266 and esp32. E328266 can use `client.setInsecure()` (does not validate certificate chain) or `client.setFingerprint(fingerprint)` in order to use WSS. With ESP32 there is `client.setCACert(certificate)` that can be used. (Usage is same as the built in `WiFiClientSecure`). - **18/05/2019 (v0.4.1)** - Patch! Addressed an error with some servers. The bugs where first noted in [issue #9](https://github.com/gilmaimon/ArduinoWebsockets/issues/9). Bug was that some servers will drop connections that don't use masking, and TinyWebsockets does not use masking by default. TinyWebsockets changed that and this library merged the changes. -- **24/05/2019 (v0.4.2)** - Patch! Adressed masking issues - server to client messages would get masked but RFC forbbids it. (changes merged from TinyWebsockets) \ No newline at end of file +- **24/05/2019 (v0.4.2)** - Patch! Adressed masking issues - server to client messages would get masked but RFC forbbids it. (changes merged from TinyWebsockets) +- **07/06/2019 (v0.4.3)** - Patch! Fixed a bug on some clients (mainly FireFox websokcets impl). Thank you @xgarb ([related issue](https://github.com/gilmaimon/ArduinoWebsockets/issues/11)) \ No newline at end of file diff --git a/library.properties b/library.properties index 9bd0130..f8373ca 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ArduinoWebsockets -version=0.4.2 +version=0.4.3 author=Gil Maimon maintainer=Gil Maimon sentence=A library for writing modern Websockets applications with Arduino.