From 0e3820afdffc63316ada8bb86e04e5662b6b721b Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 11 Apr 2018 16:49:45 -0700 Subject: [PATCH 1/2] Update MIGRATION-0.4-0.5.md --- MIGRATION-0.4-0.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MIGRATION-0.4-0.5.md b/MIGRATION-0.4-0.5.md index 1ba32f71b..457696bdc 100644 --- a/MIGRATION-0.4-0.5.md +++ b/MIGRATION-0.4-0.5.md @@ -3,7 +3,7 @@ * `HttpResponseBuilder::body()`, `.finish()`, `.json()` methods return `HttpResponse` instead of `Result` -* `actix_web::Method`, `actix_web::StatusCode`, actix_web::Version` +* `actix_web::Method`, `actix_web::StatusCode`, `actix_web::Version` moved to `actix_web::http` module * `actix_web::header` moved to `actix_web::http::header` From 0624f9b9d9ef780a02cbaa2cdd033fe2e6106ad4 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 11 Apr 2018 16:53:27 -0700 Subject: [PATCH 2/2] Update MIGRATION-0.4-0.5.md --- MIGRATION-0.4-0.5.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/MIGRATION-0.4-0.5.md b/MIGRATION-0.4-0.5.md index 457696bdc..d618e0545 100644 --- a/MIGRATION-0.4-0.5.md +++ b/MIGRATION-0.4-0.5.md @@ -10,20 +10,20 @@ * `NormalizePath` moved to `actix_web::http` module -* `HttpServer` moved to `actix_web::server`, added new `actix_web::server::new` function - same as `actix_web::server::HttpServer::new` +* `HttpServer` moved to `actix_web::server`, added new `actix_web::server::new()` function, + 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 -* `actix_web::httpcodes` module is deprecated, `HttpResponse::Ok()` and other fn - should be used instead +* `actix_web::httpcodes` module is deprecated, `HttpResponse::Ok()`, `HttpResponse::Found()` and other `HttpResponse::XXX()` + functions should be used instead * `ClientRequestBuilder::body()` returns `Result<_, actix_web::Error>` - instead of `http::Error` + instead of `Result<_, http::Error>` * `Application` renamed to a `App`