Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 8, 2023
1 parent 0dc086f commit 8f502c6
Show file tree
Hide file tree
Showing 8 changed files with 240 additions and 224 deletions.
2 changes: 1 addition & 1 deletion data/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-bullseye as build-stage
FROM python:3.12-bullseye as build-stage
WORKDIR /app

ARG GIT_COMMIT_SHA
Expand Down
62 changes: 39 additions & 23 deletions server/Cargo.lock

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

2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.72-alpine AS compiler
FROM rust:1.73-alpine AS compiler

# to ache the build this line inludes all the dependencys all servers need
# this is not an issue since we copy the generated binary to a more minimal envornment
Expand Down
4 changes: 2 additions & 2 deletions server/calendar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ serde_json.workspace = true
chrono = { version = "0.4.31", default-features = false, features = ["serde"] }

# database
diesel = { version = "2.1.2", features = ["default", "chrono", "postgres"] }
diesel = { version = "2.1.3", features = ["default", "chrono", "postgres"] }
diesel_migrations = "2.1.0"

# metrics
Expand All @@ -42,7 +42,7 @@ prometheus = { version = "0.13.3", features = ["default", "push"] }
rand = "0.8.5"
futures = "0.3.28"
rustls = "0.21.7"
reqwest = { version = "0.11.20", default-features = false, features = ["rustls", "json"] }
reqwest = { version = "0.11.22", default-features = false, features = ["rustls", "json"] }
minidom = "0.15.2"
regex = "1.9.6"

Expand Down
4 changes: 2 additions & 2 deletions server/feedback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ serde_json.workspace = true

rand = "0.8.5"
regex = "1.9.6"
octocrab = "0.30.1"
octocrab = "0.31.1"

# web
jsonwebtoken = "8.3.0"
chrono= { version = "0.4.31", default-features = false }
actix-governor = { version = "0.4.1", features = ["log"] }
actix-governor = { version = "0.5.0", features = ["log"] }

# proposing feedback
tempfile = "3.8.0"
Expand Down
4 changes: 2 additions & 2 deletions server/main-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ unicode-truncate = "0.2.0"
serde_yaml = "0.9"

# database
diesel = { version = "2.1.2", features = ["default", "sqlite"] }
diesel = { version = "2.1.3", features = ["default", "sqlite"] }
libsqlite3-sys = { version = "*", features = ["bundled"] }
sqlx = { version = "0.7.2", features = ["sqlite", "runtime-tokio", "migrate", "macros"] }

Expand All @@ -44,7 +44,7 @@ regex = "1.9.6"

# maps
rustls = "0.21.7"
reqwest = { version= "0.11.20", default-features = false, features = ["rustls-tls", "json", "gzip"] }
reqwest = { version= "0.11.22", default-features = false, features = ["rustls-tls", "json", "gzip"] }
image = "0.24.7"
imageproc = "0.23.0"
rusttype = "0.9.3"
Expand Down
Loading

0 comments on commit 8f502c6

Please sign in to comment.