1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/MIGRATION.md

117 lines
3.4 KiB
Markdown
Raw Normal View History

2018-06-02 16:01:51 +00:00
## 0.7
2018-06-02 16:19:13 +00:00
* `actix::System` has new api.
Instead of
```run
fn main() {
let sys = actix::System::new(..);
HttpServer::new(|| ...).start()
sys.run();
}
```
Server must be initialized within system run closure:
```run
fn main() {
actix::System::run(|| {
HttpServer::new(|| ...).start()
});
}
```
2018-06-02 16:01:51 +00:00
* Middleware trait uses `&mut self` instead of `&self`.
* Removed `Route::with2()` and `Route::with3()` use tuple of extractors instead.
`fn index((query, json): (Query<..>, Json<MyStruct)) -> impl Responder`
* Removed deprecated `HttpServer::threads()`, use `HttpServer::workers()` instead.
2018-04-26 15:01:08 +00:00
## Migration from 0.5 to 0.6
2018-05-09 01:48:09 +00:00
* `Path<T>` extractor return `ErrorNotFound` on failure instead of `ErrorBadRequest`
2018-04-26 15:01:08 +00:00
* `ws::Message::Close` now includes optional close reason.
`ws::CloseCode::Status` and `ws::CloseCode::Empty` have been removed.
2018-05-01 20:15:35 +00:00
* `HttpServer::threads()` renamed to `HttpServer::workers()`.
* `HttpServer::start_ssl()` and `HttpServer::start_tls()` deprecated.
Use `HttpServer::bind_ssl()` and `HttpServer::bind_tls()` instead.
* `HttpRequest::extensions()` returns read only reference to the request's Extension
`HttpRequest::extensions_mut()` returns mutable reference.
* Instead of
`use actix_web::middleware::{
CookieSessionBackend, CookieSessionError, RequestSession,
Session, SessionBackend, SessionImpl, SessionStorage};`
use `actix_web::middleware::session`
`use actix_web::middleware::session{CookieSessionBackend, CookieSessionError,
RequestSession, Session, SessionBackend, SessionImpl, SessionStorage};`
2018-05-02 00:19:15 +00:00
* `FromRequest::from_request()` accepts mutable reference to a request
* `FromRequest::Result` has to implement `Into<Reply<Self>>`
2018-05-04 20:38:17 +00:00
* [`Responder::respond_to()`](
https://actix.rs/actix-web/actix_web/trait.Responder.html#tymethod.respond_to)
is generic over `S`
* Use `Query` extractor instead of HttpRequest::query()`.
2018-05-02 13:28:38 +00:00
2018-05-02 13:30:06 +00:00
```rust
fn index(q: Query<HashMap<String, String>>) -> Result<..> {
...
}
```
or
2018-05-02 13:28:38 +00:00
```rust
let q = Query::<HashMap<String, String>>::extract(req);
```
* Websocket operations are implemented as `WsWriter` trait.
you need to use `use actix_web::ws::WsWriter`
2018-04-26 15:01:08 +00:00
## Migration from 0.4 to 0.5
2018-04-11 23:46:21 +00:00
* `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`