From 052084700616b3c5831c3dc5cedb6017e8a7a62b Mon Sep 17 00:00:00 2001 From: Ananias CARVALHO Date: Sun, 14 Sep 2025 17:10:30 +0200 Subject: [PATCH 1/2] fix: make type field of BuildArtifact optional --- pyartifactory/models/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyartifactory/models/build.py b/pyartifactory/models/build.py index 896cc2a..e09fdf1 100644 --- a/pyartifactory/models/build.py +++ b/pyartifactory/models/build.py @@ -54,7 +54,7 @@ class BuildRuns(BaseModel): class BuildArtifact(BaseModel): """Models artifactory build artifact.""" - type: str + type: Optional[str] = None sha1: str sha256: str md5: str From efbe0584dea6c247727b2a7c3ff72f10f8272c0b Mon Sep 17 00:00:00 2001 From: Ananias CARVALHO Date: Sun, 14 Sep 2025 17:11:35 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=202.11.0=20=E2=86=92=202.11?= =?UTF-8?q?.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 848cfcb..8b511e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PyArtifactory" -version = "2.11.0" +version = "2.11.1" description = "Typed interactions with the Jfrog Artifactory REST API" authors = [ "Ananias CARVALHO ",