Skip to content

Commit 56ae10e

Browse files
authored
Merge branch 'main' into kind
2 parents 995874f + d42dce5 commit 56ae10e

28 files changed

Lines changed: 205 additions & 170 deletions

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,40 @@
11
Changelog
22
---
33

4+
## v0.30.0 (Nov 4, 2025)
5+
6+
* Update go-jsonnet to 0.21.0
7+
* Bump k8s.io/kube-openapi & k8s.io/gengo
8+
9+
## v0.29.0 (Nov 4, 2025)
10+
11+
* Update Kubernetes client from 1.33.5 to 1.34.1
12+
13+
## v0.28.0 (Nov 4, 2025)
14+
15+
* Update Kubernetes client from 1.32.9 to 1.33.5
16+
17+
## v0.27.0 (Oct 30, 2025)
18+
19+
* Update Kubernetes client from 1.31.13 to 1.32.9
20+
21+
## v0.26.0 (Oct 30, 2025)
22+
23+
* Update Kubernetes client from 1.30.14 to 1.31.13
24+
25+
## v0.25.0 (Oct 30, 2025)
26+
27+
* Update Kubernetes client from 1.29.15 to 1.30.14
28+
29+
## v0.24.0 (Oct 29, 2025)
30+
31+
* Update Kubernetes client from 1.28.15 to 1.29.15
32+
33+
## v0.23.0 (Oct 29, 2025)
34+
35+
* Update Kubernetes client from 1.27.16 to 1.28.15
36+
* Bump protobuf dependency to v1.36.10
37+
438
## v0.22.0 (Oct 29, 2025)
539

640
* Update Kubernetes client from 1.26.15 to 1.27.16

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
include Makefile.tools
1616

17-
VERSION := 0.22.0
17+
VERSION := 0.30.0
1818
SHORT_COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null || echo dev)
1919
GO_VERSION := $(shell go version | awk '{ print $$3}' | sed 's/^go//')
2020
FMT_OPTIONS := -x '**/testdata' -x site/themes -x '.vscode/*' -x dist -x 'internal/*' -x '.github/*' -t jsonnet -t json -t yaml

cmd/gen-qbec-swagger/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"os"
2323
"time"
2424

25-
"github.com/ghodss/yaml"
25+
"sigs.k8s.io/yaml"
2626
)
2727

