From 12907af1f8965d3b8cc8e568f1781cbe944da3dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 19:43:02 +0000 Subject: [PATCH] build(deps): bump tower-http from 0.6.11 to 0.7.0 Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.6.11 to 0.7.0. - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.6.11...tower-http-0.7.0) --- updated-dependencies: - dependency-name: tower-http dependency-version: 0.7.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 +++-- crates/ste-web-gateway/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a4bd4c7..3960e84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1315,9 +1315,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.11" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "bitflags", "bytes", @@ -1325,6 +1325,7 @@ dependencies = [ "http", "http-body", "http-body-util", + "percent-encoding", "pin-project-lite", "tokio", "tower-layer", diff --git a/crates/ste-web-gateway/Cargo.toml b/crates/ste-web-gateway/Cargo.toml index 9a5e74a..6584bed 100644 --- a/crates/ste-web-gateway/Cargo.toml +++ b/crates/ste-web-gateway/Cargo.toml @@ -18,7 +18,7 @@ ste-query-plane.workspace = true ste-workflows.workspace = true tokio = { workspace = true, features = ["net", "signal"] } tower = { version = "0.5", features = ["limit", "util"] } -tower-http = { version = "0.6", features = ["catch-panic", "limit", "timeout"] } +tower-http = { version = "0.7", features = ["catch-panic", "limit", "timeout"] } [dev-dependencies] http-body-util = "0.1"