Skip to content

Commit 4bd0aff

Browse files
Update diesel packages to v2.2.11 (#11384)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9562b18 commit 4bd0aff

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
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
@@ -84,7 +84,7 @@ cookie = { version = "=0.18.1", features = ["secure"] }
8484
deadpool-diesel = { version = "=0.6.1", features = ["postgres", "tracing"] }
8585
derive_more = { version = "=2.0.1", features = ["deref", "deref_mut", "display"] }
8686
dialoguer = "=0.11.0"
87-
diesel = { version = "=2.2.10", features = ["postgres", "serde_json", "chrono", "numeric"] }
87+
diesel = { version = "=2.2.11", features = ["postgres", "serde_json", "chrono", "numeric"] }
8888
diesel-async = { version = "=0.5.2", features = ["async-connection-wrapper", "deadpool", "postgres"] }
8989
diesel_full_text_search = "=2.2.0"
9090
diesel_migrations = { version = "=2.2.0", features = ["postgres"] }
@@ -147,7 +147,7 @@ crates_io_team_repo = { path = "crates/crates_io_team_repo", features = ["mock"]
147147
crates_io_test_db = { path = "crates/crates_io_test_db" }
148148
crates_io_trustpub = { path = "crates/crates_io_trustpub", features = ["test-helpers"] }
149149
claims = "=0.8.0"
150-
diesel = { version = "=2.2.10", features = ["r2d2"] }
150+
diesel = { version = "=2.2.11", features = ["r2d2"] }
151151
googletest = "=0.14.1"
152152
insta = { version = "=1.43.1", features = ["glob", "json", "redactions"] }
153153
jsonwebtoken = "=9.3.1"

backend.Dockerfile

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

66
# renovate: datasource=crate depName=diesel_cli versioning=semver
7-
ARG DIESEL_CLI_VERSION=2.2.10
7+
ARG DIESEL_CLI_VERSION=2.2.11
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
@@ -12,7 +12,7 @@ bon = "=3.6.4"
1212
chrono = { version = "=0.4.41", default-features = false, features = ["serde"] }
1313
crates_io_diesel_helpers = { path = "../crates_io_diesel_helpers" }
1414
crates_io_index = { path = "../crates_io_index" }
15-
diesel = { version = "=2.2.10", features = ["serde_json", "chrono", "numeric"] }
15+
diesel = { version = "=2.2.11", features = ["serde_json", "chrono", "numeric"] }
1616
diesel-async = "=0.5.2"
1717
diesel_full_text_search = "=2.2.0"
1818
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
@@ -22,7 +22,7 @@ zip = { version = "=4.1.0", default-features = false, features = ["deflate"] }
2222

2323
[dev-dependencies]
2424
crates_io_test_db = { path = "../crates_io_test_db" }
25-
diesel = "=2.2.10"
25+
diesel = "=2.2.11"
2626
diesel-async = { version = "=0.5.2", features = ["postgres"] }
2727
insta = { version = "=1.43.1", features = ["glob"] }
2828
tokio = { version = "=1.45.1", 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.2.10", features = ["postgres"] }
11+
diesel = { version = "=2.2.11", features = ["postgres"] }
1212
semver = "=1.0.26"
1313
serde = { version = "=1.0.219", 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.2.10", features = ["postgres", "r2d2"] }
12+
diesel = { version = "=2.2.11", features = ["postgres", "r2d2"] }
1313
diesel-async = { version = "=0.5.2", features = ["postgres"] }
1414
diesel_migrations = { version = "=2.2.0", features = ["postgres"] }
1515
rand = "=0.9.1"

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.98"
12-
diesel = { version = "=2.2.10", features = ["postgres", "serde_json"] }
12+
diesel = { version = "=2.2.11", features = ["postgres", "serde_json"] }
1313
diesel-async = { version = "=0.5.2", features = ["async-connection-wrapper", "deadpool", "postgres"] }
1414
futures-util = "=0.3.31"
1515
sentry-core = { version = "=0.40.0", features = ["client"] }

0 commit comments

Comments
 (0)