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

   Bumps `grpc.version` from 1.63.0 to 1.64.0.
   Updates `io.grpc:grpc-core` from 1.63.0 to 1.64.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/grpc/grpc-java/releases";>io.grpc:grpc-core's 
releases</a>.</em></p>
   <blockquote>
   <h2>v1.64.0</h2>
   <h2>API Changes</h2>
   <ul>
   <li>compiler: the option <code>jakarta_omit</code> was renamed 
<code>@generated=omit</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11086";>#11086</a>) 
(8a21afcc9)</li>
   </ul>
   <h2>New Features</h2>
   <ul>
   <li>New API LoadBalancer.getChannelTarget() (4561bb5b8)</li>
   <li>opentelemetry: Publish new module grpc-opentelemetry (5ba1a5563). The 
feature is still missing documentation and an example. It only supports 
metrics; tracing and logs will be future enhancements. See <a 
href="https://github.com/grpc/proposal/blob/master/A66-otel-stats.md";>gRFC 
A66</a></li>
   <li>bazel: Add support for bzlmod (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11046";>#11046</a>) 
(d1890c0ac)</li>
   <li>bazel: Replace usages of the old compatibility maven targets with 
<code>@maven</code> targets (00649913b)</li>
   <li>okhttp: Support serverBuilder.maxConcurrentCallsPerConnection (Fixes <a 
href="https://redirect.github.com/grpc/grpc-java/issues/11062";>#11062</a>). (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11063";>#11063</a>) 
(805072339)</li>
   <li>xds: Experimental metrics recording in WRR LB (06df25b65, 35a171bc1, 
2897b3939), to be exported by grpc-opentelemetry if explicitly enabled in 
GrpcOpenTelemetry. See <a 
href="https://github.com/grpc/proposal/blob/master/A78-grpc-metrics-wrr-pf-xds.md";>gRFC
 A78</a></li>
   <li>rls: Experimental metrics recording in RLS LB (a9fb272b7, a1d19327f, 
813331837), to be exported by grpc-opentelemetry if explicitly enabled in 
GrpcOpenTelemetry</li>
   </ul>
   <h2>Improvements</h2>
   <ul>
   <li>examples: support bazel build for retry policy example (58de563fa)</li>
   <li>netty: Allow deframer errors to close stream with a status code, as long 
as headers have not yet been sent (e036b1b19). This will greatly improve the 
debuggability of certain server errors in particular cases. Instead of the 
client seeing “CANCELLED: RST_STREAM closed stream. HTTP/2 error code: CANCEL”, 
they could see “RESOURCE_EXHAUSTED: gRPC message exceeds maximum size 4194304: 
6144592”</li>
   <li>netty: Improve handling of unexpected write queue promise failures (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11016";>#11016</a>)</li>
   <li>servlet: Avoid unnecessary FINEST hex string conversion by checking log 
level. Fixes <a 
href="https://redirect.github.com/grpc/grpc-java/issues/11031";>#11031</a>. 
(f7ee5f318)</li>
   <li>StatusException/StatusRuntimeException hide stack trace in a simpler way 
(<a href="https://redirect.github.com/grpc/grpc-java/issues/11064";>#11064</a>) 
(e36f099be)</li>
   <li>util: Status desc for outlier detection ejection (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11036";>#11036</a>) 
(10cb4a3be)</li>
   <li>binder: Helper class to allow in process servers to use peer uids in 
test (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11014";>#11014</a>) 
(537dbe826)</li>
   <li>Add <code>load()</code> statements for the Bazel builtin top-level java 
symbols (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11105";>#11105</a>) 
(add8c37a4)</li>
   <li>Add <code>StatusProto.toStatusException</code> overload to accept 
<code>Throwable</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11083";>#11083</a>) 
(5c9b49231)</li>
   </ul>
   <h2>Bug fixes</h2>
   <ul>
   <li>Fix retry race condition that can lead to double decrementing 
inFlightSubStreams and so miss calling closed (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11026";>#11026</a>) 
(bdb623031)</li>
   <li>Change defaults to use the older PickFirstLoadBalancer and disable Happy 
Eyeballs.  This disables a performance optimization added in v1.63. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11120";>#11120</a>) We 
have had a report that the new implementation can trigger a 
NullPointerException</li>
   <li>core: Transition to CONNECTING immediately when exiting idle 
(2c5f0c22c). Previously the visible state change from 
<code>channel.getState()</code> was delayed until the name resolver returned 
results. This had no impact to RPC behavior</li>
   <li>xds: Specify a locale for upper/lower case conversions (e6305930d)</li>
   <li>rls: Synchronization fixes in CachingRlsLbClient (6e97b180b). These 
races had not been witnessed in practice</li>
   <li>rls: Guarantee backoff will update RLS picker (f9b6e5f92). This fixes a 
regression introduced by 6e97b180b that could hang RPCs instead of using 
fallback, but fixes a pre-existing bug that could greatly delay RPCs from using 
fallback.</li>
   <li>rls: Fix time handling in CachingRlsLbClient (da619e2bd). This could 
have caused backoff entries to improperly be considered expired</li>
   <li>xds: Properly disable the default endpoint identification algorithm with 
XdsChannelCredentials (097a46b76). The credential does its own verification and 
the default needs to be disabled for SPIFFE</li>
   <li>netty: Release SendGrpcFrameCommand when stream is missing (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11116";>#11116</a>) 
(fb9a10809)</li>
   <li>okhttp: Remove finished stream even if a pending stream was started 
(d21fe32be)</li>
   </ul>
   <h2>Dependencies</h2>
   <ul>
   <li>cronet: Update Cronet to latest release + Move to Stable Cronet APIs. 
(5a8da19f3)</li>
   <li>cronet: <a href="https://github.com/javadoc";><code>@​javadoc</code></a> 
update android permission MODIFY_NETWORK_ACCOUNTING (deprecated) =&gt; 
UPDATE_DEVICE_STATS (c703a1ee0)</li>
   <li>cronet: Update to Java-8 API's and tighten the scopes (163efa371)</li>
   <li>cronet: Update to StandardCharsets and assertNotNull API's 
(77e59b29d)</li>
   </ul>
   <h2>Acknowledgements</h2>
   <p><a href="https://github.com/panchenko";><code>@​panchenko</code></a>
   <a href="https://github.com/Ashok-Varma";><code>@​Ashok-Varma</code></a>
   <a href="https://github.com/benjaminp";><code>@​benjaminp</code></a>
   <a 
href="https://github.com/AutomatedTester";><code>@​AutomatedTester</code></a>
   <a href="https://github.com/hypnoce";><code>@​hypnoce</code></a>
   <a href="https://github.com/keith";><code>@​keith</code></a>
   <a href="https://github.com/laglangyue";><code>@​laglangyue</code></a></p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a54c72f0850a8d7c8e6465cc7cd12d63f0af109d";><code>a54c72f</code></a>
 Bump version to 1.64.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/2c1b07cfb1cb32f45e0aa672df9ccf70cee6d199";><code>2c1b07c</code></a>
 Update README etc to reference 1.64.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/9798e4afae48dbc7427e4fa578ee414e007c75b5";><code>9798e4a</code></a>
 all: Add opentelemetry</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/d086f5a9c032f9dc6c2d98d841349977d907c64b";><code>d086f5a</code></a>
 opentelemetry: Mark registerGlobal() as experimental</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/3158f91e7538424df0c1c2961fed507e4bf864f6";><code>3158f91</code></a>
 rls: Guarantee backoff will update RLS picker</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/80f872e3a627d000e6bc7944d42a7eaf8bdc1b88";><code>80f872e</code></a>
 xds, rls: Experimental metrics are disabled by default (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11196";>#11196</a>) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11197";>#11197</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/cc587e60c5c17e84c220eb2ee1cf940282f74926";><code>cc587e6</code></a>
 opentelemetry: Publish grpc opentelemetry (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11187";>#11187</a>) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11195";>#11195</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/8133318376ae222ca162da91316b36beea1b5277";><code>8133318</code></a>
 rls: Add gauge metric recording (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11175";>#11175</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/f737cbc143d7e6619471f845d1b5001ef33bc3b7";><code>f737cbc</code></a>
 api: Hide internal metric APIs</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/1e731be49a8e9e7438bd7d2341966a67e7fb2eeb";><code>1e731be</code></a>
 opentelemetry: Rename and stabilize API OpenTelemetryModule</li>
   <li>Additional commits viewable in <a 
href="https://github.com/grpc/grpc-java/compare/v1.63.0...v1.64.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `io.grpc:grpc-stub` from 1.63.0 to 1.64.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/grpc/grpc-java/releases";>io.grpc:grpc-stub's 
releases</a>.</em></p>
   <blockquote>
   <h2>v1.64.0</h2>
   <h2>API Changes</h2>
   <ul>
   <li>compiler: the option <code>jakarta_omit</code> was renamed 
<code>@generated=omit</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11086";>#11086</a>) 
(8a21afcc9)</li>
   </ul>
   <h2>New Features</h2>
   <ul>
   <li>New API LoadBalancer.getChannelTarget() (4561bb5b8)</li>
   <li>opentelemetry: Publish new module grpc-opentelemetry (5ba1a5563). The 
feature is still missing documentation and an example. It only supports 
metrics; tracing and logs will be future enhancements. See <a 
href="https://github.com/grpc/proposal/blob/master/A66-otel-stats.md";>gRFC 
A66</a></li>
   <li>bazel: Add support for bzlmod (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11046";>#11046</a>) 
(d1890c0ac)</li>
   <li>bazel: Replace usages of the old compatibility maven targets with 
<code>@maven</code> targets (00649913b)</li>
   <li>okhttp: Support serverBuilder.maxConcurrentCallsPerConnection (Fixes <a 
href="https://redirect.github.com/grpc/grpc-java/issues/11062";>#11062</a>). (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11063";>#11063</a>) 
(805072339)</li>
   <li>xds: Experimental metrics recording in WRR LB (06df25b65, 35a171bc1, 
2897b3939), to be exported by grpc-opentelemetry if explicitly enabled in 
GrpcOpenTelemetry. See <a 
href="https://github.com/grpc/proposal/blob/master/A78-grpc-metrics-wrr-pf-xds.md";>gRFC
 A78</a></li>
   <li>rls: Experimental metrics recording in RLS LB (a9fb272b7, a1d19327f, 
813331837), to be exported by grpc-opentelemetry if explicitly enabled in 
GrpcOpenTelemetry</li>
   </ul>
   <h2>Improvements</h2>
   <ul>
   <li>examples: support bazel build for retry policy example (58de563fa)</li>
   <li>netty: Allow deframer errors to close stream with a status code, as long 
as headers have not yet been sent (e036b1b19). This will greatly improve the 
debuggability of certain server errors in particular cases. Instead of the 
client seeing “CANCELLED: RST_STREAM closed stream. HTTP/2 error code: CANCEL”, 
they could see “RESOURCE_EXHAUSTED: gRPC message exceeds maximum size 4194304: 
6144592”</li>
   <li>netty: Improve handling of unexpected write queue promise failures (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11016";>#11016</a>)</li>
   <li>servlet: Avoid unnecessary FINEST hex string conversion by checking log 
level. Fixes <a 
href="https://redirect.github.com/grpc/grpc-java/issues/11031";>#11031</a>. 
(f7ee5f318)</li>
   <li>StatusException/StatusRuntimeException hide stack trace in a simpler way 
(<a href="https://redirect.github.com/grpc/grpc-java/issues/11064";>#11064</a>) 
(e36f099be)</li>
   <li>util: Status desc for outlier detection ejection (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11036";>#11036</a>) 
(10cb4a3be)</li>
   <li>binder: Helper class to allow in process servers to use peer uids in 
test (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11014";>#11014</a>) 
(537dbe826)</li>
   <li>Add <code>load()</code> statements for the Bazel builtin top-level java 
symbols (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11105";>#11105</a>) 
(add8c37a4)</li>
   <li>Add <code>StatusProto.toStatusException</code> overload to accept 
<code>Throwable</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11083";>#11083</a>) 
(5c9b49231)</li>
   </ul>
   <h2>Bug fixes</h2>
   <ul>
   <li>Fix retry race condition that can lead to double decrementing 
inFlightSubStreams and so miss calling closed (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11026";>#11026</a>) 
(bdb623031)</li>
   <li>Change defaults to use the older PickFirstLoadBalancer and disable Happy 
Eyeballs.  This disables a performance optimization added in v1.63. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11120";>#11120</a>) We 
have had a report that the new implementation can trigger a 
NullPointerException</li>
   <li>core: Transition to CONNECTING immediately when exiting idle 
(2c5f0c22c). Previously the visible state change from 
<code>channel.getState()</code> was delayed until the name resolver returned 
results. This had no impact to RPC behavior</li>
   <li>xds: Specify a locale for upper/lower case conversions (e6305930d)</li>
   <li>rls: Synchronization fixes in CachingRlsLbClient (6e97b180b). These 
races had not been witnessed in practice</li>
   <li>rls: Guarantee backoff will update RLS picker (f9b6e5f92). This fixes a 
regression introduced by 6e97b180b that could hang RPCs instead of using 
fallback, but fixes a pre-existing bug that could greatly delay RPCs from using 
fallback.</li>
   <li>rls: Fix time handling in CachingRlsLbClient (da619e2bd). This could 
have caused backoff entries to improperly be considered expired</li>
   <li>xds: Properly disable the default endpoint identification algorithm with 
XdsChannelCredentials (097a46b76). The credential does its own verification and 
the default needs to be disabled for SPIFFE</li>
   <li>netty: Release SendGrpcFrameCommand when stream is missing (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11116";>#11116</a>) 
(fb9a10809)</li>
   <li>okhttp: Remove finished stream even if a pending stream was started 
(d21fe32be)</li>
   </ul>
   <h2>Dependencies</h2>
   <ul>
   <li>cronet: Update Cronet to latest release + Move to Stable Cronet APIs. 
(5a8da19f3)</li>
   <li>cronet: <a href="https://github.com/javadoc";><code>@​javadoc</code></a> 
update android permission MODIFY_NETWORK_ACCOUNTING (deprecated) =&gt; 
UPDATE_DEVICE_STATS (c703a1ee0)</li>
   <li>cronet: Update to Java-8 API's and tighten the scopes (163efa371)</li>
   <li>cronet: Update to StandardCharsets and assertNotNull API's 
(77e59b29d)</li>
   </ul>
   <h2>Acknowledgements</h2>
   <p><a href="https://github.com/panchenko";><code>@​panchenko</code></a>
   <a href="https://github.com/Ashok-Varma";><code>@​Ashok-Varma</code></a>
   <a href="https://github.com/benjaminp";><code>@​benjaminp</code></a>
   <a 
href="https://github.com/AutomatedTester";><code>@​AutomatedTester</code></a>
   <a href="https://github.com/hypnoce";><code>@​hypnoce</code></a>
   <a href="https://github.com/keith";><code>@​keith</code></a>
   <a href="https://github.com/laglangyue";><code>@​laglangyue</code></a></p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a54c72f0850a8d7c8e6465cc7cd12d63f0af109d";><code>a54c72f</code></a>
 Bump version to 1.64.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/2c1b07cfb1cb32f45e0aa672df9ccf70cee6d199";><code>2c1b07c</code></a>
 Update README etc to reference 1.64.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/9798e4afae48dbc7427e4fa578ee414e007c75b5";><code>9798e4a</code></a>
 all: Add opentelemetry</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/d086f5a9c032f9dc6c2d98d841349977d907c64b";><code>d086f5a</code></a>
 opentelemetry: Mark registerGlobal() as experimental</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/3158f91e7538424df0c1c2961fed507e4bf864f6";><code>3158f91</code></a>
 rls: Guarantee backoff will update RLS picker</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/80f872e3a627d000e6bc7944d42a7eaf8bdc1b88";><code>80f872e</code></a>
 xds, rls: Experimental metrics are disabled by default (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11196";>#11196</a>) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11197";>#11197</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/cc587e60c5c17e84c220eb2ee1cf940282f74926";><code>cc587e6</code></a>
 opentelemetry: Publish grpc opentelemetry (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11187";>#11187</a>) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11195";>#11195</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/8133318376ae222ca162da91316b36beea1b5277";><code>8133318</code></a>
 rls: Add gauge metric recording (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11175";>#11175</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/f737cbc143d7e6619471f845d1b5001ef33bc3b7";><code>f737cbc</code></a>
 api: Hide internal metric APIs</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/1e731be49a8e9e7438bd7d2341966a67e7fb2eeb";><code>1e731be</code></a>
 opentelemetry: Rename and stabilize API OpenTelemetryModule</li>
   <li>Additional commits viewable in <a 
href="https://github.com/grpc/grpc-java/compare/v1.63.0...v1.64.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `io.grpc:grpc-netty` from 1.63.0 to 1.64.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/grpc/grpc-java/releases";>io.grpc:grpc-netty's 
releases</a>.</em></p>
   <blockquote>
   <h2>v1.64.0</h2>
   <h2>API Changes</h2>
   <ul>
   <li>compiler: the option <code>jakarta_omit</code> was renamed 
<code>@generated=omit</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11086";>#11086</a>) 
(8a21afcc9)</li>
   </ul>
   <h2>New Features</h2>
   <ul>
   <li>New API LoadBalancer.getChannelTarget() (4561bb5b8)</li>
   <li>opentelemetry: Publish new module grpc-opentelemetry (5ba1a5563). The 
feature is still missing documentation and an example. It only supports 
metrics; tracing and logs will be future enhancements. See <a 
href="https://github.com/grpc/proposal/blob/master/A66-otel-stats.md";>gRFC 
A66</a></li>
   <li>bazel: Add support for bzlmod (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11046";>#11046</a>) 
(d1890c0ac)</li>
   <li>bazel: Replace usages of the old compatibility maven targets with 
<code>@maven</code> targets (00649913b)</li>
   <li>okhttp: Support serverBuilder.maxConcurrentCallsPerConnection (Fixes <a 
href="https://redirect.github.com/grpc/grpc-java/issues/11062";>#11062</a>). (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11063";>#11063</a>) 
(805072339)</li>
   <li>xds: Experimental metrics recording in WRR LB (06df25b65, 35a171bc1, 
2897b3939), to be exported by grpc-opentelemetry if explicitly enabled in 
GrpcOpenTelemetry. See <a 
href="https://github.com/grpc/proposal/blob/master/A78-grpc-metrics-wrr-pf-xds.md";>gRFC
 A78</a></li>
   <li>rls: Experimental metrics recording in RLS LB (a9fb272b7, a1d19327f, 
813331837), to be exported by grpc-opentelemetry if explicitly enabled in 
GrpcOpenTelemetry</li>
   </ul>
   <h2>Improvements</h2>
   <ul>
   <li>examples: support bazel build for retry policy example (58de563fa)</li>
   <li>netty: Allow deframer errors to close stream with a status code, as long 
as headers have not yet been sent (e036b1b19). This will greatly improve the 
debuggability of certain server errors in particular cases. Instead of the 
client seeing “CANCELLED: RST_STREAM closed stream. HTTP/2 error code: CANCEL”, 
they could see “RESOURCE_EXHAUSTED: gRPC message exceeds maximum size 4194304: 
6144592”</li>
   <li>netty: Improve handling of unexpected write queue promise failures (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11016";>#11016</a>)</li>
   <li>servlet: Avoid unnecessary FINEST hex string conversion by checking log 
level. Fixes <a 
href="https://redirect.github.com/grpc/grpc-java/issues/11031";>#11031</a>. 
(f7ee5f318)</li>
   <li>StatusException/StatusRuntimeException hide stack trace in a simpler way 
(<a href="https://redirect.github.com/grpc/grpc-java/issues/11064";>#11064</a>) 
(e36f099be)</li>
   <li>util: Status desc for outlier detection ejection (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11036";>#11036</a>) 
(10cb4a3be)</li>
   <li>binder: Helper class to allow in process servers to use peer uids in 
test (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11014";>#11014</a>) 
(537dbe826)</li>
   <li>Add <code>load()</code> statements for the Bazel builtin top-level java 
symbols (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11105";>#11105</a>) 
(add8c37a4)</li>
   <li>Add <code>StatusProto.toStatusException</code> overload to accept 
<code>Throwable</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11083";>#11083</a>) 
(5c9b49231)</li>
   </ul>
   <h2>Bug fixes</h2>
   <ul>
   <li>Fix retry race condition that can lead to double decrementing 
inFlightSubStreams and so miss calling closed (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11026";>#11026</a>) 
(bdb623031)</li>
   <li>Change defaults to use the older PickFirstLoadBalancer and disable Happy 
Eyeballs.  This disables a performance optimization added in v1.63. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11120";>#11120</a>) We 
have had a report that the new implementation can trigger a 
NullPointerException</li>
   <li>core: Transition to CONNECTING immediately when exiting idle 
(2c5f0c22c). Previously the visible state change from 
<code>channel.getState()</code> was delayed until the name resolver returned 
results. This had no impact to RPC behavior</li>
   <li>xds: Specify a locale for upper/lower case conversions (e6305930d)</li>
   <li>rls: Synchronization fixes in CachingRlsLbClient (6e97b180b). These 
races had not been witnessed in practice</li>
   <li>rls: Guarantee backoff will update RLS picker (f9b6e5f92). This fixes a 
regression introduced by 6e97b180b that could hang RPCs instead of using 
fallback, but fixes a pre-existing bug that could greatly delay RPCs from using 
fallback.</li>
   <li>rls: Fix time handling in CachingRlsLbClient (da619e2bd). This could 
have caused backoff entries to improperly be considered expired</li>
   <li>xds: Properly disable the default endpoint identification algorithm with 
XdsChannelCredentials (097a46b76). The credential does its own verification and 
the default needs to be disabled for SPIFFE</li>
   <li>netty: Release SendGrpcFrameCommand when stream is missing (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11116";>#11116</a>) 
(fb9a10809)</li>
   <li>okhttp: Remove finished stream even if a pending stream was started 
(d21fe32be)</li>
   </ul>
   <h2>Dependencies</h2>
   <ul>
   <li>cronet: Update Cronet to latest release + Move to Stable Cronet APIs. 
(5a8da19f3)</li>
   <li>cronet: <a href="https://github.com/javadoc";><code>@​javadoc</code></a> 
update android permission MODIFY_NETWORK_ACCOUNTING (deprecated) =&gt; 
UPDATE_DEVICE_STATS (c703a1ee0)</li>
   <li>cronet: Update to Java-8 API's and tighten the scopes (163efa371)</li>
   <li>cronet: Update to StandardCharsets and assertNotNull API's 
(77e59b29d)</li>
   </ul>
   <h2>Acknowledgements</h2>
   <p><a href="https://github.com/panchenko";><code>@​panchenko</code></a>
   <a href="https://github.com/Ashok-Varma";><code>@​Ashok-Varma</code></a>
   <a href="https://github.com/benjaminp";><code>@​benjaminp</code></a>
   <a 
href="https://github.com/AutomatedTester";><code>@​AutomatedTester</code></a>
   <a href="https://github.com/hypnoce";><code>@​hypnoce</code></a>
   <a href="https://github.com/keith";><code>@​keith</code></a>
   <a href="https://github.com/laglangyue";><code>@​laglangyue</code></a></p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a54c72f0850a8d7c8e6465cc7cd12d63f0af109d";><code>a54c72f</code></a>
 Bump version to 1.64.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/2c1b07cfb1cb32f45e0aa672df9ccf70cee6d199";><code>2c1b07c</code></a>
 Update README etc to reference 1.64.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/9798e4afae48dbc7427e4fa578ee414e007c75b5";><code>9798e4a</code></a>
 all: Add opentelemetry</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/d086f5a9c032f9dc6c2d98d841349977d907c64b";><code>d086f5a</code></a>
 opentelemetry: Mark registerGlobal() as experimental</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/3158f91e7538424df0c1c2961fed507e4bf864f6";><code>3158f91</code></a>
 rls: Guarantee backoff will update RLS picker</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/80f872e3a627d000e6bc7944d42a7eaf8bdc1b88";><code>80f872e</code></a>
 xds, rls: Experimental metrics are disabled by default (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11196";>#11196</a>) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11197";>#11197</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/cc587e60c5c17e84c220eb2ee1cf940282f74926";><code>cc587e6</code></a>
 opentelemetry: Publish grpc opentelemetry (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11187";>#11187</a>) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11195";>#11195</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/8133318376ae222ca162da91316b36beea1b5277";><code>8133318</code></a>
 rls: Add gauge metric recording (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11175";>#11175</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/f737cbc143d7e6619471f845d1b5001ef33bc3b7";><code>f737cbc</code></a>
 api: Hide internal metric APIs</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/1e731be49a8e9e7438bd7d2341966a67e7fb2eeb";><code>1e731be</code></a>
 opentelemetry: Rename and stabilize API OpenTelemetryModule</li>
   <li>Additional commits viewable in <a 
href="https://github.com/grpc/grpc-java/compare/v1.63.0...v1.64.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   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>


-- 
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: dev-unsubscr...@avro.apache.org

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

Reply via email to