From ceae9bdac712083730b174f811c963d47ae20999 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:44:54 +0100 Subject: [PATCH] chore(deps): Bump serde_json from 1.0.111 to 1.0.112 (#268) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.111 to 1.0.112.
Release notes

Sourced from serde_json's releases.

v1.0.112

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.111&new-version=1.0.112)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- crates/connectors/ndc-postgres/Cargo.toml | 2 +- crates/documentation/openapi/Cargo.toml | 2 +- crates/query-engine/execution/Cargo.toml | 2 +- crates/query-engine/sql/Cargo.toml | 2 +- crates/query-engine/translation/Cargo.toml | 2 +- crates/tests/databases-tests/Cargo.toml | 2 +- crates/tests/tests-common/Cargo.toml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fd70757ee..ac412c748 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2583,9 +2583,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.111" +version = "1.0.112" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" +checksum = "4d1bd37ce2324cf3bf85e5a25f96eb4baf0d5aa6eba43e7ae8958870c4ec48ed" dependencies = [ "indexmap 2.1.0", "itoa", diff --git a/crates/connectors/ndc-postgres/Cargo.toml b/crates/connectors/ndc-postgres/Cargo.toml index 0231c3e87..81c96fa98 100644 --- a/crates/connectors/ndc-postgres/Cargo.toml +++ b/crates/connectors/ndc-postgres/Cargo.toml @@ -26,7 +26,7 @@ percent-encoding = "2.3.1" prometheus = "0.13.3" schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.196" -serde_json = { version = "1.0.111", features = ["raw_value"] } +serde_json = { version = "1.0.112", features = ["raw_value"] } sqlx = { version = "0.7.3", features = [ "json", "postgres", "runtime-tokio-rustls" ] } thiserror = "1.0" tokio = { version = "1.35.1", features = ["full"] } diff --git a/crates/documentation/openapi/Cargo.toml b/crates/documentation/openapi/Cargo.toml index 49676483e..abb3b1ec0 100644 --- a/crates/documentation/openapi/Cargo.toml +++ b/crates/documentation/openapi/Cargo.toml @@ -17,7 +17,7 @@ path = "src/main.rs" [dependencies] ndc-postgres = { path = "../../connectors/ndc-postgres" } schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } -serde_json = { version = "1.0.111", features = ["raw_value"] } +serde_json = { version = "1.0.112", features = ["raw_value"] } [dev-dependencies] insta = { version = "1.34.0", features = ["json"] } diff --git a/crates/query-engine/execution/Cargo.toml b/crates/query-engine/execution/Cargo.toml index cd13ba377..74a8a5e67 100644 --- a/crates/query-engine/execution/Cargo.toml +++ b/crates/query-engine/execution/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" query-engine-sql = { path = "../sql" } prometheus = "0.13.3" -serde_json = "1.0.111" +serde_json = "1.0.112" sqlformat = "0.2.3" sqlx = { version = "0.7.3", features = [ "json", "postgres", "runtime-tokio-rustls", "uuid" ] } tracing = "0.1.40" diff --git a/crates/query-engine/sql/Cargo.toml b/crates/query-engine/sql/Cargo.toml index 81e5a88a8..4b20a14af 100644 --- a/crates/query-engine/sql/Cargo.toml +++ b/crates/query-engine/sql/Cargo.toml @@ -7,4 +7,4 @@ license = "Apache-2.0" [dependencies] schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.196" -serde_json = "1.0.111" +serde_json = "1.0.112" diff --git a/crates/query-engine/translation/Cargo.toml b/crates/query-engine/translation/Cargo.toml index 42edf8571..3837906f3 100644 --- a/crates/query-engine/translation/Cargo.toml +++ b/crates/query-engine/translation/Cargo.toml @@ -11,7 +11,7 @@ query-engine-sql = { path = "../sql" } indexmap = "2" multimap = "0.9.1" -serde_json = "1.0.111" +serde_json = "1.0.112" [dev-dependencies] insta = { version = "1.34.0", features = ["json"] } diff --git a/crates/tests/databases-tests/Cargo.toml b/crates/tests/databases-tests/Cargo.toml index 08c0cde5d..6135433cb 100644 --- a/crates/tests/databases-tests/Cargo.toml +++ b/crates/tests/databases-tests/Cargo.toml @@ -28,6 +28,6 @@ tests-common = { path = "../tests-common" } axum = "0.6.20" insta = { version = "1.34.0", features = ["json"] } schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } -serde_json = "1.0.111" +serde_json = "1.0.112" test-each = "0.2.1" tokio = { version = "1.35.1", features = ["full"] } diff --git a/crates/tests/tests-common/Cargo.toml b/crates/tests/tests-common/Cargo.toml index 450c0df65..ab6912445 100644 --- a/crates/tests/tests-common/Cargo.toml +++ b/crates/tests/tests-common/Cargo.toml @@ -23,7 +23,7 @@ reqwest = "0.11.23" schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde = "1.0.196" serde_derive = "^1.0" -serde_json = { version = "1.0.111", features = ["raw_value"] } +serde_json = { version = "1.0.112", features = ["raw_value"] } similar-asserts = "1.5.0" sqlx = { version = "0.7.3", features = [ "json", "postgres", "runtime-tokio-rustls" ] } tokio = { version = "1.35.1", features = ["full"] }