You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3.9 KiB
3.9 KiB
0.19.0
- Update TLS dependencies.
- Exchanging
base64
fordata-encoding
.
0.18.0
- Make handshake dependencies optional with a new
handshake
feature (now a default one!). - Return HTTP error responses (their HTTP body) upon non 101 status codes.
0.17.3
- Respect the case-sentitivity of the "Origin" header to keep compatibility with the older servers that use case-sensitive comparison.
0.17.2
- Fix panic when invalid manually constructed
http::Request
is passed totungstenite
. - Downgrade the MSRV to
1.56
due to some other crates that rely on us not being quite ready for1.58
.
0.17.1
- Specify the minimum required Rust version.
0.17.0
- Update of dependencies (primarily
sha1
). - Add support of the fragmented messages (allow the user to send the frames without composing the full message).
- Overhaul of the client's request generation process. Now the users are able to pass the constructed
http::Request
"as is" totungstenite-rs
, letting the library to check the correctness of the request and specifying their own headers (including its own key if necessary). No changes for those ones who used the client in a normal way by connecting using a URL/URI (most common use-case).
0.16.0
- Update of dependencies (primarily
rustls
,webpki-roots
,rustls-native-certs
). - When the close frame is received, the reply that is automatically sent to the initiator has the same code (so we just echo the frame back). Previously a new close frame was created (i.e. the close code / reason was always the same regardless of what code / reason specified by the initiator). Now it’s more symmetrical and arguably more intuitive behavior (see #246 for more context).
- The internal
ReadBuffer
implementation uses heap instead of stack to store the buffer. This should solve issues with possible stack overflows in some scenarios (see #241 for more context).
0.15.0
- Allow selecting the method of loading root certificates if
rustls
is used as TLS implementation.- Two new feature flags
rustls-tls-native-roots
andrustls-tls-webpki-roots
have been added that activate the respective method to load certificates. - The
rustls-tls
flag was removed to raise awareness of this change. Otherwise, compilation would have continue to work and potential errors (due to different or missing certificates) only occurred at runtime. - The new feature flags are additive. If both are enabled, both methods will be used to add certificates to the TLS configuration.
- Two new feature flags
- Allow specifying a connector (for more fine-grained configuration of the TLS).
0.14.0
- Use
rustls-native-certs
instead ofwebpki-root
whenrustls-tls
feature is enabled. - Don't use
native-tls
as a default feature (see #202 for more details). - New fast and safe implementation of the reading buffer (replacement for the
input_buffer
). - Remove some errors from the
Error
enum that can't be triggered anymore with the new buffer implementation.
0.13.0
- Add
CapacityError
,UrlError
, andProtocolError
types to represent the different types of capacity, URL, and protocol errors respectively. - Modify variants
Error::Capacity
,Error::Url
, andError::Protocol
to hold the above errors types instead of string error messages. - Add
handshake::derive_accept_key
to facilitate external handshakes. - Add support for
rustls
as TLS backend. The previoustls
feature flag is now removed in favor ofnative-tls
andrustls-tls
, which allows to pick the TLS backend. The error API surface had to be changed to support the new error types coming from rustls related crates.
0.12.0
- Add facilities to allow clients to follow HTTP 3XX redirects.
- Allow accepting unmasked clients on the server side to be compatible with some legacy / invalid clients.
- Update of dependencies and documentation fixes.