Skip to content

Commit 3cdd36f

Browse files
authored
fix(deps): Update module google.golang.org/grpc to v1.74.2 (#21224)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [google.golang.org/grpc](https://redirect.github.com/grpc/grpc-go) | require | patch | `v1.74.1` -> `v1.74.2` | --- > [!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.74.2`](https://redirect.github.com/grpc/grpc-go/releases/tag/v1.74.2): Release 1.74.2 [Compare Source](https://redirect.github.com/grpc/grpc-go/compare/v1.74.1...v1.74.2) ### New Features - grpc: introduce new `DialOptions` and `ServerOptions` (`WithStaticStreamWindowSize`, `WithStaticConnWindowSize`, `StaticStreamWindowSize`, `StaticConnWindowSize`) that force fixed window sizes for all HTTP/2 connections. By default, gRPC uses dynamic sizing of these windows based upon a BDP estimation algorithm. The existing options (`WithInitialWindowSize`, etc) also disable BDP estimation, but this behavior will be changed in a following release. ([#&#8203;8283](https://redirect.github.com/grpc/grpc-go/issues/8283)) ### API Changes - balancer: add `ExitIdle` method to `Balancer` interface. Earlier, implementing this method was optional. ([#&#8203;8367](https://redirect.github.com/grpc/grpc-go/issues/8367)) ### Behavior Changes - xds: Remove the `GRPC_EXPERIMENTAL_ENABLE_LEAST_REQUEST` environment variable that allows disabling the least request balancer with xDS. Least request was made available by default with xDS in v1.72.0. ([#&#8203;8248](https://redirect.github.com/grpc/grpc-go/issues/8248)) - Special Thanks: [@&#8203;atollena](https://redirect.github.com/atollena) - server: allow 0s grpc-timeout header values, which older gRPC-Java versions could send. This restores the behavior of grpc-go before v1.73.0. ([#&#8203;8439](https://redirect.github.com/grpc/grpc-go/issues/8439)) ### Bug Fixes - googledirectpath: avoid logging the error message `Attempt to set a bootstrap configuration...` when creating multiple directpath channels. ([#&#8203;8419](https://redirect.github.com/grpc/grpc-go/issues/8419)) ### Performance Improvements - transport: reduce heap allocations by pooling objects and avoiding method-to-closure conversions. ([#&#8203;8361](https://redirect.github.com/grpc/grpc-go/issues/8361)) - transport: reduce heap allocations by re-using `mem.Reader` objects. ([#&#8203;8360](https://redirect.github.com/grpc/grpc-go/issues/8360)) ### Documentation - examples: add examples to demonstrate enabling experimental metrics using the OpenTelemetry plugin. ([#&#8203;8388](https://redirect.github.com/grpc/grpc-go/issues/8388)) - Special Thanks: [@&#8203;vinothkumarr227](https://redirect.github.com/vinothkumarr227) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 3am on Saturday" (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. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
1 parent 652f918 commit 3cdd36f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

cli/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ require (
5656
golang.org/x/net v0.42.0
5757
golang.org/x/sync v0.16.0
5858
golang.org/x/term v0.33.0
59-
google.golang.org/grpc v1.74.1
59+
google.golang.org/grpc v1.74.2
6060
google.golang.org/protobuf v1.36.6
6161
gopkg.in/yaml.v3 v3.0.1
6262
)

cli/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -506,8 +506,8 @@ google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822 h1:
506506
google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822/go.mod h1:h3c4v36UTKzUiuaOKQ6gr3S+0hovBtUrXzTG/i3+XEc=
507507
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 h1:fc6jSaCT0vBduLYZHYrBBNY4dsWuvgyff9noRNDdBeE=
508508
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822/go.mod h1:qQ0YXyHHx3XkvlzUtpXDkS29lDSafHMZBAZDc03LQ3A=
509-
google.golang.org/grpc v1.74.1 h1:1liE5AupsvQAxKhrVPU9yhMEnyjmMi+F6FUmP9EB2ts=
510-
google.golang.org/grpc v1.74.1/go.mod h1:CtQ+BGjaAIXHs/5YS3i473GqwBBa1zGQNevxdeBEXrM=
509+
google.golang.org/grpc v1.74.2 h1:WoosgB65DlWVC9FqI82dGsZhWFNBSLjQ84bjROOpMu4=
510+
google.golang.org/grpc v1.74.2/go.mod h1:CtQ+BGjaAIXHs/5YS3i473GqwBBa1zGQNevxdeBEXrM=
511511
google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY=
512512
google.golang.org/protobuf v1.36.6/go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY=
513513
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=

0 commit comments

Comments
 (0)