Skip to content

Commit 739485d

Browse files
feat(certificates): add multi API version support (#5429)
relates to STACKITSDK-332 Co-authored-by: Ruben Hoenle <Ruben.Hoenle@stackit.cloud>
1 parent 2290bad commit 739485d

38 files changed

+6390
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@
4444
- `v1beta1api`: New package which can be used for communication with the edge v1 beta1 API
4545
- **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.
4646
- **Dependencies:** Bump STACKIT SDK core module from `v0.21.1` to `v0.22.0`
47+
- `certificates`: [v1.3.0](services/certificates/CHANGELOG.md#v130)
48+
- **Feature:** Introduction of multi API version support for the certificates SDK module. For more details please see the announcement on GitHub: https://github.com/stackitcloud/stackit-sdk-go/discussions/5062
49+
- `v2api`: New package which can be used for communication with the certificates v2 API
50+
- `v2betaapi`: New package which can be used for communication with the certificates v2 API
51+
- **Deprecation:** The contents in the root of this SDK module are marked as deprecated and will be removed after 2026-09-30. Switch to the new packages for the available API versions instead.
52+
- **Dependencies:** Bump STACKIT SDK core module from `v0.21.1` to `v0.22.0`
4753

4854
## Release (2026-02-20)
4955
- `core`: [v0.21.1](core/CHANGELOG.md#v0211)

services/certificates/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v1.3.0
2+
- **Feature:** Introduction of multi API version support for the certificates 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 certificates v2 API
4+
- `v2betaapi`: New package which can be used for communication with the certificates v2 API
5+
- **Deprecation:** The contents in the root of this SDK module 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
## v1.2.3
29
- Bump STACKIT SDK core module from `v0.21.0` to `v0.21.1`
310

services/certificates/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.2.3
1+
v1.3.0

services/certificates/api_default.go

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

services/certificates/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/certificates/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/certificates/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/stackitcloud/stackit-sdk-go/services/certificates
22

33
go 1.21
44

5-
require github.com/stackitcloud/stackit-sdk-go/core v0.21.1
5+
require github.com/stackitcloud/stackit-sdk-go/core v0.22.0
66

77
require (
88
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect

services/certificates/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)