File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
35
# 0.6.2
9
36
10
37
## Changed:
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tower-http"
3
3
description = " Tower middleware and utilities for HTTP clients and servers"
4
- version = " 0.6.2 "
4
+ version = " 0.6.3 "
5
5
authors = [
" Tower Maintainers <[email protected] >" ]
6
6
edition = " 2018"
7
7
license = " MIT"
You can’t perform that action at this time.
0 commit comments