Skip to content

Commit 73cc71a

Browse files
committed
UPSTREAM: <carry>: logicalcluster paramerter rename
Signed-off-by: tnthornton <[email protected]>
1 parent cb82102 commit 73cc71a

File tree

5 files changed

+79
-86
lines changed

5 files changed

+79
-86
lines changed

examples/kcp/go.mod

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ replace sigs.k8s.io/controller-runtime => ../../
88

99
require (
1010
github.com/google/go-cmp v0.6.0
11-
github.com/kcp-dev/apimachinery/v2 v2.0.0-alpha.0.0.20230926071920-57d168bcbe34
11+
github.com/kcp-dev/apimachinery/v2 v2.0.0
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.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
14+
k8s.io/api v0.31.1
15+
k8s.io/apiextensions-apiserver v0.31.1
16+
k8s.io/apimachinery v0.31.1
17+
k8s.io/client-go v0.31.1
1818
k8s.io/klog/v2 v2.130.1
19-
sigs.k8s.io/controller-runtime v0.12.3
19+
sigs.k8s.io/controller-runtime v0.19.0
2020
)
2121

2222
require (
@@ -30,17 +30,17 @@ require (
3030
github.com/coreos/go-semver v0.3.1 // indirect
3131
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
3232
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
33-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
33+
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
3434
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
3535
github.com/felixge/httpsnoop v1.0.4 // indirect
3636
github.com/fsnotify/fsnotify v1.7.0 // indirect
3737
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
3838
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
41-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
42-
github.com/go-openapi/jsonreference v0.20.2 // indirect
43-
github.com/go-openapi/swag v0.22.4 // indirect
41+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
42+
github.com/go-openapi/jsonreference v0.21.0 // indirect
43+
github.com/go-openapi/swag v0.23.0 // 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
@@ -51,7 +51,7 @@ require (
5151
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
5252
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
5353
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
54-
github.com/imdario/mergo v0.3.13 // indirect
54+
github.com/imdario/mergo v0.3.16 // indirect
5555
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5656
github.com/josharian/intern v1.0.0 // indirect
5757
github.com/json-iterator/go v1.1.12 // indirect
@@ -84,15 +84,15 @@ require (
8484
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
8585
go.uber.org/multierr v1.11.0 // indirect
8686
go.uber.org/zap v1.26.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
95-
golang.org/x/time v0.3.0 // indirect
87+
golang.org/x/crypto v0.27.0 // indirect
88+
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
89+
golang.org/x/net v0.29.0 // indirect
90+
golang.org/x/oauth2 v0.23.0 // indirect
91+
golang.org/x/sync v0.8.0 // indirect
92+
golang.org/x/sys v0.25.0 // indirect
93+
golang.org/x/term v0.24.0 // indirect
94+
golang.org/x/text v0.18.0 // indirect
95+
golang.org/x/time v0.6.0 // indirect
9696
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
9797
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
9898
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
@@ -102,10 +102,10 @@ require (
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.31.0 // indirect
106-
k8s.io/component-base v0.31.0 // indirect
107-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
108-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
105+
k8s.io/apiserver v0.31.1 // indirect
106+
k8s.io/component-base v0.31.1 // indirect
107+
k8s.io/kube-openapi v0.0.0-20240903163716-9e1beecbcb38 // indirect
108+
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6 // indirect
109109
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

0 commit comments

Comments
 (0)