Skip to content

Commit 3bf1ba7

Browse files
committed
v0.6.7
1 parent 723ca9a commit 3bf1ba7

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

tower-http/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
# Unreleased
99

10+
# 0.6.7
11+
12+
## Added
13+
14+
- `TimeoutLayer::with_status_code(status)` to define the status code returned
15+
when timeout is reached. ([#599])
16+
17+
## Deprecated
18+
19+
- `auth::require_authorization` is too basic for real-world. ([#591])
20+
- `TimeoutLayer::new()` should be replaced with
21+
`TimeoutLayer::with_status_code()`. (Previously was
22+
`StatusCode::REQUEST_TIMEOUT`) ([#599])
23+
1024
## Fixed
1125

1226
- `on_eos` is now called even for successful responses. ([#580])
1327
- `ServeDir`: call fallback when filename is invalid ([#586])
28+
- `decompression` will not fail when body is empty ([#618])
1429

1530
[#580]: https://github.com/tower-rs/tower-http/pull/580
1631
[#586]: https://github.com/tower-rs/tower-http/pull/586
32+
[#591]: https://github.com/tower-rs/tower-http/pull/591
33+
[#599]: https://github.com/tower-rs/tower-http/pull/599
34+
[#618]: https://github.com/tower-rs/tower-http/pull/618
1735

1836
# 0.6.6
1937

tower-http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tower-http"
33
description = "Tower middleware and utilities for HTTP clients and servers"
4-
version = "0.6.6"
4+
version = "0.6.7"
55
authors = ["Tower Maintainers <team@tower-rs.com>"]
66
edition = "2018"
77
license = "MIT"

0 commit comments

Comments
 (0)