2019-03-01 23:59:44 -08:00
# Changes
2021-01-02 00:12:18 +00:00
## Unreleased - 2021-xx-xx
2021-09-09 01:35:41 +01:00
## 0.6.0-beta.7 - 2021-09-09
2021-08-30 23:19:03 +01:00
* Minimum supported Rust version (MSRV) is now 1.51.
2021-06-26 16:33:36 +01:00
## 0.6.0-beta.6 - 2021-06-26
2021-06-25 16:21:57 +03:00
* Added `Files::path_filter()` . [#2274 ]
2021-06-26 16:33:36 +01:00
* `Files::show_files_listing()` can now be used with `Files::index_file()` to show files listing as a fallback when the index file is not found. [#2228 ]
2021-06-25 16:21:57 +03:00
[#2274 ]: https://github.com/actix/actix-web/pull/2274
2021-06-26 16:33:36 +01:00
[#2228 ]: https://github.com/actix/actix-web/pull/2228
2021-06-19 11:51:20 +01:00
## 0.6.0-beta.5 - 2021-06-17
2021-04-19 02:11:07 +01:00
* `NamedFile` now implements `ServiceFactory` and `HttpServiceFactory` making it much more useful in routing. For example, it can be used directly as a default service. [#2135 ]
2021-04-13 07:28:30 +03:00
* For symbolic links, `Content-Disposition` header no longer shows the filename of the original file. [#2156 ]
2021-05-26 12:42:29 +03:00
* `Files::redirect_to_slash_directory()` now works as expected when used with `Files::show_files_listing()` . [#2225 ]
2021-06-16 22:33:22 +03:00
* `application/{javascript, json, wasm}` mime type now have `inline` disposition by default. [#2257 ]
2021-04-13 07:28:30 +03:00
2021-04-19 02:11:07 +01:00
[#2135 ]: https://github.com/actix/actix-web/pull/2135
2021-04-13 07:28:30 +03:00
[#2156 ]: https://github.com/actix/actix-web/pull/2156
2021-05-26 12:42:29 +03:00
[#2225 ]: https://github.com/actix/actix-web/pull/2225
2021-06-16 22:33:22 +03:00
[#2257 ]: https://github.com/actix/actix-web/pull/2257
2021-02-10 12:10:03 +00:00
2021-04-02 09:43:51 +01:00
## 0.6.0-beta.4 - 2021-04-02
2021-04-22 18:13:13 +01:00
* Add support for `.guard` in `Files` to selectively filter `Files` services. [#2046 ]
[#2046 ]: https://github.com/actix/actix-web/pull/2046
2021-04-02 09:43:51 +01:00
2021-06-26 16:33:36 +01:00
2021-03-09 23:39:40 +00:00
## 0.6.0-beta.3 - 2021-03-09
* No notable changes.
2021-02-10 12:10:03 +00:00
## 0.6.0-beta.2 - 2021-02-10
2021-01-11 11:18:23 -07:00
* Fix If-Modified-Since and If-Unmodified-Since to not compare using sub-second timestamps. [#1887 ]
2021-02-07 05:50:23 +01:00
* Replace `v_htmlescape` with `askama_escape` . [#1953 ]
2021-01-07 20:02:08 +00:00
2021-01-11 11:18:23 -07:00
[#1887 ]: https://github.com/actix/actix-web/pull/1887
2021-02-07 05:50:23 +01:00
[#1953 ]: https://github.com/actix/actix-web/pull/1953
2021-01-07 20:02:08 +00:00
2021-02-10 12:10:03 +00:00
2021-01-07 20:02:08 +00:00
## 0.6.0-beta.1 - 2021-01-07
2020-12-27 20:53:19 +00:00
* `HttpRange::parse` now has its own error type.
2021-01-04 07:47:04 +08:00
* Update `bytes` to `1.0` . [#1813 ]
[#1813 ]: https://github.com/actix/actix-web/pull/1813
2020-12-26 04:05:45 +00:00
## 0.5.0 - 2020-12-26
2020-12-26 04:36:15 +01:00
* Optionally support hidden files/directories. [#1811 ]
[#1811 ]: https://github.com/actix/actix-web/pull/1811
2020-10-06 22:08:33 +01:00
2020-11-24 20:23:09 +00:00
## 0.4.1 - 2020-11-24
* Clarify order of parameters in `Files::new` and improve docs.
2020-10-06 22:08:33 +01:00
## 0.4.0 - 2020-10-06
2020-10-06 21:56:28 +01:00
* Add `Files::prefer_utf8` option that adds UTF-8 charset on certain response types. [#1714 ]
[#1714 ]: https://github.com/actix/actix-web/pull/1714
2020-10-06 22:08:33 +01:00
## 0.3.0 - 2020-09-11
2020-10-06 21:56:28 +01:00
* No significant changes from 0.3.0-beta.1.
2020-07-02 17:52:42 +09:00
2020-10-06 22:08:33 +01:00
## 0.3.0-beta.1 - 2020-07-15
2020-07-02 17:52:42 +09:00
* Update `v_htmlescape` to 0.10
2020-07-16 11:38:57 +01:00
* Update `actix-web` and `actix-http` dependencies to beta.1
2020-07-02 17:52:42 +09:00
2020-10-06 22:08:33 +01:00
## 0.3.0-alpha.1 - 2020-05-23
2020-05-23 18:47:08 +09:00
* Update `actix-web` and `actix-http` dependencies to alpha
* Fix some typos in the docs
2020-05-13 01:57:37 +01:00
* Bump minimum supported Rust version to 1.40
2020-05-23 18:47:08 +09:00
* Support sending Content-Length when Content-Range is specified [#1384 ]
[#1384 ]: https://github.com/actix/actix-web/pull/1384
2020-05-13 01:57:37 +01:00
2019-12-22 16:43:41 +09:00
2020-10-06 22:08:33 +01:00
## 0.2.1 - 2019-12-22
2019-12-22 16:43:41 +09:00
* Use the same format for file URLs regardless of platforms
2019-12-16 17:22:26 +06:00
2020-10-06 22:08:33 +01:00
## 0.2.0 - 2019-12-20
2019-12-16 17:22:26 +06:00
* Fix BodyEncoding trait import #1220
2019-12-03 16:35:31 +06:00
2020-10-06 22:08:33 +01:00
## 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
2020-10-06 22:08:33 +01: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 17:23:15 +02:00
2020-10-06 22:08:33 +01:00
## 0.1.6 - 2019-10-14
2019-10-14 17:23:15 +02:00
* Add option to redirect to a slash-ended path `Files` #1132
2019-08-12 05:43:29 +09:00
2020-10-06 22:08:33 +01:00
## 0.1.5 - 2019-10-08
2019-08-12 05:43:29 +09:00
* 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
2019-10-08 07:09:40 +03:00
* Allow user defined request guards for `Files` #1113
2019-10-14 21:26:26 +06:00
2019-07-20 11:43:49 +06:00
2020-10-06 22:08:33 +01:00
## 0.1.4 - 2019-07-20
2019-07-20 11:43:49 +06:00
* Allow to disable `Content-Disposition` header #686
2019-06-28 11:42:20 +06:00
2020-10-06 22:08:33 +01:00
## 0.1.3 - 2019-06-28
2019-06-28 11:42:20 +06:00
* Do not set `Content-Length` header, let actix-http set it #930
2019-06-06 20:34:30 -07:00
2020-10-06 22:08:33 +01:00
## 0.1.2 - 2019-06-13
2019-06-13 15:27:21 +06:00
* Content-Length is 0 for NamedFile HEAD request #914
* Fix ring dependency from actix-web default features for #741
2019-06-06 20:34:30 -07:00
2019-06-01 17:57:40 +06:00
2020-10-06 22:08:33 +01:00
## 0.1.1 - 2019-06-01
2019-06-01 17:57:40 +06:00
* Static files are incorrectly served as both chunked and with length #812
2019-05-22 21:21:12 -07:00
2020-10-06 22:08:33 +01:00
## 0.1.0 - 2019-05-25
* NamedFile last-modified check always fails due to nano-seconds in file modified date #820
2019-05-22 21:21:12 -07:00
2019-05-12 11:41:43 -07:00
2020-10-06 22:08:33 +01:00
## 0.1.0-beta.4 - 2019-05-12
2019-05-12 11:41:43 -07:00
* Update actix-web to beta.4
2019-04-20 21:16:51 -07:00
2020-10-06 22:08:33 +01:00
## 0.1.0-beta.1 - 2019-04-20
2019-04-20 21:16:51 -07:00
* Update actix-web to beta.1
2019-04-14 08:09:32 -07:00
2020-10-06 22:08:33 +01:00
## 0.1.0-alpha.6 - 2019-04-14
2019-04-14 08:09:32 -07:00
* Update actix-web to alpha6
2019-04-07 23:42:05 -07:00
2020-10-06 22:08:33 +01:00
## 0.1.0-alpha.4 - 2019-04-08
2019-04-07 23:42:05 -07:00
* Update actix-web to alpha4
2019-03-31 18:19:18 -07:00
2020-10-06 22:08:33 +01:00
## 0.1.0-alpha.2 - 2019-04-02
2019-03-31 18:19:18 -07:00
* Add default handler support
2019-03-01 23:59:44 -08:00
2020-10-06 22:08:33 +01:00
## 0.1.0-alpha.1 - 2019-03-28
2019-03-01 23:59:44 -08:00
* Initial impl