Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit 8d2cd3b

Browse files
authored
Track controller-runtime 0.15 development (#356)
Use controller-runtime v0.15.0-alpha.0 Breaking changes introduced upstream are accounted for here, including: An upstream change in the fake client now distinguishes between patch/update requests to resource with a status sub-resource and those without. Requests made to a resource with the status sub-resource at the main resource are not able to mutate the status, and requests made to the status sub-resource are only able to modify the status. Requests using the status sub-resource to types that have not indicated they support the status sub-resource will return a not found error. Signed-off-by: Scott Andrews <[email protected]>
1 parent 615186e commit 8d2cd3b

File tree

16 files changed

+786
-526
lines changed

16 files changed

+786
-526
lines changed

go.mod

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -3,66 +3,66 @@ module github.com/vmware-labs/reconciler-runtime
33
go 1.19
44

55
require (
6-
dies.dev v0.7.0
6+
dies.dev v0.8.0
77
github.com/evanphx/json-patch/v5 v5.6.0
8-
github.com/go-logr/logr v1.2.3
8+
github.com/go-logr/logr v1.2.4
99
github.com/google/go-cmp v0.5.9
1010
golang.org/x/net v0.10.0
1111
gomodules.xyz/jsonpatch/v2 v2.2.0
1212
gomodules.xyz/jsonpatch/v3 v3.0.1
13-
k8s.io/api v0.26.3
14-
k8s.io/apimachinery v0.26.3
15-
k8s.io/client-go v0.26.3
16-
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448
17-
sigs.k8s.io/controller-runtime v0.14.6
13+
k8s.io/api v0.27.1
14+
k8s.io/apimachinery v0.27.1
15+
k8s.io/client-go v0.27.1
16+
k8s.io/utils v0.0.0-20230209194617-a36077c30491
17+
sigs.k8s.io/controller-runtime v0.15.0-alpha.0
18+
sigs.k8s.io/yaml v1.3.0
1819
)
1920

2021
require (
2122
github.com/beorn7/perks v1.0.1 // indirect
22-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
23+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2324
github.com/davecgh/go-spew v1.1.1 // indirect
2425
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
2526
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
2627
github.com/fsnotify/fsnotify v1.6.0 // indirect
27-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
28-
github.com/go-openapi/jsonreference v0.20.0 // indirect
29-
github.com/go-openapi/swag v0.19.14 // indirect
28+
github.com/go-openapi/jsonpointer v0.19.6 // indirect
29+
github.com/go-openapi/jsonreference v0.20.1 // indirect
30+
github.com/go-openapi/swag v0.22.3 // indirect
3031
github.com/gogo/protobuf v1.3.2 // indirect
3132
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
32-
github.com/golang/protobuf v1.5.2 // indirect
33+
github.com/golang/protobuf v1.5.3 // indirect
3334
github.com/google/gnostic v0.5.7-v3refs // indirect
3435
github.com/google/gofuzz v1.2.0 // indirect
35-
github.com/google/uuid v1.1.2 // indirect
36+
github.com/google/uuid v1.3.0 // indirect
3637
github.com/imdario/mergo v0.3.6 // indirect
3738
github.com/josharian/intern v1.0.0 // indirect
3839
github.com/json-iterator/go v1.1.12 // indirect
39-
github.com/mailru/easyjson v0.7.6 // indirect
40-
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
40+
github.com/mailru/easyjson v0.7.7 // indirect
41+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
4142
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4243
github.com/modern-go/reflect2 v1.0.2 // indirect
4344
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4445
github.com/pkg/errors v0.9.1 // indirect
45-
github.com/prometheus/client_golang v1.14.0 // indirect
46+
github.com/prometheus/client_golang v1.15.0 // indirect
4647
github.com/prometheus/client_model v0.3.0 // indirect
47-
github.com/prometheus/common v0.37.0 // indirect
48-
github.com/prometheus/procfs v0.8.0 // indirect
48+
github.com/prometheus/common v0.42.0 // indirect
49+
github.com/prometheus/procfs v0.9.0 // indirect
4950
github.com/spf13/pflag v1.0.5 // indirect
50-
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
51+
golang.org/x/oauth2 v0.5.0 // indirect
5152
golang.org/x/sys v0.8.0 // indirect
5253
golang.org/x/term v0.8.0 // indirect
5354
golang.org/x/text v0.9.0 // indirect
5455
golang.org/x/time v0.3.0 // indirect
5556
gomodules.xyz/orderedmap v0.1.0 // indirect
5657
google.golang.org/appengine v1.6.7 // indirect
57-
google.golang.org/protobuf v1.28.1 // indirect
58+
google.golang.org/protobuf v1.30.0 // indirect
5859
gopkg.in/inf.v0 v0.9.1 // indirect
5960
gopkg.in/yaml.v2 v2.4.0 // indirect
6061
gopkg.in/yaml.v3 v3.0.1 // indirect
61-
k8s.io/apiextensions-apiserver v0.26.2 // indirect
62-
k8s.io/component-base v0.26.2 // indirect
63-
k8s.io/klog/v2 v2.80.1 // indirect
64-
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
65-
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
62+
k8s.io/apiextensions-apiserver v0.27.1 // indirect
63+
k8s.io/component-base v0.27.1 // indirect
64+
k8s.io/klog/v2 v2.90.1 // indirect
65+
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect
66+
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
6667
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
67-
sigs.k8s.io/yaml v1.3.0 // indirect
6868
)

go.sum

Lines changed: 67 additions & 413 deletions
Large diffs are not rendered by default.

hack/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/vmware-labs/reconciler-runtime/hack
33
go 1.19
44

55
require (
6-
dies.dev/diegen v0.7.0
6+
dies.dev/diegen v0.8.0
77
sigs.k8s.io/controller-tools v0.12.0
88
)
99

hack/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
dies.dev/diegen v0.7.0 h1:dELKw9trgqDiMlOQcMKgJa8NPonOGfnob7+DDIiI5gY=
2-
dies.dev/diegen v0.7.0/go.mod h1:QDakULLS1Vg/nry5ZzgMDxyb5Q+syoyqB6eFaFDjy6Q=
1+
dies.dev/diegen v0.8.0 h1:/pOURWz6LvJTcUmouk+gIWsoA8gR0RsyP9f8YOApbMU=
2+
dies.dev/diegen v0.8.0/go.mod h1:jsJ5a5MfEL9p5HX17+vGPs/X2+4pqL0qheG6wSNzysU=
33
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
44
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
55
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

0 commit comments

Comments
 (0)