Skip to content

Commit cc35833

Browse files
feat(alb): add multi API version support (#5496)
relates to STACKITSDK-328 Co-authored-by: Ruben Hoenle <Ruben.Hoenle@stackit.cloud>
1 parent e8465e8 commit cc35833

File tree

148 files changed

+27904
-63
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+27904
-63
lines changed

CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@
22

33
- `core`: [v0.22.0](core/CHANGELOG.md#v0220)
44
- **Feature:** Support Azure DevOps OIDC adapter
5-
- `alb`: [v0.10.0](services/alb/CHANGELOG.md#v0100)
6-
- **Feature:** Add new field `AltPort` to `ActiveHealthCheck`
7-
- **Feature:** Add new field `Tls` to `HttpHealthCheck`
8-
- **Breaking change:** Renamed `TargetPoolTlsConfig` to `TlsConfig`
5+
- `alb`:
6+
- [v0.10.0](services/alb/CHANGELOG.md#v0100)
7+
- **Feature:** Add new field `AltPort` to `ActiveHealthCheck`
8+
- **Feature:** Add new field `Tls` to `HttpHealthCheck`
9+
- **Breaking change:** Renamed `TargetPoolTlsConfig` to `TlsConfig`
10+
- [v0.11.0](services/alb/CHANGELOG.md#v0110)
11+
- **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
12+
- `v2api`: New package which can be used for communication with the alb v2 API
13+
- `v2beta2api`: New package which can be used for communication with the alb v2 beta2 API
14+
- **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.
15+
- **Dependencies:** Bump STACKIT SDK core module from `v0.21.1` to `v0.22.0`
916
- `loadbalancer`:
1017
- [v1.8.0](services/loadbalancer/CHANGELOG.md#v180)
1118
- **Feature:** Add new fields `AltPort` and `HttpHealthCheck` to `ActiveHealthCheck`

services/alb/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v0.11.0
2+
- **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
3+
- `v2api`: New package which can be used for communication with the alb v2 API
4+
- `v2beta2api`: New package which can be used for communication with the alb v2 beta2 API
5+
- **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.
6+
- **Dependencies:** Bump STACKIT SDK core module from `v0.21.1` to `v0.22.0`
7+
18
## v0.10.0
29
- **Feature:** Add new field `AltPort` to `ActiveHealthCheck`
310
- **Feature:** Add new field `Tls` to `HttpHealthCheck`

services/alb/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.10.0
1+
v0.11.0

services/alb/api_default.go

Lines changed: 138 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/alb/client.go

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/alb/configuration.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/alb/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21
55
require (
66
github.com/google/go-cmp v0.7.0
77
github.com/google/uuid v1.6.0
8-
github.com/stackitcloud/stackit-sdk-go/core v0.21.1
8+
github.com/stackitcloud/stackit-sdk-go/core v0.22.0
99
)
1010

1111
require github.com/golang-jwt/jwt/v5 v5.3.1 // indirect

services/alb/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
44
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
55
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
66
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
7-
github.com/stackitcloud/stackit-sdk-go/core v0.21.1 h1:Y/PcAgM7DPYMNqum0MLv4n1mF9ieuevzcCIZYQfm3Ts=
8-
github.com/stackitcloud/stackit-sdk-go/core v0.21.1/go.mod h1:osMglDby4csGZ5sIfhNyYq1bS1TxIdPY88+skE/kkmI=
7+
github.com/stackitcloud/stackit-sdk-go/core v0.22.0 h1:6rViz7GnNwXSh51Lur5xuDzO8EWSZfN9J0HvEkBKq6c=
8+
github.com/stackitcloud/stackit-sdk-go/core v0.22.0/go.mod h1:osMglDby4csGZ5sIfhNyYq1bS1TxIdPY88+skE/kkmI=

0 commit comments

Comments
 (0)