Nhooyr Websocket Versions Save

Minimal and idiomatic WebSocket library for Go

v1.8.1

4 years ago
  • Fixes a bug in permessage-deflate parameter negotiation #188

v1.8.0

4 years ago

v1.7.4

4 years ago
  • 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

4 years ago
  • Fixes race with Read after Close #168
    • Thanks @andersfylling

v1.7.2

4 years ago
  • Fix concurrent reads with close handshake #164

v1.7.1

4 years ago

v1.7.0

4 years ago
  • Implement close handshake #160
  • Add CloseStatus convenience wrapper to get StatusCode from CloseError #159

v1.6.5

4 years ago
  • Fixed WASM Subprotocol selection #155

v1.6.4

4 years ago
  • Fix improper use of sync/atomic on 32 bit systems causing panics #154
    • Thanks @andersfylling for reporting this issue.
  • Improve godoc and fix code style (#149, #150, #151)
    • Thanks @cristaloleg
  • 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.

v1.6.3

4 years ago
  • Ensure received message order on Wasm #148