Skip to content

Commit 7ded3f9

Browse files
Bump com.uber.nullaway:nullaway from 0.12.9 to 0.12.10 (#351)
Bumps [com.uber.nullaway:nullaway](https://github.com/uber/NullAway) from 0.12.9 to 0.12.10. <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.10</h2> <p>This release contains significant improvements to inference support for generic method calls in JSpecify mode (<a href="https://redirect.github.com/uber/NullAway/issues/1075">#1075</a>). We expect that many more valid calls will pass NullAway, but that some new bugs may have been introduced. Please report any issues that you see. There is also a new flag, <code>-XepOpt:NullAway:WarnOnGenericInferenceFailure</code> to make NullAway report a warning when inference fails, to help identify any issues.</p> <ul> <li>Improved inference for generic method calls (<a href="https://redirect.github.com/uber/NullAway/issues/1244">#1244</a>)</li> <li>Suppress <code>CastToNonNull</code> warnings for <code>@NullUnmarked</code> method calls by <a href="https://github.com/raccoonback"><code>@​raccoonback</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1258">#1258</a>)</li> <li>JSpecify: Fix crash when overriding with raw types (<a href="https://redirect.github.com/uber/NullAway/issues/1265">#1265</a>)</li> <li>Better handle calls to super constructors and superclass methods in JSpecify mode (<a href="https://redirect.github.com/uber/NullAway/issues/1248">#1248</a>)</li> <li>issue-1250 pattern matching for instanceof in switch case by <a href="https://github.com/dhruv-agr"><code>@​dhruv-agr</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1259">#1259</a>)</li> <li>Account for annotations in extends / implements when computing view as supertype (<a href="https://redirect.github.com/uber/NullAway/issues/1266">#1266</a>)</li> <li>Bug fix with type substitutions after inference (<a href="https://redirect.github.com/uber/NullAway/issues/1277">#1277</a>)</li> <li>JSpecify: Improve error messages for type incompatibility at pseudo-assignments (<a href="https://redirect.github.com/uber/NullAway/issues/1279">#1279</a>)</li> <li>Support java.util.Objects.toString() by <a href="https://github.com/gulikoza"><code>@​gulikoza</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1283">#1283</a>)</li> <li>Record when generic method inference fails (<a href="https://redirect.github.com/uber/NullAway/issues/1280">#1280</a>)</li> <li>issue 1275 - report unboxing warning for for-each loop by <a href="https://github.com/dhruv-agr"><code>@​dhruv-agr</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1281">#1281</a>)</li> <li>Abstract iterating over invocation arguments (<a href="https://redirect.github.com/uber/NullAway/issues/1284">#1284</a>)</li> <li>Invoke generic method inference in more places (<a href="https://redirect.github.com/uber/NullAway/issues/1286">#1286</a>)</li> <li>Maintenance <ul> <li>Build Spring with snapshot build as a CI job (<a href="https://redirect.github.com/uber/NullAway/issues/1251">#1251</a>)</li> <li>Add more instance fields to <code>GenericsChecks</code> (<a href="https://redirect.github.com/uber/NullAway/issues/1256">#1256</a>)</li> <li>remove unneeded checkNotCall call (<a href="https://redirect.github.com/uber/NullAway/issues/1257">#1257</a>)</li> <li>Fail build on JDK 21 versions before 21.0.8 (<a href="https://redirect.github.com/uber/NullAway/issues/1261">#1261</a>)</li> <li>Clarify JDK version to use for best JSpecify support (<a href="https://redirect.github.com/uber/NullAway/issues/1269">#1269</a>)</li> <li>Simplified set of CI jobs (<a href="https://redirect.github.com/uber/NullAway/issues/1271">#1271</a>)</li> <li>Build: upgrade to Gradle 9 + AGP 8.7.2 (<a href="https://redirect.github.com/uber/NullAway/issues/1270">#1270</a>)</li> <li>Compile with JDK 24 (<a href="https://redirect.github.com/uber/NullAway/issues/1276">#1276</a>)</li> <li>Don't use deprecated <code>buildDir</code> by <a href="https://github.com/mernst"><code>@​mernst</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1278">#1278</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.10</h2> <p>This release contains significant improvements to inference support for generic method calls in JSpecify mode (<a href="https://redirect.github.com/uber/NullAway/issues/1075">#1075</a>). We expect that many more valid calls will pass NullAway, but that some new bugs may have been introduced. Please report any issues that you see. There is also a new flag, <code>-XepOpt:NullAway:WarnOnGenericInferenceFailure</code> to make NullAway report a warning when inference fails, to help identify any issues.</p> <ul> <li>Improved inference for generic method calls (<a href="https://redirect.github.com/uber/NullAway/issues/1244">#1244</a>)</li> <li>Suppress <code>CastToNonNull</code> warnings for <code>@NullUnmarked</code> method calls by <a href="https://github.com/raccoonback"><code>@​raccoonback</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1258">#1258</a>)</li> <li>JSpecify: Fix crash when overriding with raw types (<a href="https://redirect.github.com/uber/NullAway/issues/1265">#1265</a>)</li> <li>Better handle calls to super constructors and superclass methods in JSpecify mode (<a href="https://redirect.github.com/uber/NullAway/issues/1248">#1248</a>)</li> <li>issue-1250 pattern matching for instanceof in switch case by <a href="https://github.com/dhruv-agr"><code>@​dhruv-agr</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1259">#1259</a>)</li> <li>Account for annotations in extends / implements when computing view as supertype (<a href="https://redirect.github.com/uber/NullAway/issues/1266">#1266</a>)</li> <li>Bug fix with type substitutions after inference (<a href="https://redirect.github.com/uber/NullAway/issues/1277">#1277</a>)</li> <li>JSpecify: Improve error messages for type incompatibility at pseudo-assignments (<a href="https://redirect.github.com/uber/NullAway/issues/1279">#1279</a>)</li> <li>Support java.util.Objects.toString() by <a href="https://github.com/gulikoza"><code>@​gulikoza</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1283">#1283</a>)</li> <li>Record when generic method inference fails (<a href="https://redirect.github.com/uber/NullAway/issues/1280">#1280</a>)</li> <li>issue 1275 - report unboxing warning for for-each loop by <a href="https://github.com/dhruv-agr"><code>@​dhruv-agr</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1281">#1281</a>)</li> <li>Abstract iterating over invocation arguments (<a href="https://redirect.github.com/uber/NullAway/issues/1284">#1284</a>)</li> <li>Invoke generic method inference in more places (<a href="https://redirect.github.com/uber/NullAway/issues/1286">#1286</a>)</li> <li>Maintenance <ul> <li>Build Spring with snapshot build as a CI job (<a href="https://redirect.github.com/uber/NullAway/issues/1251">#1251</a>)</li> <li>Add more instance fields to <code>GenericsChecks</code> (<a href="https://redirect.github.com/uber/NullAway/issues/1256">#1256</a>)</li> <li>remove unneeded checkNotCall call (<a href="https://redirect.github.com/uber/NullAway/issues/1257">#1257</a>)</li> <li>Fail build on JDK 21 versions before 21.0.8 (<a href="https://redirect.github.com/uber/NullAway/issues/1261">#1261</a>)</li> <li>Clarify JDK version to use for best JSpecify support (<a href="https://redirect.github.com/uber/NullAway/issues/1269">#1269</a>)</li> <li>Simplified set of CI jobs (<a href="https://redirect.github.com/uber/NullAway/issues/1271">#1271</a>)</li> <li>Build: upgrade to Gradle 9 + AGP 8.7.2 (<a href="https://redirect.github.com/uber/NullAway/issues/1270">#1270</a>)</li> <li>Compile with JDK 24 (<a href="https://redirect.github.com/uber/NullAway/issues/1276">#1276</a>)</li> <li>Don't use deprecated <code>buildDir</code> by <a href="https://github.com/mernst"><code>@​mernst</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1278">#1278</a>)</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/uber/NullAway/commit/13580d515875cccd885ad00a28658a06ccada06a"><code>13580d5</code></a> Prepare for release 0.12.10.</li> <li><a href="https://github.com/uber/NullAway/commit/f8c214bd05433b15fc663ed75ed65dd96ddd88bd"><code>f8c214b</code></a> Update changelog for release 0.12.10 (<a href="https://redirect.github.com/uber/NullAway/issues/1292">#1292</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/2e578d6314e224a83114d3ff85571a33ab4b6035"><code>2e578d6</code></a> Invoke generic method inference in more places (<a href="https://redirect.github.com/uber/NullAway/issues/1286">#1286</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/c187bf593f8a2979ca9770cb7849619f334daef4"><code>c187bf5</code></a> Abstract iterating over invocation arguments (<a href="https://redirect.github.com/uber/NullAway/issues/1284">#1284</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/dd0da6d4628c36bed659f862cb5b5d0bd19cb263"><code>dd0da6d</code></a> issue 1275 - report unboxing warning for for-each loop (<a href="https://redirect.github.com/uber/NullAway/issues/1281">#1281</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/533986cb969c42cffa8a2c5481920cf8c84fa656"><code>533986c</code></a> Record when generic method inference fails (<a href="https://redirect.github.com/uber/NullAway/issues/1280">#1280</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/cb72c5a6c477d90e5d23ddeedc07af590b49f455"><code>cb72c5a</code></a> Support java.util.Objects.toString() (<a href="https://redirect.github.com/uber/NullAway/issues/1283">#1283</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/8f4050025d7ad65c877f71b222ee4051a139a569"><code>8f40500</code></a> JSpecify: Improve error messages for type incompatibility at pseudo-assignmen...</li> <li><a href="https://github.com/uber/NullAway/commit/9272d8b20dec09cf598d20026ce37dcbbe42168b"><code>9272d8b</code></a> Bug fix with type substitutions after inference (<a href="https://redirect.github.com/uber/NullAway/issues/1277">#1277</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/66e9f572b1afd6673e0a1f5a56942c0c73cc06f9"><code>66e9f57</code></a> Don't use deprecated <code>buildDir</code> (<a href="https://redirect.github.com/uber/NullAway/issues/1278">#1278</a>)</li> <li>Additional commits viewable in <a href="https://github.com/uber/NullAway/compare/v0.12.9...v0.12.10">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.uber.nullaway:nullaway&package-manager=gradle&previous-version=0.12.9&new-version=0.12.10)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9a77d64 commit 7ded3f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ grpc-protobuf = { module = "io.grpc:grpc-protobuf", version = "1.75.0" }
1717
jspecify = { module ="org.jspecify:jspecify", version = "1.0.0" }
1818
junit-bom = { module = "org.junit:junit-bom", version.ref = "junit" }
1919
maven-plugin = { module = "com.vanniktech:gradle-maven-publish-plugin", version.ref = "maven-publish" }
20-
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.12.9" }
20+
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.12.10" }
2121
protobuf-java = { module = "com.google.protobuf:protobuf-java", version.ref = "protobuf" }
2222
spotless = { module = "com.diffplug.spotless:spotless-plugin-gradle", version = "7.2.1" }
2323

0 commit comments

Comments
 (0)