dependabot[bot] opened a new pull request, #3764:
URL: https://github.com/apache/arrow-adbc/pull/3764

   Bumps the linters group in /java with 2 updates: 
[com.google.errorprone:error_prone_core](https://github.com/google/error-prone) 
and [com.uber.nullaway:nullaway](https://github.com/uber/NullAway).
   
   Updates `com.google.errorprone:error_prone_core` from 2.44.0 to 2.45.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/google/error-prone/releases";>com.google.errorprone:error_prone_core's
 releases</a>.</em></p>
   <blockquote>
   <h2>Error Prone 2.45.0</h2>
   <p>Changes:</p>
   <ul>
   <li>Improved compatibility with latest JDK 26 EA builds.</li>
   </ul>
   <p>New checks:</p>
   <ul>
   <li><a 
href="https://errorprone.info/bugpattern/AssertSameIncompatible";><code>AssertSameIncompatible</code></a>:
 Detect calls to <code>assertSame</code> and similar assertions, where the 
calls are guaranteed to either succeed or fail.</li>
   <li><a 
href="https://errorprone.info/bugpattern/FormatStringShouldUsePlaceholders";><code>FormatStringShouldUsePlaceholders</code></a>:
 Suggests using a format string instead of string concatenation operations on 
format methods</li>
   </ul>
   <p>Closed issues: <a 
href="https://redirect.github.com/google/error-prone/issues/5335";>#5335</a></p>
   <p>Full changelog: <a 
href="https://github.com/google/error-prone/compare/v2.44.0...v2.45.0";>https://github.com/google/error-prone/compare/v2.44.0...v2.45.0</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/google/error-prone/commit/c8628153f52db4c8b394cee8fd9f6d84a8580324";><code>c862815</code></a>
 Release Error Prone 2.45.0</li>
   <li><a 
href="https://github.com/google/error-prone/commit/7027d9fe2497b64d422504b5d8257094d92c3a1a";><code>7027d9f</code></a>
 Add negative test cases for AlwaysThrows with non-literal arguments.</li>
   <li><a 
href="https://github.com/google/error-prone/commit/8669adb446b2238d7b0d47e65a8a243fd47a61d9";><code>8669adb</code></a>
 Fix parameter name handling of enum constructor arguments</li>
   <li><a 
href="https://github.com/google/error-prone/commit/679c4ac6b8efc1c69af30d189ee3dc5cc85ef899";><code>679c4ac</code></a>
 Update end position handling</li>
   <li><a 
href="https://github.com/google/error-prone/commit/dc1279e18ca7a0f1cdcde655493544f6f78130c4";><code>dc1279e</code></a>
 AssertSameIncompatible: flag calls to assertSame/etc where the calls are 
guar...</li>
   <li><a 
href="https://github.com/google/error-prone/commit/24387de909663f326ac77e65304c61daa88445ba";><code>24387de</code></a>
 Internal change</li>
   <li><a 
href="https://github.com/google/error-prone/commit/5300dc6e1fac4557cda82b6a1f91366bba90dc0f";><code>5300dc6</code></a>
 Disable an InvalidLink test for a javadoc bug on JDK &gt;= 26</li>
   <li><a 
href="https://github.com/google/error-prone/commit/75dcd539caf58e2daa4598bb9b72fc9a3b7afdc9";><code>75dcd53</code></a>
 Fix the Optional wrapping in the description of 
NonCanonicalStaticMemberImport.</li>
   <li><a 
href="https://github.com/google/error-prone/commit/10f54242b4a6a5e7055a7a94faec78bf20206d39";><code>10f5424</code></a>
 FormatStringShouldUsePlaceholders shouldn't rewrite calls with a 
pass-through...</li>
   <li><a 
href="https://github.com/google/error-prone/commit/3ef3d7921be1bd9b6394ae018570f50a645240e6";><code>3ef3d79</code></a>
 The verb form of &quot;recursion&quot; is &quot;to recur&quot;, not &quot;to 
recurse&quot;. Quoting my CS p...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/google/error-prone/compare/v2.44.0...v2.45.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `com.uber.nullaway:nullaway` from 0.12.12 to 0.12.13
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/uber/NullAway/releases";>com.uber.nullaway:nullaway's 
releases</a>.</em></p>
   <blockquote>
   <h2>NullAway 0.12.13</h2>
   <p>NullAway now includes a new Error Prone checker, 
<code>RequireExplicitNullMarking</code>, that checks that every class is 
explicitly <code>@NullMarked</code> or <code>@NullUnmarked</code> (at the class 
or package level), so code is not left <code>@NullUnmarked</code> 
unintentionally.  The check is disabled by default.  See <a 
href="https://github.com/uber/NullAway/wiki/JSpecify-Support#requireexplicitnullmarking-checker";>the
 docs</a> for further details.</p>
   <p>NullAway also includes support for a new <code>@PureExceptLambda</code> 
annotation, contributed by <a 
href="https://github.com/FxMorin";><code>@​FxMorin</code></a>, to tell NullAway
   to preserve nullability information from the enclosing method when analyzing 
the body of certain lambdas.
   See <a 
href="https://github.com/uber/NullAway/wiki/Supported-Annotations#pureexceptlambda";>the
 docs</a> for details.</p>
   <ul>
   <li>Use passed-in <code>TreePath</code> in one more place when available (<a 
href="https://redirect.github.com/uber/NullAway/issues/1329";>#1329</a>)</li>
   <li>Checker to ensure explicit null marking of every class (<a 
href="https://redirect.github.com/uber/NullAway/issues/1323";>#1323</a>)</li>
   <li>Bound size of alreadyRunAnalyses cache to be consistent (<a 
href="https://redirect.github.com/uber/NullAway/issues/1334";>#1334</a>)</li>
   <li>Improve inference for generic methods with lambda argument containing 
return statements by <a 
href="https://github.com/dhruv-agr";><code>@​dhruv-agr</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1337";>#1337</a>)</li>
   <li>Add <code>PureExceptLambda</code> annotation by <a 
href="https://github.com/FxMorin";><code>@​FxMorin</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1325";>#1325</a>)</li>
   <li>Support marking method type variable upper bounds as 
<code>@Nullable</code> in library models (<a 
href="https://redirect.github.com/uber/NullAway/issues/1345";>#1345</a>)</li>
   <li>Method name parsing in <code>ExternalStubxLibraryModels</code> class is 
missing a corner case by <a 
href="https://github.com/haewiful";><code>@​haewiful</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1344";>#1344</a>)</li>
   <li>Better fix for dataflow analysis caching (<a 
href="https://redirect.github.com/uber/NullAway/issues/1353";>#1353</a>)</li>
   <li>Maintenance
   <ul>
   <li>Add package-info files with <a 
href="https://github.com/NullMarked";><code>@​NullMarked</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1331";>#1331</a>)</li>
   <li>Speed up buildWithNullAway task (<a 
href="https://redirect.github.com/uber/NullAway/issues/1330";>#1330</a>)</li>
   <li>Enable the VoidMissingNullable checker and autofix all extant warnings 
(<a href="https://redirect.github.com/uber/NullAway/issues/1332";>#1332</a>)</li>
   <li>Bump JDK version to 25 for integration tests (<a 
href="https://redirect.github.com/uber/NullAway/issues/1336";>#1336</a>)</li>
   <li>Switch Coderabbit to assertive mode (<a 
href="https://redirect.github.com/uber/NullAway/issues/1338";>#1338</a>)</li>
   <li>Enable EqualsMissingNullable check and fix all extant warnings (<a 
href="https://redirect.github.com/uber/NullAway/issues/1339";>#1339</a>)</li>
   <li>Bump to AutoValue 1.11.1 (<a 
href="https://redirect.github.com/uber/NullAway/issues/1340";>#1340</a>)</li>
   <li>Update Caffeine benchmark (<a 
href="https://redirect.github.com/uber/NullAway/issues/1342";>#1342</a>)</li>
   <li>Add a test for a useless <a 
href="https://github.com/Contract";><code>@​Contract</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1346";>#1346</a>)</li>
   <li>Test case for wildcards in Generic Method with Lambda Arguments by <a 
href="https://github.com/dhruv-agr";><code>@​dhruv-agr</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1349";>#1349</a>)</li>
   <li>Add initial AGENTS.md file (<a 
href="https://redirect.github.com/uber/NullAway/issues/1352";>#1352</a>)</li>
   </ul>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/uber/NullAway/blob/master/CHANGELOG.md";>com.uber.nullaway:nullaway's
 changelog</a>.</em></p>
   <blockquote>
   <h2>Version 0.12.13</h2>
   <p>NullAway now includes a new Error Prone checker, 
<code>RequireExplicitNullMarking</code>,
   that checks that every class is explicitly <code>@NullMarked</code> or 
<code>@NullUnmarked</code> (at the class or package level), so code
   is not left <code>@NullUnmarked</code> unintentionally.  The check is 
disabled by default.  See <a 
href="https://github.com/uber/NullAway/wiki/JSpecify-Support#requireexplicitnullmarking-checker";>the
 docs</a>
   for further details.</p>
   <p>NullAway also includes support for a new <code>@PureExceptLambda</code> 
annotation, contributed by <a 
href="https://github.com/FxMorin";><code>@​FxMorin</code></a>, to tell NullAway
   to preserve nullability information from the enclosing method when analyzing 
the body of certain lambdas.
   See <a 
href="https://github.com/uber/NullAway/wiki/Supported-Annotations#pureexceptlambda";>the
 docs</a> for details.</p>
   <ul>
   <li>Use passed-in <code>TreePath</code> in one more place when available (<a 
href="https://redirect.github.com/uber/NullAway/issues/1329";>#1329</a>)</li>
   <li>Checker to ensure explicit null marking of every class (<a 
href="https://redirect.github.com/uber/NullAway/issues/1323";>#1323</a>)</li>
   <li>Bound size of alreadyRunAnalyses cache to be consistent (<a 
href="https://redirect.github.com/uber/NullAway/issues/1334";>#1334</a>)</li>
   <li>Improve inference for generic methods with lambda argument containing 
return statements by <a 
href="https://github.com/dhruv-agr";><code>@​dhruv-agr</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1337";>#1337</a>)</li>
   <li>Add <code>PureExceptLambda</code> annotation by <a 
href="https://github.com/FxMorin";><code>@​FxMorin</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1325";>#1325</a>)</li>
   <li>Support marking method type variable upper bounds as 
<code>@Nullable</code> in library models (<a 
href="https://redirect.github.com/uber/NullAway/issues/1345";>#1345</a>)</li>
   <li>Method name parsing in <code>ExternalStubxLibraryModels</code> class is 
missing a corner case by <a 
href="https://github.com/haewiful";><code>@​haewiful</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1344";>#1344</a>)</li>
   <li>Better fix for dataflow analysis caching (<a 
href="https://redirect.github.com/uber/NullAway/issues/1353";>#1353</a>)</li>
   <li>Maintenance
   <ul>
   <li>Add package-info files with <a 
href="https://github.com/NullMarked";><code>@​NullMarked</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1331";>#1331</a>)</li>
   <li>Speed up buildWithNullAway task (<a 
href="https://redirect.github.com/uber/NullAway/issues/1330";>#1330</a>)</li>
   <li>Enable the VoidMissingNullable checker and autofix all extant warnings 
(<a href="https://redirect.github.com/uber/NullAway/issues/1332";>#1332</a>)</li>
   <li>Bump JDK version to 25 for integration tests (<a 
href="https://redirect.github.com/uber/NullAway/issues/1336";>#1336</a>)</li>
   <li>Switch Coderabbit to assertive mode (<a 
href="https://redirect.github.com/uber/NullAway/issues/1338";>#1338</a>)</li>
   <li>Enable EqualsMissingNullable check and fix all extant warnings (<a 
href="https://redirect.github.com/uber/NullAway/issues/1339";>#1339</a>)</li>
   <li>Bump to AutoValue 1.11.1 (<a 
href="https://redirect.github.com/uber/NullAway/issues/1340";>#1340</a>)</li>
   <li>Update Caffeine benchmark (<a 
href="https://redirect.github.com/uber/NullAway/issues/1342";>#1342</a>)</li>
   <li>Add a test for a useless <a 
href="https://github.com/Contract";><code>@​Contract</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1346";>#1346</a>)</li>
   <li>Test case for wildcards in Generic Method with Lambda Arguments by <a 
href="https://github.com/dhruv-agr";><code>@​dhruv-agr</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1349";>#1349</a>)</li>
   <li>Add initial AGENTS.md file (<a 
href="https://redirect.github.com/uber/NullAway/issues/1352";>#1352</a>)</li>
   </ul>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/uber/NullAway/commit/b2245bf023158c66a29b68616d6dd74fa463cad5";><code>b2245bf</code></a>
 Prepare for release 0.12.13.</li>
   <li><a 
href="https://github.com/uber/NullAway/commit/fed9143fe6d138042895f765b009188abda5e596";><code>fed9143</code></a>
 Release notes for 0.12.13 (<a 
href="https://redirect.github.com/uber/NullAway/issues/1355";>#1355</a>)</li>
   <li><a 
href="https://github.com/uber/NullAway/commit/7cd8b1b0dc533ec2aaf9ff3ca3c2b40940725200";><code>7cd8b1b</code></a>
 Better fix for dataflow analysis caching (<a 
href="https://redirect.github.com/uber/NullAway/issues/1353";>#1353</a>)</li>
   <li><a 
href="https://github.com/uber/NullAway/commit/119448ec355b51e6aa8ea3a759d7682e73d14107";><code>119448e</code></a>
 Add initial AGENTS.md file (<a 
href="https://redirect.github.com/uber/NullAway/issues/1352";>#1352</a>)</li>
   <li><a 
href="https://github.com/uber/NullAway/commit/88df9d1c8db795efae7771999723102bd19c6cb7";><code>88df9d1</code></a>
 Test case for wildcards in Generic Method with Lambda Arguments (<a 
href="https://redirect.github.com/uber/NullAway/issues/1349";>#1349</a>)</li>
   <li><a 
href="https://github.com/uber/NullAway/commit/585b40efad19876a68b517150a9e3d0d7b9bbb81";><code>585b40e</code></a>
 Method name parsing in <code>ExternalStubxLibraryModels</code> class is 
missing a corner...</li>
   <li><a 
href="https://github.com/uber/NullAway/commit/feec9d9f67930757a763dc82a98b5793ade7ece2";><code>feec9d9</code></a>
 Support marking method type variable upper bounds as <code>@Nullable</code> in 
library m...</li>
   <li><a 
href="https://github.com/uber/NullAway/commit/fdec09ae620520f5af206424f64760a10ea74243";><code>fdec09a</code></a>
 Add a test for a useless <a 
href="https://github.com/Contract";><code>@​Contract</code></a> (<a 
href="https://redirect.github.com/uber/NullAway/issues/1346";>#1346</a>)</li>
   <li><a 
href="https://github.com/uber/NullAway/commit/39d65f86c9ab345d45ff808a35246aa8a01c2ccb";><code>39d65f8</code></a>
 Add <code>PureExceptLambda</code> annotation (<a 
href="https://redirect.github.com/uber/NullAway/issues/1325";>#1325</a>)</li>
   <li><a 
href="https://github.com/uber/NullAway/commit/82784a2df0099fad9edc55994dadea8e6cca0726";><code>82784a2</code></a>
 Update Caffeine benchmark (<a 
href="https://redirect.github.com/uber/NullAway/issues/1342";>#1342</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/uber/NullAway/compare/v0.12.12...v0.12.13";>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 <dependency name> major version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
major version (unless you unignore this specific dependency's major version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name> minor version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
minor version (unless you unignore this specific dependency's minor version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name>` will close this group update PR and 
stop Dependabot creating any more for the specific dependency (unless you 
unignore this specific dependency or upgrade to it yourself)
   - `@dependabot unignore <dependency name>` will remove all of the ignore 
conditions of the specified dependency
   - `@dependabot unignore <dependency name> <ignore condition>` will remove 
the ignore condition of the specified dependency and ignore conditions
   
   
   </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: [email protected]

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

Reply via email to