You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/07/30 17:33:09 UTC

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

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

   Bumps `grpc.version` from 1.56.1 to 1.57.0.
   Updates `io.grpc:grpc-core` from 1.56.1 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-core's releases</a>.</em></p>
   <blockquote>
   <h2>v1.57.0</h2>
   <h2>gRPC Java 1.57.0 Release Notes</h2>
   <h3>API Changes</h3>
   <ul>
   <li>Use fully qualified java.lang.String in all cases in generated code. This fixes compilation if a protobuf message is named “String”.</li>
   <li>Stabilize two io.grpc.Status methods (asRuntimeException &amp; trailersFromThrowable)</li>
   <li>Stabilize io.grpc.ManagedChannelBuilder.useTransportSecurity (<a href="https://redirect.github.com/grpc/grpc-java/issues/10244">#10244</a>)</li>
   <li>Stabilize io.grpc.util.MutableHandlerRegistry (<a href="https://redirect.github.com/grpc/grpc-java/issues/10348">#10348</a>)</li>
   </ul>
   <h3>Behavior Changes</h3>
   <ul>
   <li>xds: Handle loops and duplicates in xds Aggregate clusters</li>
   <li>core: Change delay for hedging retry after a non-fatal error to be 0 to match the gRFC (<a href="https://github.com/grpc/proposal/blob/master/A6-client-retries.md">A6</a>).</li>
   <li>api: CheckedForwardingClientCall now passes trailers from the caught exception</li>
   <li>xds: require EDS service name in CDS resources with an xdstp name</li>
   <li>xds: Use Rule order instead of RuleChain</li>
   <li>Wrap other name resolver types in a RetryingNameResolver .  Previously, if authority was not overridden, then some name resolvers (such as grpclb) had no retry.</li>
   <li>xds: Environment variable &quot;GRPC_XDS_EXPERIMENTAL_SECURITY_SUPPORT&quot; is no longer respected, so xDS security cannot be disabled any more (<a href="https://redirect.github.com/grpc/grpc-java/issues/10243">#10243</a>)</li>
   <li>context, api: Package io.grpc is now consolidated into a single artifact grpc-api by moving classes from grpc-context to grpc-api. grpc-context now has a dependency on grpc-api (but excludes other dependencies of grpc-api) so any application previously using only grpc-context will now also bring in grpc-api. This fixes <a href="https://redirect.github.com/grpc/grpc-java/issues/3522">#3522</a> which was the major issue preventing support of Java modules. We are not done fixing support, as some artifacts need to be split and Automatic-Module-Name needs to be added. The next release is likely to be more stable for modules.</li>
   <li></li>
   </ul>
   <h3>New Features</h3>
   <ul>
   <li>binder: Add <code>UserHandle</code> and <code>BinderChannelCredentials</code> to support cross-user communication (<a href="https://redirect.github.com/grpc/grpc-java/issues/10197">#10197</a>)</li>
   <li>xds,orca: LRS named metrics support</li>
   </ul>
   <h3>Improvements</h3>
   <ul>
   <li>core: Resolve isAndroid only once on class loading. This can improve channel creation performance on Android.</li>
   <li>xds: Pick a subchannel with new static stride scheduler in WeightedRoundRobinLoadBalancer</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li>xds: Fix the server sending a GOAWAY when an LDS update with no changes other than ordering is received.</li>
   <li>netty: Fix NPE when a header with errors is received with endStream=true.  This was causing logs to be filled with errors when health checkers didn’t specify a content type.</li>
   <li>okhttp: Fix the Socket data race when shutdown/closed during connecting that was causing a significant delay</li>
   </ul>
   <h3>Dependencies</h3>
   <ul>
   <li>Upgraded Netty to 4.1.93-Final</li>
   <li>Update guava dependency to 32.0.1 to address CVE-2023-2976</li>
   </ul>
   <h3>Acknowledgements</h3>
   <ul>
   <li>Benjamin Peterson</li>
   <li>Masakuni Oishi</li>
   <li>Philip K. Warren</li>
   <li>Stephane Landelle</li>
   </ul>
   </blockquote>
   </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.56.1...v1.57.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `io.grpc:grpc-stub` from 1.56.1 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-stub's releases</a>.</em></p>
   <blockquote>
   <h2>v1.57.0</h2>
   <h2>gRPC Java 1.57.0 Release Notes</h2>
   <h3>API Changes</h3>
   <ul>
   <li>Use fully qualified java.lang.String in all cases in generated code. This fixes compilation if a protobuf message is named “String”.</li>
   <li>Stabilize two io.grpc.Status methods (asRuntimeException &amp; trailersFromThrowable)</li>
   <li>Stabilize io.grpc.ManagedChannelBuilder.useTransportSecurity (<a href="https://redirect.github.com/grpc/grpc-java/issues/10244">#10244</a>)</li>
   <li>Stabilize io.grpc.util.MutableHandlerRegistry (<a href="https://redirect.github.com/grpc/grpc-java/issues/10348">#10348</a>)</li>
   </ul>
   <h3>Behavior Changes</h3>
   <ul>
   <li>xds: Handle loops and duplicates in xds Aggregate clusters</li>
   <li>core: Change delay for hedging retry after a non-fatal error to be 0 to match the gRFC (<a href="https://github.com/grpc/proposal/blob/master/A6-client-retries.md">A6</a>).</li>
   <li>api: CheckedForwardingClientCall now passes trailers from the caught exception</li>
   <li>xds: require EDS service name in CDS resources with an xdstp name</li>
   <li>xds: Use Rule order instead of RuleChain</li>
   <li>Wrap other name resolver types in a RetryingNameResolver .  Previously, if authority was not overridden, then some name resolvers (such as grpclb) had no retry.</li>
   <li>xds: Environment variable &quot;GRPC_XDS_EXPERIMENTAL_SECURITY_SUPPORT&quot; is no longer respected, so xDS security cannot be disabled any more (<a href="https://redirect.github.com/grpc/grpc-java/issues/10243">#10243</a>)</li>
   <li>context, api: Package io.grpc is now consolidated into a single artifact grpc-api by moving classes from grpc-context to grpc-api. grpc-context now has a dependency on grpc-api (but excludes other dependencies of grpc-api) so any application previously using only grpc-context will now also bring in grpc-api. This fixes <a href="https://redirect.github.com/grpc/grpc-java/issues/3522">#3522</a> which was the major issue preventing support of Java modules. We are not done fixing support, as some artifacts need to be split and Automatic-Module-Name needs to be added. The next release is likely to be more stable for modules.</li>
   <li></li>
   </ul>
   <h3>New Features</h3>
   <ul>
   <li>binder: Add <code>UserHandle</code> and <code>BinderChannelCredentials</code> to support cross-user communication (<a href="https://redirect.github.com/grpc/grpc-java/issues/10197">#10197</a>)</li>
   <li>xds,orca: LRS named metrics support</li>
   </ul>
   <h3>Improvements</h3>
   <ul>
   <li>core: Resolve isAndroid only once on class loading. This can improve channel creation performance on Android.</li>
   <li>xds: Pick a subchannel with new static stride scheduler in WeightedRoundRobinLoadBalancer</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li>xds: Fix the server sending a GOAWAY when an LDS update with no changes other than ordering is received.</li>
   <li>netty: Fix NPE when a header with errors is received with endStream=true.  This was causing logs to be filled with errors when health checkers didn’t specify a content type.</li>
   <li>okhttp: Fix the Socket data race when shutdown/closed during connecting that was causing a significant delay</li>
   </ul>
   <h3>Dependencies</h3>
   <ul>
   <li>Upgraded Netty to 4.1.93-Final</li>
   <li>Update guava dependency to 32.0.1 to address CVE-2023-2976</li>
   </ul>
   <h3>Acknowledgements</h3>
   <ul>
   <li>Benjamin Peterson</li>
   <li>Masakuni Oishi</li>
   <li>Philip K. Warren</li>
   <li>Stephane Landelle</li>
   </ul>
   </blockquote>
   </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.56.1...v1.57.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `io.grpc:grpc-netty` from 1.56.1 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-netty's releases</a>.</em></p>
   <blockquote>
   <h2>v1.57.0</h2>
   <h2>gRPC Java 1.57.0 Release Notes</h2>
   <h3>API Changes</h3>
   <ul>
   <li>Use fully qualified java.lang.String in all cases in generated code. This fixes compilation if a protobuf message is named “String”.</li>
   <li>Stabilize two io.grpc.Status methods (asRuntimeException &amp; trailersFromThrowable)</li>
   <li>Stabilize io.grpc.ManagedChannelBuilder.useTransportSecurity (<a href="https://redirect.github.com/grpc/grpc-java/issues/10244">#10244</a>)</li>
   <li>Stabilize io.grpc.util.MutableHandlerRegistry (<a href="https://redirect.github.com/grpc/grpc-java/issues/10348">#10348</a>)</li>
   </ul>
   <h3>Behavior Changes</h3>
   <ul>
   <li>xds: Handle loops and duplicates in xds Aggregate clusters</li>
   <li>core: Change delay for hedging retry after a non-fatal error to be 0 to match the gRFC (<a href="https://github.com/grpc/proposal/blob/master/A6-client-retries.md">A6</a>).</li>
   <li>api: CheckedForwardingClientCall now passes trailers from the caught exception</li>
   <li>xds: require EDS service name in CDS resources with an xdstp name</li>
   <li>xds: Use Rule order instead of RuleChain</li>
   <li>Wrap other name resolver types in a RetryingNameResolver .  Previously, if authority was not overridden, then some name resolvers (such as grpclb) had no retry.</li>
   <li>xds: Environment variable &quot;GRPC_XDS_EXPERIMENTAL_SECURITY_SUPPORT&quot; is no longer respected, so xDS security cannot be disabled any more (<a href="https://redirect.github.com/grpc/grpc-java/issues/10243">#10243</a>)</li>
   <li>context, api: Package io.grpc is now consolidated into a single artifact grpc-api by moving classes from grpc-context to grpc-api. grpc-context now has a dependency on grpc-api (but excludes other dependencies of grpc-api) so any application previously using only grpc-context will now also bring in grpc-api. This fixes <a href="https://redirect.github.com/grpc/grpc-java/issues/3522">#3522</a> which was the major issue preventing support of Java modules. We are not done fixing support, as some artifacts need to be split and Automatic-Module-Name needs to be added. The next release is likely to be more stable for modules.</li>
   <li></li>
   </ul>
   <h3>New Features</h3>
   <ul>
   <li>binder: Add <code>UserHandle</code> and <code>BinderChannelCredentials</code> to support cross-user communication (<a href="https://redirect.github.com/grpc/grpc-java/issues/10197">#10197</a>)</li>
   <li>xds,orca: LRS named metrics support</li>
   </ul>
   <h3>Improvements</h3>
   <ul>
   <li>core: Resolve isAndroid only once on class loading. This can improve channel creation performance on Android.</li>
   <li>xds: Pick a subchannel with new static stride scheduler in WeightedRoundRobinLoadBalancer</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li>xds: Fix the server sending a GOAWAY when an LDS update with no changes other than ordering is received.</li>
   <li>netty: Fix NPE when a header with errors is received with endStream=true.  This was causing logs to be filled with errors when health checkers didn’t specify a content type.</li>
   <li>okhttp: Fix the Socket data race when shutdown/closed during connecting that was causing a significant delay</li>
   </ul>
   <h3>Dependencies</h3>
   <ul>
   <li>Upgraded Netty to 4.1.93-Final</li>
   <li>Update guava dependency to 32.0.1 to address CVE-2023-2976</li>
   </ul>
   <h3>Acknowledgements</h3>
   <ul>
   <li>Benjamin Peterson</li>
   <li>Masakuni Oishi</li>
   <li>Philip K. Warren</li>
   <li>Stephane Landelle</li>
   </ul>
   </blockquote>
   </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.56.1...v1.57.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] dependabot[bot] closed pull request #2406: Bump grpc.version from 1.56.1 to 1.57.0 in /lang/java

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] closed pull request #2406: Bump grpc.version from 1.56.1 to 1.57.0 in /lang/java
URL: https://github.com/apache/avro/pull/2406


-- 
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] dependabot[bot] commented on pull request #2406: Bump grpc.version from 1.56.1 to 1.57.0 in /lang/java

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] commented on PR #2406:
URL: https://github.com/apache/avro/pull/2406#issuecomment-1666933448

   Superseded by #2422.


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

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