1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-28 09:42:40 +01:00

Merge branch 'master' of github.com:actix/actix-web

This commit is contained in:
Nikolay Kim 2018-04-11 19:05:34 -07:00
commit d39b531537

View File

@ -3,27 +3,27 @@
* `HttpResponseBuilder::body()`, `.finish()`, `.json()` * `HttpResponseBuilder::body()`, `.finish()`, `.json()`
methods return `HttpResponse` instead of `Result<HttpResponse>` methods return `HttpResponse` instead of `Result<HttpResponse>`
* `actix_web::Method`, `actix_web::StatusCode`, actix_web::Version` * `actix_web::Method`, `actix_web::StatusCode`, `actix_web::Version`
moved to `actix_web::http` module moved to `actix_web::http` module
* `actix_web::header` moved to `actix_web::http::header` * `actix_web::header` moved to `actix_web::http::header`
* `NormalizePath` moved to `actix_web::http` module * `NormalizePath` moved to `actix_web::http` module
* `HttpServer` moved to `actix_web::server`, added new `actix_web::server::new` function * `HttpServer` moved to `actix_web::server`, added new `actix_web::server::new()` function,
same as `actix_web::server::HttpServer::new` shortcut for `actix_web::server::HttpServer::new()`
* `DefaultHeaders` middleware does not use seprate builder * `DefaultHeaders` middleware does not use separate builder, all builder methods moved to type itself
* `StaticFiles::new()`'s show_index removed, use `show_files_listing` method instead. * `StaticFiles::new()`'s show_index parameter removed, use `show_files_listing()` method instead.
* `CookieSessionBackendBuilder` removed, all methods moved to `CookieSessionBackend` type * `CookieSessionBackendBuilder` removed, all methods moved to `CookieSessionBackend` type
* `actix_web::httpcodes` module is deprecated, `HttpResponse::Ok()` and other fn * `actix_web::httpcodes` module is deprecated, `HttpResponse::Ok()`, `HttpResponse::Found()` and other `HttpResponse::XXX()`
should be used instead functions should be used instead
* `ClientRequestBuilder::body()` returns `Result<_, actix_web::Error>` * `ClientRequestBuilder::body()` returns `Result<_, actix_web::Error>`
instead of `http::Error` instead of `Result<_, http::Error>`
* `Application` renamed to a `App` * `Application` renamed to a `App`