File tree Expand file tree Collapse file tree 7 files changed +23
-15
lines changed
Expand file tree Collapse file tree 7 files changed +23
-15
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ management:
55 docVersion: 2.0.0
66 speakeasyVersion: 1.551.0
77 generationVersion: 2.610.0
8- releaseVersion: 0.5.0
9- configChecksum: e1af7e54e64f5652fa9660033e913a54
8+ releaseVersion: 0.5.1
9+ configChecksum: e8913ad8eaf3841218ae522eeb3fe789
1010features:
1111 terraform:
1212 additionalDependencies: 0.1.0
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.5.1
4+ > Released on 2025/06/05
5+
6+ ### Bug fixes
7+
8+ * Correctly define dependencies in gen.yaml under ` terraform ` and not ` go `
9+
310## 0.5.0
411> Released on 2025/05/27
512
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ terraform {
1717 required_providers {
1818 konnect-beta = {
1919 source = "kong/konnect-beta"
20- version = "0.5.0 "
20+ version = "0.5.1 "
2121 }
2222 }
2323}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ terraform {
22 required_providers {
33 konnect-beta = {
44 source = " kong/konnect-beta"
5- version = " 0.5.0 "
5+ version = " 0.5.1 "
66 }
77 }
88}
Original file line number Diff line number Diff line change @@ -18,17 +18,16 @@ generation:
1818 baseServerURL : " "
1919go :
2020 version : 1.24.1
21- additionalDependencies :
22- dependencies :
23- github.com/Kong/shared-speakeasy/customtypes : v0.2.2
24- github.com/Kong/shared-speakeasy/hooks/mesh_defaults : v0.0.1
25- github.com/Kong/shared-speakeasy/planmodifiers/arbitrary_json : v0.0.1
26- github.com/Kong/shared-speakeasy/planmodifiers/suppress_zero_null : v0.0.1
27- github.com/Kong/shared-speakeasy/tfbuilder : v0.0.4
2821terraform :
29- version : 0.5.0
22+ version : 0.5.1
3023 additionalDataSources : []
31- additionalDependencies : {}
24+ additionalDependencies :
25+ github.com/Kong/shared-speakeasy/customtypes : v0.2.2
26+ github.com/Kong/shared-speakeasy/hooks/mesh_defaults : v0.0.1
27+ github.com/Kong/shared-speakeasy/planmodifiers/arbitrary_json : v0.0.1
28+ github.com/Kong/shared-speakeasy/planmodifiers/suppress_zero_null : v0.0.1
29+ github.com/Kong/shared-speakeasy/tfbuilder : v0.0.4
30+ github.com/hashicorp/terraform-plugin-testing : v1.13.1
3231 additionalEphemeralResources : []
3332 additionalProviderAttributes :
3433 httpHeaders : " "
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ module github.com/kong/terraform-provider-konnect-beta
22
33go 1.24.1
44
5+ toolchain go1.24.2
6+
57require (
68 github.com/Kong/shared-speakeasy/customtypes v0.2.2
79 github.com/Kong/shared-speakeasy/hooks/mesh_defaults v0.0.1
Original file line number Diff line number Diff line change @@ -194,9 +194,9 @@ func New(opts ...SDKOption) *KonnectBeta {
194194 sdkConfiguration : sdkConfiguration {
195195 Language : "go" ,
196196 OpenAPIDocVersion : "2.0.0" ,
197- SDKVersion : "0.5.0 " ,
197+ SDKVersion : "0.5.1 " ,
198198 GenVersion : "2.610.0" ,
199- UserAgent : "speakeasy-sdk/terraform 0.5.0 2.610.0 2.0.0 github.com/kong/terraform-provider-konnect-beta/internal/sdk" ,
199+ UserAgent : "speakeasy-sdk/terraform 0.5.1 2.610.0 2.0.0 github.com/kong/terraform-provider-konnect-beta/internal/sdk" ,
200200 Hooks : hooks .New (),
201201 },
202202 }
You can’t perform that action at this time.
0 commit comments