Skip to content

Commit

Permalink
chore(deps): update dependency speakeasy-api/speakeasy to v1.470.1 (#47)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency speakeasy-api/speakeasy to v1.470.1

* Bump .speakeasy/gen.yaml based on label

* Update provider based on openapi.yaml changes

* chore: add DeepCopy() funcs to RouteWithoutParentsService

* Update provider based on openapi.yaml changes

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: pmalek <[email protected]>
Co-authored-by: team-k8s-bot <[email protected]>
Co-authored-by: Patryk Małek <[email protected]>
  • Loading branch information
4 people authored Jan 22, 2025
1 parent 839f47e commit ef8a541
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
repo: speakeasy
cli_name: speakeasy
package_type: zip
version: 1.469.11 # renovate: datasource=github-releases depName=speakeasy-api/speakeasy
version: 1.470.1 # renovate: datasource=github-releases depName=speakeasy-api/speakeasy

- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate_on_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
repo: speakeasy
cli_name: speakeasy
package_type: zip
version: 1.469.11 # renovate: datasource=github-releases depName=speakeasy-api/speakeasy
version: 1.470.1 # renovate: datasource=github-releases depName=speakeasy-api/speakeasy

- name: Checkout current repo
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ id: b81e5def-5b1e-4753-ae7c-0efccc2e6f61
management:
docChecksum: bf793ad8dca95f0e711ff6b2850c7b9d
docVersion: 0.0.1
speakeasyVersion: 1.469.11
generationVersion: 2.493.32
releaseVersion: 0.1.25
configChecksum: 06e231360048ac0b59985902cd9e0015
speakeasyVersion: 1.470.1
generationVersion: 2.493.34
releaseVersion: 0.1.27
configChecksum: 9d97302606b945989145a2e4a72376dd
features:
go:
additionalDependencies: 0.1.0
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ generation:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
go:
version: 0.1.25
version: 0.1.27
additionalDependencies: {}
allowUnknownFieldsInWeakUnions: false
clientServerStatusCodesAsErrors: true
Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ generate.deepcopy: controller-gen
models/components/route.go
$(SED) -i 's#\(type RouteWithoutParentsSources struct\)#// $(KUBEBUILDER_GENERATE_CODE_MARKER)\n\1#g' \
models/components/routewithoutparents.go
$(SED) -i 's#\(type RouteWithoutParentsService struct\)#// $(KUBEBUILDER_GENERATE_CODE_MARKER)\n\1#g' \
models/components/routewithoutparents.go
$(SED) -i 's#\(type RouteInput struct\)#// $(KUBEBUILDER_GENERATE_CODE_MARKER)\n\1#g' \
models/components/route.go
$(SED) -i 's#\(type UpstreamClientCertificate struct\)#// $(KUBEBUILDER_GENERATE_CODE_MARKER)\n\1#g' \
Expand Down
25 changes: 25 additions & 0 deletions models/components/zz_generated.deepcopy.go
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,11 @@ func (in *RouteWithoutParents) DeepCopyInto(out *RouteWithoutParents) {
*out = new(bool)
**out = **in
}
if in.Service != nil {
in, out := &in.Service, &out.Service
*out = new(RouteWithoutParentsService)
(*in).DeepCopyInto(*out)
}
if in.Snis != nil {
in, out := &in.Snis, &out.Snis
*out = make([]string, len(*in))
Expand Down Expand Up @@ -655,6 +660,26 @@ func (in *RouteWithoutParentsDestinations) DeepCopy() *RouteWithoutParentsDestin
return out
}

// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RouteWithoutParentsService) DeepCopyInto(out *RouteWithoutParentsService) {
*out = *in
if in.ID != nil {
in, out := &in.ID, &out.ID
*out = new(string)
**out = **in
}
}

// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteWithoutParentsService.
func (in *RouteWithoutParentsService) DeepCopy() *RouteWithoutParentsService {
if in == nil {
return nil
}
out := new(RouteWithoutParentsService)
in.DeepCopyInto(out)
return out
}

// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RouteWithoutParentsSources) DeepCopyInto(out *RouteWithoutParentsSources) {
*out = *in
Expand Down
6 changes: 3 additions & 3 deletions sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,9 +265,9 @@ func New(opts ...SDKOption) *SDK {
sdkConfiguration: sdkConfiguration{
Language: "go",
OpenAPIDocVersion: "0.0.1",
SDKVersion: "0.1.25",
GenVersion: "2.493.32",
UserAgent: "speakeasy-sdk/go 0.1.25 2.493.32 0.0.1 github.com/Kong/sdk-konnect-go",
SDKVersion: "0.1.27",
GenVersion: "2.493.34",
UserAgent: "speakeasy-sdk/go 0.1.27 2.493.34 0.0.1 github.com/Kong/sdk-konnect-go",
Hooks: hooks.New(),
},
}
Expand Down

0 comments on commit ef8a541

Please sign in to comment.