1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-13 20:15:26 +01:00
actix-web/actix-files/CHANGES.md

77 lines
1.5 KiB
Markdown
Raw Normal View History

2019-03-01 23:59:44 -08:00
# Changes
## [0.2.1] - 2019-12-22
* Use the same format for file URLs regardless of platforms
2019-12-20 17:59:34 +06:00
## [0.2.0] - 2019-12-20
2019-12-16 17:22:26 +06:00
* Fix BodyEncoding trait import #1220
## [0.2.0-alpha.1] - 2019-12-07
2019-12-03 16:35:31 +06:00
* Migrate to `std::future`
2019-11-06 10:35:13 -08:00
## [0.1.7] - 2019-11-06
* Add an additional `filename*` param in the `Content-Disposition` header of `actix_files::NamedFile` to be more compatible. (#1151)
2019-10-14 21:26:26 +06:00
## [0.1.6] - 2019-10-14
* Add option to redirect to a slash-ended path `Files` #1132
2019-10-08 10:13:16 +06:00
## [0.1.5] - 2019-10-08
* Bump up `mime_guess` crate version to 2.0.1
2019-08-13 10:48:11 -07:00
* Bump up `percent-encoding` crate version to 2.1
* Allow user defined request guards for `Files` #1113
2019-10-14 21:26:26 +06:00
## [0.1.4] - 2019-07-20
* Allow to disable `Content-Disposition` header #686
## [0.1.3] - 2019-06-28
* Do not set `Content-Length` header, let actix-http set it #930
## [0.1.2] - 2019-06-13
* Content-Length is 0 for NamedFile HEAD request #914
* Fix ring dependency from actix-web default features for #741
## [0.1.1] - 2019-06-01
* Static files are incorrectly served as both chunked and with length #812
2019-05-25 02:02:28 -07:00
## [0.1.0] - 2019-05-25
2019-05-22 21:21:12 -07:00
* NamedFile last-modified check always fails due to nano-seconds
in file modified date #820
2019-05-12 11:41:43 -07:00
## [0.1.0-beta.4] - 2019-05-12
* Update actix-web to beta.4
2019-04-20 21:16:51 -07:00
## [0.1.0-beta.1] - 2019-04-20
* Update actix-web to beta.1
2019-04-14 08:09:32 -07:00
## [0.1.0-alpha.6] - 2019-04-14
* Update actix-web to alpha6
2019-04-07 23:42:05 -07:00
## [0.1.0-alpha.4] - 2019-04-08
* Update actix-web to alpha4
2019-04-02 21:49:31 -07:00
## [0.1.0-alpha.2] - 2019-04-02
2019-03-31 18:19:18 -07:00
* Add default handler support
2019-03-28 13:46:26 -07:00
## [0.1.0-alpha.1] - 2019-03-28
2019-03-01 23:59:44 -08:00
* Initial impl