Skip to content

Commit

Permalink
Version 0.1.2
Browse files Browse the repository at this point in the history
- New middleware: Add `Cors` for setting [CORS] headers ([#112])
- New middleware: Add `AsyncRequireAuthorization` ([#118])
- `Compression`: Don't recompress HTTP responses ([#140])
- `Compression` and `Decompression`: Pass configuration from layer into middleware ([#132])
- `ServeDir` and `ServeFile`: Improve performance ([#137])
- `Compression`: Remove needless `ResBody::Error: Into<BoxError>` bounds ([#117])
- `ServeDir`: Percent decode path segments ([#129])
- `ServeDir`: Use correct redirection status ([#130])
- `ServeDir`: Return `404 Not Found` on requests to directories if
  `append_index_html_on_directories` is set to `false` ([#122])

[#112]: #112
[#118]: #118
[#140]: #140
[#132]: #132
[#137]: #137
[#117]: #117
[#129]: #129
[#130]: #130
[#122]: #122
  • Loading branch information
davidpdrsn committed Nov 13, 2021
1 parent c785742 commit 8a1627a
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions tower-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

- None.

# 0.1.2 (November 13, 2021)

- New middleware: Add `Cors` for setting [CORS] headers ([#112])
- New middleware: Add `AsyncRequireAuthorization` ([#118])
- `Compression`: Don't recompress HTTP responses ([#140])
Expand All @@ -28,10 +32,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#130]: https://github.com/tower-rs/tower-http/pull/130
[#122]: https://github.com/tower-rs/tower-http/pull/122

## Breaking changes

None.

# 0.1.1 (July 2, 2021)

- Add example of using `SharedClassifier`.
Expand All @@ -47,10 +47,6 @@ None.
- Add `AddAuthorizationLayer` for setting the `Authorization` header on
requests.

## Breaking changes

None.

# 0.1.0 (May 27, 2021)

- Initial release.
Expand Down

0 comments on commit 8a1627a

Please sign in to comment.