Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stats/otel: upgrade grpc version that contains the experimental/stats package #7545

Merged
merged 4 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
go.opentelemetry.io/otel/sdk/metric v1.28.0
golang.org/x/oauth2 v0.22.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142
google.golang.org/grpc v1.65.0
google.golang.org/grpc v1.66.0
google.golang.org/grpc/gcp/observability v1.0.1
google.golang.org/grpc/stats/opentelemetry v0.0.0-20240816220358-f8d98a477c22
google.golang.org/protobuf v1.34.2
Expand Down
2 changes: 1 addition & 1 deletion interop/xds/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/prometheus/client_golang v1.20.0
go.opentelemetry.io/otel/exporters/prometheus v0.50.0
go.opentelemetry.io/otel/sdk/metric v1.28.0
google.golang.org/grpc v1.65.0
google.golang.org/grpc v1.66.0
google.golang.org/grpc/stats/opentelemetry v0.0.0-20240816220358-f8d98a477c22
)

Expand Down
2 changes: 1 addition & 1 deletion security/advancedtls/examples/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module google.golang.org/grpc/security/advancedtls/examples
go 1.21

require (
google.golang.org/grpc v1.65.0
google.golang.org/grpc v1.66.0
google.golang.org/grpc/examples v0.0.0-20240816220358-f8d98a477c22
google.golang.org/grpc/security/advancedtls v1.0.0
)
Expand Down
2 changes: 1 addition & 1 deletion security/advancedtls/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
require (
github.com/google/go-cmp v0.6.0
golang.org/x/crypto v0.26.0
google.golang.org/grpc v1.65.0
google.golang.org/grpc v1.66.0
google.golang.org/grpc/examples v0.0.0-20201112215255-90f1b3ee835b
)

Expand Down
2 changes: 1 addition & 1 deletion stats/opentelemetry/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require (
go.opentelemetry.io/otel/metric v1.28.0
go.opentelemetry.io/otel/sdk v1.28.0
go.opentelemetry.io/otel/sdk/metric v1.28.0
google.golang.org/grpc v1.65.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we use 1.66.0?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done, 1.66.0 was not available at the time.

google.golang.org/grpc v1.66.0
google.golang.org/protobuf v1.34.2
)

Expand Down
Loading