mirror of https://github.com/fafhrd91/actix-web
Add changes and migration documentations
This commit is contained in:
parent
8bf8bf05cf
commit
96a87bbe8e
|
@ -5,6 +5,8 @@
|
|||
To create a cookie without a SameSite attribute, remove any calls setting same_site.
|
||||
* actix-http support for Actors messages was moved to actix-http crate and is enabled
|
||||
with feature `actors`
|
||||
* content_length function is removed from actix-files.
|
||||
You can set Content-Length by normally setting the response body or calling no_chunking function.
|
||||
|
||||
## 2.0.0
|
||||
|
||||
|
|
|
@ -5,11 +5,15 @@
|
|||
### Changed
|
||||
|
||||
* Bump minimum supported Rust version to 1.40
|
||||
* content_length function is removed, and you can set Content-Length by calling no_chunking function [#1439]
|
||||
|
||||
### Fixed
|
||||
|
||||
* Support parsing of `SameSite=None` [#1503]
|
||||
|
||||
[#1439]: https://github.com/actix/actix-web/pull/1439
|
||||
[#1503]: https://github.com/actix/actix-web/pull/1503
|
||||
|
||||
## [2.0.0-alpha.3] - 2020-05-08
|
||||
|
||||
### Fixed
|
||||
|
|
Loading…
Reference in New Issue