All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Fixed a compilation warning present with Elixir 1.17+ about "
4..1
" not using a range step.
- Unexpected continuation frames are now handled.
- Previously, unexpected continuation frames received from a server would result in a FunctionClauseError.
- Dialyzer errors have been fixed and specs have been improved.
- WebSocket frames are now correctly buffered when a partially received frame is split in the payload-length segment.
v1.0.0 is released!
We've been using Mint.WebSocket
in production for the better part of a year
without trouble.
v1.0.0 is code-wise the same as v0.3.0: it represents a stability milestone.
Mint.WebSocket
will now follow semantic versioning, so any breaking changes
will result in a v2.0.0.
- Failure to upgrade now gives a
Mint.WebSocket.UpgradeFailureError
as the error when a server returns a status code other than 101 for HTTP/1 or a status code outside the range 200..299 range for HTTP/2.
This release is a breaking change from the 0.1.0 series. This update removes
all instances where Mint.WebSocket would access opaque t:Mint.HTTP.t/0
fields
or call private functions within Mint.HTTP1
, so now Mint.WebSocket should be
more compatible with future changes to Mint.
First, add the scheme
argument to calls to Mint.WebSocket.upgrade/5
.
For connections formed with Mint.HTTP.connect(:http, ..)
, use the :ws
scheme. For Mint.HTTP.connect(:https, ..)
, use :wss
.
- Mint.WebSocket.upgrade(conn, path, headers)
+ Mint.WebSocket.upgrade(scheme, conn, path, headers)
Then replace calls to Mint.HTTP.stream/2
and/or Mint.HTTP.recv/3
and
Mint.HTTP.stream_request_body/3
with the new Mint.WebSocket
wrappers.
This is safe to do even when these functions are being used to send and
receive data in normal HTTP requests: the functionality only changes when
the connection is an established HTTP/1 WebSocket.
- Added
Mint.WebSocket.stream/2
which wrapsMint.HTTP.stream/2
- Added
Mint.WebSocket.recv/3
which wrapsMint.HTTP.recv/3
- Added
Mint.WebSocket.stream_request_body/3
which wrapsMint.HTTP.stream_request_body/3
- Changed function signature of
Mint.Websocket.upgrade/5
to accept the WebSocket's scheme (:ws
or:wss
) as the first argument - Added an optional
opts
argument toMint.WebSocket.new/5
to control active vs. passive mode on the socket - Restricted compatible Mint versions to
~> 1.4
Mint.WebSocket
now usesMint.HTTP.get_protocol/1
which was introduced in1.4.0
.
- Fixed typespec for
Mint.WebSocket.new/4
- Switch from using
Bitwise.bor/2
to:erlang.bor/2
for compatibility with Elixir < 1.10
- Switch from using
Bitwise.bxor/2
to:erlang.bxor/2
for compatibility with Elixir < 1.10
- Close frame codes and reasons are now nillable instead of defaulted
- The WebSocket spec does not require that a code and reason be included for all close frames
- Initial implementation
- includes HTTP/1.1 and HTTP/2 support and extensions