From 1bca37dc93f66ae8d3c1c321c61e808dce751ba3 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Wed, 19 Jul 2023 11:14:15 +0200 Subject: [PATCH] Release 0.4.2 (#387) --- tower-http/CHANGELOG.md | 24 +++++++++++++++++++++++- tower-http/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/tower-http/CHANGELOG.md b/tower-http/CHANGELOG.md index e30cfaf4..3c4b959f 100644 --- a/tower-http/CHANGELOG.md +++ b/tower-http/CHANGELOG.md @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Changed -- **compression:** Update to async-compression 0.4 ([#371]) +- None. ## Removed @@ -23,7 +23,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None. +# 0.4.2 (July 19, 2023) + +## Added + +- **cors:** Add support for private network preflights ([#373]) +- **compression:** Implement `Default` for `DecompressionBody` ([#370]) + +## Changed + +- **compression:** Update to async-compression 0.4 ([#371]) + +## Fixed + +- **compression:** Override default brotli compression level 11 -> 4 ([#356]) +- **trace:** Simplify dynamic tracing level application ([#380]) +- **normalize_path:** Fix path normalization for preceding slashes ([#359]) + +[#356]: https://github.com/tower-rs/tower-http/pull/356 +[#359]: https://github.com/tower-rs/tower-http/pull/359 +[#370]: https://github.com/tower-rs/tower-http/pull/370 [#371]: https://github.com/tower-rs/tower-http/pull/371 +[#373]: https://github.com/tower-rs/tower-http/pull/373 +[#380]: https://github.com/tower-rs/tower-http/pull/380 # 0.4.1 (June 20, 2023) diff --git a/tower-http/Cargo.toml b/tower-http/Cargo.toml index f7408d87..5d723862 100644 --- a/tower-http/Cargo.toml +++ b/tower-http/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tower-http" description = "Tower middleware and utilities for HTTP clients and servers" -version = "0.4.1" +version = "0.4.2" authors = ["Tower Maintainers "] edition = "2018" license = "MIT"