Skip to content

Commit 1b8e765

Browse files
authored
Merge pull request #1787 from fluxcd/update-deps
update Go dependencies
2 parents 98f8514 + d9c8a09 commit 1b8e765

File tree

2 files changed

+134
-136
lines changed

2 files changed

+134
-136
lines changed

go.mod

+40-42
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,39 @@ module github.com/fluxcd/flagger
33
go 1.24.0
44

55
require (
6-
cloud.google.com/go/monitoring v1.22.0
6+
cloud.google.com/go/monitoring v1.24.1
77
github.com/Masterminds/semver/v3 v3.3.1
8-
github.com/aws/aws-sdk-go v1.55.5
8+
github.com/aws/aws-sdk-go v1.55.6
99
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
1010
github.com/go-logr/zapr v1.3.0
11-
github.com/google/go-cmp v0.6.0
11+
github.com/google/go-cmp v0.7.0
1212
github.com/google/uuid v1.6.0
13-
github.com/googleapis/gax-go/v2 v2.14.0
13+
github.com/googleapis/gax-go/v2 v2.14.1
1414
github.com/hashicorp/go-retryablehttp v0.7.7
1515
github.com/influxdata/influxdb-client-go/v2 v2.14.0
16-
github.com/prometheus/client_golang v1.20.5
16+
github.com/prometheus/client_golang v1.21.1
1717
github.com/signalfx/signalflow-client-go v0.1.0
18-
github.com/signalfx/signalfx-go v1.44.0
18+
github.com/signalfx/signalfx-go v1.46.0
1919
github.com/stretchr/testify v1.10.0
2020
go.uber.org/zap v1.27.0
21-
golang.org/x/sync v0.11.0
22-
google.golang.org/api v0.211.0
23-
google.golang.org/genproto v0.0.0-20241021214115-324edc3d5d38
24-
google.golang.org/grpc v1.69.2
25-
google.golang.org/protobuf v1.36.2
21+
golang.org/x/sync v0.12.0
22+
google.golang.org/api v0.228.0
23+
google.golang.org/genproto v0.0.0-20250324211829-b45e905df463
24+
google.golang.org/grpc v1.71.0
25+
google.golang.org/protobuf v1.36.6
2626
gopkg.in/h2non/gock.v1 v1.1.2
27-
k8s.io/api v0.31.4
28-
k8s.io/apimachinery v0.31.4
29-
k8s.io/client-go v0.31.4
27+
k8s.io/api v0.32.3
28+
k8s.io/apimachinery v0.32.3
29+
k8s.io/client-go v0.32.3
3030
k8s.io/code-generator v0.31.4
3131
k8s.io/klog/v2 v2.130.1
3232
knative.dev/serving v0.44.0
3333
)
3434

