Skip to content
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
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [ Unreleased ]

## [ 0.3.0 ] 2025-08-28

### Added

- Support default_image flag on Plan

## [ 0.2.0 ] 2025-08-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ecsapi"
version = "0.2.0"
version = "0.3.0"
description = "A simple SDK for manage Seeweb ecs api"
readme = "README.md"
license = {file = "LICENSE"}
Expand Down
2 changes: 2 additions & 0 deletions src/ecsapi/_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class Plan(BaseModel):
windows: bool
host_type: str
available: bool
default_image: Optional[str] = None
available_regions: List[Region]


Expand Down Expand Up @@ -60,6 +61,7 @@ class _PlanAvailable(BaseModel):
windows: bool
host_type: str
available: bool
default_image: Optional[str] = None
os_available: List[Image] = Field(..., alias="os_availables")
region_available: List[_PlanAvailableRegionAvailable] = Field(
..., alias="region_availables"
Expand Down