mirror of https://github.com/fafhrd91/actix-web
Merge branch 'feat/immutable' of https://github.com/actix/actix-web into feat/immutable
This commit is contained in:
commit
5728486184
|
@ -15,9 +15,6 @@
|
||||||
in argument [#1905]
|
in argument [#1905]
|
||||||
* `App::wrap_fn`, `Resource::wrap_fn` and `Scope::wrap_fn` would give `&Service` in closure
|
* `App::wrap_fn`, `Resource::wrap_fn` and `Scope::wrap_fn` would give `&Service` in closure
|
||||||
argument [#1905]
|
argument [#1905]
|
||||||
|
|
||||||
### Fixed
|
|
||||||
* Multiple calls `App::data` with the same type now keeps the latest call's data. [#1906]
|
|
||||||
* `web::block` accept any closure that has an output bound to `Send` and `'static`. [#1957]
|
* `web::block` accept any closure that has an output bound to `Send` and `'static`. [#1957]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -78,7 +78,7 @@ actix-macros = "0.2.0"
|
||||||
actix-router = "0.2.6"
|
actix-router = "0.2.6"
|
||||||
actix-rt = "2"
|
actix-rt = "2"
|
||||||
actix-server = "2.0.0-beta.2"
|
actix-server = "2.0.0-beta.2"
|
||||||
actix-service = "2.0.0-beta.3"
|
actix-service = "=2.0.0-beta.3"
|
||||||
actix-utils = "3.0.0-beta.1"
|
actix-utils = "3.0.0-beta.1"
|
||||||
actix-tls = { version = "3.0.0-beta.2", default-features = false, optional = true }
|
actix-tls = { version = "3.0.0-beta.2", default-features = false, optional = true }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue