2018-06-02 16:01:51 +00:00
|
|
|
## 0.7
|
|
|
|
|
2018-07-21 08:00:50 +00:00
|
|
|
* `HttpRequest` does not implement `Stream` anymore. If you need to read request payload
|
|
|
|
use `HttpMessage::payload()` method.
|
|
|
|
|
|
|
|
instead of
|
|
|
|
|
|
|
|
```rust
|
|
|
|
fn index(req: HttpRequest) -> impl Responder {
|
|
|
|
req
|
|
|
|
.from_err()
|
|
|
|
.fold(...)
|
|
|
|
....
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
use `.payload()`
|
|
|
|
|
|
|
|
```rust
|
|
|
|
fn index(req: HttpRequest) -> impl Responder {
|
|
|
|
req
|
|
|
|
.payload() // <- get request payload stream
|
|
|
|
.from_err()
|
|
|
|
.fold(...)
|
|
|
|
....
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-06-02 16:28:32 +00:00
|
|
|
* [Middleware](https://actix.rs/actix-web/actix_web/middleware/trait.Middleware.html)
|
2018-07-06 09:00:14 +00:00
|
|
|
trait uses `&HttpRequest` instead of `&mut HttpRequest`.
|
2018-06-02 16:01:51 +00:00
|
|
|
|
|
|
|
* Removed `Route::with2()` and `Route::with3()` use tuple of extractors instead.
|
2018-06-02 16:28:32 +00:00
|
|
|
|
|
|
|
instead of
|
|
|
|
|
|
|
|
```rust
|
|
|
|
fn index(query: Query<..>, info: Json<MyStruct) -> impl Responder {}
|
|
|
|
```
|
|
|
|
|
2018-06-02 18:45:37 +00:00
|
|
|
use tuple of extractors and use `.with()` for registration:
|
2018-06-02 16:28:32 +00:00
|
|
|
|
|
|
|
```rust
|
|
|
|
fn index((query, json): (Query<..>, Json<MyStruct)) -> impl Responder {}
|
|
|
|
```
|
2018-06-02 16:01:51 +00:00
|
|
|
|
2018-06-21 11:07:54 +00:00
|
|
|
* `Handler::handle()` uses `&self` instead of `&mut self`
|
|
|
|
|
2018-07-06 09:00:14 +00:00
|
|
|
* `Handler::handle()` accepts reference to `HttpRequest<_>` instead of value
|
|
|
|
|
2018-06-02 16:28:32 +00:00
|
|
|
* Removed deprecated `HttpServer::threads()`, use
|
|
|
|
[HttpServer::workers()](https://actix.rs/actix-web/actix_web/server/struct.HttpServer.html#method.workers) instead.
|
2018-06-02 16:01:51 +00:00
|
|
|
|
2018-06-10 17:24:34 +00:00
|
|
|
* Renamed `client::ClientConnectorError::Connector` to
|
|
|
|
`client::ClientConnectorError::Resolver`
|
2018-06-02 16:01:51 +00:00
|
|
|
|
2018-06-21 05:47:01 +00:00
|
|
|
* `Route::with()` does not return `ExtractorConfig`, to configure
|
|
|
|
extractor use `Route::with_config()`
|
|
|
|
|
|
|
|
instead of
|
|
|
|
|
|
|
|
```rust
|
|
|
|
fn main() {
|
|
|
|
let app = App::new().resource("/index.html", |r| {
|
|
|
|
r.method(http::Method::GET)
|
|
|
|
.with(index)
|
|
|
|
.limit(4096); // <- limit size of the payload
|
|
|
|
});
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
use
|
|
|
|
|
|
|
|
```rust
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let app = App::new().resource("/index.html", |r| {
|
|
|
|
r.method(http::Method::GET)
|
|
|
|
.with_config(index, |cfg| { // <- register handler
|
|
|
|
cfg.limit(4096); // <- limit size of the payload
|
|
|
|
})
|
|
|
|
});
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
* `Route::with_async()` does not return `ExtractorConfig`, to configure
|
|
|
|
extractor use `Route::with_async_config()`
|
|
|
|
|
2018-06-02 16:01:51 +00:00
|
|
|
|
2018-06-02 16:25:11 +00:00
|
|
|
## 0.6
|
2018-04-26 15:01:08 +00:00
|
|
|
|
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()`.
|
|
|
|
|
2018-05-01 02:51:55 +00:00
|
|
|
* `HttpServer::start_ssl()` and `HttpServer::start_tls()` deprecated.
|
|
|
|
Use `HttpServer::bind_ssl()` and `HttpServer::bind_tls()` instead.
|
|
|
|
|
2018-05-01 16:05:50 +00:00
|
|
|
* `HttpRequest::extensions()` returns read only reference to the request's Extension
|
|
|
|
`HttpRequest::extensions_mut()` returns mutable reference.
|
|
|
|
|
2018-05-08 20:41:04 +00:00
|
|
|
* 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`
|
|
|
|
|
2018-05-15 16:53:58 +00:00
|
|
|
* 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);
|
|
|
|
```
|
|
|
|
|
2018-05-08 20:41:04 +00:00
|
|
|
* Websocket operations are implemented as `WsWriter` trait.
|
|
|
|
you need to use `use actix_web::ws::WsWriter`
|
|
|
|
|
2018-04-26 15:01:08 +00:00
|
|
|
|
2018-06-02 16:25:11 +00:00
|
|
|
## 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`
|