2018-04-11 23:46:21 +00:00
|
|
|
# Migration from 0.4 to 0.5
|
|
|
|
|
|
|
|
* `HttpResponseBuilder::body()`, `.finish()`, `.json()`
|
|
|
|
methods return `HttpResponse` instead of `Result<HttpResponse>`
|
|
|
|
|
2018-04-11 23:49:45 +00:00
|
|
|
* `actix_web::Method`, `actix_web::StatusCode`, `actix_web::Version`
|
2018-04-11 23:46:21 +00:00
|
|
|
moved to `actix_web::http` module
|
|
|
|
|
|
|
|
* `actix_web::header` moved to `actix_web::http::header`
|
|
|
|
|
|
|
|
* `NormalizePath` moved to `actix_web::http` module
|
|
|
|
|
2018-04-11 23:53:27 +00:00
|
|
|
* `HttpServer` moved to `actix_web::server`, added new `actix_web::server::new()` function,
|
|
|
|
shortcut for `actix_web::server::HttpServer::new()`
|
2018-04-11 23:46:21 +00:00
|
|
|
|
2018-04-11 23:53:27 +00:00
|
|
|
* `DefaultHeaders` middleware does not use separate builder, all builder methods moved to type itself
|
2018-04-11 23:46:21 +00:00
|
|
|
|
2018-04-11 23:53:27 +00:00
|
|
|
* `StaticFiles::new()`'s show_index parameter removed, use `show_files_listing()` method instead.
|
2018-04-11 23:46:21 +00:00
|
|
|
|
|
|
|
* `CookieSessionBackendBuilder` removed, all methods moved to `CookieSessionBackend` type
|
|
|
|
|
2018-04-11 23:53:27 +00:00
|
|
|
* `actix_web::httpcodes` module is deprecated, `HttpResponse::Ok()`, `HttpResponse::Found()` and other `HttpResponse::XXX()`
|
|
|
|
functions should be used instead
|
2018-04-11 23:46:21 +00:00
|
|
|
|
|
|
|
* `ClientRequestBuilder::body()` returns `Result<_, actix_web::Error>`
|
2018-04-11 23:53:27 +00:00
|
|
|
instead of `Result<_, http::Error>`
|
2018-04-11 23:46:21 +00:00
|
|
|
|
|
|
|
* `Application` renamed to a `App`
|
|
|
|
|
|
|
|
* `actix_web::Reply`, `actix_web::Resource` moved to `actix_web::dev`
|