Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 2, 2023
1 parent 153eaa0 commit 078c944
Show file tree
Hide file tree
Showing 9 changed files with 297 additions and 348 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
2 changes: 1 addition & 1 deletion data/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Pillow~=10.1.0
pydantic~=2.4.2
pyyaml~=6.0
requests~=2.31.0
ruamel.yaml~=0.17.24
ruamel.yaml~=0.18.4
tqdm~=4.66.0
utm~=0.7.0
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.1
tag: v1.4.2
calendar:
scrape_tasks:
- name: refresh-calendar-slow # takes ~6m to complete
Expand Down
109 changes: 59 additions & 50 deletions server/Cargo.lock

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

4 changes: 2 additions & 2 deletions server/calendar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ prometheus = { version = "0.13.3", features = ["default", "push"] }

# scraper
rand = "0.8.5"
futures = "0.3.28"
rustls = "0.21.7"
futures = "0.3.29"
rustls = "0.21.8"
reqwest = { version = "0.11.22", default-features = false, features = ["rustls", "json"] }
minidom = "0.15.2"
regex = "1.10.2"
Expand Down
6 changes: 3 additions & 3 deletions server/feedback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ regex = "1.10.2"
octocrab = "0.31.2"

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

# proposing feedback
tempfile = "3.8.0"
tempfile = "3.8.1"
image = { version = "0.24.7", features = ["default", "webp-encoder"] }
imageproc = "0.23.0"
base64 = "0.21.4"
base64 = "0.21.5"
serde_yaml = "0.9"

[dev-dependencies]
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 @@ -26,7 +26,7 @@ serde.workspace = true
serde_json.workspace = true

cached = { version = "0.46.0", features = ["default", "async", "tokio"] }
futures = "0.3.28"
futures = "0.3.29"
unicode-truncate = "0.2.0"

# setup
Expand All @@ -38,12 +38,12 @@ libsqlite3-sys = { version = "*", features = ["bundled"] }
sqlx = { version = "0.7.2", features = ["sqlite", "runtime-tokio", "migrate", "macros"] }

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

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

0 comments on commit 078c944

Please sign in to comment.