Skip to content

Commit d40d282

Browse files
Update diesel packages to v2.2.9 (#10944)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 0e747d2 commit d40d282

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ cookie = { version = "=0.18.1", features = ["secure"] }
8282
deadpool-diesel = { version = "=0.6.1", features = ["postgres", "tracing"] }
8383
derive_more = { version = "=2.0.1", features = ["deref", "deref_mut", "display"] }
8484
dialoguer = "=0.11.0"
85-
diesel = { version = "=2.2.8", features = ["postgres", "serde_json", "chrono", "numeric"] }
85+
diesel = { version = "=2.2.9", features = ["postgres", "serde_json", "chrono", "numeric"] }
8686
diesel-async = { version = "=0.5.2", features = ["async-connection-wrapper", "deadpool", "postgres"] }
8787
diesel_full_text_search = "=2.2.0"
8888
diesel_migrations = { version = "=2.2.0", features = ["postgres"] }
@@ -143,7 +143,7 @@ crates_io_tarball = { path = "crates/crates_io_tarball", features = ["builder"]
143143
crates_io_team_repo = { path = "crates/crates_io_team_repo", features = ["mock"] }
144144
crates_io_test_db = { path = "crates/crates_io_test_db" }
145145
claims = "=0.8.0"
146-
diesel = { version = "=2.2.8", features = ["r2d2"] }
146+
diesel = { version = "=2.2.9", features = ["r2d2"] }
147147
googletest = "=0.14.0"
148148
insta = { version = "=1.42.2", features = ["glob", "json", "redactions"] }
149149
regex = "=1.11.1"

backend.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG RUST_VERSION=1.86.0
44
FROM rust:$RUST_VERSION
55

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

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

crates/crates_io_database/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bon = "=3.5.1"
1212
chrono = { version = "=0.4.40", 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.8", features = ["serde_json", "chrono", "numeric"] }
15+
diesel = { version = "=2.2.9", 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ zip = { version = "=2.6.1", default-features = false, features = ["deflate"] }
2222

2323
[dev-dependencies]
2424
crates_io_test_db = { path = "../crates_io_test_db" }
25-
diesel = "=2.2.8"
25+
diesel = "=2.2.9"
2626
diesel-async = { version = "=0.5.2", features = ["postgres"] }
2727
insta = { version = "=1.42.2", features = ["glob"] }
2828
tokio = { version = "=1.44.2", features = ["macros", "rt"] }

crates/crates_io_diesel_helpers/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
workspace = true
99

1010
[dependencies]
11-
diesel = { version = "=2.2.8", features = ["postgres"] }
11+
diesel = { version = "=2.2.9", features = ["postgres"] }
1212
semver = "=1.0.26"
1313
serde = { version = "=1.0.219", features = ["derive"] }
1414

crates/crates_io_test_db/Cargo.toml

+1-1
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.8", features = ["postgres", "r2d2"] }
12+
diesel = { version = "=2.2.9", 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.0"

crates/crates_io_worker/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ workspace = true
99

1010
[dependencies]
1111
anyhow = "=1.0.97"
12-
diesel = { version = "=2.2.8", features = ["postgres", "serde_json"] }
12+
diesel = { version = "=2.2.9", 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.37.0", features = ["client"] }

0 commit comments

Comments
 (0)