dependabot[bot] opened a new pull request, #11206:
URL: https://github.com/apache/pinot/pull/11206

   Bumps [io.grpc:grpc-context](https://github.com/grpc/grpc-java) from 1.14.0 
to 1.57.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/grpc/grpc-java/releases";>io.grpc:grpc-context's 
releases</a>.</em></p>
   <blockquote>
   <h2>v1.56.1</h2>
   <h3>Bug fixes</h3>
   <ul>
   <li>core: Fix regression in 1.54.0 where polling NameResolvers would not 
refresh after a resolution error (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10328";>#10328</a>). The 
symptom is a transient failure like &quot;UNAVAILABLE: Unable to resolve 
host&quot; continuing potentially forever. This did not impact DnsNameResolver, 
but it did impacted GrpclbNameResolver which is the dns name resolver used when 
<code>grpc-grpclb</code> is in the classpath. So even users that think &quot;I 
don't use grpclb&quot; may have been impacted. <code>round_robin</code> is 
mainly impacted on startup, but if the error happened afterward it would 
commonly fix itself for short transient DNS failures. <code>pick_first</code> 
is impacted at all times; any failed DNS resolution could cause all future RPCs 
on the channel to fail.</li>
   </ul>
   <h2>v1.56.0</h2>
   <h3>API Changes</h3>
   <ul>
   <li>api: Stabilize the <code>SynchronizationContext</code> class (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10130";>#10130</a>).</li>
   <li>api: Stabilize <code>io.grpc.CallCredentials</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10208";>#10208</a>, <a 
href="https://redirect.github.com/grpc/grpc-java/issues/10211";>#10211</a>). 
<code>thisUsesUnstableApi()</code> is <code>@Deprecated</code> and has a 
default implementation. <code>CallCredentials</code> implementations should 
delete their implementation or remove <code>@Overrides</code>, as the method 
will be deleted in the future.</li>
   <li>api: Stabilize the <code>ProxyDetector</code> hierarchy and 
<code>ManagedChannelBuilder.proxyDetector</code> method.</li>
   </ul>
   <h3>Behavior Changes</h3>
   <ul>
   <li>core: Sticky <code>TRANSIENT_FAILURE</code> in 
<code>PickFirstLoadBalancer</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10106";>#10106</a>). See 
<a 
href="https://github.com/grpc/proposal/blob/master/A62-pick-first.md#sticky-transient-failure";>gRFC
 A62</a>. If it can't connect, pick-first will now immediately fail RPCs until 
after it successfully connects. RPCs will no longer be delayed while it 
performs those attempts, which previously could cause significant (error) 
latency. It now also performs reconnect attempts after failure and backoff 
without prompting; previously it required an RPC to trigger the reconnect. 
<code>ManagedChannel.idleTimeout</code> (defaults to 30 minutes) still applies 
and forces the channel idle after a period of no RPCs.</li>
   <li>stub: Add a null check for <code>responseObserver</code> into the 
methods for initiating a call that takes a <code>responseObserver</code> 
argument. This ensures a fail fast with a clearer cause instead of an NPE when 
the observer is first used.</li>
   <li>xds: Flip default for RLS being enabled to true for XDS (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10248";>#10248</a>) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10252";>#10252</a>).  If 
there are no RLS configurations in your XDS or you already enabled it with the 
environment variable this will have no effect.  To disable it, set the flag 
<code>GRPC_EXPERIMENTAL_XDS_RLS_LB</code> to false.</li>
   <li>xds: Rename <code>weighted_round_robin_experimental</code> LB Policy to 
<code>weighted_round_robin</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10162";>#10162</a>).</li>
   </ul>
   <h3>New Features</h3>
   <ul>
   <li>protobuf,protobuf-lite: Allow to configure protobuf recursion limit (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10094";>#10094</a>).</li>
   <li>core: Optional address shuffle in <code>PickFirstLoadBalancer</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10110";>#10110</a>).</li>
   <li>xds: <code>pick_first</code> LB configuration (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10181";>#10181</a>).</li>
   </ul>
   <h3>Improvements</h3>
   <ul>
   <li>xds: Add <code>error-per-second</code> in weight formula for client-side 
WRR (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10177";>#10177</a>).</li>
   <li>xds: Use<code> application_utilization</code> and fallback to 
<code>cpu_utilization</code> if unset in weight formula for client-side WRR. 
(<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10256";>#10256</a>).</li>
   <li>bazel: The README now mentions Bazel and where to find the example. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10217";>#10217</a>).</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li>binder: Handle unexpected exceptions on binder threads. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10092";>#10092</a>.</li>
   <li>​​android,binder,cronet: <code>.aar</code> file when publishing. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10138";>#10138</a>).</li>
   <li>api: Fix boundary check in <code>Status.fromCodeValue()</code>. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10155";>#10155</a>).</li>
   <li>core: Don't use system Locale for content-type matching. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10097";>#10097</a>).</li>
   <li>okhttp: Fix signed-byte comparison in server when checking for ASCII in 
header (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10151";>#10151</a>). 
Without fix, authority could contain utf-8.</li>
   </ul>
   <h3>Dependencies</h3>
   <ul>
   <li>Version pinning (e.g., <code>[1.56.0]</code> instead of 
<code>1.56.0</code>) has been removed from POMs, for both Netty and gRPC 
dependencies. The pinning was unreliable in Maven and ignored in Gradle, yet 
caused downloads during the build to fetch the version list. For a while we've 
had a BOM that helps reduce version skew. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10175";>#10175</a>).</li>
   <li>bazel: Add java toolchain type to all rules using 
<code>java_common</code>. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10225";>#10225</a>).</li>
   <li>Upgraded <code>netty-tcnative-boringssl-static</code> in 
<code>grpc-netty-shaded</code> to 2.0.61.Final (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10260";>#10260</a>). 
Netty itself was not updated.</li>
   <li>Upgraded AndroidX Annotation to 1.6.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10178";>#10178</a>).</li>
   <li>Upgraded AndroidX Core to 1.10.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10178";>#10178</a>).</li>
   <li>Upgraded AndroidX Lifecycle-Common to 2.6.1 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10178";>#10178</a>).</li>
   <li>Upgraded OpenCensus to 0.31.1 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10178";>#10178</a>).</li>
   <li>Upgraded Cronet API to 108.5359.79 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10178";>#10178</a>).</li>
   <li>Upgraded <code>proto-google-common-protos</code> to 2.17.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10178";>#10178</a>).</li>
   <li>Upgraded Gson to 2.10.1 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10178";>#10178</a>).</li>
   <li>Upgraded PerfMark API to 0.26.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10178";>#10178</a>).</li>
   <li>Upgraded RE2/J to 1.7 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10178";>#10178</a>).</li>
   </ul>
   <h3>Acknowledgements</h3>
   <ul>
   <li><a 
href="https://github.com/chenwei321";><code>@​chenwei321</code></a></li>
   <li><a href="https://github.com/cushon";><code>@​cushon</code></a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/cde208afce38186d06084605abed36f21b003465";><code>cde208a</code></a>
 Bump version to 1.57.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/61ad5f4f6d5fe4608c52061b981b010ddabfb230";><code>61ad5f4</code></a>
 Update README etc to reference 1.57.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/4d75056b78cdd22f4995e11f45d3f0cb1edb4592";><code>4d75056</code></a>
 Revert &quot;Release v1.57.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10417";>#10417</a>)&quot;
 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10419";>#10419</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/d23e39e64b211567b520983ecb4031dd0eb962a7";><code>d23e39e</code></a>
 Release v1.57.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10417";>#10417</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/22de21642f1155bf1ae89f437a51a16ec3938f2d";><code>22de216</code></a>
 Handle header with errors and endStream = true (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10384";>#10384</a>) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10414";>#10414</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/c96b7d5038e7857ee01f25d365e1eb2f47db0f91";><code>c96b7d5</code></a>
 Downgrade Netty to 4.1.93-Final</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/37351c690cc47f1e9c95f2621b4a27c55c436665";><code>37351c6</code></a>
 fixed StaticStrideScheduler looping too many times (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10370";>#10370</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/78cf1c39cfdec8850fd215f33a9154e50dcae05c";><code>78cf1c3</code></a>
 core: Apply RetryingNameResolver in ManagedChannelImpl (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10371";>#10371</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/4fa2814d65b2536aede30e1f24c461a2f42be1f7";><code>4fa2814</code></a>
 services, xds, orca: LRS named metrics support (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10282";>#10282</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/8dbd47ceb5e9d1140186bb37a767a3a3eb817af3";><code>8dbd47c</code></a>
 Sort the policies in a rule by policy name when parsing from proto. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/10334";>#10334</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/grpc/grpc-java/compare/v1.14.0...v1.57.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.grpc:grpc-context&package-manager=maven&previous-version=1.14.0&new-version=1.57.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 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>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to