From 93ab55a3d6f6277485c7e528196de344554bfbf5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 04:44:43 +0000 Subject: [PATCH] chore(deps): bump graphql_client from 0.14.0 to 0.16.0 in /backend Bumps [graphql_client](https://github.com/graphql-rust/graphql-client) from 0.14.0 to 0.16.0. - [Release notes](https://github.com/graphql-rust/graphql-client/releases) - [Changelog](https://github.com/graphql-rust/graphql-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/graphql-rust/graphql-client/compare/0.14.0...0.16.0) --- updated-dependencies: - dependency-name: graphql_client dependency-version: 0.16.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- backend/Cargo.lock | 57 +++++++++++++++++++++++++++++++--- backend/graph-proxy/Cargo.toml | 2 +- 2 files changed, 53 insertions(+), 6 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 850192db5..66a1d304d 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -2808,7 +2808,7 @@ dependencies = [ "eventsource-stream", "futures-util", "graphql-ws-client", - "graphql_client", + "graphql_client 0.16.0", "jsonwebtoken", "k8s-openapi", "kube", @@ -2850,6 +2850,15 @@ dependencies = [ "serde", ] +[[package]] +name = "graphql-introspection-query" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e063446242093b0acecc78a2313801e6c4faafa3501277b409a2b1972eff5d85" +dependencies = [ + "serde", +] + [[package]] name = "graphql-parser" version = "0.4.1" @@ -2870,7 +2879,7 @@ dependencies = [ "futures-lite", "futures-sink", "futures-timer", - "graphql_client", + "graphql_client 0.14.0", "log", "pin-project", "serde", @@ -2885,7 +2894,18 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a50cfdc7f34b7f01909d55c2dcb71d4c13cbcbb4a1605d6c8bd760d654c1144b" dependencies = [ - "graphql_query_derive", + "graphql_query_derive 0.14.0", + "serde", + "serde_json", +] + +[[package]] +name = "graphql_client" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0f04840854efa7b06377d86fab117f598f5f5c95727067463417ccaf8aa7635" +dependencies = [ + "graphql_query_derive 0.16.0", "serde", "serde_json", ] @@ -2896,7 +2916,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e27ed0c2cf0c0cc52c6bcf3b45c907f433015e580879d14005386251842fb0a" dependencies = [ - "graphql-introspection-query", + "graphql-introspection-query 0.2.0", "graphql-parser", "heck 0.4.1", "lazy_static", @@ -2907,17 +2927,44 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "graphql_client_codegen" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa0141e66c8d0302f8a586df12ad5d0cf87c0fa8c391f2f5b5dc296312dce569" +dependencies = [ + "graphql-introspection-query 0.3.0", + "graphql-parser", + "heck 0.5.0", + "proc-macro2", + "quote", + "serde", + "serde_json", + "syn 2.0.117", +] + [[package]] name = "graphql_query_derive" version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83febfa838f898cfa73dfaa7a8eb69ff3409021ac06ee94cfb3d622f6eeb1a97" dependencies = [ - "graphql_client_codegen", + "graphql_client_codegen 0.14.0", "proc-macro2", "syn 1.0.109", ] +[[package]] +name = "graphql_query_derive" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e16ecf9bb87a6760cf5227f66cbe48bad7b89505aeb002aa9439ea090e6038a3" +dependencies = [ + "graphql_client_codegen 0.16.0", + "proc-macro2", + "syn 2.0.117", +] + [[package]] name = "group" version = "0.12.1" diff --git a/backend/graph-proxy/Cargo.toml b/backend/graph-proxy/Cargo.toml index beff8e9ec..ff0110ee5 100644 --- a/backend/graph-proxy/Cargo.toml +++ b/backend/graph-proxy/Cargo.toml @@ -50,7 +50,7 @@ tempfile = "3.27.0" [dev-dependencies] graphql-ws-client = { version = "0.12.0", features = ["client-graphql-client", "tungstenite-0.28"] } -graphql_client = "0.14.0" +graphql_client = "0.16.0" mockito = { workspace = true } testcontainers = { workspace = true } tokio-tungstenite = { workspace = true }