Skip to content

Commit 2b29f3a

Browse files
build(deps): bump the go group with 7 updates (#1113)
* build(deps): bump the go group with 7 updates Bumps the go group with 7 updates: | Package | From | To | | --- | --- | --- | | [github.com/envoyproxy/go-control-plane/envoy](https://github.com/envoyproxy/go-control-plane) | `1.32.3` | `1.32.4` | | [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) | `10.24.0` | `10.25.0` | | [github.com/google/go-cmp](https://github.com/google/go-cmp) | `0.6.0` | `0.7.0` | | [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) | `1.1.0` | `1.2.0` | | [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.1` | `1.9.1` | | [golang.org/x/sync](https://github.com/golang/sync) | `0.10.0` | `0.11.0` | | google.golang.org/protobuf | `1.36.3` | `1.36.4` | Updates `github.com/envoyproxy/go-control-plane/envoy` from 1.32.3 to 1.32.4 - [Release notes](https://github.com/envoyproxy/go-control-plane/releases) - [Changelog](https://github.com/envoyproxy/go-control-plane/blob/main/CHANGELOG.md) - [Commits](envoyproxy/go-control-plane@envoy/v1.32.3...envoy/v1.32.4) Updates `github.com/go-playground/validator/v10` from 10.24.0 to 10.25.0 - [Release notes](https://github.com/go-playground/validator/releases) - [Commits](go-playground/validator@v10.24.0...v10.25.0) Updates `github.com/google/go-cmp` from 0.6.0 to 0.7.0 - [Release notes](https://github.com/google/go-cmp/releases) - [Commits](google/go-cmp@v0.6.0...v0.7.0) Updates `github.com/open-policy-agent/opa` from 1.1.0 to 1.2.0 - [Release notes](https://github.com/open-policy-agent/opa/releases) - [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md) - [Commits](open-policy-agent/opa@v1.1.0...v1.2.0) Updates `github.com/spf13/cobra` from 1.8.1 to 1.9.1 - [Release notes](https://github.com/spf13/cobra/releases) - [Commits](spf13/cobra@v1.8.1...v1.9.1) Updates `golang.org/x/sync` from 0.10.0 to 0.11.0 - [Commits](golang/sync@v0.10.0...v0.11.0) Updates `google.golang.org/protobuf` from 1.36.3 to 1.36.4 --- updated-dependencies: - dependency-name: github.com/envoyproxy/go-control-plane/envoy dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go - dependency-name: github.com/go-playground/validator/v10 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go - dependency-name: github.com/google/go-cmp dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go - dependency-name: github.com/open-policy-agent/opa dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go - dependency-name: golang.org/x/sync dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go - dependency-name: google.golang.org/protobuf dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go ... Signed-off-by: dependabot[bot] <[email protected]> * fix gomod --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Denis Mishin <[email protected]>
1 parent 4258d61 commit 2b29f3a

File tree

2 files changed

+54
-57
lines changed

2 files changed

+54
-57
lines changed

go.mod

+19-20
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
module github.com/pomerium/ingress-controller
22

3-
go 1.23.0
3+
go 1.23.6
44

55
require (
66
github.com/cenkalti/backoff/v4 v4.3.0
77
github.com/client9/misspell v0.3.4
8-
github.com/envoyproxy/go-control-plane/envoy v1.32.3
8+
github.com/envoyproxy/go-control-plane/envoy v1.32.4
99
github.com/go-logr/logr v1.4.2
1010
github.com/go-logr/zapr v1.3.0
11-
github.com/go-playground/validator/v10 v10.24.0
12-
github.com/google/go-cmp v0.6.0
11+
github.com/go-playground/validator/v10 v10.25.0
12+
github.com/google/go-cmp v0.7.0
1313
github.com/google/uuid v1.6.0
1414
github.com/gosimple/slug v1.15.0
1515
github.com/hashicorp/go-multierror v1.1.1
1616
github.com/hashicorp/go-set/v3 v3.0.0
1717
github.com/iancoleman/strcase v0.3.0
1818
github.com/martinlindhe/base36 v1.1.1
19-
github.com/open-policy-agent/opa v1.1.0
19+
github.com/open-policy-agent/opa v1.2.0
20+
github.com/pomerium/csrf v1.7.0
2021
github.com/pomerium/pomerium v0.28.1-0.20250227203944-624c8f0cea11
2122
github.com/rs/zerolog v1.33.0
2223
github.com/sergi/go-diff v1.3.1
23-
github.com/spf13/cobra v1.8.1
24+
github.com/spf13/cobra v1.9.1
2425
github.com/spf13/pflag v1.0.6
2526
github.com/spf13/viper v1.19.0
2627
github.com/stretchr/testify v1.10.0
2728
github.com/volatiletech/null/v9 v9.0.0
2829
go.uber.org/mock v0.5.0
2930
go.uber.org/zap v1.27.0
30-
golang.org/x/sync v0.10.0
31+
golang.org/x/sync v0.11.0
3132
google.golang.org/grpc v1.70.0
32-
google.golang.org/protobuf v1.36.3
33+
google.golang.org/protobuf v1.36.4
3334
gopkg.in/yaml.v3 v3.0.1
3435
k8s.io/api v0.32.2
3536
k8s.io/apiextensions-apiserver v0.32.2
@@ -56,9 +57,8 @@ require (
5657
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 // indirect
5758
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect
5859
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect
59-
github.com/OneOfOne/xxhash v1.2.8 // indirect
6060
github.com/VictoriaMetrics/fastcache v1.12.2 // indirect
61-
github.com/agnivade/levenshtein v1.2.0 // indirect
61+
github.com/agnivade/levenshtein v1.2.1 // indirect
6262
github.com/andybalholm/brotli v1.0.5 // indirect
6363
github.com/aws/aws-sdk-go-v2 v1.32.7 // indirect
6464
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7 // indirect
@@ -88,7 +88,7 @@ require (
8888
github.com/coreos/go-oidc/v3 v3.11.0 // indirect
8989
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
9090
github.com/emicklei/go-restful/v3 v3.12.0 // indirect
91-
github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect
91+
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
9292
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
9393
github.com/exaring/otelpgx v0.8.0 // indirect
9494
github.com/fatih/color v1.18.0 // indirect
@@ -160,15 +160,14 @@ require (
160160
github.com/pkg/errors v0.9.1 // indirect
161161
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
162162
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
163-
github.com/pomerium/csrf v1.7.0 // indirect
164163
github.com/pomerium/datasource v0.18.2-0.20221108160055-c6134b5ed524 // indirect
165164
github.com/pomerium/envoy-custom v1.32.4-0.20250114182541-6f6d2147bea6 // indirect
166165
github.com/pomerium/protoutil v0.0.0-20240813175624-47b7ac43ff46 // indirect
167166
github.com/pomerium/webauthn v0.0.0-20240603205124-0428df511172 // indirect
168167
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
169-
github.com/prometheus/client_golang v1.20.5 // indirect
168+
github.com/prometheus/client_golang v1.21.0 // indirect
170169
github.com/prometheus/client_model v0.6.1 // indirect
171-
github.com/prometheus/common v0.61.0 // indirect
170+
github.com/prometheus/common v0.62.0 // indirect
172171
github.com/prometheus/procfs v0.15.1 // indirect
173172
github.com/prometheus/statsd_exporter v0.22.7 // indirect
174173
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
@@ -214,15 +213,15 @@ require (
214213
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
215214
go.uber.org/automaxprocs v1.6.0 // indirect
216215
go.uber.org/multierr v1.11.0 // indirect
217-
golang.org/x/crypto v0.32.0 // indirect
216+
golang.org/x/crypto v0.33.0 // indirect
218217
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
219218
golang.org/x/mod v0.22.0 // indirect
220-
golang.org/x/net v0.34.0 // indirect
219+
golang.org/x/net v0.35.0 // indirect
221220
golang.org/x/oauth2 v0.27.0 // indirect
222-
golang.org/x/sys v0.29.0 // indirect
223-
golang.org/x/term v0.28.0 // indirect
224-
golang.org/x/text v0.21.0 // indirect
225-
golang.org/x/time v0.9.0 // indirect
221+
golang.org/x/sys v0.30.0 // indirect
222+
golang.org/x/term v0.29.0 // indirect
223+
golang.org/x/text v0.22.0 // indirect
224+
golang.org/x/time v0.10.0 // indirect
226225
golang.org/x/tools v0.29.0 // indirect
227226
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
228227
google.golang.org/api v0.214.0 // indirect

0 commit comments

Comments
 (0)