Skip to content

Commit f686502

Browse files
Update diesel packages to v2.3.5 (#12552)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7542d82 commit f686502

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ cookie = { version = "=0.18.1", features = ["secure"] }
9595
deadpool-diesel = { version = "=0.6.1", features = ["postgres", "tracing"] }
9696
derive_more = { version = "=2.1.0", features = ["deref", "deref_mut", "display"] }
9797
dialoguer = "=0.12.0"
98-
diesel = { version = "=2.3.4", features = ["postgres", "serde_json", "chrono", "numeric"] }
98+
diesel = { version = "=2.3.5", features = ["postgres", "serde_json", "chrono", "numeric"] }
9999
diesel-async = { version = "=0.7.4", features = ["async-connection-wrapper", "deadpool", "postgres"] }
100100
diesel_full_text_search = "=2.3.0"
101101
diesel_migrations = { version = "=2.3.1", features = ["postgres"] }
@@ -158,7 +158,7 @@ crates_io_test_db = { path = "crates/crates_io_test_db" }
158158
crates_io_test_utils = { path = "crates/crates_io_test_utils" }
159159
crates_io_trustpub = { path = "crates/crates_io_trustpub", features = ["test-helpers"] }
160160
claims = "=0.8.0"
161-
diesel = { version = "=2.3.4", features = ["r2d2"] }
161+
diesel = { version = "=2.3.5", features = ["r2d2"] }
162162
googletest = "=0.14.2"
163163
insta = { version = "=1.45.0", features = ["glob", "json", "redactions"] }
164164
jsonwebtoken = { version = "=10.2.0", features = ["aws_lc_rs"] }

backend.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG RUST_VERSION=1.92.0
44
FROM rust:$RUST_VERSION
55

66
# renovate: datasource=crate depName=diesel_cli versioning=semver
7-
ARG DIESEL_CLI_VERSION=2.3.4
7+
ARG DIESEL_CLI_VERSION=2.3.5
88

99
RUN apt-get update \
1010
&& apt-get install -y postgresql \

crates/crates_io_database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ chrono = { version = "=0.4.42", default-features = false, features = ["serde"] }
1313
crates_io_diesel_helpers = { path = "../crates_io_diesel_helpers" }
1414
crates_io_index = { path = "../crates_io_index" }
1515
crates_io_validation = { path = "../crates_io_validation" }
16-
diesel = { version = "=2.3.4", features = ["serde_json", "chrono", "numeric"] }
16+
diesel = { version = "=2.3.5", features = ["serde_json", "chrono", "numeric"] }
1717
diesel-async = { version = "=0.7.4", features = ["postgres"] }
1818
diesel_full_text_search = "=2.3.0"
1919
futures-util = "=0.3.31"

crates/crates_io_database_dump/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ zip = { version = "=6.0.0", default-features = false, features = ["deflate"] }
2323

2424
[dev-dependencies]
2525
crates_io_test_db = { path = "../crates_io_test_db" }
26-
diesel = "=2.3.4"
26+
diesel = "=2.3.5"
2727
diesel-async = { version = "=0.7.4", features = ["postgres"] }
2828
insta = { version = "=1.45.0", features = ["glob"] }
2929
tokio = { version = "=1.48.0", features = ["macros", "rt"] }

crates/crates_io_diesel_helpers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2024"
88
workspace = true
99

1010
[dependencies]
11-
diesel = { version = "=2.3.4", features = ["postgres"] }
11+
diesel = { version = "=2.3.5", features = ["postgres"] }
1212
semver = "=1.0.27"
1313
serde = { version = "=1.0.228", features = ["derive"] }
1414

crates/crates_io_test_db/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ workspace = true
99

1010
[dependencies]
1111
crates_io_env_vars = { path = "../crates_io_env_vars" }
12-
diesel = { version = "=2.3.4", features = ["postgres", "r2d2"] }
12+
diesel = { version = "=2.3.5", features = ["postgres", "r2d2"] }
1313
diesel-async = { version = "=0.7.4", features = ["postgres"] }
1414
diesel_migrations = { version = "=2.3.1", features = ["postgres"] }
1515
rand = "=0.9.2"

crates/crates_io_test_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ chrono = "=0.4.42"
1818
crates_io_api_types = { path = "../crates_io_api_types" }
1919
crates_io_database = { path = "../crates_io_database" }
2020
crates_io_tarball = { path = "../crates_io_tarball", features = ["builder"] }
21-
diesel = "=2.3.4"
21+
diesel = "=2.3.5"
2222
diesel-async = "=0.7.4"
2323
semver = "=1.0.27"
2424
serde_json = "=1.0.145"

crates/crates_io_worker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ workspace = true
99

1010
[dependencies]
1111
anyhow = "=1.0.100"
12-
diesel = { version = "=2.3.4", features = ["postgres", "serde_json"] }
12+
diesel = { version = "=2.3.5", features = ["postgres", "serde_json"] }
1313
diesel-async = { version = "=0.7.4", features = ["async-connection-wrapper", "deadpool", "postgres"] }
1414
futures-util = "=0.3.31"
1515
sentry-core = { version = "=0.46.0", features = ["client"] }

0 commit comments

Comments
 (0)