Skip to content
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

fix(deps): update all non-major dependencies #838

Merged
merged 4 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 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
CommanderStorm marked this conversation as resolved.
Show resolved Hide resolved

ARG GIT_COMMIT_SHA
Expand Down
2 changes: 1 addition & 1 deletion data/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ beautifulsoup4~=4.12.2
defusedxml~=0.7.1
lxml~=4.9.2
numba~=0.58.0
Pillow~=10.0.0
Pillow~=10.1.0
pydantic~=2.4.2
pyyaml~=6.0
requests~=2.31.0
Expand Down
2 changes: 1 addition & 1 deletion deployment/k3s/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ server:
mielisearch:
image:
repository: 'getmeili/meilisearch'
tag: v1.4.0
tag: v1.4.1
calendar:
scrape_tasks:
- name: refresh-calendar-slow # takes ~6m to complete
Expand Down
94 changes: 61 additions & 33 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/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ structured-logger = "1.0.3"
actix-web-prom = { version = "0.7.0", default-features = false, features = [] }

# runtime + webserver
tokio = { version = "1.32", features = ["full"] }
tokio = { version = "1.33", features = ["full"] }
actix-web = "4.4.0"
actix-cors = "0.6.4"

Expand Down
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
6 changes: 3 additions & 3 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,9 +42,9 @@ 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"
regex = "1.10.2"

[dev-dependencies]
pretty_assertions.workspace = true
6 changes: 3 additions & 3 deletions server/feedback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ serde.workspace = true
serde_json.workspace = true

rand = "0.8.5"
regex = "1.9.6"
octocrab = "0.30.1"
regex = "1.10.2"
octocrab = "0.31.2"

# 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
6 changes: 3 additions & 3 deletions server/main-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ 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"] }

# search
meilisearch-sdk = "0.24.2"
logos="0.13.0"
regex = "1.9.6"
regex = "1.10.2"

# 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
Loading