From 2dea331e2368f162bce541844f18197bfd9b5e79 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 18:45:07 +0000 Subject: [PATCH] Update diesel packages to v2.3.3 --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- backend.Dockerfile | 2 +- crates/crates_io_database/Cargo.toml | 2 +- crates/crates_io_database_dump/Cargo.toml | 2 +- crates/crates_io_diesel_helpers/Cargo.toml | 2 +- crates/crates_io_test_db/Cargo.toml | 2 +- crates/crates_io_test_utils/Cargo.toml | 2 +- crates/crates_io_worker/Cargo.toml | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e1689cbc703..f994afc2f8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2255,9 +2255,9 @@ dependencies = [ [[package]] name = "diesel" -version = "2.3.2" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8496eeb328dce26ee9d9b73275d396d9bddb433fa30106cf6056dd8c3c2764c" +checksum = "5e7624a3bb9fffd82fff016be9a7f163d20e5a89eb8d28f9daaa6b30fff37500" dependencies = [ "bigdecimal", "bitflags", diff --git a/Cargo.toml b/Cargo.toml index 0da1e9ae70b..ac5f3b98e0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ cookie = { version = "=0.18.1", features = ["secure"] } deadpool-diesel = { version = "=0.6.1", features = ["postgres", "tracing"] } derive_more = { version = "=2.0.1", features = ["deref", "deref_mut", "display"] } dialoguer = "=0.12.0" -diesel = { version = "=2.3.2", features = ["postgres", "serde_json", "chrono", "numeric"] } +diesel = { version = "=2.3.3", features = ["postgres", "serde_json", "chrono", "numeric"] } diesel-async = { version = "=0.7.3", features = ["async-connection-wrapper", "deadpool", "postgres"] } diesel_full_text_search = "=2.3.0" diesel_migrations = { version = "=2.3.0", features = ["postgres"] } @@ -159,7 +159,7 @@ crates_io_test_db = { path = "crates/crates_io_test_db" } crates_io_test_utils = { path = "crates/crates_io_test_utils" } crates_io_trustpub = { path = "crates/crates_io_trustpub", features = ["test-helpers"] } claims = "=0.8.0" -diesel = { version = "=2.3.2", features = ["r2d2"] } +diesel = { version = "=2.3.3", features = ["r2d2"] } googletest = "=0.14.2" insta = { version = "=1.43.2", features = ["glob", "json", "redactions"] } jsonwebtoken = "=9.3.1" diff --git a/backend.Dockerfile b/backend.Dockerfile index f0ec9130659..516212524d3 100644 --- a/backend.Dockerfile +++ b/backend.Dockerfile @@ -4,7 +4,7 @@ ARG RUST_VERSION=1.90.0 FROM rust:$RUST_VERSION # renovate: datasource=crate depName=diesel_cli versioning=semver -ARG DIESEL_CLI_VERSION=2.3.2 +ARG DIESEL_CLI_VERSION=2.3.3 RUN apt-get update \ && apt-get install -y postgresql \ diff --git a/crates/crates_io_database/Cargo.toml b/crates/crates_io_database/Cargo.toml index 70255ba93d9..53ae3a87bda 100644 --- a/crates/crates_io_database/Cargo.toml +++ b/crates/crates_io_database/Cargo.toml @@ -12,7 +12,7 @@ bon = "=3.8.1" chrono = { version = "=0.4.42", default-features = false, features = ["serde"] } crates_io_diesel_helpers = { path = "../crates_io_diesel_helpers" } crates_io_index = { path = "../crates_io_index" } -diesel = { version = "=2.3.2", features = ["serde_json", "chrono", "numeric"] } +diesel = { version = "=2.3.3", features = ["serde_json", "chrono", "numeric"] } diesel-async = { version = "=0.7.3", features = ["postgres"] } diesel_full_text_search = "=2.3.0" futures-util = "=0.3.31" diff --git a/crates/crates_io_database_dump/Cargo.toml b/crates/crates_io_database_dump/Cargo.toml index ebed38bed8d..a33ecacbce0 100644 --- a/crates/crates_io_database_dump/Cargo.toml +++ b/crates/crates_io_database_dump/Cargo.toml @@ -22,7 +22,7 @@ zip = { version = "=6.0.0", default-features = false, features = ["deflate"] } [dev-dependencies] crates_io_test_db = { path = "../crates_io_test_db" } -diesel = "=2.3.2" +diesel = "=2.3.3" diesel-async = { version = "=0.7.3", features = ["postgres"] } insta = { version = "=1.43.2", features = ["glob"] } tokio = { version = "=1.48.0", features = ["macros", "rt"] } diff --git a/crates/crates_io_diesel_helpers/Cargo.toml b/crates/crates_io_diesel_helpers/Cargo.toml index 360a23e45e0..76f1f0dc4f3 100644 --- a/crates/crates_io_diesel_helpers/Cargo.toml +++ b/crates/crates_io_diesel_helpers/Cargo.toml @@ -8,7 +8,7 @@ edition = "2024" workspace = true [dependencies] -diesel = { version = "=2.3.2", features = ["postgres"] } +diesel = { version = "=2.3.3", features = ["postgres"] } semver = "=1.0.27" serde = { version = "=1.0.228", features = ["derive"] } diff --git a/crates/crates_io_test_db/Cargo.toml b/crates/crates_io_test_db/Cargo.toml index 32faddfc450..ce336d06341 100644 --- a/crates/crates_io_test_db/Cargo.toml +++ b/crates/crates_io_test_db/Cargo.toml @@ -9,7 +9,7 @@ workspace = true [dependencies] crates_io_env_vars = { path = "../crates_io_env_vars" } -diesel = { version = "=2.3.2", features = ["postgres", "r2d2"] } +diesel = { version = "=2.3.3", features = ["postgres", "r2d2"] } diesel-async = { version = "=0.7.3", features = ["postgres"] } diesel_migrations = { version = "=2.3.0", features = ["postgres"] } rand = "=0.9.2" diff --git a/crates/crates_io_test_utils/Cargo.toml b/crates/crates_io_test_utils/Cargo.toml index d0e2c29aefd..83f03609c61 100644 --- a/crates/crates_io_test_utils/Cargo.toml +++ b/crates/crates_io_test_utils/Cargo.toml @@ -18,7 +18,7 @@ chrono = "=0.4.42" crates_io_api_types = { path = "../crates_io_api_types" } crates_io_database = { path = "../crates_io_database" } crates_io_tarball = { path = "../crates_io_tarball", features = ["builder"] } -diesel = "=2.3.2" +diesel = "=2.3.3" diesel-async = "=0.7.3" semver = "=1.0.27" serde_json = "=1.0.145" diff --git a/crates/crates_io_worker/Cargo.toml b/crates/crates_io_worker/Cargo.toml index 3487a036992..8b8351e26d2 100644 --- a/crates/crates_io_worker/Cargo.toml +++ b/crates/crates_io_worker/Cargo.toml @@ -9,7 +9,7 @@ workspace = true [dependencies] anyhow = "=1.0.100" -diesel = { version = "=2.3.2", features = ["postgres", "serde_json"] } +diesel = { version = "=2.3.3", features = ["postgres", "serde_json"] } diesel-async = { version = "=0.7.3", features = ["async-connection-wrapper", "deadpool", "postgres"] } futures-util = "=0.3.31" sentry-core = { version = "=0.45.0", features = ["client"] }