Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 28, 2024
1 parent 7417057 commit cfc870b
Show file tree
Hide file tree
Showing 10 changed files with 307 additions and 269 deletions.
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.7.2
tag: v1.7.3
calendar:
scrape_tasks:
- name: refresh-calendar-slow # takes ~6m to complete
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ services:
interval: 10s
start_period: 60s
meilisearch:
image: getmeili/meilisearch:v1.7.2
image: getmeili/meilisearch:v1.7.3
restart: unless-stopped
ports:
- "7700:7700"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ services:
interval: 10s
start_period: 60s
meilisearch:
image: getmeili/meilisearch:v1.7.2
image: getmeili/meilisearch:v1.7.3
restart: unless-stopped
expose:
- "7700"
Expand Down
70 changes: 41 additions & 29 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 @@ -16,7 +16,7 @@ actix-web-prom = { version = "0.8.0", default-features = false, features = [] }
tokio = { version = "1.36", features = ["full"] }
actix-web = { version = "4.5.1", default-features = false, features = ["macros", "compress-gzip", "cookies", "http2"] }
actix-cors = "0.7.0"
rustls = { version = "0.23.2", default-features = false, features = ["ring"] } # the aws' fips complient libary has weird bingen issues which require deeper looking into
rustls = { version = "0.23.4", default-features = false, features = ["ring"] } # the aws' fips complient libary has weird bingen issues which require deeper looking into

#serialisation
serde = { version = "1.0", features = ["derive"] }
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.76-alpine AS compiler
FROM rust:1.77-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
8 changes: 4 additions & 4 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
rustls.workspace = true

rand = "0.8.5"
regex = "1.10.3"
octocrab = { version = "0.36.0", default-features = false, features = ["rustls", "rustls-webpki-tokio", "retry", "default-client"] }
regex = "1.10.4"
octocrab = { version = "0.37.0", default-features = false, features = ["rustls", "rustls-webpki-tokio", "retry", "default-client"] }

# web
jsonwebtoken = { version = "9.2.0", default-features = false, features = [] }
chrono = { version = "0.4.35", default-features = false, features = [] }
jsonwebtoken = { version = "9.3.0", default-features = false, features = [] }
chrono = { version = "0.4.37", default-features = false, features = [] }
actix-governor = { version = "0.5.0", features = ["logger"] }

# proposing feedback
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 @@ -35,16 +35,16 @@ serde_yaml = "0.9"

# database
sqlx = { version = "0.7.4", features = ["postgres", "runtime-tokio-rustls", "migrate", "macros", "chrono"] }
chrono = { version = "0.4.35", default-features = false, features = ["serde"] }
chrono = { version = "0.4.37", default-features = false, features = ["serde"] }

# search
meilisearch-sdk = "0.25.0"
logos = "0.14.0"
regex = "1.10.3"
regex = "1.10.4"

# web access
oauth2 = { version = "4.4.2", default-features = false, features = ["rustls-tls", "reqwest"] }
reqwest = { version = "0.12.0", default-features = false, features = ["rustls-tls", "http2", "charset", "json", "gzip", "hickory-dns"] }
reqwest = { version = "0.12.2", default-features = false, features = ["rustls-tls", "http2", "charset", "json", "gzip", "hickory-dns"] }

# image production
image.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions webclient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
},
"dependencies": {
"@headlessui/vue": "1.7.19",
"@heroicons/vue": "2.1.1",
"@heroicons/vue": "2.1.3",
"@vueuse/core": "10.9.0",
"maplibre-gl": "4.1.1",
"maplibre-gl": "4.1.2",
"markdown-it-prism": "2.3.0",
"nightwind": "^1.1.13",
"pinia": "2.1.7",
Expand Down
Loading

0 comments on commit cfc870b

Please sign in to comment.