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

Merged
merged 2 commits into from
Sep 24, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/server-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Rust
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
uses: actions-rust-lang/setup-rust-toolchain@v1.10.0
with:
toolchain: stable
components: clippy
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Rust
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
uses: actions-rust-lang/setup-rust-toolchain@v1.10.0
with:
toolchain: stable
cache: false
Expand Down
4 changes: 2 additions & 2 deletions data/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ beautifulsoup4==4.12.3
defusedxml==0.7.1
lxml==5.3.0
Pillow==10.4.0
polars==1.7.1
polars==1.8.1
pyarrow==17.0.0
pydantic==2.9.1
pydantic==2.9.2
pyyaml==6.0.2
requests==2.32.3
requests-oauthlib==2.0.0
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ services:
db:
condition: service_healthy
meilisearch:
image: getmeili/meilisearch:v1.10.1
image: getmeili/meilisearch:v1.10.2
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 @@ -155,7 +155,7 @@ services:
db:
condition: service_healthy
meilisearch:
image: getmeili/meilisearch:v1.10.1
image: getmeili/meilisearch:v1.10.2
restart: unless-stopped
networks:
- traefik_traefik
Expand Down
66 changes: 33 additions & 33 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/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ imageproc = "0.25.0"
ab_glyph = { version = "0.2.28", default-features = false }

rand = "0.8.5"
octocrab = { version = "0.39.0", default-features = false, features = ["default-client", "retry", "rustls", "rustls-webpki-tokio"] }
octocrab = { version = "0.40.0", default-features = false, features = ["default-client", "retry", "rustls", "rustls-webpki-tokio"] }

# auth/security
jsonwebtoken = { version = "9.3.0", default-features = false, features = [] }
actix-governor = { version = "0.5.0", features = ["logger"] }
actix-governor = { version = "0.6.0", features = ["logger"] }

# proposing feedback
tempfile = "3.12.0"
Expand Down
2 changes: 1 addition & 1 deletion server/src/feedback/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const SECONDS_PER_DAY: u64 = 60 * 60 * 24;
pub fn configure(cfg: &mut web::ServiceConfig) {
let feedback_ratelimit = GovernorConfigBuilder::default()
.key_extractor(GlobalKeyExtractor)
.per_second(SECONDS_PER_DAY / 300) // replenish new token every .. seconds
.seconds_per_request(SECONDS_PER_DAY / 300) // replenish new token every .. seconds
.burst_size(50)
.finish()
.expect("Invalid configuration of the governor");
Expand Down
6 changes: 3 additions & 3 deletions webclient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@
"@nuxt/content": "2.13.2",
"@nuxt/image": "1.8.0",
"@nuxtjs/color-mode": "3.4.4",
"@vueuse/core": "11.0.3",
"@vueuse/core": "11.1.0",
"@vueuse/nuxt": "11.0.3",
"@vueuse/router": "11.0.3",
"@vueuse/router": "11.1.0",
"maplibre-gl": "4.7.1",
"maplibre-gl-indoor": "0.0.16",
"nightwind": "1.1.13",
"nuxt": "3.13.0",
"sharp": "0.33.5",
"swagger-ui": "5.17.14",
"swaggerdark": "github:octycs/SwaggerDark#f02d394c8ff698cdd93e09c2188b058d2d686ca3",
"vue": "3.5.5",
"vue": "3.5.8",
"vue-router": "4.4.5",
"vue3-carousel": "0.3.4"
},
Expand Down
Loading
Loading