Skip to content

Commit e19b383

Browse files
mheapslonka
andauthored
Release/0.5.2 (#42)
--------- Signed-off-by: slonka <slonka@users.noreply.github.com> Co-authored-by: slonka <slonka@users.noreply.github.com>
1 parent 05d7857 commit e19b383

Some content is hidden

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

53 files changed

+2250
-1710
lines changed

.speakeasy/gen.lock

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: e3bbe1e9-fe63-436b-a42c-05e3e3f77633
33
management:
4-
docChecksum: 261b1bcc8f5fccc91dac3abe6785b825
4+
docChecksum: e03572fcf70ffa3250125346a08dc453
55
docVersion: 2.0.0
6-
speakeasyVersion: 1.551.0
7-
generationVersion: 2.610.0
8-
releaseVersion: 0.5.1
9-
configChecksum: e8913ad8eaf3841218ae522eeb3fe789
6+
speakeasyVersion: 1.555.3
7+
generationVersion: 2.620.2
8+
releaseVersion: 0.5.2
9+
configChecksum: a34c339e14bb8afa8872f96b3801cdf7
1010
features:
1111
terraform:
1212
additionalDependencies: 0.1.0
@@ -389,7 +389,7 @@ generatedFiles:
389389
- internal/provider/reflect/struct.go
390390
- internal/provider/typeconvert/date.go
391391
- internal/provider/typeconvert/datetime.go
392-
- internal/provider/typeconvert/int32.go
392+
- internal/provider/typeconvert/int.go
393393
- internal/provider/types/abort.go
394394
- internal/provider/types/access_key.go
395395
- internal/provider/types/acm_certificate_authority_config.go
@@ -675,6 +675,7 @@ generatedFiles:
675675
- internal/sdk/apipublication.go
676676
- internal/sdk/apispecification.go
677677
- internal/sdk/hostnamegenerator.go
678+
- internal/sdk/internal/config/sdkconfiguration.go
678679
- internal/sdk/internal/hooks/hooks.go
679680
- internal/sdk/internal/utils/contenttype.go
680681
- internal/sdk/internal/utils/env.go

.speakeasy/workflow.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
speakeasyVersion: 1.551.0
1+
speakeasyVersion: 1.555.3
22
sources: {}
33
targets:
44
terraform:
55
source: kong
66
workflow:
77
workflowVersion: 1.0.0
8-
speakeasyVersion: 1.551.0
8+
speakeasyVersion: 1.555.3
99
sources:
1010
kong:
1111
inputs:

.speakeasy/workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
workflowVersion: 1.0.0
2-
speakeasyVersion: 1.551.0
2+
speakeasyVersion: 1.555.3
33
sources:
44
kong:
55
inputs:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.5.2
4+
5+
> Released on 2025/06/05
6+
7+
### Bug Fixes
8+
* Fix `terraform apply` for the `konnect_api` resource by ignoring the removed `deprecated` field
9+
10+
### Update dependencies
11+
* Bump `shared-speakeasy/hooks/mesh_defaults` to `v0.0.3`
12+
313
## 0.5.1
414
> Released on 2025/06/05
515

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ terraform {
1717
required_providers {
1818
konnect-beta = {
1919
source = "kong/konnect-beta"
20-
version = "0.5.1"
20+
version = "0.5.2"
2121
}
2222
}
2323
}

examples/provider/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
konnect-beta = {
44
source = "kong/konnect-beta"
5-
version = "0.5.1"
5+
version = "0.5.2"
66
}
77
}
88
}

gen.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ generation:
44
maintainOpenAPIOrder: true
55
usageSnippets:
66
optionalPropertyRendering: withExample
7+
sdkInitStyle: constructor
78
useClassNamesForArrayFields: true
89
fixes:
910
nameResolutionDec2023: true
@@ -19,11 +20,11 @@ generation:
1920
go:
2021
version: 1.24.1
2122
terraform:
22-
version: 0.5.1
23+
version: 0.5.2
2324
additionalDataSources: []
2425
additionalDependencies:
2526
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/hooks/mesh_defaults: v0.0.3
2728
github.com/Kong/shared-speakeasy/planmodifiers/arbitrary_json: v0.0.1
2829
github.com/Kong/shared-speakeasy/planmodifiers/suppress_zero_null: v0.0.1
2930
github.com/Kong/shared-speakeasy/tfbuilder: v0.0.4

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.24.2
66

77
require (
88
github.com/Kong/shared-speakeasy/customtypes v0.2.2
9-
github.com/Kong/shared-speakeasy/hooks/mesh_defaults v0.0.1
9+
github.com/Kong/shared-speakeasy/hooks/mesh_defaults v0.0.3
1010
github.com/Kong/shared-speakeasy/planmodifiers/arbitrary_json v0.0.1
1111
github.com/Kong/shared-speakeasy/planmodifiers/suppress_zero_null v0.0.1
1212
github.com/Kong/shared-speakeasy/tfbuilder v0.0.4

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ github.com/BurntSushi/toml v1.2.1 h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak
44
github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
55
github.com/Kong/shared-speakeasy/customtypes v0.2.2 h1:GwDbzXaH1RVs2L/62EwC11EgWYzba54ZO7J6vrkoatI=
66
github.com/Kong/shared-speakeasy/customtypes v0.2.2/go.mod h1:fLy23iYs9rUWZqFGbu7yQYrWL8rbCOJrLISBzqpxVhk=
7-
github.com/Kong/shared-speakeasy/hooks/mesh_defaults v0.0.1 h1:3tNUWXUKnJjJwWc74Smg9RR5VCDAMhimtGwlNaMpyCs=
8-
github.com/Kong/shared-speakeasy/hooks/mesh_defaults v0.0.1/go.mod h1:Tu9kdp+k8JF7ES5gcXBi6jHyLEOr1EAAWq8ROOipWqg=
7+
github.com/Kong/shared-speakeasy/hooks/mesh_defaults v0.0.3 h1:+wYc79YT0VlV/7BbW9tcZSIfCBGj+4twtm2bPzVj+vo=
8+
github.com/Kong/shared-speakeasy/hooks/mesh_defaults v0.0.3/go.mod h1:Tu9kdp+k8JF7ES5gcXBi6jHyLEOr1EAAWq8ROOipWqg=
99
github.com/Kong/shared-speakeasy/planmodifiers/arbitrary_json v0.0.1 h1:S3f3RAPNv274Yd8ShkGjSTXLWS55AY1SHNKfcX8sQjU=
1010
github.com/Kong/shared-speakeasy/planmodifiers/arbitrary_json v0.0.1/go.mod h1:exogJpiSOmoVk8BTkYA2wlkvqhYlOP+LJpXc4CacHuU=
1111
github.com/Kong/shared-speakeasy/planmodifiers/suppress_zero_null v0.0.1 h1:2PxZAhqgCU0dz+qjghtay2XkNLx2F3oEuh90U/acijc=

internal/provider/api_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ type APIResourceModel struct {
3939
APISpecIds []types.String `tfsdk:"api_spec_ids"`
4040
AuthStrategySyncError *tfTypes.AuthStrategySyncError `tfsdk:"auth_strategy_sync_error"`
4141
CreatedAt types.String `tfsdk:"created_at"`
42-
Deprecated types.Bool `tfsdk:"deprecated"`
42+
Deprecated types.Bool `tfsdk:"deprecated" tfPlanOnly:"true"`
4343
Description types.String `tfsdk:"description"`
4444
ID types.String `tfsdk:"id"`
4545
Labels map[string]types.String `tfsdk:"labels"`

0 commit comments

Comments
 (0)