Skip to content

Commit 3b2aa52

Browse files
chore(deps): bump github.com/Kong/sdk-konnect-go from 0.7.1 to 0.9.1 (#582)
* chore(deps): bump github.com/Kong/sdk-konnect-go from 0.7.1 to 0.9.1 Bumps [github.com/Kong/sdk-konnect-go](https://github.com/Kong/sdk-konnect-go) from 0.7.1 to 0.9.1. - [Release notes](https://github.com/Kong/sdk-konnect-go/releases) - [Changelog](https://github.com/Kong/sdk-konnect-go/blob/main/RELEASE.md) - [Commits](Kong/sdk-konnect-go@v0.7.1...v0.9.1) --- updated-dependencies: - dependency-name: github.com/Kong/sdk-konnect-go dependency-version: 0.9.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore: regenerate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Patryk Małek <patryk.malek@konghq.com>
1 parent f7eaf30 commit 3b2aa52

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

config/crd/gateway-operator/configuration.konghq.com_kongroutes.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,17 @@ spec:
126126
items:
127127
properties:
128128
ip:
129+
description: A string representing an IP address or CIDR block,
130+
such as 192.168.1.1 or 192.168.0.0/16.
129131
type: string
130132
port:
133+
description: An integer representing a port number between 0
134+
and 65535, inclusive.
131135
format: int64
132136
type: integer
137+
required:
138+
- ip
139+
- port
133140
type: object
134141
type: array
135142
headers:
@@ -191,6 +198,8 @@ spec:
191198
HTTP requests are answered with an upgrade error. When set to only
192199
`"http"`, HTTPS requests are answered with an error.
193200
items:
201+
description: RouteJSONProtocols - A string representing a protocol,
202+
such as HTTP or HTTPS.
194203
type: string
195204
type: array
196205
regex_priority:
@@ -253,10 +262,17 @@ spec:
253262
items:
254263
properties:
255264
ip:
265+
description: A string representing an IP address or CIDR block,
266+
such as 192.168.1.1 or 192.168.0.0/16.
256267
type: string
257268
port:
269+
description: An integer representing a port number between 0
270+
and 65535, inclusive.
258271
format: int64
259272
type: integer
273+
required:
274+
- ip
275+
- port
260276
type: object
261277
type: array
262278
strip_path:

config/crd/gateway-operator/configuration.konghq.com_kongupstreams.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,10 @@ spec:
181181
type: integer
182182
headers:
183183
additionalProperties:
184-
type: string
184+
items:
185+
type: string
186+
type: array
187+
description: A map of header names to arrays of header values.
185188
type: object
186189
healthy:
187190
properties:
@@ -200,8 +203,13 @@ spec:
200203
- successes
201204
type: object
202205
http_path:
206+
description: A string representing a URL path, such as /path/to/resource.
207+
Must start with a forward slash (/) and must not contain
208+
empty segments (i.e., two consecutive forward slashes).
203209
type: string
204210
https_sni:
211+
description: A string representing an SNI (server name indication)
212+
value for TLS.
205213
type: string
206214
https_verify_certificate:
207215
type: boolean
@@ -236,6 +244,7 @@ spec:
236244
required:
237245
- concurrency
238246
- http_path
247+
- https_sni
239248
- https_verify_certificate
240249
- timeout
241250
- type

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/kong/kubernetes-configuration/v2
33
go 1.24.0
44

55
require (
6-
github.com/Kong/sdk-konnect-go v0.7.1
6+
github.com/Kong/sdk-konnect-go v0.9.1
77
github.com/kong/go-kong v0.67.0
88
github.com/stretchr/testify v1.11.1
99
k8s.io/api v0.33.4

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/Kong/sdk-konnect-go v0.7.1 h1:fkw1ewY+fMFizCt7C5dQS+s2dmZcDmPIoTvUlxnJ3vo=
2-
github.com/Kong/sdk-konnect-go v0.7.1/go.mod h1:lDQ6eNibkcSYhqZd+A4qhoLbNCrJGtvGOKttJFJX0OQ=
1+
github.com/Kong/sdk-konnect-go v0.9.1 h1:EjpbYVzjph4eTG5SRsR1nFl5ZVs036A9E11T29MqfXQ=
2+
github.com/Kong/sdk-konnect-go v0.9.1/go.mod h1:lDQ6eNibkcSYhqZd+A4qhoLbNCrJGtvGOKttJFJX0OQ=
33
github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI=
44
github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=
55
github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww=

0 commit comments

Comments
 (0)