From 8bbb67a4fac5b611dfb95996781d23b9df137461 Mon Sep 17 00:00:00 2001 From: Fabio Ambauen Date: Mon, 16 Dec 2024 10:34:25 +0100 Subject: [PATCH 1/2] chore: upgrade MinIO --- .envs/.local/.minio | 1 + compose.override.yaml | 2 +- compose.yaml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.envs/.local/.minio b/.envs/.local/.minio index 8a2ffa6ef..b09cb27ba 100644 --- a/.envs/.local/.minio +++ b/.envs/.local/.minio @@ -3,3 +3,4 @@ MINIO_ROOT_USER=mysagw-minio MINIO_ROOT_PASSWORD=mysagw-minio123 MINIO_BROWSER=on +MINIO_CONSOLE_ADDRESS=":9001" diff --git a/compose.override.yaml b/compose.override.yaml index a36db8ef4..5e80fcad5 100644 --- a/compose.override.yaml +++ b/compose.override.yaml @@ -60,7 +60,7 @@ services: minio: env_file: ./.envs/.local/.minio ports: - - "9000:9000" + - "9001:9001" mc: env_file: ./.envs/.local/.minio diff --git a/compose.yaml b/compose.yaml index f080a2357..e2ce0ddf1 100644 --- a/compose.yaml +++ b/compose.yaml @@ -69,7 +69,7 @@ services: image: ghcr.io/adfinis/mysagw/ember:0.2.0 minio: - image: minio/minio:RELEASE.2023-09-04T19-57-37Z + image: minio/minio:RELEASE.2024-12-13T22-19-12Z volumes: - minio_data_snsd:/data command: server data From be6014564c66de35ea53ac305eed669991a3e6bd Mon Sep 17 00:00:00 2001 From: Fabio Ambauen Date: Wed, 18 Dec 2024 09:43:07 +0100 Subject: [PATCH 2/2] chore: pin setuptools to 75.5.0 Related to #1176 --- api/poetry.lock | 2 +- api/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/poetry.lock b/api/poetry.lock index db6395181..d3c731eb9 100644 --- a/api/poetry.lock +++ b/api/poetry.lock @@ -1938,4 +1938,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "959d5c41cece5963b0add9dbde7ad4d628fc53cdc5dce5b98ff921e0c3dc06a5" +content-hash = "fff6ce2828dfbadca8dfb3732129851e996063fb0740d173ef4afb097689b4f0" diff --git a/api/pyproject.toml b/api/pyproject.toml index 560590d01..3782206c7 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -30,7 +30,7 @@ pyexcel-xlsx = "^0.6.0" pypdf = "^4.1.0" requests = "^2.32.2" reportlab = "^4.1.0" -setuptools = "^75.5.0" # needed fopr django-excel +setuptools = "75.5.0" # needed for django-excel. Pinned because of build errors. See https://github.com/adfinis/mySAGW/issues/1176 [tool.poetry.group.dev.dependencies] django-extensions = "^3.2.3"