From 5df027b22c83d81450a1191356133e5e4e8a397e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 10:01:29 +0000 Subject: [PATCH] chore(deps): Bump insta from 1.37.0 to 1.38.0 (#399) Bumps [insta](https://github.com/mitsuhiko/insta) from 1.37.0 to 1.38.0.
Release notes

Sourced from insta's releases.

1.38.0

Release Notes

Install cargo-insta 1.38.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf
https://github.com/mitsuhiko/insta/releases/download/1.38.0/cargo-insta-installer.sh
| sh

Install prebuilt binaries via powershell script

powershell -c "irm
https://github.com/mitsuhiko/insta/releases/download/1.38.0/cargo-insta-installer.ps1
| iex"

Download cargo-insta 1.38.0

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Changelog

Sourced from insta's changelog.

1.38.0

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=insta&package-manager=cargo&previous-version=1.37.0&new-version=1.38.0)](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> Co-authored-by: Gil Mizrahi --- Cargo.lock | 4 ++-- crates/cli/Cargo.toml | 2 +- crates/query-engine/translation/Cargo.toml | 2 +- crates/tests/databases-tests/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index afe247dd6..eb086f944 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1177,9 +1177,9 @@ dependencies = [ [[package]] name = "insta" -version = "1.37.0" +version = "1.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1718b3f2b85bb5054baf8ce406e36401f27c3169205f4175504c4b1d98252d3f" +checksum = "3eab73f58e59ca6526037208f0e98851159ec1633cf17b6cd2e1f2c3fd5d53cc" dependencies = [ "console", "lazy_static", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index f82ded249..60ef461f8 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -23,7 +23,7 @@ tokio = { version = "1.37.0", features = ["full"] } build-data = "0.1.5" [dev-dependencies] -insta = "1.37.0" +insta = "1.38.0" tempfile = "3.10.1" [package.metadata.cargo-machete] diff --git a/crates/query-engine/translation/Cargo.toml b/crates/query-engine/translation/Cargo.toml index adb795f42..0f1678756 100644 --- a/crates/query-engine/translation/Cargo.toml +++ b/crates/query-engine/translation/Cargo.toml @@ -18,5 +18,5 @@ multimap = "0.9.1" serde_json = "1.0.115" [dev-dependencies] -insta = { version = "1.37.0", features = ["json"] } +insta = { version = "1.38.0", features = ["json"] } sqlformat = "0.2.3" diff --git a/crates/tests/databases-tests/Cargo.toml b/crates/tests/databases-tests/Cargo.toml index a934c7b5b..6831c571c 100644 --- a/crates/tests/databases-tests/Cargo.toml +++ b/crates/tests/databases-tests/Cargo.toml @@ -29,7 +29,7 @@ ndc-postgres-configuration = { path = "../../configuration" } tests-common = { path = "../tests-common" } axum = "0.6.20" -insta = { version = "1.37.0", features = ["json"] } +insta = { version = "1.38.0", features = ["json"] } schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] } serde_json = "1.0.115" test-each = "0.2.1"