Skip to content

Commit 1330ea4

Browse files
fix(deps): Update grpc-java monorepo to v1.82.1 (#463)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [io.grpc:grpc-inprocess](https://redirect.github.com/grpc/grpc-java) | `1.81.0` → `1.82.1` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-inprocess/1.82.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-inprocess/1.81.0/1.82.1?slim=true) | | [io.grpc:grpc-testing](https://redirect.github.com/grpc/grpc-java) | `1.81.0` → `1.82.1` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-testing/1.82.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-testing/1.81.0/1.82.1?slim=true) | | [io.grpc:grpc-services](https://redirect.github.com/grpc/grpc-java) | `1.81.0` → `1.82.1` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-services/1.82.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-services/1.81.0/1.82.1?slim=true) | | [io.grpc:grpc-stub](https://redirect.github.com/grpc/grpc-java) | `1.81.0` → `1.82.1` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-stub/1.82.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-stub/1.81.0/1.82.1?slim=true) | | [io.grpc:grpc-protobuf](https://redirect.github.com/grpc/grpc-java) | `1.81.0` → `1.82.1` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-protobuf/1.82.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-protobuf/1.81.0/1.82.1?slim=true) | --- ### Release Notes <details> <summary>grpc/grpc-java (io.grpc:grpc-inprocess)</summary> ### [`v1.82.1`](https://redirect.github.com/grpc/grpc-java/releases/tag/v1.82.1) - protoc-gen-grpc-java: Fix missing osx-x86\_64 binary ([#&#8203;12878](https://redirect.github.com/grpc/grpc-java/pull/12878)). This fixes a regression in v1.82.0 ### [`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) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month (`* 0-3 1 * *`) - 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 [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5NS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
1 parent b8eeaaa commit 1330ea4

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lib/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ dependencies {
3030
implementation 'com.google.guava:guava:33.6.0-jre'
3131
implementation 'info.picocli:picocli:4.7.7'
3232
implementation 'com.google.guava:guava:33.6.0-jre'
33-
implementation 'io.grpc:grpc-protobuf:1.81.0'
34-
implementation 'io.grpc:grpc-stub:1.81.0'
35-
implementation 'io.grpc:grpc-services:1.81.0'
33+
implementation 'io.grpc:grpc-protobuf:1.82.1'
34+
implementation 'io.grpc:grpc-stub:1.82.1'
35+
implementation 'io.grpc:grpc-services:1.82.1'
3636
implementation 'io.cloudquery:plugin-pb-java:0.0.45'
3737
implementation 'org.apache.arrow:arrow-memory-core:19.0.0'
3838
implementation 'org.apache.arrow:arrow-vector:19.0.0'
@@ -44,8 +44,8 @@ dependencies {
4444
implementation 'org.apache.logging.log4j:log4j-api:2.26.0'
4545
implementation 'org.apache.logging.log4j:log4j-core:2.26.0'
4646

47-
testImplementation 'io.grpc:grpc-testing:1.81.0'
48-
testImplementation 'io.grpc:grpc-inprocess:1.81.0'
47+
testImplementation 'io.grpc:grpc-testing:1.82.1'
48+
testImplementation 'io.grpc:grpc-inprocess:1.82.1'
4949
testImplementation platform('org.junit:junit-bom:6.1.0')
5050
testImplementation 'org.junit.jupiter:junit-jupiter:6.1.0'
5151
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.1.0'

0 commit comments

Comments
 (0)