Skip to content

Commit 9e5f0c4

Browse files
gaborsomogyiclaude
andcommitted
chore(deps): bump upjet to v2.3.0 and regenerate
Bump github.com/crossplane/upjet/v2 v2.2.0 -> v2.3.0, github.com/crossplane/crossplane-runtime/v2 v2.1.0 -> v2.2.0 and sigs.k8s.io/controller-runtime v0.22.4 -> v0.23.3 (go mod tidy also pulls controller-tools v0.20.0), then regenerate. upjet v2.3.0 decouples conversion-webhook registration from the controller Setup() function (crossplane/upjet#678): per-resource registration moves to a standalone SetupWebhookWithManager and the generated zz_setup.go gains a SetupWebhookWithManager aggregator. The hand-written providerconfig packages gain a matching SetupWebhookWithManager so the regenerated aggregator compiles. This provider does not enable conversion webhooks (StartWebhooks is never set, and no CRD uses a Webhook conversion strategy), so per the v2.3.0 migration notes the entry point is unaffected and needs no change. crossplane-runtime v2.2.0 also carries the ResolveMultiple reference-resolver fix that preserves the authored order of multi-reference lists instead of sorting by resolved UUID (refs crossplane-contrib#462). Co-Authored-By: Claude Code <noreply@anthropic.com> Signed-off-by: Gábor Somogyi <gabor.somogyi@gmail.com>
1 parent f1d967b commit 9e5f0c4

279 files changed

Lines changed: 1718 additions & 1576 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

go.mod

Lines changed: 52 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ go 1.25.8
55
require (
66
dario.cat/mergo v1.0.2
77
github.com/alecthomas/kingpin/v2 v2.4.0
8-
github.com/crossplane/crossplane-runtime/v2 v2.1.0
8+
github.com/crossplane/crossplane-runtime/v2 v2.2.0
99
github.com/crossplane/crossplane-tools v0.0.0-20251017183449-dd4517244339
10-
github.com/crossplane/upjet/v2 v2.2.0
10+
github.com/crossplane/upjet/v2 v2.3.0
1111
github.com/hashicorp/terraform-json v0.27.2
1212
github.com/hashicorp/terraform-plugin-sdk/v2 v2.40.1
1313
github.com/keycloak/terraform-provider-keycloak v0.0.0-20260608085440-209a0abf877d
@@ -16,40 +16,53 @@ require (
1616
k8s.io/apiextensions-apiserver v0.35.4
1717
k8s.io/apimachinery v0.35.4
1818
k8s.io/client-go v0.35.4
19-
sigs.k8s.io/controller-runtime v0.22.4
20-
sigs.k8s.io/controller-tools v0.19.0
19+
sigs.k8s.io/controller-runtime v0.23.3
20+
sigs.k8s.io/controller-tools v0.20.0
2121
)
2222

2323
require (
24+
cloud.google.com/go v0.123.0 // indirect
2425
github.com/agext/levenshtein v1.2.3 // indirect
2526
github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b // indirect
2627
github.com/antchfx/htmlquery v1.2.4 // indirect
27-
github.com/antchfx/xpath v1.2.0 // indirect
28+
github.com/antchfx/xpath v1.3.6 // indirect
2829
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2930
github.com/beorn7/perks v1.0.1 // indirect
3031
github.com/blang/semver/v4 v4.0.0 // indirect
3132
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3233
github.com/dave/jennifer v1.7.1 // indirect
3334
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
34-
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
35+
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
3536
github.com/evanphx/json-patch v5.9.11+incompatible // indirect
3637
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
3738
github.com/fatih/camelcase v1.0.0 // indirect
3839
github.com/fatih/color v1.19.0 // indirect
3940
github.com/fsnotify/fsnotify v1.9.0 // indirect
4041
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
42+
github.com/getkin/kin-openapi v0.133.0 // indirect
4143
github.com/go-logr/logr v1.4.3 // indirect
4244
github.com/go-logr/zapr v1.3.0 // indirect
43-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
44-
github.com/go-openapi/jsonreference v0.21.0 // indirect
45-
github.com/go-openapi/swag v0.23.0 // indirect
45+
github.com/go-openapi/jsonpointer v0.22.4 // indirect
46+
github.com/go-openapi/jsonreference v0.21.4 // indirect
47+
github.com/go-openapi/swag v0.25.4 // indirect
48+
github.com/go-openapi/swag/cmdutils v0.25.4 // indirect
49+
github.com/go-openapi/swag/conv v0.25.4 // indirect
50+
github.com/go-openapi/swag/fileutils v0.25.4 // indirect
51+
github.com/go-openapi/swag/jsonname v0.25.4 // indirect
52+
github.com/go-openapi/swag/jsonutils v0.25.4 // indirect
53+
github.com/go-openapi/swag/loading v0.25.4 // indirect
54+
github.com/go-openapi/swag/mangling v0.25.4 // indirect
55+
github.com/go-openapi/swag/netutils v0.25.4 // indirect
56+
github.com/go-openapi/swag/stringutils v0.25.4 // indirect
57+
github.com/go-openapi/swag/typeutils v0.25.4 // indirect
58+
github.com/go-openapi/swag/yamlutils v0.25.4 // indirect
4659
github.com/gobuffalo/flect v1.0.3 // indirect
4760
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
4861
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
4962
github.com/golang/mock v1.6.0 // indirect
5063
github.com/golang/protobuf v1.5.4 // indirect
5164
github.com/google/btree v1.1.3 // indirect
52-
github.com/google/gnostic-models v0.7.0 // indirect
65+
github.com/google/gnostic-models v0.7.1 // indirect
5366
github.com/google/go-cmp v0.7.0 // indirect
5467
github.com/google/uuid v1.6.0 // indirect
5568
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -68,11 +81,11 @@ require (
6881
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
6982
github.com/hashicorp/terraform-svchost v0.2.1 // indirect
7083
github.com/hashicorp/yamux v0.1.2 // indirect
71-
github.com/iancoleman/strcase v0.2.0 // indirect
84+
github.com/iancoleman/strcase v0.3.0 // indirect
7285
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7386
github.com/josharian/intern v1.0.0 // indirect
7487
github.com/json-iterator/go v1.1.12 // indirect
75-
github.com/mailru/easyjson v0.7.7 // indirect
88+
github.com/mailru/easyjson v0.9.0 // indirect
7689
github.com/mattn/go-colorable v0.1.15 // indirect
7790
github.com/mattn/go-isatty v0.0.22 // indirect
7891
github.com/mitchellh/copystructure v1.2.0 // indirect
@@ -83,30 +96,44 @@ require (
8396
github.com/mitchellh/reflectwalk v1.0.2 // indirect
8497
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8598
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
99+
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
86100
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
87101
github.com/muvaf/typewriter v0.0.0-20240614220100-70f9d4a54ea0 // indirect
102+
github.com/oasdiff/oasdiff v1.11.8 // indirect
103+
github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037 // indirect
104+
github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 // indirect
88105
github.com/oklog/run v1.2.0 // indirect
106+
github.com/perimeterx/marshmallow v1.1.5 // indirect
89107
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
90108
github.com/prometheus/client_golang v1.23.2 // indirect
91109
github.com/prometheus/client_model v0.6.2 // indirect
92-
github.com/prometheus/common v0.66.1 // indirect
93-
github.com/prometheus/procfs v0.16.1 // indirect
94-
github.com/spf13/afero v1.12.0 // indirect
95-
github.com/spf13/cobra v1.10.0 // indirect
96-
github.com/spf13/pflag v1.0.9 // indirect
110+
github.com/prometheus/common v0.67.5 // indirect
111+
github.com/prometheus/procfs v0.19.2 // indirect
112+
github.com/spf13/afero v1.15.0 // indirect
113+
github.com/spf13/cobra v1.10.2 // indirect
114+
github.com/spf13/pflag v1.0.10 // indirect
115+
github.com/stretchr/testify v1.11.1 // indirect
116+
github.com/tidwall/gjson v1.18.0 // indirect
117+
github.com/tidwall/match v1.1.1 // indirect
118+
github.com/tidwall/pretty v1.2.1 // indirect
119+
github.com/tidwall/sjson v1.2.5 // indirect
97120
github.com/tmccombs/hcl2json v0.3.3 // indirect
121+
github.com/upbound/uptest v0.12.1-0.20260123170102-8965579a213b // indirect
98122
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
99123
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
100124
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
125+
github.com/wI2L/jsondiff v0.7.0 // indirect
126+
github.com/woodsbury/decimal128 v1.3.0 // indirect
101127
github.com/x448/float16 v0.8.4 // indirect
102128
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
103-
github.com/yuin/goldmark v1.4.13 // indirect
129+
github.com/yargevad/filepathx v1.0.0 // indirect
130+
github.com/yuin/goldmark v1.7.16 // indirect
104131
github.com/zclconf/go-cty v1.18.1 // indirect
105132
github.com/zclconf/go-cty-yaml v1.0.3 // indirect
106133
go.opentelemetry.io/otel v1.43.0 // indirect
107134
go.opentelemetry.io/otel/trace v1.43.0 // indirect
108135
go.uber.org/multierr v1.11.0 // indirect
109-
go.uber.org/zap v1.27.0 // indirect
136+
go.uber.org/zap v1.27.1 // indirect
110137
go.yaml.in/yaml/v2 v2.4.3 // indirect
111138
go.yaml.in/yaml/v3 v3.0.4 // indirect
112139
golang.org/x/mod v0.36.0 // indirect
@@ -116,9 +143,9 @@ require (
116143
golang.org/x/sys v0.45.0 // indirect
117144
golang.org/x/term v0.43.0 // indirect
118145
golang.org/x/text v0.37.0 // indirect
119-
golang.org/x/time v0.11.0 // indirect
146+
golang.org/x/time v0.14.0 // indirect
120147
golang.org/x/tools v0.45.0 // indirect
121-
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
148+
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
122149
google.golang.org/appengine v1.6.8 // indirect
123150
google.golang.org/genproto/googleapis/rpc v0.0.0-20260526163538-3dc84a4a5aaa // indirect
124151
google.golang.org/grpc v1.81.1 // indirect
@@ -129,12 +156,12 @@ require (
129156
gopkg.in/yaml.v3 v3.0.1 // indirect
130157
k8s.io/code-generator v0.35.4 // indirect
131158
k8s.io/component-base v0.35.4 // indirect
132-
k8s.io/gengo/v2 v2.0.0-20250922181213-ec3ebc5fd46b // indirect
159+
k8s.io/gengo/v2 v2.0.0-20251215205346-5ee0d033ba5b // indirect
133160
k8s.io/klog/v2 v2.130.1 // indirect
134-
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
135-
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
161+
k8s.io/kube-openapi v0.0.0-20260127142750-a19766b6e2d4 // indirect
162+
k8s.io/utils v0.0.0-20260319190234-28399d86e0b5 // indirect
136163
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
137164
sigs.k8s.io/randfill v1.0.0 // indirect
138-
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
165+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
139166
sigs.k8s.io/yaml v1.6.0 // indirect
140167
)

0 commit comments

Comments
 (0)