Skip to content

Releases: JuliaWeb/WebSockets.jl

v1.6.0

29 Nov 13:00
811d94b
Compare
Choose a tag to compare

WebSockets v1.6.0

Diff since v1.5.9

Closed issues:

  • Cannot support proxy? (#172)
  • How to get status code from WebSocketClosedError? (#176)
  • Release version 1.5.10 (#179)

Merged pull requests:

v1.5.9

25 Jan 17:21
0e81f48
Compare
Choose a tag to compare

WebSockets v1.5.9

Diff since v1.5.8

Revert to reading a minimum of two bytes. Skip v1.5.8 because it's already tagged in git.

Closed issues:

  • Problem with SSL I/O: "MbedTLS.SSLContext does not support byte I/O" (#169)

Merged pull requests:

  • Fix "MbedTLS.SSLContext does not support byte I/O" (#170) (@albestro)

Don't read single initial byte

17 Jan 12:44
1323912
Compare
Choose a tag to compare

Bugfix from v1.5.7 concerning one byte read and MbedTLS, ref. #169, #170 .

@JuliaRegistrator register

v1.5.7

18 Dec 22:37
3fe9cbf
Compare
Choose a tag to compare

WebSockets v1.5.7

Diff since v1.5.6

Closed issues:

  • Failed to open a websocket server path (#154)
  • Tag 0.5.3 didn't register (#166)

Merged pull requests:

v1.5.6

18 Dec 18:37
a2bb02f
Compare
Choose a tag to compare

WebSockets v1.5.6

Diff since v1.5.5

Merged pull requests:

v1.5.5

16 Dec 22:53
4ba54bd
Compare
Choose a tag to compare

WebSockets v1.5.5

Diff since v1.5.4

Fix travis and version.
Maintenance on printing tests.
Logging macro hygiene changes between Julia 0.7 and Julia 1.0 finally fixed.
Dropping 0.7 tests.

Merged pull requests:

Update badges and tagbot.yml

13 Dec 09:44
a74ba11
Compare
Choose a tag to compare
Merge pull request #167 from hustf/FixTravisAndVersion

Fix travis and version

Final fixes before introducing HTTP 0.9 compatibility.

12 Dec 21:44
a47f2ab
Compare
Choose a tag to compare

Maintenance on printing tests.
Logging macro hygiene changes between Julia 0.7 and Julia 1.0 finally fixed.
Dropping 0.7 tests.

Bugfixes

24 Mar 14:23
820fba8
Compare
Choose a tag to compare

Fixes issue 147 and 148.
Replaces not usually user-facing definition:

const WebSockets.DEFAULTOPTIONS

with

WebSockets.default_options()

Allow serve(host::IPv4 ...) in addition to serve(host::AbstractString...)

23 Mar 11:48
b160e60
Compare
Choose a tag to compare

erve(host::IPv4 ...) was unintentionally dropped at v1.5.0.

Pull request #145 by @piever reinstates this method.