1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-25 02:54:06 +00:00

Update changelog

This commit is contained in:
messense 2019-06-18 13:36:00 +08:00
parent 0c58fe3c2c
commit a5a504cd77
2 changed files with 18 additions and 6 deletions

View file

@ -1,8 +1,14 @@
# Changes # Changes
## [1.0.3] - unreleased
### Changed
* Use `encoding_rs` crate instead of unmaintained `encoding` crate
## [1.0.2] - 2019-06-17 ## [1.0.2] - 2019-06-17
### Changes ### Changed
* Move cors middleware to `actix-cors` crate. * Move cors middleware to `actix-cors` crate.
@ -17,7 +23,7 @@
* Add `middleware::identity::RequestIdentity` trait to `get_identity` from `HttpMessage`. * Add `middleware::identity::RequestIdentity` trait to `get_identity` from `HttpMessage`.
### Changes ### Changed
* Move cors middleware to `actix-cors` crate. * Move cors middleware to `actix-cors` crate.
@ -47,7 +53,7 @@
* Add macros for head, options, trace, connect and patch http methods * Add macros for head, options, trace, connect and patch http methods
### Changes ### Changed
* Drop an unnecessary `Option<_>` indirection around `ServerBuilder` from `HttpServer`. #863 * Drop an unnecessary `Option<_>` indirection around `ServerBuilder` from `HttpServer`. #863
@ -65,7 +71,7 @@
* Add `Query<T>::from_query()` to extract parameters from a query string. #846 * Add `Query<T>::from_query()` to extract parameters from a query string. #846
* `QueryConfig`, similar to `JsonConfig` for customizing error handling of query extractors. * `QueryConfig`, similar to `JsonConfig` for customizing error handling of query extractors.
### Changes ### Changed
* `JsonConfig` is now `Send + Sync`, this implies that `error_handler` must be `Send + Sync` too. * `JsonConfig` is now `Send + Sync`, this implies that `error_handler` must be `Send + Sync` too.
@ -80,7 +86,7 @@
* Allow to set/override app data on scope level * Allow to set/override app data on scope level
### Changes ### Changed
* `App::configure` take an `FnOnce` instead of `Fn` * `App::configure` take an `FnOnce` instead of `Fn`
* Upgrade actix-net crates * Upgrade actix-net crates

View file

@ -1,5 +1,11 @@
# Changes # Changes
## [0.2.5] - unreleased
### Changed
* Use `encoding_rs` crate instead of unmaintained `encoding` crate
## [0.2.4] - 2019-06-16 ## [0.2.4] - 2019-06-16
### Fixed ### Fixed
@ -83,7 +89,7 @@
## [0.1.1] - 2019-04-19 ## [0.1.1] - 2019-04-19
### Changes ### Changed
* Cookie::max_age() accepts value in seconds * Cookie::max_age() accepts value in seconds