You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by GitBox <gi...@apache.org> on 2022/05/22 17:43:42 UTC

[GitHub] [avro] dependabot[bot] opened a new pull request, #1693: Bump grpc.version from 1.45.1 to 1.46.0 in /lang/java

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

   Bumps `grpc.version` from 1.45.1 to 1.46.0.
   Updates `grpc-core` from 1.45.1 to 1.46.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/grpc/grpc-java/releases">grpc-core's releases</a>.</em></p>
   <blockquote>
   <h2>v1.46.0</h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li>netty: Fixed incompatibility with Netty 4.1.75.Final that caused COMPRESSION_ERROR (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9004">#9004</a>)</li>
   <li>xds: Fix LBs blindly propagating control plane errors (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9012">#9012</a>). This change forces the use of UNAVAILABLE for any xDS communication failures, which otherwise could greatly confuse an application. This is essentially a continuation of the fix in 1.45.0 for XdsNameResolver, but for other similar cases</li>
   <li>xds: Fix ring_hash reconnecting behavior. Previously a TRANSIENT_FAILURE subchannel would remain failed forever</li>
   <li>xds: Fix ring_hash defeating priority’s failover connection timeout. <a href="https://github-redirect.dependabot.com/grpc/proposal/issues/296">grpc/proposal#296</a></li>
   <li>binder: Work around an Android Intent bug for consistent AndroidComponentAndress hashCode() and equals() (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9061">#9061</a>)</li>
   <li>binder: Fix deadlock when using process-local Binder (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8987">#8987</a>). Process-local binder has a different threading model than normal FLAG_ONEWAY, so this case is now detected and the FLAG_ONEWAY threading model is emulated</li>
   <li>okhttp: Removed dead code in io.grpc.okhttp.internal.Util. This should have no impact except for static code analysis. This code was never used and was from the process of forking okhttp. It calculated things like MD5 which can trigger security scanners (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9071">#9071</a>)</li>
   </ul>
   <h3>Behavior Changes</h3>
   <ul>
   <li>java_grpc_library.bzl: Pass use_default_shell_env = True for protoc (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8984">#8984</a>). This allows using MinGW on Windows</li>
   <li>xds: Unconditionally apply backoff on ADS and LDS stream recreation. Previously if a message had been received on the stream no backoff wait would be performed. This limits QPS to a buggy server to 1 QPS, instead of a closed loop</li>
   <li>xds: Skip Routes within VirtualHosts whose RouteAction has no cluster_specifier. This probably means the control plane is using a cluster_specifier field unknown/unsupported by gRPC. The control plane can repeat the Route with a different cluster_specifier for compatibility with older clients</li>
   <li>xds: Support <code>xds.config.resource-in-sotw</code> client capability. Resources wrapped in a <code>io.envoyproxy.envoy.service.discovery.v3.Resource</code> message are now supported (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8997">#8997</a>)</li>
   </ul>
   <h3>New Features</h3>
   <ul>
   <li>gcp-observability: A new experimental module for improving visibility into gRPC workloads. Initially supports logging RPCs to Google Cloud Logging</li>
   <li>grpclb: Support setting initial fallback timeout by service config (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8980">#8980</a>)</li>
   </ul>
   <h3>Dependencies</h3>
   <ul>
   <li>PerfMark bumped to 0.25.0 (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8948">#8948</a>)</li>
   <li>okhttp: the okhttp dependency is now compile only (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8971">#8971</a>). Okhttp’s internal HTTP/2 implementation was forked inside grpc-okhttp a long time ago, but there had been a few stray internal classes that had not been forked but should have been. That has now been fixed in preparation for OkHttp 3/4 support. Compile-only may cause a runtime failure for code using reflection on OkHttpChannelBuilder; add a dependency on okhttp 2.7.4 to resolve</li>
   <li>bom: Removed protoc-gen-grpc-java from the BOM, as the classifier was confusing and it provided no value (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9020">#9020</a>)</li>
   </ul>
   <h3>Acknowledgements</h3>
   <p><a href="https://github.com/jesseschalken"><code>@​jesseschalken</code></a>
   <a href="https://github.com/kluever"><code>@​kluever</code></a>
   <a href="https://github.com/beatrausch"><code>@​beatrausch</code></a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/grpc/grpc-java/commit/3500243f4320fcde1d567184b822c98de017498e"><code>3500243</code></a> Bump version to 1.46.0</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/15d48747fd72a92049e52d711c1ffe16d02ceba7"><code>15d4874</code></a> Update README etc to reference 1.46.0</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/74d831f72f7f41c38782bf8e3d609b0bb8a8ae10"><code>74d831f</code></a> xds: priority reset failover timer when connecting if seen ready or idle sinc...</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/afc52a01cf05b0b8f2582ee52b4d25d56341c017"><code>afc52a0</code></a> xds: fix ring-hash-picker behaviour (1.46.x backport) (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9096">#9096</a>)</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/f557fe2c15e438ac942b95eadc5a2ff9c294082d"><code>f557fe2</code></a> xds: change ring_hash LB aggregation rule to handles transient_failures (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/908">#908</a>...</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/78ccc81fd5c3a9c94c8a202f141e477b946a263b"><code>78ccc81</code></a> okhttp: Remove dead code in io.grpc.okhttp.internal.Util</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/569b7b0b95377205b5e19fcf5cb74bb93b4c1312"><code>569b7b0</code></a> xds: Unconditionally apply backoff on LRS stream recreation</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/054cb49b49fb65d4383a6e4a62419df4aef0813c"><code>054cb49</code></a> okhttp: Remove RPCs-before-ready tests</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/5351fb9c25825dd09cb94a9f93b7f2644cd2fd61"><code>5351fb9</code></a> okhttp: Pass TransportFactory directly to transport constructor</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/584622c5fa125b327e90f8ecb0c01de5544d39c8"><code>584622c</code></a> Revert &quot;stub: enable GRPC_CLIENT_CALL_REJECT_RUNNABLE in ThreadlessExecutor s...</li>
   <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-java/compare/v1.45.1...v1.46.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `grpc-stub` from 1.45.1 to 1.46.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/grpc/grpc-java/releases">grpc-stub's releases</a>.</em></p>
   <blockquote>
   <h2>v1.46.0</h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li>netty: Fixed incompatibility with Netty 4.1.75.Final that caused COMPRESSION_ERROR (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9004">#9004</a>)</li>
   <li>xds: Fix LBs blindly propagating control plane errors (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9012">#9012</a>). This change forces the use of UNAVAILABLE for any xDS communication failures, which otherwise could greatly confuse an application. This is essentially a continuation of the fix in 1.45.0 for XdsNameResolver, but for other similar cases</li>
   <li>xds: Fix ring_hash reconnecting behavior. Previously a TRANSIENT_FAILURE subchannel would remain failed forever</li>
   <li>xds: Fix ring_hash defeating priority’s failover connection timeout. <a href="https://github-redirect.dependabot.com/grpc/proposal/issues/296">grpc/proposal#296</a></li>
   <li>binder: Work around an Android Intent bug for consistent AndroidComponentAndress hashCode() and equals() (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9061">#9061</a>)</li>
   <li>binder: Fix deadlock when using process-local Binder (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8987">#8987</a>). Process-local binder has a different threading model than normal FLAG_ONEWAY, so this case is now detected and the FLAG_ONEWAY threading model is emulated</li>
   <li>okhttp: Removed dead code in io.grpc.okhttp.internal.Util. This should have no impact except for static code analysis. This code was never used and was from the process of forking okhttp. It calculated things like MD5 which can trigger security scanners (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9071">#9071</a>)</li>
   </ul>
   <h3>Behavior Changes</h3>
   <ul>
   <li>java_grpc_library.bzl: Pass use_default_shell_env = True for protoc (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8984">#8984</a>). This allows using MinGW on Windows</li>
   <li>xds: Unconditionally apply backoff on ADS and LDS stream recreation. Previously if a message had been received on the stream no backoff wait would be performed. This limits QPS to a buggy server to 1 QPS, instead of a closed loop</li>
   <li>xds: Skip Routes within VirtualHosts whose RouteAction has no cluster_specifier. This probably means the control plane is using a cluster_specifier field unknown/unsupported by gRPC. The control plane can repeat the Route with a different cluster_specifier for compatibility with older clients</li>
   <li>xds: Support <code>xds.config.resource-in-sotw</code> client capability. Resources wrapped in a <code>io.envoyproxy.envoy.service.discovery.v3.Resource</code> message are now supported (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8997">#8997</a>)</li>
   </ul>
   <h3>New Features</h3>
   <ul>
   <li>gcp-observability: A new experimental module for improving visibility into gRPC workloads. Initially supports logging RPCs to Google Cloud Logging</li>
   <li>grpclb: Support setting initial fallback timeout by service config (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8980">#8980</a>)</li>
   </ul>
   <h3>Dependencies</h3>
   <ul>
   <li>PerfMark bumped to 0.25.0 (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8948">#8948</a>)</li>
   <li>okhttp: the okhttp dependency is now compile only (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8971">#8971</a>). Okhttp’s internal HTTP/2 implementation was forked inside grpc-okhttp a long time ago, but there had been a few stray internal classes that had not been forked but should have been. That has now been fixed in preparation for OkHttp 3/4 support. Compile-only may cause a runtime failure for code using reflection on OkHttpChannelBuilder; add a dependency on okhttp 2.7.4 to resolve</li>
   <li>bom: Removed protoc-gen-grpc-java from the BOM, as the classifier was confusing and it provided no value (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9020">#9020</a>)</li>
   </ul>
   <h3>Acknowledgements</h3>
   <p><a href="https://github.com/jesseschalken"><code>@​jesseschalken</code></a>
   <a href="https://github.com/kluever"><code>@​kluever</code></a>
   <a href="https://github.com/beatrausch"><code>@​beatrausch</code></a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/grpc/grpc-java/commit/3500243f4320fcde1d567184b822c98de017498e"><code>3500243</code></a> Bump version to 1.46.0</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/15d48747fd72a92049e52d711c1ffe16d02ceba7"><code>15d4874</code></a> Update README etc to reference 1.46.0</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/74d831f72f7f41c38782bf8e3d609b0bb8a8ae10"><code>74d831f</code></a> xds: priority reset failover timer when connecting if seen ready or idle sinc...</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/afc52a01cf05b0b8f2582ee52b4d25d56341c017"><code>afc52a0</code></a> xds: fix ring-hash-picker behaviour (1.46.x backport) (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9096">#9096</a>)</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/f557fe2c15e438ac942b95eadc5a2ff9c294082d"><code>f557fe2</code></a> xds: change ring_hash LB aggregation rule to handles transient_failures (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/908">#908</a>...</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/78ccc81fd5c3a9c94c8a202f141e477b946a263b"><code>78ccc81</code></a> okhttp: Remove dead code in io.grpc.okhttp.internal.Util</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/569b7b0b95377205b5e19fcf5cb74bb93b4c1312"><code>569b7b0</code></a> xds: Unconditionally apply backoff on LRS stream recreation</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/054cb49b49fb65d4383a6e4a62419df4aef0813c"><code>054cb49</code></a> okhttp: Remove RPCs-before-ready tests</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/5351fb9c25825dd09cb94a9f93b7f2644cd2fd61"><code>5351fb9</code></a> okhttp: Pass TransportFactory directly to transport constructor</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/584622c5fa125b327e90f8ecb0c01de5544d39c8"><code>584622c</code></a> Revert &quot;stub: enable GRPC_CLIENT_CALL_REJECT_RUNNABLE in ThreadlessExecutor s...</li>
   <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-java/compare/v1.45.1...v1.46.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `grpc-netty` from 1.45.1 to 1.46.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/grpc/grpc-java/releases">grpc-netty's releases</a>.</em></p>
   <blockquote>
   <h2>v1.46.0</h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li>netty: Fixed incompatibility with Netty 4.1.75.Final that caused COMPRESSION_ERROR (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9004">#9004</a>)</li>
   <li>xds: Fix LBs blindly propagating control plane errors (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9012">#9012</a>). This change forces the use of UNAVAILABLE for any xDS communication failures, which otherwise could greatly confuse an application. This is essentially a continuation of the fix in 1.45.0 for XdsNameResolver, but for other similar cases</li>
   <li>xds: Fix ring_hash reconnecting behavior. Previously a TRANSIENT_FAILURE subchannel would remain failed forever</li>
   <li>xds: Fix ring_hash defeating priority’s failover connection timeout. <a href="https://github-redirect.dependabot.com/grpc/proposal/issues/296">grpc/proposal#296</a></li>
   <li>binder: Work around an Android Intent bug for consistent AndroidComponentAndress hashCode() and equals() (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9061">#9061</a>)</li>
   <li>binder: Fix deadlock when using process-local Binder (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8987">#8987</a>). Process-local binder has a different threading model than normal FLAG_ONEWAY, so this case is now detected and the FLAG_ONEWAY threading model is emulated</li>
   <li>okhttp: Removed dead code in io.grpc.okhttp.internal.Util. This should have no impact except for static code analysis. This code was never used and was from the process of forking okhttp. It calculated things like MD5 which can trigger security scanners (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9071">#9071</a>)</li>
   </ul>
   <h3>Behavior Changes</h3>
   <ul>
   <li>java_grpc_library.bzl: Pass use_default_shell_env = True for protoc (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8984">#8984</a>). This allows using MinGW on Windows</li>
   <li>xds: Unconditionally apply backoff on ADS and LDS stream recreation. Previously if a message had been received on the stream no backoff wait would be performed. This limits QPS to a buggy server to 1 QPS, instead of a closed loop</li>
   <li>xds: Skip Routes within VirtualHosts whose RouteAction has no cluster_specifier. This probably means the control plane is using a cluster_specifier field unknown/unsupported by gRPC. The control plane can repeat the Route with a different cluster_specifier for compatibility with older clients</li>
   <li>xds: Support <code>xds.config.resource-in-sotw</code> client capability. Resources wrapped in a <code>io.envoyproxy.envoy.service.discovery.v3.Resource</code> message are now supported (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8997">#8997</a>)</li>
   </ul>
   <h3>New Features</h3>
   <ul>
   <li>gcp-observability: A new experimental module for improving visibility into gRPC workloads. Initially supports logging RPCs to Google Cloud Logging</li>
   <li>grpclb: Support setting initial fallback timeout by service config (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8980">#8980</a>)</li>
   </ul>
   <h3>Dependencies</h3>
   <ul>
   <li>PerfMark bumped to 0.25.0 (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8948">#8948</a>)</li>
   <li>okhttp: the okhttp dependency is now compile only (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/8971">#8971</a>). Okhttp’s internal HTTP/2 implementation was forked inside grpc-okhttp a long time ago, but there had been a few stray internal classes that had not been forked but should have been. That has now been fixed in preparation for OkHttp 3/4 support. Compile-only may cause a runtime failure for code using reflection on OkHttpChannelBuilder; add a dependency on okhttp 2.7.4 to resolve</li>
   <li>bom: Removed protoc-gen-grpc-java from the BOM, as the classifier was confusing and it provided no value (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9020">#9020</a>)</li>
   </ul>
   <h3>Acknowledgements</h3>
   <p><a href="https://github.com/jesseschalken"><code>@​jesseschalken</code></a>
   <a href="https://github.com/kluever"><code>@​kluever</code></a>
   <a href="https://github.com/beatrausch"><code>@​beatrausch</code></a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/grpc/grpc-java/commit/3500243f4320fcde1d567184b822c98de017498e"><code>3500243</code></a> Bump version to 1.46.0</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/15d48747fd72a92049e52d711c1ffe16d02ceba7"><code>15d4874</code></a> Update README etc to reference 1.46.0</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/74d831f72f7f41c38782bf8e3d609b0bb8a8ae10"><code>74d831f</code></a> xds: priority reset failover timer when connecting if seen ready or idle sinc...</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/afc52a01cf05b0b8f2582ee52b4d25d56341c017"><code>afc52a0</code></a> xds: fix ring-hash-picker behaviour (1.46.x backport) (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/9096">#9096</a>)</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/f557fe2c15e438ac942b95eadc5a2ff9c294082d"><code>f557fe2</code></a> xds: change ring_hash LB aggregation rule to handles transient_failures (<a href="https://github-redirect.dependabot.com/grpc/grpc-java/issues/908">#908</a>...</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/78ccc81fd5c3a9c94c8a202f141e477b946a263b"><code>78ccc81</code></a> okhttp: Remove dead code in io.grpc.okhttp.internal.Util</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/569b7b0b95377205b5e19fcf5cb74bb93b4c1312"><code>569b7b0</code></a> xds: Unconditionally apply backoff on LRS stream recreation</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/054cb49b49fb65d4383a6e4a62419df4aef0813c"><code>054cb49</code></a> okhttp: Remove RPCs-before-ready tests</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/5351fb9c25825dd09cb94a9f93b7f2644cd2fd61"><code>5351fb9</code></a> okhttp: Pass TransportFactory directly to transport constructor</li>
   <li><a href="https://github.com/grpc/grpc-java/commit/584622c5fa125b327e90f8ecb0c01de5544d39c8"><code>584622c</code></a> Revert &quot;stub: enable GRPC_CLIENT_CALL_REJECT_RUNNABLE in ThreadlessExecutor s...</li>
   <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-java/compare/v1.45.1...v1.46.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 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-unsubscribe@avro.apache.org

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


[GitHub] [avro] martin-g merged pull request #1693: Bump grpc.version from 1.45.1 to 1.46.0 in /lang/java

Posted by GitBox <gi...@apache.org>.
martin-g merged PR #1693:
URL: https://github.com/apache/avro/pull/1693


-- 
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-unsubscribe@avro.apache.org

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