- Add helper function for creating routes with
TRACE
method guardweb::trace()
- Use
sha-1
crate instead of unmaintainedsha1
crate - Skip empty chunks when returning response from a
Stream
#1308 - Update the
time
dependency to 0.2.7 - Update
actix-tls
dependency to 2.0.0-alpha.1 - Update
rustls
dependency to 0.17
-
Rename
HttpServer::start()
toHttpServer::run()
-
Allow to gracefully stop test server via
TestServer::stop()
-
Allow to specify multi-patterns for resources
-
Move
BodyEncoding
todev
module #1220 -
Allow to set
peer_addr
for TestRequest #1074 -
Make web::Data deref to Arc #1214
-
Rename
App::register_data()
toApp::app_data()
-
HttpRequest::app_data<T>()
returnsOption<&T>
instead ofOption<&Data<T>>
- Fix
AppConfig::secure()
is always false. #1202
- Fixed compilation with default features off
- Add test server,
test::start()
andtest::start_with()
- Delete HttpServer::run(), it is not useful witht async/await
- Migrate to tokio 0.2
-
Migrated to
std::future
-
Remove implementation of
Responder
for()
. (#1167)
- Add
Payload::into_inner
method and make storeddef::Payload
public. (#1110)
- Support
Host
guards when theHost
header is unset (e.g. HTTP/2 requests) (#1129)
-
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.
-
Make UrlEncodedError::Overflow more informativve
-
Use actix-testing for testing utils
- Request Extensions leak #1062
-
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.
-
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
-
Unix domain sockets (HttpServer::bind_uds) #92
-
Actix now logs errors resulting in "internal server error" responses always, with the
error
logging level
- Restored logging of errors through the
Logger
middleware
-
Add
Responder
impl for(T, StatusCode) where T: Responder
-
Allow to access app's resource map via
ServiceRequest::resource_map()
andHttpRequest::resource_map()
methods.
- Upgrade
rand
dependency version to 0.7
- Support asynchronous data factories #850
- Use
encoding_rs
crate instead of unmaintainedencoding
crate
-
Move cors middleware to
actix-cors
crate. -
Move identity middleware to
actix-identity
crate.
-
Add support for PathConfig #903
-
Add
middleware::identity::RequestIdentity
trait toget_identity
fromHttpMessage
.
-
Move cors middleware to
actix-cors
crate. -
Move identity middleware to
actix-identity
crate. -
Disable default feature
secure-cookies
. -
Allow to test an app that uses async actors #897
-
Re-apply patch from #637 #894
- HttpRequest::url_for is broken with nested scopes #915
-
Add
Scope::configure()
method. -
Add
ServiceRequest::set_payload()
method. -
Add
test::TestRequest::set_json()
convenience method to automatically serialize data and set header in test requests. -
Add macros for head, options, trace, connect and patch http methods
- Drop an unnecessary
Option<_>
indirection aroundServerBuilder
fromHttpServer
. #863
-
Fix Logger request time format, and use rfc3339. #867
-
Clear http requests pool on app service drop #860
- Add
Query<T>::from_query()
to extract parameters from a query string. #846 QueryConfig
, similar toJsonConfig
for customizing error handling of query extractors.
JsonConfig
is nowSend + Sync
, this implies thaterror_handler
must beSend + Sync
too.
- Codegen with parameters in the path only resolves the first registered endpoint #841
- Allow to set/override app data on scope level
App::configure
take anFnOnce
instead ofFn
- Upgrade actix-net crates
- Add helper function for executing futures
test::block_fn()
-
Extractor configuration could be registered with
App::data()
or withResource::data()
#775 -
Route data is unified with app data,
Route::data()
moved to resource level toResource::data()
-
CORS handling without headers #702
-
Allow to construct
Data
instances to avoid doubleArc
forSend + Sync
types.
- Fix
NormalizePath
middleware impl #806
App::data_factory()
is deleted.
-
Add raw services support via
web::service()
-
Add helper functions for reading response body
test::read_body()
-
Add support for
remainder match
(i.e "/path/{tail}*") -
Extend
Responder
trait, allow to override status code and headers. -
Store visit and login timestamp in the identity cookie #502
.to_async()
handler can returnResponder
type #792
- Fix async web::Data factory handling
-
Add helper functions for reading test response body,
test::read_response()
and test::read_response_json()` -
Add
.peer_addr()
#744 -
Add
NormalizePath
middleware
-
Rename
RouterConfig
toServiceConfig
-
Rename
test::call_success
totest::call_service
-
Removed
ServiceRequest::from_parts()
as it is unsafe to create from parts. -
CookieIdentityPolicy::max_age()
accepts value in seconds
- Fixed
TestRequest::app_data()
-
Allow to use any service as default service.
-
Remove generic type for request payload, always use default.
-
Removed
Decompress
middleware. Bytes, String, Json, Form extractors automatically decompress payload. -
Make extractor config type explicit. Add
FromRequest::Config
associated type.
- Added async io
TestBuffer
for testing.
- Removed native-tls support
-
App::configure()
allow to offload app configuration to different methods -
Added
URLPath
option for logger -
Added
ServiceRequest::app_data()
, returnsData<T>
-
Added
ServiceFromRequest::app_data()
, returnsData<T>
-
FromRequest
trait refactoring -
Move multipart support to actix-multipart crate
- Fix body propagation in Response::from_error. #760
-
Renamed
TestRequest::to_service()
toTestRequest::to_srv_request()
-
Renamed
TestRequest::to_response()
toTestRequest::to_srv_response()
-
Removed
Deref
impls
- Removed unused
actix_web::web::md()
- rustls support
-
use forked cookie
-
multipart::Field renamed to MultipartField
-
Complete architecture re-design.
-
Return 405 response if no matching route found within resource #538