From c74cdf70d3a1a69c1947e33c196bad404b9310c7 Mon Sep 17 00:00:00 2001 From: Miauwkeru Date: Thu, 20 Nov 2025 18:21:17 +0100 Subject: [PATCH 1/2] Update dissect.target dependency --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 17e2a64d..36d7e334 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ ] dependencies = [ "dissect.cstruct>=4,<5", - "dissect.target>=3.23.dev,<4", #TODO: remove with next release + "dissect.target>=3.24,<4", ] dynamic = ["version"] @@ -47,7 +47,7 @@ full = [ dev = [ "acquire[full]", "dissect.cstruct>=4.0.dev,<5.0.dev", - "dissect.target[dev]>=3.23.dev,<4.0.dev", + "dissect.target[dev]>=3.24.dev,<4.0.dev", ] [dependency-groups] From 303a3520a3c85074d2a5662b2d4787b73301aa1f Mon Sep 17 00:00:00 2001 From: Miauwkeru Date: Mon, 24 Nov 2025 10:53:01 +0100 Subject: [PATCH 2/2] Fix minio api change --- acquire/uploaders/minio.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/acquire/uploaders/minio.py b/acquire/uploaders/minio.py index 3cc1cee1..839dee99 100644 --- a/acquire/uploaders/minio.py +++ b/acquire/uploaders/minio.py @@ -46,7 +46,9 @@ def prepare_client(self, paths: list[Path], proxies: dict[str, str] | None = Non http_client = urllib3.proxy_from_url(proxies["http"]) if proxies else None - return Minio(self.endpoint, self.access_id, self.access_key, http_client=http_client) + return Minio( + endpoint=self.endpoint, access_key=self.access_id, secret_key=self.access_key, http_client=http_client + ) def upload_file(self, client: Any, path: Path) -> None: object_path = path.name