Skip to content

Update diesel packages to v2.1.0 #6531

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
# renovate: datasource=crate depName=cargo-deny versioning=semver
CARGO_DENY_VERSION: 0.13.9
# renovate: datasource=crate depName=diesel_cli versioning=semver
DIESEL_CLI_VERSION: 2.0.1
DIESEL_CLI_VERSION: 2.1.0
# renovate: datasource=npm depName=pnpm
PNPM_VERSION: 8.6.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
# renovate: datasource=crate depName=cargo-tarpaulin versioning=semver
CARGO_TARPAULIN_VERSION: 0.25.2
# renovate: datasource=crate depName=diesel_cli versioning=semver
DIESEL_CLI_VERSION: 2.0.1
DIESEL_CLI_VERSION: 2.1.0
# renovate: datasource=github-releases depName=rust lookupName=rust-lang/rust
RUST_VERSION: 1.69.0

Expand Down
108 changes: 45 additions & 63 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ cookie = { version = "=0.17.0", features = ["secure"] }
dashmap = { version = "=5.4.0", features = ["raw-api"] }
derive_deref = "=1.1.1"
dialoguer = "=0.10.4"
diesel = { version = "=2.0.4", features = ["postgres", "serde_json", "chrono", "r2d2"] }
diesel_full_text_search = "=2.0.0"
diesel_migrations = { version = "=2.0.0", features = ["postgres"] }
diesel = { version = "=2.1.0", features = ["postgres", "serde_json", "chrono", "r2d2"] }
diesel_full_text_search = "=2.1.0"
diesel_migrations = { version = "=2.1.0", features = ["postgres"] }
dotenvy = "=0.15.7"
flate2 = "=1.0.26"
futures-channel = { version = "=0.3.28", default-features = false }
Expand Down Expand Up @@ -100,6 +100,6 @@ tokio = "=1.28.2"
tower-service = "=0.3.2"

[build-dependencies]
diesel = { version = "=2.0.4", features = ["postgres"] }
diesel_migrations = { version = "=2.0.0", features = ["postgres"] }
diesel = { version = "=2.1.0", features = ["postgres"] }
diesel_migrations = { version = "=2.1.0", features = ["postgres"] }
dotenvy = "=0.15.7"
2 changes: 1 addition & 1 deletion backend.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG RUST_VERSION=1.69.0
FROM rust:$RUST_VERSION

# renovate: datasource=crate depName=diesel_cli versioning=semver
ARG DIESEL_CLI_VERSION=2.0.1
ARG DIESEL_CLI_VERSION=2.1.0

RUN apt-get update \
&& apt-get install -y postgresql \
Expand Down
Loading