Changelog History
Page 6
-
v2.0.0-alpha.3 Changes
December 07, 2019[2.0.0-alpha.3] - 2020-05-08
๐ Fixed
- ๐ Correct spelling of ConnectError::Unresolved #1487
- ๐ Fix a mistake in the encoding of websocket continuation messages wherein
Item::FirstText and Item::FirstBinary are each encoded as the other.
๐ Changed
- ๐ Implement
std::error::Error
for our custom errors #1422 - โ Remove
failure
support forResponseError
since that crate
๐ will be deprecated in the near future.
-
v2.0.0-alpha.2 Changes
March 07, 2020๐ Changes
๐ Changed
โก๏ธ Update
actix-connect
andactix-tls
dependency to 2.0.0-alpha.1. #1395๐ Change default initial window size and connection window size for HTTP2 to 2MB and 1MB respectively
๐ to improve download speed for awc when downloading large objects. #1394client::Connector accepts initial_window_size and initial_connection_window_size HTTP2 configuration. #1394
client::Connector allowing to set max_http_version to limit HTTP version to be used. #1394
-
v2.0.0-alpha.1 Changes
November 22, 2019๐ Changes
- โก๏ธ Update
actix-http
dependency to 2.0.0-alpha.2 - โก๏ธ Update
rustls
dependency to 0.17 - ClientBuilder accepts initial_window_size and initial_connection_window_size HTTP2 configuration
- ClientBuilder allowing to set max_http_version to limit HTTP version to be used
- โก๏ธ Update
-
v1.0.9 Changes
November 14, 2019โ Added
- โ Add
Payload::into_inner
method and make storeddef::Payload
public. (#1110)
๐ Changed
- ๐ Support
Host
guards when theHost
header is unset (e.g. HTTP/2 requests) (#1129)
- โ Add
-
v1.0.8 Changes
September 25, 2019โ Added
Add
Scope::register_data
andResource::register_data
methods, parallel toApp::register_data
.โ Add
middleware::Condition
that conditionally enables another middleware๐ Allow to re-construct
ServiceRequest
fromHttpRequest
andPayload
โ Add
HttpServer::listen_uds
for ability to listen on UDS FD rather than path, which is useful for example with systemd.
๐ Changed
๐ Make UrlEncodedError::Overflow more informativve
โ Use actix-testing for testing utils
-
v1.0.7 Changes
August 29, 2019๐ Fixed
- Request Extensions leak #1062
-
v1.0.6 Changes
August 28, 2019โ Added
Re-implement Host predicate (#989)
Form immplements Responder, returning a
application/x-www-form-urlencoded
responseโ Add
into_inner
toData
โ Add
test::TestRequest::set_form()
convenience method to automatically serialize data and set the header in test requests.
๐ Changed
๐ฐ
Query
payload madepub
. Allows user to pattern-match the payload.Enable
rust-tls
feature for client #1045โก๏ธ Update serde_urlencoded to 0.6.1
โก๏ธ Update url to 2.1
-
v1.0.5 Changes
July 18, 2019โ Added
Unix domain sockets (HttpServer::bind_uds) #92
๐ Actix now logs errors resulting in "internal server error" responses always, with the
error
logging level
๐ Fixed
- โช Restored logging of errors through the
Logger
middleware
-
v1.0.4 Changes
July 17, 2019โ Added
โ Add
Responder
impl for(T, StatusCode) where T: Responder
๐ Allow to access app's resource map via
ServiceRequest::resource_map()
andHttpRequest::resource_map()
methods.
๐ Changed
- โฌ๏ธ Upgrade
rand
dependency version to 0.7
-
v1.0.3 Changes
June 28, 2019โ Added
- ๐ Support asynchronous data factories #850
๐ Changed
- Use
encoding_rs
crate instead of unmaintainedencoding
crate