From 8b6ace4a8332e215768e959f2df90fcc6c3444d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 19:24:05 +0000 Subject: [PATCH] chore(deps): bump tower-http from 0.6.9 to 0.7.0 Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.6.9 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.9...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 | 30 +++++++++++++++++++------ crates/sdk-tck-tests/Cargo.toml | 2 +- examples/example-common/Cargo.toml | 2 +- examples/sync-pull-dataplane/Cargo.toml | 2 +- 4 files changed, 26 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d7682c..884d8bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -732,7 +732,7 @@ dependencies = [ "testcontainers", "testcontainers-modules", "tokio", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", ] @@ -931,7 +931,7 @@ dependencies = [ "dataplane-sdk-axum", "reqwest", "tokio", - "tower-http", + "tower-http 0.7.0", "tracing", "uuid", ] @@ -2526,7 +2526,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -3337,7 +3337,7 @@ dependencies = [ "sqlx", "thiserror 2.0.18", "tokio", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "uuid", @@ -3709,9 +3709,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.9" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a28f0d049ccfaa566e14e9663d304d8577427b368cb4710a20528690287a738b" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" dependencies = [ "bitflags", "bytes", @@ -3722,10 +3722,26 @@ dependencies = [ "tower", "tower-layer", "tower-service", - "tracing", "url", ] +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" +dependencies = [ + "bitflags", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/crates/sdk-tck-tests/Cargo.toml b/crates/sdk-tck-tests/Cargo.toml index 643ba5d..6a3fc74 100644 --- a/crates/sdk-tck-tests/Cargo.toml +++ b/crates/sdk-tck-tests/Cargo.toml @@ -18,7 +18,7 @@ tracing-subscriber.workspace=true anyhow.workspace=true async-trait.workspace=true axum.workspace=true -tower-http = { version = "0.6.9", features = ["trace"]} +tower-http = { version = "0.7.0", features = ["trace"]} futures.workspace=true regex.workspace=true bon.workspace=true diff --git a/examples/example-common/Cargo.toml b/examples/example-common/Cargo.toml index fd15bf5..ab182af 100644 --- a/examples/example-common/Cargo.toml +++ b/examples/example-common/Cargo.toml @@ -15,7 +15,7 @@ bon.workspace=true anyhow.workspace=true reqwest.workspace=true uuid.workspace=true -tower-http = { version = "0.6.9", features = ["trace"]} +tower-http = { version = "0.7.0", features = ["trace"]} [lints] workspace = true diff --git a/examples/sync-pull-dataplane/Cargo.toml b/examples/sync-pull-dataplane/Cargo.toml index a9558d9..a2b182d 100644 --- a/examples/sync-pull-dataplane/Cargo.toml +++ b/examples/sync-pull-dataplane/Cargo.toml @@ -26,4 +26,4 @@ serde_json.workspace=true async-trait.workspace=true base64 = "0.22.1" config = "0.15.21" -tower-http = { version = "0.6.9", features = ["trace"]} +tower-http = { version = "0.7.0", features = ["trace"]}