Skip to content

Commit 7b4b07d

Browse files
authored
Release v0.6.3 (#564)
1 parent 2c3f8f3 commit 7b4b07d

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

tower-http/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
# 0.6.3
9+
10+
## Added
11+
12+
- decompression: Support HTTP responses containing multiple ZSTD frames ([#548])
13+
- The `ServiceExt` trait for chaining layers onto an arbitrary http service just
14+
like `ServiceBuilderExt` allows for `ServiceBuilder` ([#563])
15+
16+
## Fixed
17+
18+
- Remove unnecessary trait bounds on `S::Error` for `Service` impls of
19+
`RequestBodyTimeout<S>` and `ResponseBodyTimeout<S>` ([#533])
20+
- compression: Respect `is_end_stream` ([#535])
21+
- Fix a rare panic in `fs::ServeDir` ([#553])
22+
- Fix invalid `content-lenght` of 1 in response to range requests to empty
23+
files ([#556])
24+
- In `AsyncRequireAuthorization`, use the original inner service after it is
25+
ready, instead of using a clone ([#561])
26+
27+
[#533]: https://github.com/tower-rs/tower-http/pull/533
28+
[#535]: https://github.com/tower-rs/tower-http/pull/535
29+
[#548]: https://github.com/tower-rs/tower-http/pull/548
30+
[#553]: https://github.com/tower-rs/tower-http/pull/556
31+
[#556]: https://github.com/tower-rs/tower-http/pull/556
32+
[#561]: https://github.com/tower-rs/tower-http/pull/561
33+
[#563]: https://github.com/tower-rs/tower-http/pull/563
34+
835
# 0.6.2
936

1037
## Changed:

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.2"
4+
version = "0.6.3"
55
authors = ["Tower Maintainers <[email protected]>"]
66
edition = "2018"
77
license = "MIT"

0 commit comments

Comments
 (0)