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
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

- `core`: [v0.22.0](core/CHANGELOG.md#v0220)
- **Feature:** Support Azure DevOps OIDC adapter
- `alb`: [v0.10.0](services/alb/CHANGELOG.md#v0100)
- **Feature:** Add new field `AltPort` to `ActiveHealthCheck`
- **Feature:** Add new field `Tls` to `HttpHealthCheck`
- **Breaking change:** Renamed `TargetPoolTlsConfig` to `TlsConfig`
- `alb`:
- [v0.10.0](services/alb/CHANGELOG.md#v0100)
- **Feature:** Add new field `AltPort` to `ActiveHealthCheck`
- **Feature:** Add new field `Tls` to `HttpHealthCheck`
- **Breaking change:** Renamed `TargetPoolTlsConfig` to `TlsConfig`
- [v0.11.0](services/alb/CHANGELOG.md#v0110)
- **Feature:** Introduction of multi API version support for the alb SDK module. For more details please see the announcement on GitHub: https://github.com/stackitcloud/stackit-sdk-go/discussions/5062
- `v2api`: New package which can be used for communication with the alb v2 API
- `v2beta2api`: New package which can be used for communication with the alb v2 beta2 API
- **Deprecation:** The contents in the root of this SDK module including the `wait` package are marked as deprecated and will be removed after 2026-09-30. Switch to the new packages for the available API versions instead.
- **Dependencies:** Bump STACKIT SDK core module from `v0.21.1` to `v0.22.0`
- `loadbalancer`:
- [v1.8.0](services/loadbalancer/CHANGELOG.md#v180)
- **Feature:** Add new fields `AltPort` and `HttpHealthCheck` to `ActiveHealthCheck`
Expand Down
7 changes: 7 additions & 0 deletions services/alb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v0.11.0
- **Feature:** Introduction of multi API version support for the alb SDK module. For more details please see the announcement on GitHub: https://github.com/stackitcloud/stackit-sdk-go/discussions/5062
- `v2api`: New package which can be used for communication with the alb v2 API
- `v2beta2api`: New package which can be used for communication with the alb v2 beta2 API
- **Deprecation:** The contents in the root of this SDK module including the `wait` package are marked as deprecated and will be removed after 2026-09-30. Switch to the new packages for the available API versions instead.
- **Dependencies:** Bump STACKIT SDK core module from `v0.21.1` to `v0.22.0`

## v0.10.0
- **Feature:** Add new field `AltPort` to `ActiveHealthCheck`
- **Feature:** Add new field `Tls` to `HttpHealthCheck`
Expand Down
2 changes: 1 addition & 1 deletion services/alb/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.10.0
v0.11.0
170 changes: 138 additions & 32 deletions services/alb/api_default.go

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions services/alb/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions services/alb/configuration.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/alb/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
require (
github.com/google/go-cmp v0.7.0
github.com/google/uuid v1.6.0
github.com/stackitcloud/stackit-sdk-go/core v0.21.1
github.com/stackitcloud/stackit-sdk-go/core v0.22.0
)

require github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
4 changes: 2 additions & 2 deletions services/alb/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/stackitcloud/stackit-sdk-go/core v0.21.1 h1:Y/PcAgM7DPYMNqum0MLv4n1mF9ieuevzcCIZYQfm3Ts=
github.com/stackitcloud/stackit-sdk-go/core v0.21.1/go.mod h1:osMglDby4csGZ5sIfhNyYq1bS1TxIdPY88+skE/kkmI=
github.com/stackitcloud/stackit-sdk-go/core v0.22.0 h1:6rViz7GnNwXSh51Lur5xuDzO8EWSZfN9J0HvEkBKq6c=
github.com/stackitcloud/stackit-sdk-go/core v0.22.0/go.mod h1:osMglDby4csGZ5sIfhNyYq1bS1TxIdPY88+skE/kkmI=
Loading
Loading