From 7439c459d2f29f60f2bcb1a65f829fb6f17dab1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 14:48:00 +0000 Subject: [PATCH 1/2] chore(deps): bump quick-junit from 0.5.2 to 0.6.0 Bumps [quick-junit](https://github.com/nextest-rs/quick-junit) from 0.5.2 to 0.6.0. - [Release notes](https://github.com/nextest-rs/quick-junit/releases) - [Changelog](https://github.com/nextest-rs/quick-junit/blob/main/CHANGELOG.md) - [Commits](https://github.com/nextest-rs/quick-junit/compare/quick-junit-0.5.2...quick-junit-0.6.0) --- updated-dependencies: - dependency-name: quick-junit dependency-version: 0.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d23731697fa21..be5854776fffc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8395,9 +8395,9 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" [[package]] name = "quick-junit" -version = "0.5.2" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ee9342d671fae8d66b3ae9fd7a9714dfd089c04d2a8b1ec0436ef77aee15e5f" +checksum = "e3e64c58c4c88fc1045e8fe98a1b7cec3643187e3dd678f9bbcdd8f12a6933d6" dependencies = [ "chrono", "indexmap 2.12.0", From a4cb00b5cb550670c11ec8b57a44d3ca75838697 Mon Sep 17 00:00:00 2001 From: Pavlos Rontidis Date: Wed, 25 Mar 2026 13:26:30 -0400 Subject: [PATCH 2/2] fix(deps): update quick-junit version requirement to 0.6.0 in Cargo.toml Dependabot only bumped the version in Cargo.lock but left the version requirement in Cargo.toml at "0.5.1", which resolves to >=0.5.1,<0.6.0 and causes cargo to revert the lock file back to 0.5.2 on any build. Co-Authored-By: Claude Sonnet 4.6 (1M context) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0a577cde861d9..c7b144a1f270b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -408,7 +408,7 @@ ordered-float.workspace = true percent-encoding = { version = "2.3.1", default-features = false } postgres-openssl = { version = "0.5.1", default-features = false, features = ["runtime"], optional = true } pulsar = { version = "6.7.0", default-features = false, features = ["tokio-runtime", "auth-oauth2", "flate2", "lz4", "snap", "zstd"], optional = true } -quick-junit = { version = "0.5.1" } +quick-junit = { version = "0.6.0" } rand.workspace = true rand_distr.workspace = true rdkafka = { version = "0.39.0", default-features = false, features = ["curl-static", "tokio", "libz", "ssl", "zstd"], optional = true }