Skip to content

Commit 6704585

Browse files
Update diesel packages to v2.3.0
1 parent 6fa86ab commit 6704585

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ cookie = { version = "=0.18.1", features = ["secure"] }
8686
deadpool-diesel = { version = "=0.6.1", features = ["postgres", "tracing"] }
8787
derive_more = { version = "=2.0.1", features = ["deref", "deref_mut", "display"] }
8888
dialoguer = "=0.12.0"
89-
diesel = { version = "=2.2.12", features = ["postgres", "serde_json", "chrono", "numeric"] }
89+
diesel = { version = "=2.3.0", features = ["postgres", "serde_json", "chrono", "numeric"] }
9090
diesel-async = { version = "=0.6.1", features = ["async-connection-wrapper", "deadpool", "postgres"] }
9191
diesel_full_text_search = "=2.2.0"
92-
diesel_migrations = { version = "=2.2.0", features = ["postgres"] }
92+
diesel_migrations = { version = "=2.3.0", features = ["postgres"] }
9393
dotenvy = "=0.15.7"
9494
flate2 = "=1.1.2"
9595
futures-util = "=0.3.31"
@@ -151,7 +151,7 @@ crates_io_team_repo = { path = "crates/crates_io_team_repo", features = ["mock"]
151151
crates_io_test_db = { path = "crates/crates_io_test_db" }
152152
crates_io_trustpub = { path = "crates/crates_io_trustpub", features = ["test-helpers"] }
153153
claims = "=0.8.0"
154-
diesel = { version = "=2.2.12", features = ["r2d2"] }
154+
diesel = { version = "=2.3.0", features = ["r2d2"] }
155155
googletest = "=0.14.2"
156156
insta = { version = "=1.43.2", features = ["glob", "json", "redactions"] }
157157
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.89.0
44
FROM rust:$RUST_VERSION
55

66
# renovate: datasource=crate depName=diesel_cli versioning=semver
7-
ARG DIESEL_CLI_VERSION=2.2.12
7+
ARG DIESEL_CLI_VERSION=2.3.0
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.7.2"
1212
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" }
15-
diesel = { version = "=2.2.12", features = ["serde_json", "chrono", "numeric"] }
15+
diesel = { version = "=2.3.0", features = ["serde_json", "chrono", "numeric"] }
1616
diesel-async = { version = "=0.6.1", features = ["postgres"] }
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 = "=5.1.1", default-features = false, features = ["deflate"] }
2222

2323
[dev-dependencies]
2424
crates_io_test_db = { path = "../crates_io_test_db" }
25-
diesel = "=2.2.12"
25+
diesel = "=2.3.0"
2626
diesel-async = { version = "=0.6.1", features = ["postgres"] }
2727
insta = { version = "=1.43.2", features = ["glob"] }
2828
tokio = { version = "=1.47.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.12", features = ["postgres"] }
11+
diesel = { version = "=2.3.0", 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ workspace = true
99

1010
[dependencies]
1111
crates_io_env_vars = { path = "../crates_io_env_vars" }
12-
diesel = { version = "=2.2.12", features = ["postgres", "r2d2"] }
12+
diesel = { version = "=2.3.0", features = ["postgres", "r2d2"] }
1313
diesel-async = { version = "=0.6.1", features = ["postgres"] }
14-
diesel_migrations = { version = "=2.2.0", features = ["postgres"] }
14+
diesel_migrations = { version = "=2.3.0", features = ["postgres"] }
1515
rand = "=0.9.2"
1616
tracing = "=0.1.41"
1717
url = "=2.5.7"

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.99"
12-
diesel = { version = "=2.2.12", features = ["postgres", "serde_json"] }
12+
diesel = { version = "=2.3.0", features = ["postgres", "serde_json"] }
1313
diesel-async = { version = "=0.6.1", features = ["async-connection-wrapper", "deadpool", "postgres"] }
1414
futures-util = "=0.3.31"
1515
sentry-core = { version = "=0.42.0", features = ["client"] }

0 commit comments

Comments
 (0)