solrbot opened a new pull request, #4542:
URL: https://github.com/apache/solr/pull/4542

   This PR contains the following updates:
   
   | Package | Type | Update | Change |
   |---|---|---|---|
   | [io.grpc:grpc-util](https://redirect.github.com/grpc/grpc-java) | 
dependencies | minor | `1.80.0` → `1.82.0` |
   | [io.grpc:grpc-stub](https://redirect.github.com/grpc/grpc-java) | 
dependencies | minor | `1.80.0` → `1.82.0` |
   | [io.grpc:grpc-protobuf-lite](https://redirect.github.com/grpc/grpc-java) | 
dependencies | minor | `1.80.0` → `1.82.0` |
   | [io.grpc:grpc-protobuf](https://redirect.github.com/grpc/grpc-java) | 
dependencies | minor | `1.80.0` → `1.82.0` |
   | [io.grpc:grpc-netty](https://redirect.github.com/grpc/grpc-java) | 
dependencies | minor | `1.80.0` → `1.82.0` |
   | [io.grpc:grpc-core](https://redirect.github.com/grpc/grpc-java) | 
dependencies | minor | `1.80.0` → `1.82.0` |
   | [io.grpc:grpc-context](https://redirect.github.com/grpc/grpc-java) | 
dependencies | minor | `1.80.0` → `1.82.0` |
   | [io.grpc:grpc-bom](https://redirect.github.com/grpc/grpc-java) | 
dependencies | minor | `1.80.0` → `1.82.0` |
   | [io.grpc:grpc-api](https://redirect.github.com/grpc/grpc-java) | 
dependencies | minor | `1.80.0` → `1.82.0` |
   
   ---
   
   ### Release Notes
   
   <details>
   <summary>grpc/grpc-java (io.grpc:grpc-util)</summary>
   
   ### 
[`v1.82.0`](https://redirect.github.com/grpc/grpc-java/releases/tag/v1.82.0)
   
   This release drops support for Bazel 7. It may still run, but we are no 
longer testing it. We are testing Bazel 8 and 9.
   
   We are anticipating requiring Netty 4.2 in the next release. Please file an 
issue if you still need Netty 4.1 support.
   
   ##### Behavior Changes
   
   - xds: Disable Priority LB child policy retention cache 
([#&#8203;12806](https://redirect.github.com/grpc/grpc-java/issues/12806)). 
Previously, when a priority became inactive, its associated child load balancer 
was kept in a deactivated state for potential reuse. Now, inactive child 
balancers are immediately torn down and removed.
   - xds: skip DiscoveryRequest for unsubscribed types on stream ready 
([#&#8203;12782](https://redirect.github.com/grpc/grpc-java/issues/12782)). 
When the bootstrap declares more than one xDS server (e.g. a default server for 
LDS/CDS plus an authority-specific EDS-only server), grpc-java was sending 
CDS/LDS DiscoveryRequests to the EDS-only server too. That server replies 
`UNIMPLEMENTED`, which tears down the stream and EDS data never arrives. This 
fix makes it skip DiscoveryRequests for resource types we don't actually 
subscribe to on a given server.
   
   ##### Improvements
   
   - Remove JSR-305 `@ThreadSafe` annotation and replace with JavaDoc 
([#&#8203;12762](https://redirect.github.com/grpc/grpc-java/issues/12762)). 
Removes JSR-305 annotations but instead of replacing it with ErrorProne's 
ThreadSafe, sticks to adding a JavaDoc comment. This is done only in public 
non-final classes and interfaces. This allows Java applications that have moved 
away from javax to compile and avoids a bug in Immutables and Lombok (and 
possibly other annotation processors) from failing when JSR-305 is not present.
   - core: Reduce per-stream idle memory on the server by 0.5 KB 
([`b38df6c`](https://redirect.github.com/grpc/grpc-java/commit/b38df6c94)). The 
main improvement here is not retaining the request Metadata for the life of the 
RPC. That means RPCs with larger request Metadata would see a larger benefit.
   - core: Clarify missing content-type on HTTP error responses 
([#&#8203;12720](https://redirect.github.com/grpc/grpc-java/issues/12720)). 
Adjusts the diagnostic for the missing rather than invalid content-type, in the 
Status description.
   - core: throw IOException when ProxySelector returns null or empty list 
([#&#8203;12793](https://redirect.github.com/grpc/grpc-java/issues/12793)). 
ProxySelector.select(URI) is required to return a non-null, non-empty list. 
Some implementations violate this, which previously caused an opaque crash in 
ProxyDetectorImpl. Now it detects this case explicitly and fails gracefully, 
naming the offending ProxySelector class to help with debugging.
   - okhttp: enable TLS 1.3 by default for Android clients, retain TLS 1.2-only 
for desktop JVM 
([`f430131`](https://redirect.github.com/grpc/grpc-java/commit/f43013161))
   - xds: Reduce per-endpoint memory from CDS LB 
([`cc0d1a8`](https://redirect.github.com/grpc/grpc-java/commit/cc0d1a810)). 
This is most noticeable when there are many endpoints returned by EDS, but the 
LB policy only uses a few of them, like pick\_first.
   - xds: pre-parse custom metric names in WRR load balancer 
([#&#8203;12773](https://redirect.github.com/grpc/grpc-java/issues/12773)) 
([`324fce7`](https://redirect.github.com/grpc/grpc-java/commit/324fce715)). 
This reduces the per-RPC overhead of the gRFC A114 support added in v1.81.0
   - xds: Propagate status cause through XdsDepManager 
([`13b4b97`](https://redirect.github.com/grpc/grpc-java/commit/13b4b9727)). 
This preserves more information for failures communicating with the control 
plane.
   - binder: Give clear error when message is larger than parcel 
([`d92ca44`](https://redirect.github.com/grpc/grpc-java/commit/d92ca44a1))
   
   ##### Bug Fixes
   
   - xds: Trust Manager fix for certain scenarios where SAN validation 
shouldn't use the SNI sent 
([#&#8203;12775](https://redirect.github.com/grpc/grpc-java/issues/12775)) 
([`bb153a8`](https://redirect.github.com/grpc/grpc-java/commit/bb153a83f)).
   - core: Cancel DelayedClientCall when application listener throws 
([#&#8203;12761](https://redirect.github.com/grpc/grpc-java/issues/12761)). 
Align DelayedClientCall.DelayedListener with ClientCallImpl's existing behavior 
for listener exceptions. When the application listener throws from 
onHeaders/onMessage/onReady, catch the Throwable, cancel the call with 
CANCELLED (cause = the throwable), and swallow subsequent callbacks. 
Previously, a throw from the application listener escaped to the callExecutor's 
uncaught-exception handler. The real call was not cancelled and the transport 
kept delivering callbacks to an already broken listener
   - core,opentelemetry: Fix server metric labels on early close 
([#&#8203;12774](https://redirect.github.com/grpc/grpc-java/issues/12774)). 
Addresses the server-side OpenTelemetry metric labeling bug where a generated 
method can be recorded as grpc.method="other" if `streamClosed()` happens 
before `serverCallStarted()`.
   - core: Fix pick\_first NPE with 
`GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=true` when accepting resolved 
addresses and in CONNECTING state 
([#&#8203;12814](https://redirect.github.com/grpc/grpc-java/issues/12814)). It 
makes sure that whenever PickFirstLeafLoadBalancer transitions into CONNECTING 
the current address in the addressIndex has a corresponding subchannel. This 
prevents an NPE in acceptResolvedAddresses in some situations.
   - okhttp: HPACK should fail on varint overflow 
([`ec10992`](https://redirect.github.com/grpc/grpc-java/commit/ec1099254)). 
This should have no visible impact in normal use. It mostly just makes it 
easier to debug broken implementations
   - xds: When using the file watcher certificate provider, reload cert/key 
even if only one of them changes 
([`f4125c5`](https://redirect.github.com/grpc/grpc-java/commit/f4125c591))
   - compiler: Avoid compile error on weird proto file names 
([`f021bef`](https://redirect.github.com/grpc/grpc-java/commit/f021befcd))
   
   ##### New Features
   
   - googleapis: support `?force-xds` query parameter in the `google-c2p` 
resolver 
([#&#8203;12760](https://redirect.github.com/grpc/grpc-java/issues/12760)) 
([`86fa860`](https://redirect.github.com/grpc/grpc-java/commit/86fa86063)). 
This disables environment checks and uses xDS unconditionally. Please note that 
this feature has not yet seen comprehensive testing.
   
   ##### Dependencies
   
   - Upgrade Netty to 4.1.133 
([`ada087b`](https://redirect.github.com/grpc/grpc-java/commit/ada087b9d))
   - bazel: Upgrade googleapis proto repo to commit 
[`1dbb1a1`](https://redirect.github.com/grpc/grpc-java/commit/1dbb1a14) 
([`ec0a9c9`](https://redirect.github.com/grpc/grpc-java/commit/ec0a9c976)). 
This fixed a rules\_go incompatibility issue with Bazel 9.1. But it also 
greatly reduced the overall transitive dependencies, as the C++ grpc repo is no 
longer a dependency
   - bazel: Upgrade workflows to Bazel 8 
([`039ad77`](https://redirect.github.com/grpc/grpc-java/commit/039ad7779)) add 
Bazel 9.1.0 to our CI matrix 
([`17be0d3`](https://redirect.github.com/grpc/grpc-java/commit/17be0d3d1))
   - protoc-gen-grpc-java: Linux binaries are now built with Ubuntu 20.04 
instead of 18.04 
([`8802dc3`](https://redirect.github.com/grpc/grpc-java/commit/8802dc35b5), 
[`da98b04`](https://redirect.github.com/grpc/grpc-java/commit/da98b04b09))
   
   ##### Thanks to
   
   [@&#8203;becomeStar](https://redirect.github.com/becomeStar)\
   [@&#8203;bengtsson1-flir](https://redirect.github.com/bengtsson1-flir)\
   
[@&#8203;jnowjack-lucidchart](https://redirect.github.com/jnowjack-lucidchart)\
   [@&#8203;Kainsin](https://redirect.github.com/Kainsin)\
   [@&#8203;kenkangxgwe](https://redirect.github.com/kenkangxgwe)\
   [@&#8203;mfperminov](https://redirect.github.com/mfperminov)\
   [@&#8203;paulmurhy123](https://redirect.github.com/paulmurhy123)\
   [@&#8203;schiemon](https://redirect.github.com/schiemon)\
   [@&#8203;therepanic](https://redirect.github.com/therepanic)
   
   ### 
[`v1.81.0`](https://redirect.github.com/grpc/grpc-java/releases/tag/v1.81.0)
   
   In this release we drop support for Android API level 22 or lower (Lollipop 
or earlier), following Google Play Service’s [discontinued updates for Lollipop 
(API levels 21 & 22)](https://developers.google.com/android/guides/setup) and 
now requires a minimum of API level 23 (Android 6.0 Marshmallow).
   
   **API Changes**
   
   - api: Deprecate LoadBalancer.handleResolvedAddresses(). Developers 
maintaining custom LoadBalancer implementations should transition to using 
LoadBalancer.acceptResolvedAddresses(). Unlike the deprecated method, 
acceptResolvedAddresses() returns a Status object, allowing the load balancer 
to explicitly report success or reject the update if the provided addresses or 
configuration are invalid. 
([#&#8203;11623](https://redirect.github.com/grpc/grpc-java/issues/11623))
   
   **Behavior Changes**
   
   - core: Enable dns "caching" on Android for 30 seconds to reduce CPU impact 
of a refresh loop with an LB policy 
([`0675f70`](https://redirect.github.com/grpc/grpc-java/commit/0675f70af)). 
DnsNameResolver ignores re-resolution requests on OpenJDK-like platforms if it 
has been too soon since the last DNS query because InetAddress.getAllByName() 
has a cache with a fixed entry lifetime, but this logic was disabled for 
Android which does not have that style of cache. Android’s cache uses the 
result TTL, which will rarely be less than 30 seconds. This change would 
probably be most noticeable when 1) changing to a different network (e.g., from 
wifi to mobile), 2) the server has different addresses for different networks, 
and 3) the app is not using AndroidChannelBuilder with an 
`android.context.Context`. For reference, it seems Chrome caches for 1 minute
   
   **Bug Fixes**
   
   - opentelemetry: Fix baggage propagation, the baggage propagation for 
opentelemetry introduced in 
[#&#8203;12389](https://redirect.github.com/grpc/grpc-java/pull/12389) was 
broken. The context is decided once and used for all recording for the call, 
thus guaranteeing all record()s have consistent information.
   - core: Address a race condition where `ManagedChannelOrphanWrapper` could 
incorrectly log a "not shutdown properly" warning during garbage collection 
when using directExecutor(). 
([#&#8203;12705](https://redirect.github.com/grpc/grpc-java/issues/12705)) 
([`d459338`](https://redirect.github.com/grpc/grpc-java/commit/d459338d9))
   - xds: Fix xDS HTTP CONNECT's transport socket name bug which is now 
corrected to use `typeUrl`. 
([#&#8203;12740](https://redirect.github.com/grpc/grpc-java/issues/12740)) 
([`eac9fe9`](https://redirect.github.com/grpc/grpc-java/commit/eac9fe961))
   - xds: Fix an issue where subchannel metrics were dropping their association 
with the `backend_service`. This ensures xDS load balancing metrics are 
reported accurately. 
([#&#8203;12735](https://redirect.github.com/grpc/grpc-java/issues/12735))
   
   **New Features**
   
   - netty: Add tcp metrics, by implementing a few of the metrics defined in 
[A80](https://redirect.github.com/grpc/proposal/pull/519).
   - api: Add a CallOption for a custom label on per-RPC metrics 
([`0e39b29`](https://redirect.github.com/grpc/grpc-java/commit/0e39b2967)). 
This CallOption is copied by grpc-opentelemetry to the 
`grpc.client.call.custom` label as defined by [gRFC 
A108](https://redirect.github.com/grpc/proposal/blob/master/A108-otel-custom-per-call-label.md).
 See also the [gRPC OpenTelemetry Metrics 
guide](https://grpc.io/docs/guides/opentelemetry-metrics/) (update 
[in-progress](https://redirect.github.com/grpc/grpc.io/pull/1505))
   - xds: Add support for Weighted Round Robin (WRR) load balancing driven by 
custom backend metrics, implementing the behavior defined in gRFC A114. 
([#&#8203;12645](https://redirect.github.com/grpc/grpc-java/issues/12645))
   - utils: Update `AdvancedTlsX509KeyManager` so that developers can now 
preserve and use key aliases when dynamically reloading TLS certificates. 
([#&#8203;12686](https://redirect.github.com/grpc/grpc-java/issues/12686))
   
   **Documentation**
   
   - Update the "Outgoing Flow Control" section in the Manual Flow Control 
example to say onNext() does not block, but rather queues the messages in 
memory and advises developers to use CallStreamObserver.isReady() to prevent 
this memory exhaustion 
([#&#8203;12700](https://redirect.github.com/grpc/grpc-java/issues/12700)) 
([`a3a9ffc`](https://redirect.github.com/grpc/grpc-java/commit/a3a9ffcbe)) 
([#&#8203;12726](https://redirect.github.com/grpc/grpc-java/issues/12726)) 
([`65ae2ef`](https://redirect.github.com/grpc/grpc-java/commit/65ae2efda))
   - examples: Clean up Health example, and document need for grpc-services 
([`3ed732f`](https://redirect.github.com/grpc/grpc-java/commit/3ed732fc0))
   
   **Dependencies**
   
   - Upgrade Dependencies 
([#&#8203;12719](https://redirect.github.com/grpc/grpc-java/issues/12719)) 
([`16e17ab`](https://redirect.github.com/grpc/grpc-java/commit/16e17abba)). 
Google-auth-library: 1.42.1, animal-sniffer: 1.27, assertj-core:3.27.7, 
error\_prone\_annotations:2.48.0, proto-google-common-protos:2.64.1, 
google-cloud-logging:3.23.10, jetty-http2-server:12.1.7, 
jetty-ee10-servlet:12.1.7, lincheck:3.4, opentelemetry-api:1.60.1, 
opentelemetry-exporter-prometheus:1.60.1-alpha, 
opentelemetry-gcp-resources:1.54.0-alpha, 
opentelemetry-sdk-extension-autoconfigure:1.60.1, 
opentelemetry-sdk-testing:1.60.1, robolectric:4.16.1, 
tomcat-embed-core:10.1.52, tomcat-embed-core9: 9.0.115,
   - Upgrade Netty to 4.1.132 and netty-tcnative to 2.0.75 
([`1528f80`](https://redirect.github.com/grpc/grpc-java/commit/1528f809c))
   
   **Thanks to**
   
   - [@&#8203;becomeStar](https://redirect.github.com/becomeStar)
   - [@&#8203;benjaminp](https://redirect.github.com/benjaminp)
   - [@&#8203;JoeCqupt](https://redirect.github.com/JoeCqupt)
   - [@&#8203;Kainsin](https://redirect.github.com/Kainsin)
   - [@&#8203;merlimat](https://redirect.github.com/merlimat)
   - [@&#8203;SreeramdasLavanya](https://redirect.github.com/SreeramdasLavanya)
   - [@&#8203;themechbro](https://redirect.github.com/themechbro)
   - [@&#8203;zhangweikop](https://redirect.github.com/zhangweikop)
   
   </details>
   
   ---
   
   ### Configuration
   
   📅 **Schedule**: (UTC)
   
   - Branch creation
     - Only on Sunday (`* * * * 0`)
   - Automerge
     - At any time (no schedule defined)
   
   🚦 **Automerge**: Disabled by config. Please merge this manually once you are 
satisfied.
   
   ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry 
checkbox.
   
   🔕 **Ignore**: Close this PR and you won't be reminded about these updates 
again.
   
   ---
   
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this 
box
   
   ---
   
   This PR has been generated by [Renovate 
Bot](https://redirect.github.com/solrbot/renovate-github-action)
   
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNzAuMTgiLCJ1cGRhdGVkSW5WZXIiOiI0My4xNzAuMTgiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImV4ZW1wdC1zdGFsZSJdfQ==-->
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to