Skip to content

Releases: coder/websocket

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.

v1.6.3

24 Sep 18:20
433c00d
Compare
Choose a tag to compare
  • Ensure received message order on Wasm #148

v1.6.2

23 Sep 04:40
02654a7
Compare
Choose a tag to compare
  • Implement Conn's Reader, Writer and SetReadLimit methods for WASM #146

v1.6.1

22 Sep 20:14
8c54bd9
Compare
Choose a tag to compare
  • Allow concurrent access to NetConn wrapper's Read #145
  • Implement CloseRead for WASM #144

v1.6.0

22 Sep 18:43
4918725
Compare
Choose a tag to compare

v1.5.1

04 Sep 00:43
21cd45d
Compare
Choose a tag to compare
  • Removed golang.org/x dependencies (#134, #135)

v1.5.0

02 Sep 18:55
1f053d9
Compare
Choose a tag to compare
  • Rewrote autobahn test suite in pure Go (#129)
    • The entire test suite now runs in 2.8s 🎉
  • Improved test coverage to 91% (#123, #126)
  • Modified NetConn wrapper to take context.Context as first argument (#131)
    • This is a breaking change but relatively minor so I don't think it's worth a major release.
  • Modified Dial/Accept to accept a pointer to option structs (#122, #123)
    • This is a breaking change but relatively minor so I don't think it's worth a major release.
  • Reduced Reader/Writer allocations to only 8 bytes (#116, #118)

v1.4.0

16 Aug 21:10
dd38de5
Compare
Choose a tag to compare
  • Add msgType parameter to NetConn adapter #114

v1.3.3

07 Aug 04:13
3a7c15d
Compare
Choose a tag to compare
  • Fixes a bug in the net.Conn wrapper #111

v1.3.2

24 Jul 22:57
2c06c36
Compare
Choose a tag to compare
  • Improved behaviour when receiving close frames (#109)