3535
require (
36-
cloud.google.com/go/auth v0.12.1 // indirect
37-
cloud.google.com/go/auth/oauth2adapt v0.2.6 // indirect
38-
cloud.google.com/go/compute/metadata v0.5.2 // indirect
36+
cloud.google.com/go/auth v0.15.0 // indirect
37+
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
38+
cloud.google.com/go/compute/metadata v0.6.0 // indirect
3939
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
4040
github.com/beorn7/perks v1.0.1 // indirect
4141
github.com/blendle/zapdriver v1.3.1 // indirect
@@ -49,22 +49,20 @@ require (
4949
github.com/go-openapi/jsonreference v0.21.0 // indirect
5050
github.com/go-openapi/swag v0.23.0 // indirect
5151
github.com/gogo/protobuf v1.3.2 // indirect
52-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5352
github.com/golang/protobuf v1.5.4 // indirect
5453
github.com/google/gnostic-models v0.6.8 // indirect
5554
github.com/google/go-containerregistry v0.13.0 // indirect
5655
github.com/google/gofuzz v1.2.0 // indirect
57-
github.com/google/s2a-go v0.1.8 // indirect
58-
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
56+
github.com/google/s2a-go v0.1.9 // indirect
57+
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
5958
github.com/gorilla/websocket v1.5.3 // indirect
6059
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
6160
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
62-
github.com/imdario/mergo v0.3.16 // indirect
6361
github.com/influxdata/line-protocol v0.0.0-20210922203350-b1ad95c89adf // indirect
6462
github.com/jmespath/go-jmespath v0.4.1-0.20220621161143-b0104c826a24 // indirect
6563
github.com/josharian/intern v1.0.0 // indirect
6664
github.com/json-iterator/go v1.1.12 // indirect
67-
github.com/klauspost/compress v1.17.9 // indirect
65+
github.com/klauspost/compress v1.17.11 // indirect
6866
github.com/mailru/easyjson v0.7.7 // indirect
6967
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7068
github.com/modern-go/reflect2 v1.0.2 // indirect
@@ -74,37 +72,37 @@ require (
7472
github.com/pkg/errors v0.9.1 // indirect
7573
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7674
github.com/prometheus/client_model v0.6.1 // indirect
77-
github.com/prometheus/common v0.55.0 // indirect
75+
github.com/prometheus/common v0.62.0 // indirect
7876
github.com/prometheus/procfs v0.15.1 // indirect
7977
github.com/spf13/pflag v1.0.5 // indirect
8078
github.com/x448/float16 v0.8.4 // indirect
81-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
82-
go.opentelemetry.io/otel v1.31.0 // indirect
83-
go.opentelemetry.io/otel/metric v1.31.0 // indirect
84-
go.opentelemetry.io/otel/trace v1.31.0 // indirect
79+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
80+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
81+
go.opentelemetry.io/otel v1.34.0 // indirect
82+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
83+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
8584
go.uber.org/multierr v1.11.0 // indirect
86-
golang.org/x/crypto v0.35.0 // indirect
85+
golang.org/x/crypto v0.36.0 // indirect
8786
golang.org/x/mod v0.22.0 // indirect
88-
golang.org/x/net v0.36.0 // indirect
89-
golang.org/x/oauth2 v0.24.0 // indirect
90-
golang.org/x/sys v0.30.0 // indirect
91-
golang.org/x/term v0.29.0 // indirect
92-
golang.org/x/text v0.22.0 // indirect
93-
golang.org/x/time v0.8.0 // indirect
87+
golang.org/x/net v0.37.0 // indirect
88+
golang.org/x/oauth2 v0.28.0 // indirect
89+
golang.org/x/sys v0.31.0 // indirect
90+
golang.org/x/term v0.30.0 // indirect
91+
golang.org/x/text v0.23.0 // indirect
92+
golang.org/x/time v0.11.0 // indirect
9493
golang.org/x/tools v0.29.0 // indirect
9594
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
96-
google.golang.org/genproto/googleapis/api v0.0.0-20241118233622-e639e219e697 // indirect
97-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241206012308-a4fef0638583 // indirect
95+
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
96+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
9897
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
9998
gopkg.in/inf.v0 v0.9.1 // indirect
100-
gopkg.in/yaml.v2 v2.4.0 // indirect
10199
gopkg.in/yaml.v3 v3.0.1 // indirect
102-
k8s.io/gengo/v2 v2.0.0-20240826214909-a7b603a56eb7 // indirect
103-
k8s.io/kube-openapi v0.0.0-20240903163716-9e1beecbcb38 // indirect
104-
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6 // indirect
100+
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 // indirect
101+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
102+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
105103
knative.dev/networking v0.0.0-20250117155906-67d1c274ba6a // indirect
106104
knative.dev/pkg v0.0.0-20250117084104-c43477f0052b // indirect
107-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
108-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
105+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
106+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
109107
sigs.k8s.io/yaml v1.4.0 // indirect
110108
)

0 commit comments

Comments
 (0)