From 9771a45ba69418612910c4e58239c12d444fae4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jul 2024 17:53:52 +0000 Subject: [PATCH] chore(deps): Bump the graphql group with 2 updates (#20854) Bumps the graphql group with 2 updates: [async-graphql](https://github.com/async-graphql/async-graphql) and [async-graphql-warp](https://github.com/async-graphql/async-graphql). Updates `async-graphql` from 7.0.6 to 7.0.7 - [Release notes](https://github.com/async-graphql/async-graphql/releases) - [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md) - [Commits](https://github.com/async-graphql/async-graphql/commits) Updates `async-graphql-warp` from 7.0.6 to 7.0.7 - [Release notes](https://github.com/async-graphql/async-graphql/releases) - [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md) - [Commits](https://github.com/async-graphql/async-graphql/commits) --- updated-dependencies: - dependency-name: async-graphql dependency-type: direct:production update-type: version-update:semver-patch dependency-group: graphql - dependency-name: async-graphql-warp dependency-type: direct:production update-type: version-update:semver-patch dependency-group: graphql ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 4 ++-- lib/vector-core/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c8a79f69485f..1a3a1785e7076 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -442,9 +442,9 @@ dependencies = [ [[package]] name = "async-graphql" -version = "7.0.6" +version = "7.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf338d20ba5bab309f55ce8df95d65ee19446f7737f06f4a64593ab2c6b546ad" +checksum = "2b76aba2f176af685c2229633881a3adeae51f87ae1811781e73910b7001c93e" dependencies = [ "async-graphql-derive", "async-graphql-parser", @@ -473,9 +473,9 @@ dependencies = [ [[package]] name = "async-graphql-derive" -version = "7.0.6" +version = "7.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc51fd6b7102acda72bc94e8ae1543844d5688ff394a6cf7c21f2a07fe2d64e4" +checksum = "72e2e26a6b44bc61df3ca8546402cf9204c28e30c06084cc8e75cd5e34d4f150" dependencies = [ "Inflector", "async-graphql-parser", @@ -490,9 +490,9 @@ dependencies = [ [[package]] name = "async-graphql-parser" -version = "7.0.6" +version = "7.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75361eefd64e39f89bead4cb45fddbaf60ddb0e7b15fb7c852b6088bcd63071f" +checksum = "f801451484b4977d6fe67b29030f81353cabdcbb754e5a064f39493582dac0cf" dependencies = [ "async-graphql-value", "pest", @@ -502,9 +502,9 @@ dependencies = [ [[package]] name = "async-graphql-value" -version = "7.0.6" +version = "7.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1f665d2d52b41c4ed1f01c43f3ef27a2fe0af2452ed5c8bc7ac9b1a8719afaa" +checksum = "69117c43c01d81a69890a9f5dd6235f2f027ca8d1ec62d6d3c5e01ca0edb4f2b" dependencies = [ "bytes 1.6.0", "indexmap 2.2.6", @@ -514,9 +514,9 @@ dependencies = [ [[package]] name = "async-graphql-warp" -version = "7.0.6" +version = "7.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e400c0f2609939f8cec46d8137f0959a49a4a514458f2a43a4ee0b0f6eb20a36" +checksum = "4c3082de64b6d8e3956fa92e3009c27db209aa17388abf7a7d766adc6bb9b8ba" dependencies = [ "async-graphql", "futures-util", @@ -6424,9 +6424,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pest" -version = "2.7.10" +version = "2.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8" +checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95" dependencies = [ "memchr", "thiserror", diff --git a/Cargo.toml b/Cargo.toml index d593805a67a21..2dba5ca50fc9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -239,8 +239,8 @@ smpl_jwt = { version = "0.8.0", default-features = false, optional = true } lapin = { version = "2.4.0", default-features = false, features = ["native-tls"], optional = true } # API -async-graphql = { version = "7.0.6", default-features = false, optional = true, features = ["chrono", "playground"] } -async-graphql-warp = { version = "7.0.6", default-features = false, optional = true } +async-graphql = { version = "7.0.7", default-features = false, optional = true, features = ["chrono", "playground"] } +async-graphql-warp = { version = "7.0.7", default-features = false, optional = true } # API client crossterm = { version = "0.27.0", default-features = false, features = ["event-stream", "windows"], optional = true } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index ba50ae0698f0e..ce6354afddbb1 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" publish = false [dependencies] -async-graphql = { version = "7.0.6", default-features = false, features = ["playground" ], optional = true } +async-graphql = { version = "7.0.7", default-features = false, features = ["playground" ], optional = true } async-trait = { version = "0.1", default-features = false } bitmask-enum = { version = "2.2.4", default-features = false } bytes = { version = "1.6.0", default-features = false, features = ["serde"] }