Skip to content

Releases: coder/websocket

v1.8.2

16 Feb 23:51
7eb5119
Compare
Choose a tag to compare
  • Fixed a bug in accept code with multiple tokens in a header #189

v1.8.1

16 Feb 09:03
fbd323c
Compare
Choose a tag to compare
  • Fixes a bug in permessage-deflate parameter negotiation #188

v1.8.0

16 Feb 05:35
94f9b71
Compare
Choose a tag to compare

v1.7.4

09 Nov 22:35
edda9c6
Compare
Choose a tag to compare
  • Dramatically optimize WebSocket masking algorithm implementation #171
    • We are now 1.75x faster than gorilla/websocket and gobwas/ws all while using pure safe Go
    • Thanks @renthraysk

v1.7.3

05 Nov 00:13
f178ccf
Compare
Choose a tag to compare

v1.7.2

23 Oct 13:58
8bf8877
Compare
Choose a tag to compare
  • Fix concurrent reads with close handshake #164

v1.7.1

11 Oct 23:31
bc4fce0
Compare
Choose a tag to compare
  • Minor documentation improvements
  • Improved close handshake behaviour bc4fce0
  • Removed the typescript CI in favour of make 4d4a02d

v1.7.0

09 Oct 01:16
09910a2
Compare
Choose a tag to compare
  • Implement close handshake #160
  • Add CloseStatus convenience wrapper to get StatusCode from CloseError #159

v1.6.5

29 Sep 17:58
dfce1fc
Compare
Choose a tag to compare
  • Fixed WASM Subprotocol selection #155

v1.6.4

27 Sep 20:43
9b8320e
Compare
Choose a tag to compare
  • Fix improper use of sync/atomic on 32 bit systems causing panics #154
  • Improve godoc and fix code style (#149, #150, #151)
  • Allows concurrent use of SetReadLimit in respect to the Read goroutine #154
    • Reasoning behind this change is that if you are handling messages async to the read goroutine, you might
      want to adjust the read limit in those instead co-ordinating explicitly with the read goroutine.