Skip to content

Commit cb82102

Browse files
stttstnthornton
authored andcommitted
UPSTREAM: <carry>: more kcp tests
Signed-off-by: Dr. Stefan Schimanski <[email protected]>
1 parent e5ac6be commit cb82102

File tree

5 files changed

+260
-145
lines changed

5 files changed

+260
-145
lines changed

examples/kcp/go.mod

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -11,45 +11,45 @@ require (
1111
github.com/kcp-dev/apimachinery/v2 v2.0.0-alpha.0.0.20230926071920-57d168bcbe34
1212
github.com/kcp-dev/kcp/sdk v0.24.0
1313
github.com/kcp-dev/logicalcluster/v3 v3.0.5
14-
k8s.io/api v0.30.1
15-
k8s.io/apiextensions-apiserver v0.30.1
16-
k8s.io/apimachinery v0.30.1
17-
k8s.io/client-go v0.30.1
18-
k8s.io/klog/v2 v2.120.1
14+
k8s.io/api v0.31.0
15+
k8s.io/apiextensions-apiserver v0.31.0
16+
k8s.io/apimachinery v0.31.0
17+
k8s.io/client-go v0.31.0
18+
k8s.io/klog/v2 v2.130.1
1919
sigs.k8s.io/controller-runtime v0.12.3
2020
)
2121

