Skip to content
Closed
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
- New Loki model classes: `LokiLogSinkCredentials`, `LokiLogSinkCreate`, `LokiLogSinkPatch`
- New Backend model classes: `HttpBackendCreate`, `BucketBackendCreate`, `BucketBackend`, `BucketBackendPatch`, `CreateDistributionPayloadBackend`, `ConfigPatchBackend`, `ConfigBackend`
- Other new model classes: `BucketCredentials`
- `alb` [v0.6.1](services/alb/CHANGELOG.md#v061)
- Update description of field `WafConfigName` in `Listener` model

## Release (2025-10-29)
- `stackitmarketplace`: [v1.15.0](services/stackitmarketplace/CHANGELOG.md#v1150)
Expand Down
3 changes: 3 additions & 0 deletions services/alb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.6.1
- Update description of field `WafConfigName` in `Listener` model

## v0.6.0
- **Feature:** Add attribute `labels` to `LoadBalancer`, `CreateLoadBalancerPayload` and `UpdateLoadBalancerPayload` model classes
- **Feature:** Add attribute `waf_config_name` to `Listener` model class
Expand Down
2 changes: 1 addition & 1 deletion services/alb/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stackit-alb"

[tool.poetry]
name = "stackit-alb"
version = "v0.6.0"
version = "v0.6.1"
authors = [
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
]
Expand Down
2 changes: 1 addition & 1 deletion services/alb/src/stackit/alb/models/listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Listener(BaseModel):
)
waf_config_name: Optional[Annotated[str, Field(strict=True)]] = Field(
default=None,
description='Enable Web Application Firewall (WAF), referenced to a by name. See "Application Load Balancer - Web Application Firewall API" for more information.',
description='Enable Web Application Firewall (WAF), referenced by name. See "Application Load Balancer - Web Application Firewall API" for more information.',
alias="wafConfigName",
)
__properties: ClassVar[List[str]] = ["http", "https", "name", "port", "protocol", "wafConfigName"]
Expand Down