Skip to content

Commit 2a01fcc

Browse files
github-actions[bot]bigkevmcdmatttrach
authored
Pkce support (#2218)
Co-authored-by: Kevin McDermott <kevin.mcdermott@suse.com> Co-authored-by: Matt Trachier <matt.trachier@suse.com>
1 parent 7892188 commit 2a01fcc

9 files changed

Lines changed: 180 additions & 2329 deletions

aspell_custom.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ oidc
4141
eslint
4242
destructuring
4343
yaml
44+
pkce

go.mod

Lines changed: 29 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ require (
77
github.com/go-viper/mapstructure/v2 v2.4.0
88
github.com/hashicorp/go-version v1.6.0
99
github.com/hashicorp/terraform-plugin-sdk v1.17.2
10-
github.com/rancher/norman v0.8.4
10+
github.com/rancher/norman v0.9.1
1111
github.com/rancher/rancher v0.0.0
1212
github.com/rancher/rancher/pkg/apis v0.0.0
1313
github.com/rancher/rancher/pkg/client v0.0.0
1414
github.com/stretchr/testify v1.11.1
15-
golang.org/x/crypto v0.48.0
16-
golang.org/x/sync v0.19.0
15+
golang.org/x/crypto v0.49.0
16+
golang.org/x/sync v0.20.0
1717
gopkg.in/yaml.v2 v2.4.0
1818
k8s.io/api v0.35.1
1919
k8s.io/apimachinery v0.35.1
@@ -22,9 +22,9 @@ require (
2222
)
2323

2424
require (
25-
cel.dev/expr v0.24.0 // indirect
25+
cel.dev/expr v0.25.1 // indirect
2626
cloud.google.com/go v0.121.6 // indirect
27-
cloud.google.com/go/auth v0.18.1 // indirect
27+
cloud.google.com/go/auth v0.18.2 // indirect
2828
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
2929
cloud.google.com/go/compute/metadata v0.9.0 // indirect
3030
cloud.google.com/go/iam v1.5.3 // indirect
@@ -48,11 +48,11 @@ require (
4848
github.com/blang/semver v3.5.1+incompatible // indirect
4949
github.com/blang/semver/v4 v4.0.0 // indirect
5050
github.com/cespare/xxhash/v2 v2.3.0 // indirect
51-
github.com/cncf/xds/go v0.0.0-20251022180443-0feb69152e9f // indirect
51+
github.com/cncf/xds/go v0.0.0-20251210132809-ee656c7534f5 // indirect
5252
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5353
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
54-
github.com/envoyproxy/go-control-plane/envoy v1.35.0 // indirect
55-
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
54+
github.com/envoyproxy/go-control-plane/envoy v1.36.0 // indirect
55+
github.com/envoyproxy/protoc-gen-validate v1.3.0 // indirect
5656
github.com/evanphx/json-patch v5.9.11+incompatible // indirect
5757
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
5858
github.com/fatih/color v1.18.0 // indirect
@@ -86,8 +86,8 @@ require (
8686
github.com/google/go-querystring v1.1.0 // indirect
8787
github.com/google/s2a-go v0.1.9 // indirect
8888
github.com/google/uuid v1.6.0 // indirect
89-
github.com/googleapis/enterprise-certificate-proxy v0.3.11 // indirect
90-
github.com/googleapis/gax-go/v2 v2.16.0 // indirect
89+
github.com/googleapis/enterprise-certificate-proxy v0.3.12 // indirect
90+
github.com/googleapis/gax-go/v2 v2.17.0 // indirect
9191
github.com/gorilla/handlers v1.5.2 // indirect
9292
github.com/gorilla/mux v1.8.1 // indirect
9393
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
@@ -136,13 +136,13 @@ require (
136136
github.com/prometheus/client_model v0.6.2 // indirect
137137
github.com/prometheus/common v0.67.5 // indirect
138138
github.com/prometheus/procfs v0.19.2 // indirect
139-
github.com/rancher/aks-operator v1.14.0-rc.1 // indirect
139+
github.com/rancher/aks-operator v1.14.0-rc.2 // indirect
140140
github.com/rancher/ali-operator v1.14.0-rc.1 // indirect
141-
github.com/rancher/apiserver v0.8.3 // indirect
141+
github.com/rancher/apiserver v0.9.0 // indirect
142142
github.com/rancher/channelserver v0.9.1-0.20260116181358-8dcd92dec745 // indirect
143-
github.com/rancher/eks-operator v1.14.0-rc.4 // indirect
144-
github.com/rancher/fleet/pkg/apis v0.15.0-alpha.10 // indirect
145-
github.com/rancher/gke-operator v1.14.0-rc.2 // indirect
143+
github.com/rancher/eks-operator v1.14.0-rc.5 // indirect
144+
github.com/rancher/fleet/pkg/apis v0.15.0-beta.4 // indirect
145+
github.com/rancher/gke-operator v1.14.0-rc.3 // indirect
146146
github.com/rancher/lasso v0.2.7 // indirect
147147
github.com/rancher/rke v1.8.0 // indirect
148148
github.com/rancher/wrangler/v3 v3.5.0-rc.2 // indirect
@@ -159,28 +159,28 @@ require (
159159
github.com/zclconf/go-cty v1.13.0 // indirect
160160
github.com/zclconf/go-cty-yaml v1.0.2 // indirect
161161
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
162-
go.opentelemetry.io/contrib/detectors/gcp v1.38.0 // indirect
162+
go.opentelemetry.io/contrib/detectors/gcp v1.39.0 // indirect
163163
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect
164164
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
165165
go.opentelemetry.io/otel v1.39.0 // indirect
166166
go.opentelemetry.io/otel/metric v1.39.0 // indirect
167167
go.opentelemetry.io/otel/sdk v1.39.0 // indirect
168-
go.opentelemetry.io/otel/sdk/metric v1.38.0 // indirect
168+
go.opentelemetry.io/otel/sdk/metric v1.39.0 // indirect
169169
go.opentelemetry.io/otel/trace v1.39.0 // indirect
170170
go.yaml.in/yaml/v2 v2.4.3 // indirect
171171
go.yaml.in/yaml/v3 v3.0.4 // indirect
172-
golang.org/x/net v0.50.0 // indirect
172+
golang.org/x/net v0.52.0 // indirect
173173
golang.org/x/oauth2 v0.35.0 // indirect
174-
golang.org/x/sys v0.41.0 // indirect
175-
golang.org/x/term v0.40.0 // indirect
176-
golang.org/x/text v0.34.0 // indirect
174+
golang.org/x/sys v0.42.0 // indirect
175+
golang.org/x/term v0.41.0 // indirect
176+
golang.org/x/text v0.35.0 // indirect
177177
golang.org/x/time v0.14.0 // indirect
178178
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
179-
google.golang.org/api v0.265.0 // indirect
180-
google.golang.org/genproto v0.0.0-20251202230838-ff82c1b0f217 // indirect
181-
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
182-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 // indirect
183-
google.golang.org/grpc v1.78.0 // indirect
179+
google.golang.org/api v0.269.0 // indirect
180+
google.golang.org/genproto v0.0.0-20260128011058-8636f8732409 // indirect
181+
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409 // indirect
182+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260217215200-42d3e9bedb6d // indirect
183+
google.golang.org/grpc v1.79.1 // indirect
184184
google.golang.org/protobuf v1.36.11 // indirect
185185
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
186186
gopkg.in/inf.v0 v0.9.1 // indirect
@@ -207,19 +207,11 @@ replace (
207207
github.com/docker/docker => github.com/docker/docker v20.10.17+incompatible
208208
github.com/knative/pkg => github.com/rancher/pkg v0.0.0-20190514055449-b30ab9de040e
209209
github.com/matryer/moq => github.com/rancher/moq v0.0.0-20200712062324-13d1f37d2d77
210-
211-
github.com/rancher/rancher => github.com/rancher/rancher v0.0.0-20260226161459-b186acea1a52
212-
github.com/rancher/rancher/pkg/apis => github.com/rancher/rancher/pkg/apis v0.0.0-20260226161459-b186acea1a52
213-
github.com/rancher/rancher/pkg/client => github.com/rancher/rancher/pkg/client v0.0.0-20260226161459-b186acea1a52
210+
github.com/rancher/rancher => github.com/rancher/rancher v0.0.0-20260408223142-1bd18926fe71
211+
github.com/rancher/rancher/pkg/apis => github.com/rancher/rancher/pkg/apis v0.0.0-20260408223142-1bd18926fe71
212+
github.com/rancher/rancher/pkg/client => github.com/rancher/rancher/pkg/client v0.0.0-20260408223142-1bd18926fe71
214213
github.com/spf13/afero => github.com/spf13/afero v1.2.2
215214
github.com/stretchr/testify => github.com/stretchr/testify v1.10.0
216-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc => go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0
217-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp => go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0
218-
go.opentelemetry.io/otel => go.opentelemetry.io/otel v1.38.0
219-
go.opentelemetry.io/otel/metric => go.opentelemetry.io/otel/metric v1.38.0
220-
go.opentelemetry.io/otel/sdk => go.opentelemetry.io/otel/sdk v1.38.0
221-
go.opentelemetry.io/otel/trace => go.opentelemetry.io/otel/trace v1.38.0
222-
go.opentelemetry.io/proto/otlp => go.opentelemetry.io/proto/otlp v1.8.0
223215
go.qase.io/client => github.com/rancher/qase-go/client v0.0.0-20231114201952-65195ec001fa
224216
helm.sh/helm/v3 => github.com/rancher/helm/v3 v3.20.0-rancher1
225217

0 commit comments

Comments
 (0)