2222
require (
2323
github.com/NYTimes/gziphandler v1.1.1 // indirect
24-
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect
24+
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
2525
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
2626
github.com/beorn7/perks v1.0.1 // indirect
2727
github.com/blang/semver/v4 v4.0.0 // indirect
28-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
29-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
28+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
29+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3030
github.com/coreos/go-semver v0.3.1 // indirect
3131
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
32-
github.com/davecgh/go-spew v1.1.1 // indirect
32+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3333
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
34-
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
3534
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
3635
github.com/felixge/httpsnoop v1.0.4 // indirect
3736
github.com/fsnotify/fsnotify v1.7.0 // indirect
38-
github.com/go-logr/logr v1.4.1 // indirect
37+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
38+
github.com/go-logr/logr v1.4.2 // indirect
3939
github.com/go-logr/stdr v1.2.2 // indirect
4040
github.com/go-logr/zapr v1.3.0 // indirect
4141
github.com/go-openapi/jsonpointer v0.19.6 // indirect
4242
github.com/go-openapi/jsonreference v0.20.2 // indirect
43-
github.com/go-openapi/swag v0.22.3 // indirect
43+
github.com/go-openapi/swag v0.22.4 // indirect
4444
github.com/gogo/protobuf v1.3.2 // indirect
4545
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
4646
github.com/golang/protobuf v1.5.4 // indirect
47-
github.com/google/cel-go v0.17.8 // indirect
47+
github.com/google/cel-go v0.20.1 // indirect
4848
github.com/google/gnostic-models v0.6.8 // indirect
4949
github.com/google/gofuzz v1.2.0 // indirect
50-
github.com/google/uuid v1.3.1 // indirect
50+
github.com/google/uuid v1.6.0 // indirect
5151
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
52-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
52+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
5353
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
5454
github.com/imdario/mergo v0.3.13 // indirect
5555
github.com/inconshreveable/mousetrap v1.1.0 // indirect
@@ -60,53 +60,53 @@ require (
6060
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6161
github.com/modern-go/reflect2 v1.0.2 // indirect
6262
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
63-
github.com/onsi/gomega v1.32.0 // indirect
63+
github.com/onsi/gomega v1.33.1 // indirect
6464
github.com/pkg/errors v0.9.1 // indirect
65-
github.com/prometheus/client_golang v1.19.0 // indirect
66-
github.com/prometheus/client_model v0.6.0 // indirect
67-
github.com/prometheus/common v0.48.0 // indirect
68-
github.com/prometheus/procfs v0.12.0 // indirect
69-
github.com/spf13/cobra v1.7.0 // indirect
65+
github.com/prometheus/client_golang v1.19.1 // indirect
66+
github.com/prometheus/client_model v0.6.1 // indirect
67+
github.com/prometheus/common v0.55.0 // indirect
68+
github.com/prometheus/procfs v0.15.1 // indirect
69+
github.com/spf13/cobra v1.8.1 // indirect
7070
github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace // indirect
7171
github.com/stoewer/go-strcase v1.3.0 // indirect
72-
go.etcd.io/etcd/api/v3 v3.5.10 // indirect
73-
go.etcd.io/etcd/client/pkg/v3 v3.5.10 // indirect
74-
go.etcd.io/etcd/client/v3 v3.5.10 // indirect
75-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 // indirect
76-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.0 // indirect
77-
go.opentelemetry.io/otel v1.20.0 // indirect
78-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.20.0 // indirect
79-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0 // indirect
80-
go.opentelemetry.io/otel/metric v1.20.0 // indirect
81-
go.opentelemetry.io/otel/sdk v1.20.0 // indirect
82-
go.opentelemetry.io/otel/trace v1.20.0 // indirect
83-
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
72+
github.com/x448/float16 v0.8.4 // indirect
73+
go.etcd.io/etcd/api/v3 v3.5.14 // indirect
74+
go.etcd.io/etcd/client/pkg/v3 v3.5.14 // indirect
75+
go.etcd.io/etcd/client/v3 v3.5.14 // indirect
76+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
77+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
78+
go.opentelemetry.io/otel v1.28.0 // indirect
79+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
80+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 // indirect
81+
go.opentelemetry.io/otel/metric v1.28.0 // indirect
82+
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
83+
go.opentelemetry.io/otel/trace v1.28.0 // indirect
84+
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
8485
go.uber.org/multierr v1.11.0 // indirect
8586
go.uber.org/zap v1.26.0 // indirect
86-
golang.org/x/crypto v0.21.0 // indirect
87-
golang.org/x/exp v0.0.0-20220827204233-334a2380cb91 // indirect
88-
golang.org/x/net v0.23.0 // indirect
89-
golang.org/x/oauth2 v0.16.0 // indirect
90-
golang.org/x/sync v0.6.0 // indirect
91-
golang.org/x/sys v0.18.0 // indirect
92-
golang.org/x/term v0.18.0 // indirect
93-
golang.org/x/text v0.14.0 // indirect
87+
golang.org/x/crypto v0.24.0 // indirect
88+
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
89+
golang.org/x/net v0.26.0 // indirect
90+
golang.org/x/oauth2 v0.21.0 // indirect
91+
golang.org/x/sync v0.7.0 // indirect
92+
golang.org/x/sys v0.21.0 // indirect
93+
golang.org/x/term v0.21.0 // indirect
94+
golang.org/x/text v0.16.0 // indirect
9495
golang.org/x/time v0.3.0 // indirect
9596
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
96-
google.golang.org/appengine v1.6.7 // indirect
97-
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
98-
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
99-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
100-
google.golang.org/grpc v1.59.0 // indirect
101-
google.golang.org/protobuf v1.33.0 // indirect
97+
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
98+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
99+
google.golang.org/grpc v1.65.0 // indirect
100+
google.golang.org/protobuf v1.34.2 // indirect
101+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
102102
gopkg.in/inf.v0 v0.9.1 // indirect
103103
gopkg.in/yaml.v2 v2.4.0 // indirect
104104
gopkg.in/yaml.v3 v3.0.1 // indirect
105-
k8s.io/apiserver v0.30.1 // indirect
106-
k8s.io/component-base v0.30.1 // indirect
105+
k8s.io/apiserver v0.31.0 // indirect
106+
k8s.io/component-base v0.31.0 // indirect
107107
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
108-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
109-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.29.0 // indirect
108+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
109+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
110110
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
111111
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
112112
sigs.k8s.io/yaml v1.4.0 // indirect

0 commit comments

Comments
 (0)