Skip to content

Releases: gilmaimon/ArduinoWebsockets

0.4.2

24 May 00:30
Compare
Choose a tag to compare

Patch! Adressed masking issues - server to client messages would get masked but RFC forbbids it. (changes merged from TinyWebsockets)

0.4.1

18 May 13:41
Compare
Choose a tag to compare

Patch:
Adressed issues with websockets-masking (issue #9)
Updated the fingerprint for esp8266's WSS example.

0.4.0

22 Apr 16:22
Compare
Choose a tag to compare

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).

0.3.5

06 Apr 12:43
Compare
Choose a tag to compare

Minimal support for WSS for esp8266 only

0.3.4

14 Mar 17:11
Compare
Choose a tag to compare

Patch: changed underling tcp impl for esp8266 and esp32 to use setNoDelay(true) instead of sync communication. This makes communication faster and more relaiable than default. Thank you @ramdor for pointing out these methods.

0.3.3

13 Mar 22:31
Compare
Choose a tag to compare

Small patch, Fixed a bug in the esp8266 networking impl.

0.3.2

12 Mar 21:06
Compare
Choose a tag to compare

HOTFIX: Fixed a bug with behaviour of WebsokcetsClient (copy c'tor and assignment operator). Added close codes from TinyWebsockets. Thank you @ramdor

0.3.1

08 Mar 01:58
Compare
Choose a tag to compare
  • Callback interface changes (allows for minimal callbacks without WebsocketsClient&).
  • Fixed close event not called when calling close().

0.3.0

06 Mar 22:26
Compare
Choose a tag to compare

Many new features:

  1. Weboskcets Server is now possible with WebsocketsServer class
  2. Better client and server handling for esp8266 and esp32
  3. Better Handling of fragmented messages
  4. Fixed impl of readBlocking on esp8266 and esp32

See more info on the TinyWebsockets Wiki

0.2.1

25 Feb 15:54
Compare
Choose a tag to compare

Tiny patch, fixed missing interface changes from last rework (user facing strings)