Skip to content

Commit ff7942b

Browse files
dimsdashpole
andcommitted
update OpenTelemetry dependencies and grpc
This update dropped the otelgrpc → cloud.google.com/go/compute dependency, among others. This dropped out because genproto cleaned up it's dependencies on google cloud libraries, and otel updated - details in kubernetes#113366. Signed-off-by: Davanum Srinivas <[email protected]> Co-Authored-By: David Ashpole <[email protected]>
1 parent 5837de2 commit ff7942b

File tree

449 files changed

+32406
-11860
lines changed

Some content is hidden

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

449 files changed

+32406
-11860
lines changed

go.mod

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ require (
2727
github.com/docker/go-units v0.5.0
2828
github.com/emicklei/go-restful/v3 v3.11.0
2929
github.com/fsnotify/fsnotify v1.7.0
30-
github.com/go-logr/logr v1.4.1
30+
github.com/go-logr/logr v1.4.2
3131
github.com/godbus/dbus/v5 v5.1.0
3232
github.com/gogo/protobuf v1.3.2
3333
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
@@ -37,7 +37,7 @@ require (
3737
github.com/google/gnostic-models v0.6.8
3838
github.com/google/go-cmp v0.6.0
3939
github.com/google/gofuzz v1.2.0
40-
github.com/google/uuid v1.3.1
40+
github.com/google/uuid v1.6.0
4141
github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2
4242
github.com/libopenstorage/openstorage v1.0.0
4343
github.com/lithammer/dedent v1.1.0
@@ -63,11 +63,11 @@ require (
6363
go.etcd.io/etcd/client/pkg/v3 v3.5.14
6464
go.etcd.io/etcd/client/v3 v3.5.14
6565
go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.42.0
66-
go.opentelemetry.io/otel v1.20.0
67-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0
68-
go.opentelemetry.io/otel/sdk v1.20.0
69-
go.opentelemetry.io/otel/trace v1.20.0
70-
go.opentelemetry.io/proto/otlp v1.0.0
66+
go.opentelemetry.io/otel v1.28.0
67+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0
68+
go.opentelemetry.io/otel/sdk v1.28.0
69+
go.opentelemetry.io/otel/trace v1.28.0
70+
go.opentelemetry.io/proto/otlp v1.3.1
7171
go.uber.org/goleak v1.3.0
7272
go.uber.org/zap v1.26.0
7373
golang.org/x/crypto v0.24.0
@@ -78,8 +78,8 @@ require (
7878
golang.org/x/term v0.21.0
7979
golang.org/x/time v0.3.0
8080
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d
81-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d
82-
google.golang.org/grpc v1.59.0
81+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094
82+
google.golang.org/grpc v1.65.0
8383
google.golang.org/protobuf v1.34.2
8484
gopkg.in/evanphx/json-patch.v4 v4.12.0
8585
gopkg.in/square/go-jose.v2 v2.6.0
@@ -129,8 +129,8 @@ require (
129129
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
130130
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
131131
github.com/beorn7/perks v1.0.1 // indirect
132-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
133-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
132+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
133+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
134134
github.com/chai2010/gettext-go v1.0.2 // indirect
135135
github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect
136136
github.com/cilium/ebpf v0.9.1 // indirect
@@ -144,7 +144,7 @@ require (
144144
github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect
145145
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
146146
github.com/fatih/camelcase v1.0.0 // indirect
147-
github.com/felixge/httpsnoop v1.0.3 // indirect
147+
github.com/felixge/httpsnoop v1.0.4 // indirect
148148
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
149149
github.com/go-errors/errors v1.4.2 // indirect
150150
github.com/go-logr/stdr v1.2.2 // indirect
@@ -162,7 +162,7 @@ require (
162162
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
163163
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
164164
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
165-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
165+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
166166
github.com/imdario/mergo v0.3.6 // indirect
167167
github.com/inconshreveable/mousetrap v1.1.0 // indirect
168168
github.com/jonboulle/clockwork v0.2.2 // indirect
@@ -203,17 +203,17 @@ require (
203203
go.etcd.io/etcd/raft/v3 v3.5.13 // indirect
204204
go.etcd.io/etcd/server/v3 v3.5.13 // indirect
205205
go.opencensus.io v0.24.0 // indirect
206-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 // indirect
207-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0 // indirect
208-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.20.0 // indirect
209-
go.opentelemetry.io/otel/metric v1.20.0 // indirect
206+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
207+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
208+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
209+
go.opentelemetry.io/otel/metric v1.28.0 // indirect
210210
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
211211
go.uber.org/multierr v1.11.0 // indirect
212212
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
213213
golang.org/x/mod v0.17.0 // indirect
214214
golang.org/x/text v0.16.0 // indirect
215215
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
216-
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
216+
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
217217
gopkg.in/inf.v0 v0.9.1 // indirect
218218
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
219219
k8s.io/gengo/v2 v2.0.0-20240228010128-51d4e06bde70 // indirect

0 commit comments

Comments
 (0)