Skip to content

Commit 205ab20

Browse files
chore(deps): bump google.golang.org/grpc from 1.75.1 to 1.77.0 (#593)
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.75.1 to 1.77.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.77.0</h2> <h1>API Changes</h1> <ul> <li>mem: Replace the <code>Reader</code> interface with a struct for better performance and maintainability. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8669">#8669</a>)</li> </ul> <h1>Behavior Changes</h1> <ul> <li>balancer/pickfirst: Remove support for the old <code>pick_first</code> LB policy via the environment variable <code>GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false</code>. The new <code>pick_first</code> has been the default since <code>v1.71.0</code>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8672">#8672</a>)</li> </ul> <h1>Bug Fixes</h1> <ul> <li>xdsclient: Fix a race condition in the ADS stream implementation that could result in <code>resource-not-found</code> errors, causing the gRPC client channel to move to <code>TransientFailure</code>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8605">#8605</a>)</li> <li>client: Ignore HTTP status header for gRPC streams. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8548">#8548</a>)</li> <li>client: Set a read deadline when closing a transport to prevent it from blocking indefinitely on a broken connection. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8534">#8534</a>) <ul> <li>Special Thanks: <a href="https://github.com/jgold2-stripe"><code>@​jgold2-stripe</code></a></li> </ul> </li> <li>client: Fix a bug where default port 443 was not automatically added to addresses without a specified port when sent to a proxy. <ul> <li>Setting environment variable <code>GRPC_EXPERIMENTAL_ENABLE_DEFAULT_PORT_FOR_PROXY_TARGET=false</code> disables this change; please file a bug if any problems are encountered as we will remove this option soon. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8613">#8613</a>)</li> </ul> </li> <li>balancer/pickfirst: Fix a bug where duplicate addresses were not being ignored as intended. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8611">#8611</a>)</li> <li>server: Fix a bug that caused overcounting of channelz metrics for successful and failed streams. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8573">#8573</a>) <ul> <li>Special Thanks: <a href="https://github.com/hugehoo"><code>@​hugehoo</code></a></li> </ul> </li> <li>balancer/pickfirst: When configured, shuffle addresses in resolver updates that lack endpoints. Since gRPC automatically adds endpoints to resolver updates, this bug only affects custom LB policies that delegate to <code>pick_first</code> but don't set endpoints. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8610">#8610</a>)</li> <li>mem: Clear large buffers before re-using. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8670">#8670</a>)</li> </ul> <h1>Performance Improvements</h1> <ul> <li>transport: Reduce heap allocations to reduce time spent in garbage collection. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8624">#8624</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8630">#8630</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8639">#8639</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8668">#8668</a>)</li> <li>transport: Avoid copies when reading and writing Data frames. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8657">#8657</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8667">#8667</a>)</li> <li>mem: Avoid clearing newly allocated buffers. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8670">#8670</a>)</li> </ul> <h1>New Features</h1> <ul> <li>outlierdetection: Add metrics specified in <a href="https://github.com/grpc/proposal/blob/master/A91-outlier-detection-metrics.md">gRFC A91</a>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8644">#8644</a>) <ul> <li>Special Thanks: <a href="https://github.com/davinci26"><code>@​davinci26</code></a>, <a href="https://github.com/PardhuKonakanchi"><code>@​PardhuKonakanchi</code></a></li> </ul> </li> <li>stats/opentelemetry: Add support for optional label <code>grpc.lb.backend_service</code> in per-call metrics (<a href="https://redirect.github.com/grpc/grpc-go/issues/8637">#8637</a>)</li> <li>xds: Add support for JWT Call Credentials as specified in <a href="https://github.com/grpc/proposal/blob/master/A97-xds-jwt-call-creds.md">gRFC A97</a>. Set environment variable <code>GRPC_EXPERIMENTAL_XDS_BOOTSTRAP_CALL_CREDS=true</code> to enable this feature. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8536">#8536</a>) <ul> <li>Special Thanks: <a href="https://github.com/dimpavloff"><code>@​dimpavloff</code></a></li> </ul> </li> <li>experimental/stats: Add support for up/down counters. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8581">#8581</a>)</li> </ul> <h2>Release 1.76.0</h2> <h1>Dependencies</h1> <ul> <li>Minimum supported Go version is now 1.24 (<a href="https://redirect.github.com/grpc/grpc-go/issues/8509">#8509</a>) <ul> <li>Special Thanks: <a href="https://github.com/kevinGC"><code>@​kevinGC</code></a></li> </ul> </li> </ul> <h1>Bug Fixes</h1> <ul> <li>client: Return status <code>INTERNAL</code> when a server sends zero response messages for a unary or client-streaming RPC. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8523">#8523</a>)</li> <li>client: Fail RPCs with status <code>INTERNAL</code> instead of <code>UNKNOWN</code> upon receiving http headers with status 1xx and <code>END_STREAM</code> flag set. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8518">#8518</a>) <ul> <li>Special Thanks: <a href="https://github.com/vinothkumarr227"><code>@​vinothkumarr227</code></a></li> </ul> </li> <li>pick_first: Fix race condition that could cause pick_first to get stuck in <code>IDLE</code> state on backend address change. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8615">#8615</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/805b1f88c5fb9419e3837c72e1deb9c2ec677ffe"><code>805b1f8</code></a> Change version to 1.77.0 (<a href="https://redirect.github.com/grpc/grpc-go/issues/8677">#8677</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ea7b66e1caa21b242b035bc4f598edb82093877f"><code>ea7b66e</code></a> Cherrypick <a href="https://redirect.github.com/grpc/grpc-go/issues/8702">#8702</a> to v1.77.x (<a href="https://redirect.github.com/grpc/grpc-go/issues/8709">#8709</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/cadae08d5f37d60083091c103a89d5566b7ae34e"><code>cadae08</code></a> Cherry-pick <a href="https://redirect.github.com/grpc/grpc-go/issues/8536">#8536</a> to v1.77.x (<a href="https://redirect.github.com/grpc/grpc-go/issues/8691">#8691</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/4288cfc5aba43fa11ad9b769f58b193b78f76a3b"><code>4288cfc</code></a> Cherrypick <a href="https://redirect.github.com/grpc/grpc-go/issues/8657">#8657</a> and <a href="https://redirect.github.com/grpc/grpc-go/issues/8667">#8667</a> to v1.77.x (<a href="https://redirect.github.com/grpc/grpc-go/issues/8690">#8690</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/f959da611763ff733f7fb6b4b04c0f796d0fa441"><code>f959da6</code></a> transport: Reduce heap allocations (<a href="https://redirect.github.com/grpc/grpc-go/issues/8668">#8668</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/0d49384b60894f29d2da20f7f72987aed4fbb229"><code>0d49384</code></a> deps: update all dependencies (<a href="https://redirect.github.com/grpc/grpc-go/issues/8673">#8673</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e3e142d0e32ff4e500ca140dc5eaed66adac9bfd"><code>e3e142d</code></a> pickfirst: Remove old pickfirst (<a href="https://redirect.github.com/grpc/grpc-go/issues/8672">#8672</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/254ab1095e9f4179cebd36517bfb7e61b623e509"><code>254ab10</code></a> documentation: fix typos in benchmark and auth docs (<a href="https://redirect.github.com/grpc/grpc-go/issues/8674">#8674</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/2d56bdadb11058f67c48e3c837fcf4a487e15346"><code>2d56bda</code></a> mem: Remove Reader interface and export the concrete struct (<a href="https://redirect.github.com/grpc/grpc-go/issues/8669">#8669</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/8ab0c8214a28222821a1a761996b76f9bfa6aca7"><code>8ab0c82</code></a> mem: Avoid clearing new buffers and clear buffers from simpleBufferPools (<a href="https://redirect.github.com/grpc/grpc-go/issues/8670">#8670</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-go/compare/v1.75.1...v1.77.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/grpc&package-manager=go_modules&previous-version=1.75.1&new-version=1.77.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2d45dcc commit 205ab20

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ require (
5151
go.uber.org/zap v1.27.0
5252
golang.org/x/crypto v0.43.0
5353
golang.org/x/exp v0.0.0-20250711185948-6ae5c78190dc
54-
golang.org/x/oauth2 v0.30.0
55-
google.golang.org/grpc v1.75.1
54+
golang.org/x/oauth2 v0.32.0
55+
google.golang.org/grpc v1.77.0
5656
google.golang.org/protobuf v1.36.10
5757
gopkg.in/yaml.v3 v3.0.1
5858
)
@@ -297,15 +297,15 @@ require (
297297
go.uber.org/atomic v1.11.0 // indirect
298298
go.uber.org/multierr v1.11.0 // indirect
299299
go.uber.org/ratelimit v0.3.1 // indirect
300-
golang.org/x/net v0.46.0 // indirect
300+
golang.org/x/net v0.46.1-0.20251013234738-63d1a5100f82 // indirect
301301
golang.org/x/sync v0.17.0 // indirect
302302
golang.org/x/sys v0.37.0 // indirect
303303
golang.org/x/term v0.36.0 // indirect
304304
golang.org/x/text v0.30.0 // indirect
305305
golang.org/x/time v0.12.0 // indirect
306306
golang.org/x/tools v0.37.0 // indirect
307307
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
308-
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
309-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7
308+
google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8 // indirect
309+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8
310310
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
311311
)

go.sum

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -962,11 +962,11 @@ golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
962962
golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
963963
golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY=
964964
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
965-
golang.org/x/net v0.46.0 h1:giFlY12I07fugqwPuWJi68oOnpfqFnJIJzaIIm2JVV4=
966-
golang.org/x/net v0.46.0/go.mod h1:Q9BGdFy1y4nkUwiLvT5qtyhAnEHgnQ/zd8PfU6nc210=
965+
golang.org/x/net v0.46.1-0.20251013234738-63d1a5100f82 h1:6/3JGEh1C88g7m+qzzTbl3A0FtsLguXieqofVLU/JAo=
966+
golang.org/x/net v0.46.1-0.20251013234738-63d1a5100f82/go.mod h1:Q9BGdFy1y4nkUwiLvT5qtyhAnEHgnQ/zd8PfU6nc210=
967967
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
968-
golang.org/x/oauth2 v0.30.0 h1:dnDm7JmhM45NNpd8FDDeLhK6FwqbOf4MLCM9zb1BOHI=
969-
golang.org/x/oauth2 v0.30.0/go.mod h1:B++QgG3ZKulg6sRPGD/mqlHQs5rB3Ml9erfeDY7xKlU=
968+
golang.org/x/oauth2 v0.32.0 h1:jsCblLleRMDrxMN29H3z/k1KliIvpLgCkE6R8FXXNgY=
969+
golang.org/x/oauth2 v0.32.0/go.mod h1:lzm5WQJQwKZ3nwavOZ3IS5Aulzxi68dUSgRHujetwEA=
970970
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
971971
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
972972
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -1097,17 +1097,17 @@ google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoA
10971097
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
10981098
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
10991099
google.golang.org/genproto v0.0.0-20210401141331-865547bb08e2/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A=
1100-
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7 h1:FiusG7LWj+4byqhbvmB+Q93B/mOxJLN2DTozDuZm4EU=
1101-
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7/go.mod h1:kXqgZtrWaf6qS3jZOCnCH7WYfrvFjkC51bM8fz3RsCA=
1102-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 h1:pFyd6EwwL2TqFf8emdthzeX+gZE1ElRq3iM8pui4KBY=
1103-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7/go.mod h1:qQ0YXyHHx3XkvlzUtpXDkS29lDSafHMZBAZDc03LQ3A=
1100+
google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8 h1:mepRgnBZa07I4TRuomDE4sTIYieg/osKmzIf4USdWS4=
1101+
google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8/go.mod h1:fDMmzKV90WSg1NbozdqrE64fkuTv6mlq2zxo9ad+3yo=
1102+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 h1:M1rk8KBnUsBDg1oPGHNCxG4vc1f49epmTO7xscSajMk=
1103+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk=
11041104
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
11051105
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
11061106
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
11071107
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
11081108
google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
1109-
google.golang.org/grpc v1.75.1 h1:/ODCNEuf9VghjgO3rqLcfg8fiOP0nSluljWFlDxELLI=
1110-
google.golang.org/grpc v1.75.1/go.mod h1:JtPAzKiq4v1xcAB2hydNlWI2RnF85XXcV0mhKXr2ecQ=
1109+
google.golang.org/grpc v1.77.0 h1:wVVY6/8cGA6vvffn+wWK5ToddbgdU3d8MNENr4evgXM=
1110+
google.golang.org/grpc v1.77.0/go.mod h1:z0BY1iVj0q8E1uSQCjL9cppRj+gnZjzDnzV0dHhrNig=
11111111
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
11121112
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
11131113
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=

0 commit comments

Comments
 (0)