1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-07-03 20:45:46 +00:00

update migration

This commit is contained in:
Nikolay Kim 2018-06-02 09:01:51 -07:00
parent 2f476021d8
commit 0ff5f5f448

View file

@ -1,3 +1,14 @@
## 0.7
* 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.
## Migration from 0.5 to 0.6
* `Path<T>` extractor return `ErrorNotFound` on failure instead of `ErrorBadRequest`