Skip to content

Commit d5ddbf7

Browse files
fix(deps): update module google.golang.org/grpc to v1.68.1 (#11835)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [google.golang.org/grpc](https://redirect.github.com/grpc/grpc-go) | `v1.67.1` -> `v1.68.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.68.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgrpc/v1.68.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgrpc/v1.67.1/v1.68.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.67.1/v1.68.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>grpc/grpc-go (google.golang.org/grpc)</summary> ### [`v1.68.1`](https://redirect.github.com/grpc/grpc-go/releases/tag/v1.68.1): Release 1.68.1 [Compare Source](https://redirect.github.com/grpc/grpc-go/compare/v1.68.0...v1.68.1) ### Bug Fixes - credentials/alts: avoid SRV and TXT lookups for handshaker service to work around hangs caused by buggy versions of systemd-resolved. ([#&#8203;7861](https://redirect.github.com/grpc/grpc-go/issues/7861)) ### Dependencies - Relax minimum Go version requirement from `go1.22.7` to `go1.22`. ([#&#8203;7831](https://redirect.github.com/grpc/grpc-go/issues/7831)) ### [`v1.68.0`](https://redirect.github.com/grpc/grpc-go/releases/tag/v1.68.0): Release 1.68.0 [Compare Source](https://redirect.github.com/grpc/grpc-go/compare/v1.67.2...v1.68.0) ### Behavior Changes - stats/opentelemetry/csm: Get mesh_id local label from "CSM_MESH_ID" environment variable, rather than parsing from bootstrap file ([#&#8203;7740](https://redirect.github.com/grpc/grpc-go/issues/7740)) - orca (experimental): if using an ORCA listener, it must now be registered only on a READY SubConn, and the listener will automatically be stopped when the connection is lost. ([#&#8203;7663](https://redirect.github.com/grpc/grpc-go/issues/7663)) - client: `ClientConn.Close()` now closes transports simultaneously and waits for transports to be closed before returning. ([#&#8203;7666](https://redirect.github.com/grpc/grpc-go/issues/7666)) - credentials: TLS credentials created via `NewTLS` that use `tls.Config.GetConfigForClient` will now have CipherSuites, supported TLS versions and ALPN configured automatically. These were previously only set for configs not using the `GetConfigForClient` option. ([#&#8203;7709](https://redirect.github.com/grpc/grpc-go/issues/7709)) ### Bug Fixes - transport: prevent deadlock in client transport shutdown when writing the GOAWAY frame hangs. ([#&#8203;7662](https://redirect.github.com/grpc/grpc-go/issues/7662)) - mem: reuse buffers more accurately by using slice capacity instead of length ([#&#8203;7702](https://redirect.github.com/grpc/grpc-go/issues/7702)) - Special Thanks: [@&#8203;PapaCharlie](https://redirect.github.com/PapaCharlie) - status: Fix regression caused by [#&#8203;6919](https://redirect.github.com/grpc/grpc-go/issues/6919) in status.Details() causing it to return a wrapped type when getting proto messages generated with protoc-gen-go < v1. ([#&#8203;7724](https://redirect.github.com/grpc/grpc-go/issues/7724)) ### Dependencies - Bump minimum supported Go version to `go1.22.7`. ([#&#8203;7624](https://redirect.github.com/grpc/grpc-go/issues/7624)) ### [`v1.67.2`](https://redirect.github.com/grpc/grpc-go/releases/tag/v1.67.2): Release 1.67.2 [Compare Source](https://redirect.github.com/grpc/grpc-go/compare/v1.67.1...v1.67.2) ### Bug Fixes - credentials/alts: avoid SRV and TXT lookups for handshaker service to work around hangs caused by buggy versions of systemd-resolved. ([#&#8203;7861](https://redirect.github.com/grpc/grpc-go/issues/7861)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
1 parent de033c8 commit d5ddbf7

File tree

114 files changed

+707
-594
lines changed

Some content is hidden

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

114 files changed

+707
-594
lines changed

client/go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ require (
1717
github.com/modern-go/reflect2 v1.0.2 // indirect
1818
github.com/pmezard/go-difflib v1.0.0 // indirect
1919
go.uber.org/multierr v1.11.0 // indirect
20-
golang.org/x/net v0.28.0 // indirect
21-
golang.org/x/sys v0.24.0 // indirect
22-
golang.org/x/text v0.17.0 // indirect
23-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
24-
google.golang.org/grpc v1.67.1 // indirect
20+
golang.org/x/net v0.29.0 // indirect
21+
golang.org/x/sys v0.25.0 // indirect
22+
golang.org/x/text v0.18.0 // indirect
23+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
24+
google.golang.org/grpc v1.68.1 // indirect
2525
google.golang.org/protobuf v1.35.2 // indirect
2626
gopkg.in/yaml.v3 v3.0.1 // indirect
2727
)

client/go.sum

+12-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/mdatagen/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ require (
5757
go.opentelemetry.io/otel v1.32.0 // indirect
5858
go.opentelemetry.io/otel/sdk v1.32.0 // indirect
5959
go.uber.org/multierr v1.11.0 // indirect
60-
golang.org/x/net v0.28.0 // indirect
60+
golang.org/x/net v0.29.0 // indirect
6161
golang.org/x/sys v0.27.0 // indirect
62-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240822170219-fc7c04adadcd // indirect
63-
google.golang.org/grpc v1.67.1 // indirect
62+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
63+
google.golang.org/grpc v1.68.1 // indirect
6464
google.golang.org/protobuf v1.35.2 // indirect
6565
gopkg.in/yaml.v3 v3.0.1 // indirect
6666
)

cmd/mdatagen/go.sum

+8-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/otelcorecol/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ require (
154154
gonum.org/v1/gonum v0.15.1 // indirect
155155
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
156156
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
157-
google.golang.org/grpc v1.67.1 // indirect
157+
google.golang.org/grpc v1.68.1 // indirect
158158
google.golang.org/protobuf v1.35.2 // indirect
159159
gopkg.in/yaml.v3 v3.0.1 // indirect
160160
)

cmd/otelcorecol/go.sum

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

component/componentstatus/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ require (
1919
go.opentelemetry.io/otel/trace v1.32.0 // indirect
2020
go.uber.org/multierr v1.11.0 // indirect
2121
go.uber.org/zap v1.27.0 // indirect
22-
golang.org/x/net v0.28.0 // indirect
22+
golang.org/x/net v0.29.0 // indirect
2323
golang.org/x/sys v0.26.0 // indirect
24-
golang.org/x/text v0.17.0 // indirect
25-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
26-
google.golang.org/grpc v1.67.1 // indirect
24+
golang.org/x/text v0.18.0 // indirect
25+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
26+
google.golang.org/grpc v1.68.1 // indirect
2727
google.golang.org/protobuf v1.35.2 // indirect
2828
gopkg.in/yaml.v3 v3.0.1 // indirect
2929
)

component/componentstatus/go.sum

+10-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

component/componenttest/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ require (
2424
github.com/gogo/protobuf v1.3.2 // indirect
2525
github.com/google/uuid v1.6.0 // indirect
2626
github.com/pmezard/go-difflib v1.0.0 // indirect
27-
golang.org/x/net v0.28.0 // indirect
27+
golang.org/x/net v0.29.0 // indirect
2828
golang.org/x/sys v0.27.0 // indirect
29-
golang.org/x/text v0.17.0 // indirect
30-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
31-
google.golang.org/grpc v1.67.1 // indirect
29+
golang.org/x/text v0.18.0 // indirect
30+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
31+
google.golang.org/grpc v1.68.1 // indirect
3232
google.golang.org/protobuf v1.35.2 // indirect
3333
gopkg.in/yaml.v3 v3.0.1 // indirect
3434
)

0 commit comments

Comments
 (0)