dependabot[bot] opened a new pull request, #337:
URL: https://github.com/apache/opennlp-sandbox/pull/337

   Bumps `grpc.version` from 1.74.0 to 1.75.0.
   Updates `io.grpc:grpc-netty-shaded` from 1.74.0 to 1.75.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/grpc/grpc-java/releases";>io.grpc:grpc-netty-shaded's 
releases</a>.</em></p>
   <blockquote>
   <h2>v1.75.0</h2>
   <h3>Behavior Changes</h3>
   <ul>
   <li>binder: Introduce server pre-authorization (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12127";>#12127</a>). 
grpc-binder clients authorize servers by checking the UID of the sender of the 
SETUP_TRANSPORT Binder transaction against some SecurityPolicy. But merely 
binding to an unauthorized server to learn its UID can enable 
&quot;keep-alive&quot; and &quot;background activity launch&quot; abuse, even 
if security policy ultimately causes the grpc connection to fail. 
Pre-authorization mitigates this kind of abuse by resolving addresses and 
authorizing a candidate server Application's UID before binding to it. Pre-auth 
is especially important when the server's address is not fixed in advance but 
discovered by PackageManager lookup.</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li>
   <p>core: <code>grpc-timeout</code> should always be positive (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12201";>#12201</a>) 
(6dfa03c51). There is a local race between when the deadline is checked before 
sending the RPC and when the timeout is calculated to put on-the-wire. The code 
replaced negative timeouts with 0 nanoseconds. gRPC’s PROTOCOL-HTTP2 spec 
states that timeouts should be positive, so now non-positive values are 
replaced with 1 nanosecond</p>
   </li>
   <li>
   <p>core: Improved DEADLINE_EXCEEDED message for delayed calls (6ff8ecac0). 
Delayed calls are the first calls on a Channel before name resolution has 
resolved addresses. Previously you could see confusing errors saying the 
deadline “will be exceeded in” X time. The message tense was simply wrong, and 
now will be correct: deadline “was exceeded after” X time.</p>
   </li>
   <li>
   <p>xds: PriorityLB now only uses the failOverTimer to start additional 
priorities, not fail RPCs (c4256add4). You should no longer see “Connection 
timeout for priority” errors.</p>
   </li>
   </ul>
   <h3>Improvements</h3>
   <ul>
   <li>
   <p>netty: Count sent RST_STREAMs against 
<code>NettyServerBuilder.maxRstFramesPerWindow()</code> limit (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12288";>#12288</a>). 
This extends the Rapid Reset tool to also cover MadeYouReset. the reset stream 
count will cause a 420 &quot;Enhance your calm response&quot; to be sent. This 
depends on Netty 4.1.124 for a bug fix to actually call the encoder by the 
frame writer.</p>
   </li>
   <li>
   <p>xds: Convert CdsLb to <code>XdsDepManager</code> (297ab05ef). This is 
part of gRFC A74 to have atomic xDS config updates. This is an internal change, 
but does change the error description seen in certain cases, especially 
DEADLINE_EXCEEDED on a brand-new channel.</p>
   </li>
   <li>
   <p>census: APIs for stats and tracing (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12050";>#12050</a>) 
(919370172). Client channel and server builders with interceptors and factories 
respectively for stats and tracing.</p>
   </li>
   <li>
   <p>stub: simplify <code>BlockingClientCall</code> infinite blocking (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12217";>#12217</a>) 
(ba0a7329d). Move deadline computation into overloads with finite timeouts. 
Blocking calls without timeouts now do not have to read the clock.</p>
   </li>
   <li>
   <p>xds: Do RLS fallback policy eagar start (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12211";>#12211</a>) 
(42e1829b3). In gRPC-Java, the xDS clusters were lazily subscribed, which meant 
the fallback target which is returned in the RLS config wasn’t subscribed until 
a RPC actually falls back to it. The delayed resource subscription process in 
gRPC Java made it more susceptible to the effects of the 
INITIAL_RESOURCE_FETCH_TIMEOUT compared to other programming languages. It also 
had impact beyond the RLS cache expiration case, for example, when the first 
time the client initialized the channel, we couldn't fallback when the intended 
target times out, because of the lazy subscription. This change starts the 
fallback LB policy for the default target at the start of RLS policy instead of 
only when falling back to the default target, which fixes the above mentioned 
problems.</p>
   </li>
   <li>
   <p>xds: Aggregate cluster fixes (A75) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12186";>#12186</a>) 
(7e982e48a). The earlier implementation of aggregate clusters concatenated the 
priorities from the underlying clusters into a single list, so that it could 
use a single LB policy defined at the aggregate cluster layer to choose a 
priority from that combined list. However, it turns out that aggregate clusters 
don't actually define the LB policy in the aggregate cluster; instead, the 
aggregate cluster uses a special cluster-provided LB policy that first chooses 
the underlying cluster and then delegates to the LB policy of the underlying 
cluster. This change implements that.</p>
   </li>
   <li>
   <p>api: set size correctly for sets and maps in handling 
<code>Metadata</code> values to be exchanged during a call (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12229";>#12229</a>) 
(80217275d)</p>
   </li>
   <li>
   <p>xds: xdsClient cache transient error for new watchers (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12291";>#12291</a>). 
When a resource update is NACKed, cache the error and update new watchers that 
get added with that error instead of making them hang.</p>
   </li>
   <li>
   <p>xds: Avoid PriorityLb re-enabling timer on duplicate CONNECTING (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12289";>#12289</a>). If 
a LB policy gives extraneous updates with state CONNECTING, then it was 
possible to re-create <code>failOverTimer</code> which would then wait the 10 
seconds for the child to finish CONNECTING. We only want to give the child one 
opportunity after transitioning out of READY/IDLE.</p>
   </li>
   <li>
   <p>xds: Use a different log name for <code>XdsClientImpl</code> and 
<code>ControlPlaneClient</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12287";>#12287</a>). 
<code>ControlPlaneClient</code> uses &quot;xds-cp-client&quot; now instead of 
&quot;xds-client&quot; while logging.</p>
   </li>
   </ul>
   <h3>Dependencies Changes</h3>
   <ul>
   <li>
   <p>Upgrade to Netty 4.1.124.Final (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12286";>#12286</a>). 
This implicitly disables <code>NettyAdaptiveCumulator</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11284";>#11284</a>), 
which can have a performance impact. We delayed upgrading Netty to give time to 
rework the optimization, but we've gone too long already without upgrading 
which causes problems for vulnerability tracking.</p>
   </li>
   <li>
   <p>bazel: Use <code>jar_jar</code> to avoid xds deps (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12243";>#12243</a>) 
(8f09b9689). The //xds and //xds:orca targets now use <code>jar_jar</code> to 
shade the protobuf generated code. This allows them to use their own private 
copy of the protos and drop direct Bazel dependencies on cel-spec, grpc, 
rules_go, com_github_cncf_xds, envoy_api, com_envoyproxy_protoc_gen_validate, 
and opencensus_proto. This mirrors the shading of protobuf messages done for 
grpc-xds provided on Maven Central and should simplify dependency management</p>
   </li>
   </ul>
   <h3>Documentation</h3>
   <ul>
   <li>
   <p>Clarify requirements for creating a cross-user Channel. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12181";>#12181</a>). The 
<code>@SystemApi</code> runtime visibility requirement isn't really new. It has 
always been implicit in the required INTERACT_ACROSS_USERS permission, which 
can only be held by system apps in production. Now deprecated 
<code>BinderChannelBuilder#bindAsUser</code> has always required SDK_INT &gt;= 
30. This change just copies that requirement forward to its replacement APIs in 
<code>AndroidComponentAddress</code> and the TARGET_ANDROID_USER 
<code>NameResolver.Args</code>.</p>
   </li>
   <li>
   <p>api: Add more Javadoc for <code>NameResolver.Listener2</code> interface 
(<a href="https://redirect.github.com/grpc/grpc-java/issues/12220";>#12220</a>) 
(d352540a0)</p>
   </li>
   </ul>
   <h3>Thanks to</h3>
   <p><a href="https://github.com/benjaminp";><code>@​benjaminp</code></a>
   <a href="https://github.com/werkt";><code>@​werkt</code></a>
   <a href="https://github.com/kilink";><code>@​kilink</code></a>
   <a href="https://github.com/vimanikag";><code>@​vimanikag</code></a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/3abc0e6e1f4981017b7117e47e1844a318a51f24";><code>3abc0e6</code></a>
 Bump version to 1.75.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/cbfe6c1ccaf0d9480daa8faa3e37a117adb798ba";><code>cbfe6c1</code></a>
 Update README etc to reference 1.75.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a0f3520ad0bf5186f84d48b7df6e2555e8b16da8";><code>a0f3520</code></a>
 Revert &quot;Release v1.75.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12294";>#12294</a>)&quot;
 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12295";>#12295</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/7ef13f40a6d9cdaccd0c064b5bd3745f9518781e";><code>7ef13f4</code></a>
 Release v1.75.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12294";>#12294</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/14fd8eff28d55fae4a791b256602d83a5fb9d848";><code>14fd8ef</code></a>
 xds: xdsClient caches transient error for new watchers (v1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/1";>#1</a>...</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/653d076c605a9066cf6ae484921058580df2437d";><code>653d076</code></a>
 xds: Avoid PriorityLb re-enabling timer on duplicate CONNECTING (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12289";>#12289</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a5c2b1aa51608b1fff016a313d8ee65f92e8d23d";><code>a5c2b1a</code></a>
 netty: Count sent RST_STREAMs against limit (1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12288";>#12288</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/0d3e8283a8105a7bbf1bf746d96cac1e363de2e3";><code>0d3e828</code></a>
 xds: Use a different log name for XdsClientImpl and ControlPlaneClient 
(1.75....</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/d750e9df576a63f8b0d55eefc730282dc60f99d1";><code>d750e9d</code></a>
 Upgrade to Netty 4.1.124.Final (v1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12286";>#12286</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/19c579e8a93cc0660df1523b5740eae9aa888a09";><code>19c579e</code></a>
 Bump versions of dependencies (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12252";>#12252</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/grpc/grpc-java/compare/v1.74.0...v1.75.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `io.grpc:grpc-protobuf` from 1.74.0 to 1.75.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/grpc/grpc-java/releases";>io.grpc:grpc-protobuf's 
releases</a>.</em></p>
   <blockquote>
   <h2>v1.75.0</h2>
   <h3>Behavior Changes</h3>
   <ul>
   <li>binder: Introduce server pre-authorization (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12127";>#12127</a>). 
grpc-binder clients authorize servers by checking the UID of the sender of the 
SETUP_TRANSPORT Binder transaction against some SecurityPolicy. But merely 
binding to an unauthorized server to learn its UID can enable 
&quot;keep-alive&quot; and &quot;background activity launch&quot; abuse, even 
if security policy ultimately causes the grpc connection to fail. 
Pre-authorization mitigates this kind of abuse by resolving addresses and 
authorizing a candidate server Application's UID before binding to it. Pre-auth 
is especially important when the server's address is not fixed in advance but 
discovered by PackageManager lookup.</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li>
   <p>core: <code>grpc-timeout</code> should always be positive (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12201";>#12201</a>) 
(6dfa03c51). There is a local race between when the deadline is checked before 
sending the RPC and when the timeout is calculated to put on-the-wire. The code 
replaced negative timeouts with 0 nanoseconds. gRPC’s PROTOCOL-HTTP2 spec 
states that timeouts should be positive, so now non-positive values are 
replaced with 1 nanosecond</p>
   </li>
   <li>
   <p>core: Improved DEADLINE_EXCEEDED message for delayed calls (6ff8ecac0). 
Delayed calls are the first calls on a Channel before name resolution has 
resolved addresses. Previously you could see confusing errors saying the 
deadline “will be exceeded in” X time. The message tense was simply wrong, and 
now will be correct: deadline “was exceeded after” X time.</p>
   </li>
   <li>
   <p>xds: PriorityLB now only uses the failOverTimer to start additional 
priorities, not fail RPCs (c4256add4). You should no longer see “Connection 
timeout for priority” errors.</p>
   </li>
   </ul>
   <h3>Improvements</h3>
   <ul>
   <li>
   <p>netty: Count sent RST_STREAMs against 
<code>NettyServerBuilder.maxRstFramesPerWindow()</code> limit (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12288";>#12288</a>). 
This extends the Rapid Reset tool to also cover MadeYouReset. the reset stream 
count will cause a 420 &quot;Enhance your calm response&quot; to be sent. This 
depends on Netty 4.1.124 for a bug fix to actually call the encoder by the 
frame writer.</p>
   </li>
   <li>
   <p>xds: Convert CdsLb to <code>XdsDepManager</code> (297ab05ef). This is 
part of gRFC A74 to have atomic xDS config updates. This is an internal change, 
but does change the error description seen in certain cases, especially 
DEADLINE_EXCEEDED on a brand-new channel.</p>
   </li>
   <li>
   <p>census: APIs for stats and tracing (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12050";>#12050</a>) 
(919370172). Client channel and server builders with interceptors and factories 
respectively for stats and tracing.</p>
   </li>
   <li>
   <p>stub: simplify <code>BlockingClientCall</code> infinite blocking (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12217";>#12217</a>) 
(ba0a7329d). Move deadline computation into overloads with finite timeouts. 
Blocking calls without timeouts now do not have to read the clock.</p>
   </li>
   <li>
   <p>xds: Do RLS fallback policy eagar start (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12211";>#12211</a>) 
(42e1829b3). In gRPC-Java, the xDS clusters were lazily subscribed, which meant 
the fallback target which is returned in the RLS config wasn’t subscribed until 
a RPC actually falls back to it. The delayed resource subscription process in 
gRPC Java made it more susceptible to the effects of the 
INITIAL_RESOURCE_FETCH_TIMEOUT compared to other programming languages. It also 
had impact beyond the RLS cache expiration case, for example, when the first 
time the client initialized the channel, we couldn't fallback when the intended 
target times out, because of the lazy subscription. This change starts the 
fallback LB policy for the default target at the start of RLS policy instead of 
only when falling back to the default target, which fixes the above mentioned 
problems.</p>
   </li>
   <li>
   <p>xds: Aggregate cluster fixes (A75) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12186";>#12186</a>) 
(7e982e48a). The earlier implementation of aggregate clusters concatenated the 
priorities from the underlying clusters into a single list, so that it could 
use a single LB policy defined at the aggregate cluster layer to choose a 
priority from that combined list. However, it turns out that aggregate clusters 
don't actually define the LB policy in the aggregate cluster; instead, the 
aggregate cluster uses a special cluster-provided LB policy that first chooses 
the underlying cluster and then delegates to the LB policy of the underlying 
cluster. This change implements that.</p>
   </li>
   <li>
   <p>api: set size correctly for sets and maps in handling 
<code>Metadata</code> values to be exchanged during a call (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12229";>#12229</a>) 
(80217275d)</p>
   </li>
   <li>
   <p>xds: xdsClient cache transient error for new watchers (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12291";>#12291</a>). 
When a resource update is NACKed, cache the error and update new watchers that 
get added with that error instead of making them hang.</p>
   </li>
   <li>
   <p>xds: Avoid PriorityLb re-enabling timer on duplicate CONNECTING (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12289";>#12289</a>). If 
a LB policy gives extraneous updates with state CONNECTING, then it was 
possible to re-create <code>failOverTimer</code> which would then wait the 10 
seconds for the child to finish CONNECTING. We only want to give the child one 
opportunity after transitioning out of READY/IDLE.</p>
   </li>
   <li>
   <p>xds: Use a different log name for <code>XdsClientImpl</code> and 
<code>ControlPlaneClient</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12287";>#12287</a>). 
<code>ControlPlaneClient</code> uses &quot;xds-cp-client&quot; now instead of 
&quot;xds-client&quot; while logging.</p>
   </li>
   </ul>
   <h3>Dependencies Changes</h3>
   <ul>
   <li>
   <p>Upgrade to Netty 4.1.124.Final (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12286";>#12286</a>). 
This implicitly disables <code>NettyAdaptiveCumulator</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11284";>#11284</a>), 
which can have a performance impact. We delayed upgrading Netty to give time to 
rework the optimization, but we've gone too long already without upgrading 
which causes problems for vulnerability tracking.</p>
   </li>
   <li>
   <p>bazel: Use <code>jar_jar</code> to avoid xds deps (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12243";>#12243</a>) 
(8f09b9689). The //xds and //xds:orca targets now use <code>jar_jar</code> to 
shade the protobuf generated code. This allows them to use their own private 
copy of the protos and drop direct Bazel dependencies on cel-spec, grpc, 
rules_go, com_github_cncf_xds, envoy_api, com_envoyproxy_protoc_gen_validate, 
and opencensus_proto. This mirrors the shading of protobuf messages done for 
grpc-xds provided on Maven Central and should simplify dependency management</p>
   </li>
   </ul>
   <h3>Documentation</h3>
   <ul>
   <li>
   <p>Clarify requirements for creating a cross-user Channel. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12181";>#12181</a>). The 
<code>@SystemApi</code> runtime visibility requirement isn't really new. It has 
always been implicit in the required INTERACT_ACROSS_USERS permission, which 
can only be held by system apps in production. Now deprecated 
<code>BinderChannelBuilder#bindAsUser</code> has always required SDK_INT &gt;= 
30. This change just copies that requirement forward to its replacement APIs in 
<code>AndroidComponentAddress</code> and the TARGET_ANDROID_USER 
<code>NameResolver.Args</code>.</p>
   </li>
   <li>
   <p>api: Add more Javadoc for <code>NameResolver.Listener2</code> interface 
(<a href="https://redirect.github.com/grpc/grpc-java/issues/12220";>#12220</a>) 
(d352540a0)</p>
   </li>
   </ul>
   <h3>Thanks to</h3>
   <p><a href="https://github.com/benjaminp";><code>@​benjaminp</code></a>
   <a href="https://github.com/werkt";><code>@​werkt</code></a>
   <a href="https://github.com/kilink";><code>@​kilink</code></a>
   <a href="https://github.com/vimanikag";><code>@​vimanikag</code></a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/3abc0e6e1f4981017b7117e47e1844a318a51f24";><code>3abc0e6</code></a>
 Bump version to 1.75.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/cbfe6c1ccaf0d9480daa8faa3e37a117adb798ba";><code>cbfe6c1</code></a>
 Update README etc to reference 1.75.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a0f3520ad0bf5186f84d48b7df6e2555e8b16da8";><code>a0f3520</code></a>
 Revert &quot;Release v1.75.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12294";>#12294</a>)&quot;
 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12295";>#12295</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/7ef13f40a6d9cdaccd0c064b5bd3745f9518781e";><code>7ef13f4</code></a>
 Release v1.75.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12294";>#12294</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/14fd8eff28d55fae4a791b256602d83a5fb9d848";><code>14fd8ef</code></a>
 xds: xdsClient caches transient error for new watchers (v1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/1";>#1</a>...</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/653d076c605a9066cf6ae484921058580df2437d";><code>653d076</code></a>
 xds: Avoid PriorityLb re-enabling timer on duplicate CONNECTING (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12289";>#12289</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a5c2b1aa51608b1fff016a313d8ee65f92e8d23d";><code>a5c2b1a</code></a>
 netty: Count sent RST_STREAMs against limit (1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12288";>#12288</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/0d3e8283a8105a7bbf1bf746d96cac1e363de2e3";><code>0d3e828</code></a>
 xds: Use a different log name for XdsClientImpl and ControlPlaneClient 
(1.75....</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/d750e9df576a63f8b0d55eefc730282dc60f99d1";><code>d750e9d</code></a>
 Upgrade to Netty 4.1.124.Final (v1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12286";>#12286</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/19c579e8a93cc0660df1523b5740eae9aa888a09";><code>19c579e</code></a>
 Bump versions of dependencies (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12252";>#12252</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/grpc/grpc-java/compare/v1.74.0...v1.75.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `io.grpc:grpc-stub` from 1.74.0 to 1.75.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.75.0</h2>
   <h3>Behavior Changes</h3>
   <ul>
   <li>binder: Introduce server pre-authorization (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12127";>#12127</a>). 
grpc-binder clients authorize servers by checking the UID of the sender of the 
SETUP_TRANSPORT Binder transaction against some SecurityPolicy. But merely 
binding to an unauthorized server to learn its UID can enable 
&quot;keep-alive&quot; and &quot;background activity launch&quot; abuse, even 
if security policy ultimately causes the grpc connection to fail. 
Pre-authorization mitigates this kind of abuse by resolving addresses and 
authorizing a candidate server Application's UID before binding to it. Pre-auth 
is especially important when the server's address is not fixed in advance but 
discovered by PackageManager lookup.</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li>
   <p>core: <code>grpc-timeout</code> should always be positive (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12201";>#12201</a>) 
(6dfa03c51). There is a local race between when the deadline is checked before 
sending the RPC and when the timeout is calculated to put on-the-wire. The code 
replaced negative timeouts with 0 nanoseconds. gRPC’s PROTOCOL-HTTP2 spec 
states that timeouts should be positive, so now non-positive values are 
replaced with 1 nanosecond</p>
   </li>
   <li>
   <p>core: Improved DEADLINE_EXCEEDED message for delayed calls (6ff8ecac0). 
Delayed calls are the first calls on a Channel before name resolution has 
resolved addresses. Previously you could see confusing errors saying the 
deadline “will be exceeded in” X time. The message tense was simply wrong, and 
now will be correct: deadline “was exceeded after” X time.</p>
   </li>
   <li>
   <p>xds: PriorityLB now only uses the failOverTimer to start additional 
priorities, not fail RPCs (c4256add4). You should no longer see “Connection 
timeout for priority” errors.</p>
   </li>
   </ul>
   <h3>Improvements</h3>
   <ul>
   <li>
   <p>netty: Count sent RST_STREAMs against 
<code>NettyServerBuilder.maxRstFramesPerWindow()</code> limit (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12288";>#12288</a>). 
This extends the Rapid Reset tool to also cover MadeYouReset. the reset stream 
count will cause a 420 &quot;Enhance your calm response&quot; to be sent. This 
depends on Netty 4.1.124 for a bug fix to actually call the encoder by the 
frame writer.</p>
   </li>
   <li>
   <p>xds: Convert CdsLb to <code>XdsDepManager</code> (297ab05ef). This is 
part of gRFC A74 to have atomic xDS config updates. This is an internal change, 
but does change the error description seen in certain cases, especially 
DEADLINE_EXCEEDED on a brand-new channel.</p>
   </li>
   <li>
   <p>census: APIs for stats and tracing (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12050";>#12050</a>) 
(919370172). Client channel and server builders with interceptors and factories 
respectively for stats and tracing.</p>
   </li>
   <li>
   <p>stub: simplify <code>BlockingClientCall</code> infinite blocking (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12217";>#12217</a>) 
(ba0a7329d). Move deadline computation into overloads with finite timeouts. 
Blocking calls without timeouts now do not have to read the clock.</p>
   </li>
   <li>
   <p>xds: Do RLS fallback policy eagar start (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12211";>#12211</a>) 
(42e1829b3). In gRPC-Java, the xDS clusters were lazily subscribed, which meant 
the fallback target which is returned in the RLS config wasn’t subscribed until 
a RPC actually falls back to it. The delayed resource subscription process in 
gRPC Java made it more susceptible to the effects of the 
INITIAL_RESOURCE_FETCH_TIMEOUT compared to other programming languages. It also 
had impact beyond the RLS cache expiration case, for example, when the first 
time the client initialized the channel, we couldn't fallback when the intended 
target times out, because of the lazy subscription. This change starts the 
fallback LB policy for the default target at the start of RLS policy instead of 
only when falling back to the default target, which fixes the above mentioned 
problems.</p>
   </li>
   <li>
   <p>xds: Aggregate cluster fixes (A75) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12186";>#12186</a>) 
(7e982e48a). The earlier implementation of aggregate clusters concatenated the 
priorities from the underlying clusters into a single list, so that it could 
use a single LB policy defined at the aggregate cluster layer to choose a 
priority from that combined list. However, it turns out that aggregate clusters 
don't actually define the LB policy in the aggregate cluster; instead, the 
aggregate cluster uses a special cluster-provided LB policy that first chooses 
the underlying cluster and then delegates to the LB policy of the underlying 
cluster. This change implements that.</p>
   </li>
   <li>
   <p>api: set size correctly for sets and maps in handling 
<code>Metadata</code> values to be exchanged during a call (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12229";>#12229</a>) 
(80217275d)</p>
   </li>
   <li>
   <p>xds: xdsClient cache transient error for new watchers (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12291";>#12291</a>). 
When a resource update is NACKed, cache the error and update new watchers that 
get added with that error instead of making them hang.</p>
   </li>
   <li>
   <p>xds: Avoid PriorityLb re-enabling timer on duplicate CONNECTING (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12289";>#12289</a>). If 
a LB policy gives extraneous updates with state CONNECTING, then it was 
possible to re-create <code>failOverTimer</code> which would then wait the 10 
seconds for the child to finish CONNECTING. We only want to give the child one 
opportunity after transitioning out of READY/IDLE.</p>
   </li>
   <li>
   <p>xds: Use a different log name for <code>XdsClientImpl</code> and 
<code>ControlPlaneClient</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12287";>#12287</a>). 
<code>ControlPlaneClient</code> uses &quot;xds-cp-client&quot; now instead of 
&quot;xds-client&quot; while logging.</p>
   </li>
   </ul>
   <h3>Dependencies Changes</h3>
   <ul>
   <li>
   <p>Upgrade to Netty 4.1.124.Final (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12286";>#12286</a>). 
This implicitly disables <code>NettyAdaptiveCumulator</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11284";>#11284</a>), 
which can have a performance impact. We delayed upgrading Netty to give time to 
rework the optimization, but we've gone too long already without upgrading 
which causes problems for vulnerability tracking.</p>
   </li>
   <li>
   <p>bazel: Use <code>jar_jar</code> to avoid xds deps (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12243";>#12243</a>) 
(8f09b9689). The //xds and //xds:orca targets now use <code>jar_jar</code> to 
shade the protobuf generated code. This allows them to use their own private 
copy of the protos and drop direct Bazel dependencies on cel-spec, grpc, 
rules_go, com_github_cncf_xds, envoy_api, com_envoyproxy_protoc_gen_validate, 
and opencensus_proto. This mirrors the shading of protobuf messages done for 
grpc-xds provided on Maven Central and should simplify dependency management</p>
   </li>
   </ul>
   <h3>Documentation</h3>
   <ul>
   <li>
   <p>Clarify requirements for creating a cross-user Channel. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12181";>#12181</a>). The 
<code>@SystemApi</code> runtime visibility requirement isn't really new. It has 
always been implicit in the required INTERACT_ACROSS_USERS permission, which 
can only be held by system apps in production. Now deprecated 
<code>BinderChannelBuilder#bindAsUser</code> has always required SDK_INT &gt;= 
30. This change just copies that requirement forward to its replacement APIs in 
<code>AndroidComponentAddress</code> and the TARGET_ANDROID_USER 
<code>NameResolver.Args</code>.</p>
   </li>
   <li>
   <p>api: Add more Javadoc for <code>NameResolver.Listener2</code> interface 
(<a href="https://redirect.github.com/grpc/grpc-java/issues/12220";>#12220</a>) 
(d352540a0)</p>
   </li>
   </ul>
   <h3>Thanks to</h3>
   <p><a href="https://github.com/benjaminp";><code>@​benjaminp</code></a>
   <a href="https://github.com/werkt";><code>@​werkt</code></a>
   <a href="https://github.com/kilink";><code>@​kilink</code></a>
   <a href="https://github.com/vimanikag";><code>@​vimanikag</code></a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/3abc0e6e1f4981017b7117e47e1844a318a51f24";><code>3abc0e6</code></a>
 Bump version to 1.75.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/cbfe6c1ccaf0d9480daa8faa3e37a117adb798ba";><code>cbfe6c1</code></a>
 Update README etc to reference 1.75.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a0f3520ad0bf5186f84d48b7df6e2555e8b16da8";><code>a0f3520</code></a>
 Revert &quot;Release v1.75.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12294";>#12294</a>)&quot;
 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12295";>#12295</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/7ef13f40a6d9cdaccd0c064b5bd3745f9518781e";><code>7ef13f4</code></a>
 Release v1.75.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12294";>#12294</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/14fd8eff28d55fae4a791b256602d83a5fb9d848";><code>14fd8ef</code></a>
 xds: xdsClient caches transient error for new watchers (v1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/1";>#1</a>...</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/653d076c605a9066cf6ae484921058580df2437d";><code>653d076</code></a>
 xds: Avoid PriorityLb re-enabling timer on duplicate CONNECTING (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12289";>#12289</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a5c2b1aa51608b1fff016a313d8ee65f92e8d23d";><code>a5c2b1a</code></a>
 netty: Count sent RST_STREAMs against limit (1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12288";>#12288</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/0d3e8283a8105a7bbf1bf746d96cac1e363de2e3";><code>0d3e828</code></a>
 xds: Use a different log name for XdsClientImpl and ControlPlaneClient 
(1.75....</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/d750e9df576a63f8b0d55eefc730282dc60f99d1";><code>d750e9d</code></a>
 Upgrade to Netty 4.1.124.Final (v1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12286";>#12286</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/19c579e8a93cc0660df1523b5740eae9aa888a09";><code>19c579e</code></a>
 Bump versions of dependencies (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12252";>#12252</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/grpc/grpc-java/compare/v1.74.0...v1.75.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `io.grpc:grpc-services` from 1.74.0 to 1.75.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/grpc/grpc-java/releases";>io.grpc:grpc-services's 
releases</a>.</em></p>
   <blockquote>
   <h2>v1.75.0</h2>
   <h3>Behavior Changes</h3>
   <ul>
   <li>binder: Introduce server pre-authorization (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12127";>#12127</a>). 
grpc-binder clients authorize servers by checking the UID of the sender of the 
SETUP_TRANSPORT Binder transaction against some SecurityPolicy. But merely 
binding to an unauthorized server to learn its UID can enable 
&quot;keep-alive&quot; and &quot;background activity launch&quot; abuse, even 
if security policy ultimately causes the grpc connection to fail. 
Pre-authorization mitigates this kind of abuse by resolving addresses and 
authorizing a candidate server Application's UID before binding to it. Pre-auth 
is especially important when the server's address is not fixed in advance but 
discovered by PackageManager lookup.</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li>
   <p>core: <code>grpc-timeout</code> should always be positive (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12201";>#12201</a>) 
(6dfa03c51). There is a local race between when the deadline is checked before 
sending the RPC and when the timeout is calculated to put on-the-wire. The code 
replaced negative timeouts with 0 nanoseconds. gRPC’s PROTOCOL-HTTP2 spec 
states that timeouts should be positive, so now non-positive values are 
replaced with 1 nanosecond</p>
   </li>
   <li>
   <p>core: Improved DEADLINE_EXCEEDED message for delayed calls (6ff8ecac0). 
Delayed calls are the first calls on a Channel before name resolution has 
resolved addresses. Previously you could see confusing errors saying the 
deadline “will be exceeded in” X time. The message tense was simply wrong, and 
now will be correct: deadline “was exceeded after” X time.</p>
   </li>
   <li>
   <p>xds: PriorityLB now only uses the failOverTimer to start additional 
priorities, not fail RPCs (c4256add4). You should no longer see “Connection 
timeout for priority” errors.</p>
   </li>
   </ul>
   <h3>Improvements</h3>
   <ul>
   <li>
   <p>netty: Count sent RST_STREAMs against 
<code>NettyServerBuilder.maxRstFramesPerWindow()</code> limit (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12288";>#12288</a>). 
This extends the Rapid Reset tool to also cover MadeYouReset. the reset stream 
count will cause a 420 &quot;Enhance your calm response&quot; to be sent. This 
depends on Netty 4.1.124 for a bug fix to actually call the encoder by the 
frame writer.</p>
   </li>
   <li>
   <p>xds: Convert CdsLb to <code>XdsDepManager</code> (297ab05ef). This is 
part of gRFC A74 to have atomic xDS config updates. This is an internal change, 
but does change the error description seen in certain cases, especially 
DEADLINE_EXCEEDED on a brand-new channel.</p>
   </li>
   <li>
   <p>census: APIs for stats and tracing (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12050";>#12050</a>) 
(919370172). Client channel and server builders with interceptors and factories 
respectively for stats and tracing.</p>
   </li>
   <li>
   <p>stub: simplify <code>BlockingClientCall</code> infinite blocking (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12217";>#12217</a>) 
(ba0a7329d). Move deadline computation into overloads with finite timeouts. 
Blocking calls without timeouts now do not have to read the clock.</p>
   </li>
   <li>
   <p>xds: Do RLS fallback policy eagar start (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12211";>#12211</a>) 
(42e1829b3). In gRPC-Java, the xDS clusters were lazily subscribed, which meant 
the fallback target which is returned in the RLS config wasn’t subscribed until 
a RPC actually falls back to it. The delayed resource subscription process in 
gRPC Java made it more susceptible to the effects of the 
INITIAL_RESOURCE_FETCH_TIMEOUT compared to other programming languages. It also 
had impact beyond the RLS cache expiration case, for example, when the first 
time the client initialized the channel, we couldn't fallback when the intended 
target times out, because of the lazy subscription. This change starts the 
fallback LB policy for the default target at the start of RLS policy instead of 
only when falling back to the default target, which fixes the above mentioned 
problems.</p>
   </li>
   <li>
   <p>xds: Aggregate cluster fixes (A75) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12186";>#12186</a>) 
(7e982e48a). The earlier implementation of aggregate clusters concatenated the 
priorities from the underlying clusters into a single list, so that it could 
use a single LB policy defined at the aggregate cluster layer to choose a 
priority from that combined list. However, it turns out that aggregate clusters 
don't actually define the LB policy in the aggregate cluster; instead, the 
aggregate cluster uses a special cluster-provided LB policy that first chooses 
the underlying cluster and then delegates to the LB policy of the underlying 
cluster. This change implements that.</p>
   </li>
   <li>
   <p>api: set size correctly for sets and maps in handling 
<code>Metadata</code> values to be exchanged during a call (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12229";>#12229</a>) 
(80217275d)</p>
   </li>
   <li>
   <p>xds: xdsClient cache transient error for new watchers (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12291";>#12291</a>). 
When a resource update is NACKed, cache the error and update new watchers that 
get added with that error instead of making them hang.</p>
   </li>
   <li>
   <p>xds: Avoid PriorityLb re-enabling timer on duplicate CONNECTING (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12289";>#12289</a>). If 
a LB policy gives extraneous updates with state CONNECTING, then it was 
possible to re-create <code>failOverTimer</code> which would then wait the 10 
seconds for the child to finish CONNECTING. We only want to give the child one 
opportunity after transitioning out of READY/IDLE.</p>
   </li>
   <li>
   <p>xds: Use a different log name for <code>XdsClientImpl</code> and 
<code>ControlPlaneClient</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12287";>#12287</a>). 
<code>ControlPlaneClient</code> uses &quot;xds-cp-client&quot; now instead of 
&quot;xds-client&quot; while logging.</p>
   </li>
   </ul>
   <h3>Dependencies Changes</h3>
   <ul>
   <li>
   <p>Upgrade to Netty 4.1.124.Final (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12286";>#12286</a>). 
This implicitly disables <code>NettyAdaptiveCumulator</code> (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/11284";>#11284</a>), 
which can have a performance impact. We delayed upgrading Netty to give time to 
rework the optimization, but we've gone too long already without upgrading 
which causes problems for vulnerability tracking.</p>
   </li>
   <li>
   <p>bazel: Use <code>jar_jar</code> to avoid xds deps (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12243";>#12243</a>) 
(8f09b9689). The //xds and //xds:orca targets now use <code>jar_jar</code> to 
shade the protobuf generated code. This allows them to use their own private 
copy of the protos and drop direct Bazel dependencies on cel-spec, grpc, 
rules_go, com_github_cncf_xds, envoy_api, com_envoyproxy_protoc_gen_validate, 
and opencensus_proto. This mirrors the shading of protobuf messages done for 
grpc-xds provided on Maven Central and should simplify dependency management</p>
   </li>
   </ul>
   <h3>Documentation</h3>
   <ul>
   <li>
   <p>Clarify requirements for creating a cross-user Channel. (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12181";>#12181</a>). The 
<code>@SystemApi</code> runtime visibility requirement isn't really new. It has 
always been implicit in the required INTERACT_ACROSS_USERS permission, which 
can only be held by system apps in production. Now deprecated 
<code>BinderChannelBuilder#bindAsUser</code> has always required SDK_INT &gt;= 
30. This change just copies that requirement forward to its replacement APIs in 
<code>AndroidComponentAddress</code> and the TARGET_ANDROID_USER 
<code>NameResolver.Args</code>.</p>
   </li>
   <li>
   <p>api: Add more Javadoc for <code>NameResolver.Listener2</code> interface 
(<a href="https://redirect.github.com/grpc/grpc-java/issues/12220";>#12220</a>) 
(d352540a0)</p>
   </li>
   </ul>
   <h3>Thanks to</h3>
   <p><a href="https://github.com/benjaminp";><code>@​benjaminp</code></a>
   <a href="https://github.com/werkt";><code>@​werkt</code></a>
   <a href="https://github.com/kilink";><code>@​kilink</code></a>
   <a href="https://github.com/vimanikag";><code>@​vimanikag</code></a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/3abc0e6e1f4981017b7117e47e1844a318a51f24";><code>3abc0e6</code></a>
 Bump version to 1.75.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/cbfe6c1ccaf0d9480daa8faa3e37a117adb798ba";><code>cbfe6c1</code></a>
 Update README etc to reference 1.75.0</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a0f3520ad0bf5186f84d48b7df6e2555e8b16da8";><code>a0f3520</code></a>
 Revert &quot;Release v1.75.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12294";>#12294</a>)&quot;
 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12295";>#12295</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/7ef13f40a6d9cdaccd0c064b5bd3745f9518781e";><code>7ef13f4</code></a>
 Release v1.75.0 (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12294";>#12294</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/14fd8eff28d55fae4a791b256602d83a5fb9d848";><code>14fd8ef</code></a>
 xds: xdsClient caches transient error for new watchers (v1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/1";>#1</a>...</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/653d076c605a9066cf6ae484921058580df2437d";><code>653d076</code></a>
 xds: Avoid PriorityLb re-enabling timer on duplicate CONNECTING (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12289";>#12289</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/a5c2b1aa51608b1fff016a313d8ee65f92e8d23d";><code>a5c2b1a</code></a>
 netty: Count sent RST_STREAMs against limit (1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12288";>#12288</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/0d3e8283a8105a7bbf1bf746d96cac1e363de2e3";><code>0d3e828</code></a>
 xds: Use a different log name for XdsClientImpl and ControlPlaneClient 
(1.75....</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/d750e9df576a63f8b0d55eefc730282dc60f99d1";><code>d750e9d</code></a>
 Upgrade to Netty 4.1.124.Final (v1.75.x backport) (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12286";>#12286</a>)</li>
   <li><a 
href="https://github.com/grpc/grpc-java/commit/19c579e8a93cc0660df1523b5740eae9aa888a09";><code>19c579e</code></a>
 Bump versions of dependencies (<a 
href="https://redirect.github.com/grpc/grpc-java/issues/12252";>#12252</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/grpc/grpc-java/compare/v1.74.0...v1.75.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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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-unsubscr...@opennlp.apache.org

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


Reply via email to