Skip to content

Commit f910b37

Browse files
fix(deps): Update grpc-java monorepo to v1.83.0 (#268)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [io.grpc:protoc-gen-grpc-java](https://redirect.github.com/grpc/grpc-java) | `1.82.1` → `1.83.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:protoc-gen-grpc-java/1.83.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:protoc-gen-grpc-java/1.82.1/1.83.0?slim=true) | | [io.grpc:grpc-testing](https://redirect.github.com/grpc/grpc-java) | `1.82.1` → `1.83.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-testing/1.83.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-testing/1.82.1/1.83.0?slim=true) | | [io.grpc:grpc-netty-shaded](https://redirect.github.com/grpc/grpc-java) | `1.82.1` → `1.83.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-netty-shaded/1.83.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-netty-shaded/1.82.1/1.83.0?slim=true) | | [io.grpc:grpc-stub](https://redirect.github.com/grpc/grpc-java) | `1.82.1` → `1.83.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-stub/1.83.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-stub/1.82.1/1.83.0?slim=true) | | [io.grpc:grpc-services](https://redirect.github.com/grpc/grpc-java) | `1.82.1` → `1.83.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-services/1.83.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-services/1.82.1/1.83.0?slim=true) | | [io.grpc:grpc-protobuf](https://redirect.github.com/grpc/grpc-java) | `1.82.1` → `1.83.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-protobuf/1.83.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-protobuf/1.82.1/1.83.0?slim=true) | --- ### Release Notes <details> <summary>grpc/grpc-java (io.grpc:protoc-gen-grpc-java)</summary> ### [`v1.83.0`](https://redirect.github.com/grpc/grpc-java/releases/tag/v1.83.0) ##### gRPC Java 1.83.0 Release Notes ##### API Changes - api: Turn on RFC 3986 parsing by default and update javadoc. ([`4456721`](https://redirect.github.com/grpc/grpc-java/commit/4456721328)) - api: Add Grpc.newChannelBuilder accepting NameResolverRegistry ([#&#8203;11901](https://redirect.github.com/grpc/grpc-java/issues/11901)) ([`2b86f8f`](https://redirect.github.com/grpc/grpc-java/commit/2b86f8f42f)). This allows users to explicitly provide a NameResolverRegistry during channel creation rather than relying on the global registry, offering better isolation and control over name resolution per-channel. ##### Behavior Changes - okhttp: enable TLS 1.3 for servers on Android ([`3018ce3`](https://redirect.github.com/grpc/grpc-java/commit/3018ce341c)). v1.82.0 enabled TLS 1.3 for clients; this does the same for servers - xds: enable orca to lrs propagation by default ([#&#8203;12836](https://redirect.github.com/grpc/grpc-java/issues/12836)) ([`1e85674`](https://redirect.github.com/grpc/grpc-java/commit/1e85674a40)) Enables xDS configuration to control which fields get propagated from ORCA backend metric reports to LRS load reports as per gRFC A85 - xds: Use leaf cluster name for backend service label in metrics, instead of aggregate cluster name ([#&#8203;12882](https://redirect.github.com/grpc/grpc-java/issues/12882)) ([`c8079ee`](https://redirect.github.com/grpc/grpc-java/commit/c8079eed98)). This only has an effect when using aggregate clusters - xds: Hold parsed service config in CdsUpdate ([`3db3235`](https://redirect.github.com/grpc/grpc-java/commit/3db3235ebd)). Previously, modifications to LoadBalancerRegistry could cause failures in the LB tree - xds: Revert "xds: reuse connections to the control plane across channels" added in 1.81.0 ([`d49c0b1`](https://redirect.github.com/grpc/grpc-java/commit/d49c0b15d8)). If using xds heavily with many targets, then MAX\_CONCURRENT\_STREAMS to the control plane could be exceeded. This then prevents loading resources for new targets, which causes those channels to hang on name resolution. RPCs would see the nondescript "DEADLINE\_EXCEEDED: Deadline Context was exceeded after Xs" or "DEADLINE\_EXCEEDED: Deadline CallOptions was exceeded after Xs" ##### Improvements - api: Move attributes to the end of ResolvedAddresses.toString(), for better legibility ([`103bd4b`](https://redirect.github.com/grpc/grpc-java/commit/103bd4b852)) - core: normalize service config number values ([#&#8203;12826](https://redirect.github.com/grpc/grpc-java/issues/12826)) ([`663c505`](https://redirect.github.com/grpc/grpc-java/commit/663c505dbd)) This updates default service config validation to accept numeric values represented as Number, not only Double. Common JSON parsers may deserialize integer-looking JSON values such as maxAttempts: 4 and backoffMultiplier: 2 as Integer, which previously caused defaultServiceConfig() to fail with IllegalArgumentException. The values are normalized to Double when copied into the validated service config, preserving the existing internal representation expected by the service config parsing code. - core: DEADLINE\_EXCEEDED before initial name resolution completes will now mention “name\_resolver” in the error description ([`56d2b25`](https://redirect.github.com/grpc/grpc-java/commit/56d2b25eb5)). Previously there was not a hint as to what gRPC was delayed on when the deadline was exceeded. - netty: Reduce TcpMetrics log from INFO to FINE ([`4ec83df`](https://redirect.github.com/grpc/grpc-java/commit/4ec83df1eb)). This removes unnecessary log noise - core: Enable child channel plugins ([#&#8203;12578](https://redirect.github.com/grpc/grpc-java/issues/12578)) ([`89aef90`](https://redirect.github.com/grpc/grpc-java/commit/89aef90d52)). This introduces the ChildChannelConfigurer API to allow intercepting and customizing the configuration (such as injecting interceptors or modifying credentials) of child channels created dynamically by load balancers. ##### Dependencies - Upgrade to Netty 4.2.15 ([`66c6ab1`](https://redirect.github.com/grpc/grpc-java/commit/66c6ab1da6)). If you need Netty 4.1 support, please file an issue - Upgrade codegen plugin to C++ Protobuf 35.1 ([#&#8203;12876](https://redirect.github.com/grpc/grpc-java/issues/12876)) ([`c886f0a`](https://redirect.github.com/grpc/grpc-java/commit/c886f0a06b)) - Upgrade various dependencies ([`064272c`](https://redirect.github.com/grpc/grpc-java/commit/064272c61d)): - gson to 2.14.0 - guava to 33.6.0 - cel-java to 0.13.0 - protobuf-java to 3.25.9 - error-prone-annotations to 2.50.0 - opentelemetry to 1.63.0 ##### Documentation - Document how to build with Bazel and introduce bazel support for building android and binder ([#&#8203;12811](https://redirect.github.com/grpc/grpc-java/issues/12811)) ([`f94574e`](https://redirect.github.com/grpc/grpc-java/commit/f94574eff7)) ##### Thanks to tian\_\_mi\_\_mi@\ codingkiddo@\ Zhengcy05@&#8203; ### [`v1.82.3`](https://redirect.github.com/grpc/grpc-java/releases/tag/v1.82.3) ##### gRPC Java 1.82.3 Release Notes ##### Improvements - netty: Fix client-initiated stream limit bypass in NettyServerHandler ([#&#8203;12941](https://redirect.github.com/grpc/grpc-java/issues/12941)). Enforces the limit proactively at startup without waiting for SETTINGS\_ACK - core: Coalesce Contiguous Small Buffers for ReadableBuffer ([#&#8203;12943](https://redirect.github.com/grpc/grpc-java/issues/12943)) ### [`v1.82.2`](https://redirect.github.com/grpc/grpc-java/releases/tag/v1.82.2) - Revert "xds: reuse connections to the control plane across channels" added in 1.81.0 ([#&#8203;12886](https://redirect.github.com/grpc/grpc-java/issues/12886)). If using xds heavily with many targets, then MAX\_CONCURRENT\_STREAMS to the control plane could be exceeded. This then prevents loading resources for new targets, which causes those channels to hang on name resolution. RPCs would see the nondescript "DEADLINE\_EXCEEDED: Deadline Context was exceeded after Xs" or "DEADLINE\_EXCEEDED: Deadline CallOptions was exceeded after Xs" </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 c938722 commit f910b37

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ java {
2727
targetCompatibility = 1.8
2828
}
2929

30-
def grpcVersion = '1.82.1'
30+
def grpcVersion = '1.83.0'
3131
def protobufVersion = '4.35.1'
3232
def protocVersion = protobufVersion
3333

0 commit comments

Comments
 (0)