Skip to content

Commit 07fb9d2

Browse files
Merge branch 'main' into feat/STACKITSDK-377_loadbalancer-wait-handler
2 parents 783ae0e + 2803b40 commit 07fb9d2

98 files changed

Lines changed: 15750 additions & 1656 deletions

File tree

Some content is hidden

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

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@
119119
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.1` to `v0.25.0`
120120
- [v0.12.2](services/git/CHANGELOG.md#v0122)
121121
- **Dependencies:** Bump STACKIT SDK core module from `v0.25.0` to `v0.26.0`
122+
- [v0.13.0](services/git/CHANGELOG.md#v0130)
123+
- `v1betaapi`: **Improvement**: Use new `WaiterHandler` struct in the Git WaitHandler
122124
- `iaas`:
123125
- [v1.9.1](services/iaas/CHANGELOG.md#v191)
124126
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.0` to `v0.24.1`
@@ -158,6 +160,8 @@
158160
- **Dependencies:** Bump STACKIT SDK core module from `v0.25.0` to `v0.26.0`
159161
- [v1.8.0](services/kms/CHANGELOG.md#v180)
160162
- **Feature:** Added `_UNKNOWN_DEFAULT_OPEN_API` fallback value to all enums to handle unknown API values gracefully.
163+
- [v1.9.0](services/kms/CHANGELOG.md#v190)
164+
- **Improvement:** Use new WaitHandler struct for all wait handlers
161165
- `lbapplication`:
162166
- [v0.5.7](services/lbapplication/CHANGELOG.md#v057)
163167
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.0` to `v0.24.1`
@@ -392,6 +396,8 @@
392396
- **Feature:** new field `SnapshotSchedules` in model `SnapshotPolicy`
393397
- **Feature:** new field `Interval` in model `SnapshotPolicySchedule`
394398
- **Feature:** new model `SnapshotPolicySnapshotPolicySchedule`
399+
- [v0.10.0](services/sfs/CHANGELOG.md#v0100)
400+
- **Breaking change:** Change type from `*string` to `NullableString` of field `SnapshotPolicyId` in model `UpdateResourcePoolPayload`
395401
- `ske`:
396402
- [v1.11.2](services/ske/CHANGELOG.md#v1112)
397403
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.0` to `v0.24.1`
@@ -455,7 +461,10 @@
455461
- **Dependencies:** Bump STACKIT SDK core module to `v0.26.0`
456462
- [v0.6.0](services/vpn/CHANGELOG.md#v060)
457463
- **Feature:** Added `_UNKNOWN_DEFAULT_OPEN_API` fallback value to all enums to handle unknown API values gracefully.
458-
464+
- [v0.7.0](services/vpn/CHANGELOG.md#v070)
465+
- `v1api`: New package which can be used for communication with the STACKIT vpn v1 API
466+
- `v1beta1api`: Align package to latest API specification
467+
- `v1alpha1api`: Align package to latest API specification
459468

460469
## Release (2026-04-07)
461470
- `alb`: [v0.13.1](services/alb/CHANGELOG.md#v0131)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ To make your contribution, follow these steps:
166166
1. Check open or recently closed [Pull Requests](https://github.com/stackitcloud/stackit-sdk-go/pulls) and [Issues](https://github.com/stackitcloud/stackit-sdk-go/issues) to make sure the contribution you are making has not been already tackled by someone else.
167167
2. Fork the repo.
168168
3. Make your changes in a branch that is up-to-date with the original repo's `main` branch.
169-
4. Commit your changes including a descriptive message.
169+
4. Commit your changes including a descriptive message (see our [commit message guide](https://github.com/stackitcloud/terraform-provider-stackit/blob/main/CONTRIBUTING.md#commit-messages) in the STACKIT Terraform provider repository).
170170
5. Create a pull request with your changes.
171171
6. The pull request will be reviewed by the repo maintainers. If you need to make further changes, make additional commits to keep commit history. When the PR is merged, commits will be squashed.
172172

examples/auditlog/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/stackitcloud/stackit-sdk-go/services/auditlog => ../../servic
77

88
require (
99
github.com/stackitcloud/stackit-sdk-go/core v0.26.0
10-
github.com/stackitcloud/stackit-sdk-go/services/auditlog v0.4.1
10+
github.com/stackitcloud/stackit-sdk-go/services/auditlog v0.4.2
1111
)
1212

1313
require (

examples/authorization/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25
55
// This is not needed in production. This is only here to point the golangci linter to the local version instead of the last release on GitHub.
66
replace github.com/stackitcloud/stackit-sdk-go/services/authorization => ../../services/authorization
77

8-
require github.com/stackitcloud/stackit-sdk-go/services/authorization v0.15.1
8+
require github.com/stackitcloud/stackit-sdk-go/services/authorization v0.15.2
99

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

examples/cost/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/stackitcloud/stackit-sdk-go/services/cost => ../../services/c
77

88
require (
99
github.com/stackitcloud/stackit-sdk-go/core v0.26.0
10-
github.com/stackitcloud/stackit-sdk-go/services/cost v0.3.1
10+
github.com/stackitcloud/stackit-sdk-go/services/cost v0.3.2
1111
)
1212

1313
require (

examples/edge/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/stackitcloud/stackit-sdk-go/services/edge => ../../services/e
77

88
require (
99
github.com/stackitcloud/stackit-sdk-go/core v0.26.0
10-
github.com/stackitcloud/stackit-sdk-go/services/edge v0.9.1
10+
github.com/stackitcloud/stackit-sdk-go/services/edge v0.11.0
1111
gopkg.in/yaml.v3 v3.0.1
1212
)
1313

examples/iaas/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/stackitcloud/stackit-sdk-go/services/iaas => ../../services/i
77

88
require (
99
github.com/stackitcloud/stackit-sdk-go/core v0.26.0
10-
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.10.2
10+
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.11.1
1111
)
1212

1313
require (

examples/intake/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/stackitcloud/stackit-sdk-go/services/intake => ../../services
77

88
require (
99
github.com/stackitcloud/stackit-sdk-go/core v0.26.0
10-
github.com/stackitcloud/stackit-sdk-go/services/intake v0.8.1
10+
github.com/stackitcloud/stackit-sdk-go/services/intake v0.9.0
1111
)
1212

1313
require (

examples/kms/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/stackitcloud/stackit-sdk-go/services/kms => ../../services/km
77

88
require (
99
github.com/stackitcloud/stackit-sdk-go/core v0.26.0
10-
github.com/stackitcloud/stackit-sdk-go/services/kms v1.7.2
10+
github.com/stackitcloud/stackit-sdk-go/services/kms v1.9.0
1111
)
1212

1313
require (

examples/loadbalancer/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/stackitcloud/stackit-sdk-go/services/loadbalancer => ../../se
77

88
require (
99
github.com/stackitcloud/stackit-sdk-go/core v0.26.0
10-
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.12.1
10+
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.12.2
1111
)
1212

1313
require (

0 commit comments

Comments
 (0)