Skip to content

Commit b170e47

Browse files
Bump com.uber.nullaway:nullaway from 0.11.3 to 0.12.0 (#201)
Bumps [com.uber.nullaway:nullaway](https://github.com/uber/NullAway) from 0.11.3 to 0.12.0. <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.0</h2> <p>IMPORTANT:</p> <ul> <li>We now by default check/enforce that pure type-use annotations from JSpecify are written in the &quot;right place&quot; on array types, varargs types, and nested types. More details can be found in the <a href="https://github.com/uber/NullAway/wiki/JSpecify-Support">wiki</a>. We also expose <code>-XepOpt:NullAway:LegacyAnnotationLocations</code> flag to disable this new behavior for now to ease the migration. We expect to remove this flag in a future version of NullAway.</li> <li>We now support writing <a href="https://github.com/EnsuresNonNullIf"><code>@​EnsuresNonNullIf</code></a> on methods to capture cases where a method conditionally ensures that a field is <a href="https://github.com/NonNull"><code>@​NonNull</code></a>. Thanks <a href="https://github.com/mauricioaniche"><code>@​mauricioaniche</code></a> for the contributions!</li> </ul> <p>(The changelog below contains all changes from version 0.11.2, since version 0.11.3 contains only one cherry-picked PR from master).</p> <ul> <li>Enforce Strict Interpretation Of Type Use Annotation Locations Outside of JSpecify mode (<a href="https://redirect.github.com/uber/NullAway/issues/1010">#1010</a>)</li> <li>Update handling of annotations on varargs argument (<a href="https://redirect.github.com/uber/NullAway/issues/1025">#1025</a>)</li> <li>Create basic unit tests for library model generation (<a href="https://redirect.github.com/uber/NullAway/issues/1031">#1031</a>)</li> <li>Partial handling for restrictive annotations on varargs in unannotated code (<a href="https://redirect.github.com/uber/NullAway/issues/1029">#1029</a>)</li> <li>Add missing source files in android-jarinfer-models-sdk modules (<a href="https://redirect.github.com/uber/NullAway/issues/1033">#1033</a>)</li> <li>External Library Models: Adding support for <a href="https://github.com/nullable"><code>@​nullable</code></a> Method parameters (<a href="https://redirect.github.com/uber/NullAway/issues/1006">#1006</a>)</li> <li>JDK 23 support (<a href="https://redirect.github.com/uber/NullAway/issues/1034">#1034</a>)</li> <li>Support <a href="https://github.com/EnsuresNonNullIf"><code>@​EnsuresNonNullIf</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1044">#1044</a>)</li> <li>Update some Android astubx models (<a href="https://redirect.github.com/uber/NullAway/issues/1052">#1052</a>)</li> <li>Remove unused or unneeded JarInfer flags (<a href="https://redirect.github.com/uber/NullAway/issues/1050">#1050</a>)</li> <li>Enforce correct type-use annotation locations for nested types (<a href="https://redirect.github.com/uber/NullAway/issues/1045">#1045</a>)</li> <li>Update Android SDK 31 astubx models (<a href="https://redirect.github.com/uber/NullAway/issues/1054">#1054</a>)</li> <li>Fix bugs in reading varargs annotations from bytecodes (<a href="https://redirect.github.com/uber/NullAway/issues/1055">#1055</a>)</li> <li>General maintenance: <ul> <li>Update to Gradle 8.10 (<a href="https://redirect.github.com/uber/NullAway/issues/1023">#1023</a>)</li> <li>Update to Gradle 8.10.1 (<a href="https://redirect.github.com/uber/NullAway/issues/1036">#1036</a>)</li> <li>Update to Error Prone 2.32.0 (<a href="https://redirect.github.com/uber/NullAway/issues/1037">#1037</a>)</li> <li>Typo fix in README.md (<a href="https://redirect.github.com/uber/NullAway/issues/1041">#1041</a>)</li> <li>Fix Gradle config instructions (<a href="https://redirect.github.com/uber/NullAway/issues/1039">#1039</a>)</li> <li>Update to v4 of setup-gradle GitHub action (<a href="https://redirect.github.com/uber/NullAway/issues/1043">#1043</a>)</li> <li>Add extra JVM args needed for JMH on recent JDK versions (<a href="https://redirect.github.com/uber/NullAway/issues/1049">#1049</a>)</li> <li>Use HTTP instead of SSH for cloning repo for JMH Benchmarks (<a href="https://redirect.github.com/uber/NullAway/issues/1056">#1056</a>)</li> <li>Various version updates (<a href="https://redirect.github.com/uber/NullAway/issues/1051">#1051</a>)</li> <li>Update to Checker Framework 3.48.0 (<a href="https://redirect.github.com/uber/NullAway/issues/1030">#1030</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.0</h2> <p>IMPORTANT:</p> <ul> <li>We now by default check/enforce that pure type-use annotations from JSpecify are written in the &quot;right place&quot; on array types, varargs types, and nested types. More details can be found in the <a href="https://github.com/uber/NullAway/wiki/JSpecify-Support">wiki</a>. We also expose <code>-XepOpt:NullAway:LegacyAnnotationLocations</code> flag to disable this new behavior for now to ease the migration. We expect to remove this flag in a future version of NullAway.</li> <li>We now support writing <a href="https://github.com/EnsuresNonNullIf"><code>@​EnsuresNonNullIf</code></a> on methods to capture cases where a method conditionally ensures that a field is <a href="https://github.com/NonNull"><code>@​NonNull</code></a>. Thanks <a href="https://github.com/mauricioaniche"><code>@​mauricioaniche</code></a> for the contributions!</li> </ul> <p>(The changelog below contains all changes from version 0.11.2, since version 0.11.3 contains only one cherry-picked PR from master).</p> <ul> <li>Enforce Strict Interpretation Of Type Use Annotation Locations Outside of JSpecify mode (<a href="https://redirect.github.com/uber/NullAway/issues/1010">#1010</a>)</li> <li>Update handling of annotations on varargs argument (<a href="https://redirect.github.com/uber/NullAway/issues/1025">#1025</a>)</li> <li>Create basic unit tests for library model generation (<a href="https://redirect.github.com/uber/NullAway/issues/1031">#1031</a>)</li> <li>Partial handling for restrictive annotations on varargs in unannotated code (<a href="https://redirect.github.com/uber/NullAway/issues/1029">#1029</a>)</li> <li>Add missing source files in android-jarinfer-models-sdk modules (<a href="https://redirect.github.com/uber/NullAway/issues/1033">#1033</a>)</li> <li>External Library Models: Adding support for <a href="https://github.com/nullable"><code>@​nullable</code></a> Method parameters (<a href="https://redirect.github.com/uber/NullAway/issues/1006">#1006</a>)</li> <li>JDK 23 support (<a href="https://redirect.github.com/uber/NullAway/issues/1034">#1034</a>)</li> <li>Support <a href="https://github.com/EnsuresNonNullIf"><code>@​EnsuresNonNullIf</code></a> (<a href="https://redirect.github.com/uber/NullAway/issues/1044">#1044</a>)</li> <li>Update some Android astubx models (<a href="https://redirect.github.com/uber/NullAway/issues/1052">#1052</a>)</li> <li>Remove unused or unneeded JarInfer flags (<a href="https://redirect.github.com/uber/NullAway/issues/1050">#1050</a>)</li> <li>Enforce correct type-use annotation locations for nested types (<a href="https://redirect.github.com/uber/NullAway/issues/1045">#1045</a>)</li> <li>Update Android SDK 31 astubx models (<a href="https://redirect.github.com/uber/NullAway/issues/1054">#1054</a>)</li> <li>Fix bugs in reading varargs annotations from bytecodes (<a href="https://redirect.github.com/uber/NullAway/issues/1055">#1055</a>)</li> <li>General maintenance: <ul> <li>Update to Gradle 8.10 (<a href="https://redirect.github.com/uber/NullAway/issues/1023">#1023</a>)</li> <li>Update to Gradle 8.10.1 (<a href="https://redirect.github.com/uber/NullAway/issues/1036">#1036</a>)</li> <li>Update to Error Prone 2.32.0 (<a href="https://redirect.github.com/uber/NullAway/issues/1037">#1037</a>)</li> <li>Typo fix in README.md (<a href="https://redirect.github.com/uber/NullAway/issues/1041">#1041</a>)</li> <li>Fix Gradle config instructions (<a href="https://redirect.github.com/uber/NullAway/issues/1039">#1039</a>)</li> <li>Update to v4 of setup-gradle GitHub action (<a href="https://redirect.github.com/uber/NullAway/issues/1043">#1043</a>)</li> <li>Add extra JVM args needed for JMH on recent JDK versions (<a href="https://redirect.github.com/uber/NullAway/issues/1049">#1049</a>)</li> <li>Use HTTP instead of SSH for cloning repo for JMH Benchmarks (<a href="https://redirect.github.com/uber/NullAway/issues/1056">#1056</a>)</li> <li>Various version updates (<a href="https://redirect.github.com/uber/NullAway/issues/1051">#1051</a>)</li> <li>Update to Checker Framework 3.48.0 (<a href="https://redirect.github.com/uber/NullAway/issues/1030">#1030</a>)</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/uber/NullAway/commit/84273f634215ee31ba5dedaae227bd6bcb600d46"><code>84273f6</code></a> Prepare for release 0.12.0.</li> <li><a href="https://github.com/uber/NullAway/commit/91cf25db19ccaa84c4a80a8cc2c7630230645637"><code>91cf25d</code></a> Fix bugs in reading varargs annotations from bytecodes (<a href="https://redirect.github.com/uber/NullAway/issues/1055">#1055</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/2a9188bc0b637df3e51661b0018bb79e8cba01b0"><code>2a9188b</code></a> Update Android SDK 31 astubx models (<a href="https://redirect.github.com/uber/NullAway/issues/1054">#1054</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/0f6f3d29de739f1b757dc8e5b80604e0a2fe59ca"><code>0f6f3d2</code></a> Use HTTP instead of SSH for cloning repo for JMH Benchmarks (<a href="https://redirect.github.com/uber/NullAway/issues/1056">#1056</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/cc5ef6580305f135b9768f1ec43ffaa8a9086572"><code>cc5ef65</code></a> Enforce correct type-use annotation locations for nested types (<a href="https://redirect.github.com/uber/NullAway/issues/1045">#1045</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/9eea2be0a6e28785707c850783096e312f50ac29"><code>9eea2be</code></a> Remove unused or unneeded JarInfer flags (<a href="https://redirect.github.com/uber/NullAway/issues/1050">#1050</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/4eaf4847161b06bdf0ec26745ad89f5d56e451a7"><code>4eaf484</code></a> Update some Android astubx models (<a href="https://redirect.github.com/uber/NullAway/issues/1052">#1052</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/69b8e4cb4b22d269166e73d15708b397886139be"><code>69b8e4c</code></a> Various version updates (<a href="https://redirect.github.com/uber/NullAway/issues/1051">#1051</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/e1298df038ac2e031c066e305714a59e7e552483"><code>e1298df</code></a> Update to Checker Framework 3.48.0 (<a href="https://redirect.github.com/uber/NullAway/issues/1030">#1030</a>)</li> <li><a href="https://github.com/uber/NullAway/commit/f3837e8a392ece8a59bcd482805dddbffb6c7d06"><code>f3837e8</code></a> Add extra JVM args needed for JMH on recent JDK versions (<a href="https://redirect.github.com/uber/NullAway/issues/1049">#1049</a>)</li> <li>Additional commits viewable in <a href="https://github.com/uber/NullAway/compare/v0.11.3...v0.12.0">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.11.3&new-version=0.12.0)](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 0d09809 commit b170e47

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
@@ -23,7 +23,7 @@ ipaddress = { module = "com.github.seancfoley:ipaddress", version.ref = "ipaddre
2323
jakarta-mail-api = { module = "jakarta.mail:jakarta.mail-api", version = "2.1.3" }
2424
junit-bom = { module = "org.junit:junit-bom", version.ref = "junit" }
2525
maven-plugin = { module = "com.vanniktech:gradle-maven-publish-plugin", version.ref = "maven-publish" }
26-
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.11.3" }
26+
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.12.0" }
2727
protobuf-java = { module = "com.google.protobuf:protobuf-java", version.ref = "protobuf" }
2828
spotless = { module = "com.diffplug.spotless:spotless-plugin-gradle", version = "6.25.0" }
2929

0 commit comments

Comments
 (0)