mirror of https://github.com/fafhrd91/actix-web
Prepare change log
This commit is contained in:
parent
91b66de6be
commit
1da065fb7d
|
@ -1,5 +1,13 @@
|
|||
# Changes
|
||||
|
||||
## [0.8.0] - 2019-xx-xx
|
||||
|
||||
## Changed
|
||||
|
||||
* `StaticFiles` no longer redirects to index file and instead attempts to return its content
|
||||
|
||||
* `StaticFiles` configuration is moved to `StaticFileConfig` completely.
|
||||
|
||||
## [0.7.15] - 2018-xx-xx
|
||||
|
||||
## Changed
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
## 0.8.0
|
||||
|
||||
`StaticFiles` configuration methods are removed:
|
||||
|
||||
- `show_files_listing` - use custom configuration with `StaticFileConfig::show_index`
|
||||
- `files_listing_renderer` - use custom configuration with `StaticFileConfig::directory_listing`
|
||||
- `index_file` - use custom configuration with `StaticFileConfig::index_file`
|
||||
- `default_handler` - use custom configuration with `StaticFileConfig::default_handler`
|
||||
|
||||
## 0.7.15
|
||||
|
||||
* The `' '` character is not percent decoded anymore before matching routes. If you need to use it in
|
||||
|
|
Loading…
Reference in New Issue