2828
func main() {

go.mod

Lines changed: 46 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -5,41 +5,44 @@ go 1.24.6
55
require (
66
github.com/bmatcuk/doublestar/v4 v4.9.1
77
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
8-
github.com/ghodss/yaml v1.0.0
98
github.com/go-openapi/spec v0.22.0
109
github.com/go-openapi/strfmt v0.24.0
1110
github.com/go-openapi/validate v0.25.0
12-
github.com/google/gnostic v0.7.1
13-
github.com/google/go-jsonnet v0.20.0
11+
github.com/google/gnostic-models v0.7.0
12+
github.com/google/go-jsonnet v0.21.0
1413
github.com/iancoleman/strcase v0.2.0
15-
github.com/jonboulle/clockwork v0.2.2
16-
github.com/mattn/go-isatty v0.0.14
14+
github.com/jonboulle/clockwork v0.5.0
15+
github.com/mattn/go-isatty v0.0.20
1716
github.com/pkg/errors v0.9.1
18-
github.com/pmezard/go-difflib v1.0.0
17+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
1918
github.com/spf13/cobra v1.10.1
2019
github.com/spf13/pflag v1.0.10
2120
github.com/stretchr/testify v1.11.1
2221
github.com/tidwall/pretty v1.2.1
22+
go.yaml.in/yaml/v3 v3.0.4
2323
google.golang.org/protobuf v1.36.10
24-
gopkg.in/yaml.v3 v3.0.1
25-
k8s.io/api v0.27.16
26-
k8s.io/apimachinery v0.27.16
27-
k8s.io/cli-runtime v0.27.16
28-
k8s.io/client-go v0.27.16
29-
k8s.io/gengo v0.0.0-20211129171323-c02415ce4185
30-
k8s.io/kube-openapi v0.0.0-20250627150254-e9823e99808e
31-
k8s.io/kubectl v0.27.16
24+
k8s.io/api v0.34.1
25+
k8s.io/apimachinery v0.34.1
26+
k8s.io/cli-runtime v0.34.1
27+
k8s.io/client-go v0.34.1
28+
k8s.io/gengo v0.0.0-20250922181213-ec3ebc5fd46b
29+
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912
30+
k8s.io/kubectl v0.34.1
31+
sigs.k8s.io/yaml v1.6.0
3232
)
3333

3434
require (
35-
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
35+
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
3636
github.com/MakeNowJust/heredoc v1.0.0 // indirect
3737
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
38+
github.com/blang/semver/v4 v4.0.0 // indirect
3839
github.com/chai2010/gettext-go v1.0.2 // indirect
39-
github.com/davecgh/go-spew v1.1.1 // indirect
40-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
41-
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
42-
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
40+
github.com/chzyer/logex v1.1.10 // indirect
41+
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect
42+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
43+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
44+
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
45+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
4346
github.com/go-errors/errors v1.4.2 // indirect
4447
github.com/go-logr/logr v1.4.2 // indirect
4548
github.com/go-openapi/analysis v0.24.0 // indirect
@@ -59,49 +62,47 @@ require (
5962
github.com/go-openapi/swag/yamlutils v0.25.1 // indirect
6063
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
6164
github.com/gogo/protobuf v1.3.2 // indirect
62-
github.com/golang/protobuf v1.5.4 // indirect
63-
github.com/google/btree v1.0.1 // indirect
64-
github.com/google/gnostic-models v0.7.0 // indirect
65-
github.com/google/gofuzz v1.1.0 // indirect
66-
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
65+
github.com/google/btree v1.1.3 // indirect
6766
github.com/google/uuid v1.6.0 // indirect
67+
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
6868
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
69-
github.com/imdario/mergo v0.3.8 // indirect
7069
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7170
github.com/josharian/intern v1.0.0 // indirect
7271
github.com/json-iterator/go v1.1.12 // indirect
7372
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
7473
github.com/mailru/easyjson v0.7.7 // indirect
75-
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
76-
github.com/moby/spdystream v0.2.0 // indirect
77-
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
74+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
75+
github.com/moby/spdystream v0.5.0 // indirect
76+
github.com/moby/term v0.5.0 // indirect
7877
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
79-
github.com/modern-go/reflect2 v1.0.2 // indirect
78+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
8079
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
8180
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
81+
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
8282
github.com/oklog/ulid v1.3.1 // indirect
8383
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
8484
github.com/russross/blackfriday/v2 v2.1.0 // indirect
85-
github.com/xlab/treeprint v1.1.0 // indirect
85+
github.com/x448/float16 v0.8.4 // indirect
86+
github.com/xlab/treeprint v1.2.0 // indirect
8687
go.mongodb.org/mongo-driver v1.17.4 // indirect
87-
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
8888
go.yaml.in/yaml/v2 v2.4.2 // indirect
89-
go.yaml.in/yaml/v3 v3.0.4 // indirect
90-
golang.org/x/net v0.44.0 // indirect
89+
golang.org/x/crypto v0.45.0 // indirect
90+
golang.org/x/net v0.47.0 // indirect
9191
golang.org/x/oauth2 v0.27.0 // indirect
92-
golang.org/x/sys v0.36.0 // indirect
93-
golang.org/x/term v0.35.0 // indirect
94-
golang.org/x/text v0.29.0 // indirect
95-
golang.org/x/time v0.3.0 // indirect
92+
golang.org/x/sync v0.18.0 // indirect
93+
golang.org/x/sys v0.38.0 // indirect
94+
golang.org/x/term v0.37.0 // indirect
95+
golang.org/x/text v0.31.0 // indirect
96+
golang.org/x/time v0.9.0 // indirect
97+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
9698
gopkg.in/inf.v0 v0.9.1 // indirect
97-
gopkg.in/yaml.v2 v2.4.0 // indirect
98-
k8s.io/component-base v0.27.16 // indirect
99+
gopkg.in/yaml.v3 v3.0.1 // indirect
100+
k8s.io/component-base v0.34.1 // indirect
99101
k8s.io/klog/v2 v2.130.1 // indirect
100-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
101-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
102-
sigs.k8s.io/kustomize/api v0.13.2 // indirect
103-
sigs.k8s.io/kustomize/kyaml v0.14.1 // indirect
102+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
103+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
104+
sigs.k8s.io/kustomize/api v0.20.1 // indirect
105+
sigs.k8s.io/kustomize/kyaml v0.20.1 // indirect
104106
sigs.k8s.io/randfill v1.0.0 // indirect
105-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
106-
sigs.k8s.io/yaml v1.4.0 // indirect
107+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
107108
)

0 commit comments

Comments
 (0)