Skip to content

Commit 08787a5

Browse files
committed
Merge remote-tracking branch 'origin/feat/STACKITSDK-378-logme-refactor-wait-handler' into feat/STACKITSDK-378-logme-refactor-wait-handler
2 parents 75d9ac1 + 7703305 commit 08787a5

32 files changed

Lines changed: 1177 additions & 353 deletions

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
- **Dependencies:** Bump STACKIT SDK core module to `v0.26.0`
2424
- [v0.5.0](services/albwaf/CHANGELOG.md#v050)
2525
- `v1alphaapi`: Align package to latest API specification
26+
- [v0.6.0](services/albwaf/CHANGELOG.md#v060)
27+
- `v1alphaapi`: Align package to latest API specification
2628
- `archiving`:
2729
- [v0.2.6](services/archiving/CHANGELOG.md#v026)
2830
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.0` to `v0.24.1`
@@ -73,6 +75,11 @@
7375
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.1` to `v0.25.0`
7476
- [v1.6.2](services/certificates/CHANGELOG.md#v162)
7577
- **Dependencies:** Bump STACKIT SDK core module to `v0.26.0`
78+
- [v1.7.0](services/certificates/CHANGELOG.md#v170)
79+
- `v2api`:
80+
- Add field `Labels` (type `*map[string]string`) to structs `CreateCertificatePayload` and `GetCertificateResponse`
81+
- Deprecated SDK layer in root of the module:
82+
- Add field `Labels` (type `*map[string]string`) to structs `CreateCertificatePayload` and `GetCertificateResponse`
7683
- `cost`:
7784
- [v0.2.2](services/cost/CHANGELOG.md#v022)
7885
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.0` to `v0.24.1`
@@ -212,6 +219,8 @@
212219
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.1` to `v0.25.0`
213220
- [v0.28.2](services/mariadb/CHANGELOG.md#v282)
214221
- **Dependencies:** Bump STACKIT SDK core module from `v0.25.0` to `v0.26.0`
222+
- [v0.29.0](services/mariadb/CHANGELOG.md#v290)
223+
- **Improvement:** Use new WaiterHelper for Logs waiters
215224
- `modelserving`:
216225
- [v0.8.3](services/modelserving/CHANGELOG.md#v083)
217226
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.0` to `v0.24.1`
@@ -221,6 +230,8 @@
221230
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.1` to `v0.25.0`
222231
- [v0.9.2](services/modelserving/CHANGELOG.md#v092)
223232
- **Dependencies:** Bump STACKIT SDK core module from `v0.25.0` to `v0.26.0`
233+
- [v0.10.0](services/modelserving/CHANGELOG.md#v0100)
234+
- **Improvement:** Use new WaiterHelper for modelserving waiters
224235
- `mongodbflex`:
225236
- [v1.7.3](services/mongodbflex/CHANGELOG.md#v173)
226237
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.0` to `v0.24.1`

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.2
10+
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.13.0
1111
)
1212

1313
require (

examples/logs/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/logs => ../../services/l
77

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

1313
require (

examples/mariadb/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/mariadb => ../../service
77

88
require (
99
github.com/stackitcloud/stackit-sdk-go/core v0.26.0
10-
github.com/stackitcloud/stackit-sdk-go/services/mariadb v0.28.2
10+
github.com/stackitcloud/stackit-sdk-go/services/mariadb v0.29.0
1111
)
1212

1313
require (

examples/sfs/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/sfs => ../../services/sf
77

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

1313
require (

services/albwaf/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.6.0
2+
- `v1alphaapi`: Align package to latest API specification
3+
14
## v0.5.0
25
- `v1alphaapi`: Align package to latest API specification
36

services/albwaf/VERSION

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

services/albwaf/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
98c11e0ee4834ddaaa474eccc437d234e6276a70
1+
e1f55f7939b240f74912eedb8020d2f0a0ffb046

services/albwaf/v1alphaapi/api_default.go

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

services/albwaf/v1alphaapi/api_default_mock.go

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

0 commit comments

Comments
 (0)