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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Release (2026-MM-DD)
- `iaas`: [v1.2.2](services/iaas/CHANGELOG.md#v122)
- **Docs:** Extend description of `PortRange` class

## Release (2026-03-27)

- `auditlog`: [v0.1.2](services/auditlog/CHANGELOG.md#v012)
Expand Down
3 changes: 3 additions & 0 deletions services/iaas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.2.2
- **Docs:** Extend description of `PortRange` class

## v1.2.1
- **Feature:** client now supports UUID and decimal types
- **Bugfix:** timeouts now passed to requests library
Expand Down
2 changes: 1 addition & 1 deletion services/iaas/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0e64886dd0847341800d7191ed193b75413be998
467fe4d305e48699c34835e45fd1c7b486be01d2
2 changes: 1 addition & 1 deletion services/iaas/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-iaas"
version = "v1.2.1"
version = "v1.2.2"
description = "IaaS-API"
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
requires-python = ">=3.9,<4.0"
Expand Down
2 changes: 1 addition & 1 deletion services/iaas/src/stackit/iaas/models/port_range.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

class PortRange(BaseModel):
"""
Object that represents a range of ports.
Object that represents a range of ports (this will be omitted if it covers the full default range 0/1-65535).
""" # noqa: E501

max: Annotated[int, Field(le=65535, strict=True, ge=0)] = Field(
Expand Down
Loading