Skip to content

Commit 72c0dcb

Browse files
Bump truth from 1.4.2 to 1.4.4 (#6723)
Bumps `truth` from 1.4.2 to 1.4.4. Updates `com.google.truth:truth` from 1.4.2 to 1.4.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/google/truth/releases">com.google.truth:truth's releases</a>.</em></p> <blockquote> <h2>v1.4.4</h2> <ul> <li>Annotated the rest of the main package for nullness, and moved the <code>@NullMarked</code> annotation from individual classes up to the package to avoid <a href="https://redirect.github.com/google/truth/issues/1320">a warning under <code>--release 8</code></a>. (e107aeadc)</li> <li>Improved the failure message for <code>matches</code> to conditionally suggest using <code>containsMatch</code>. (7e9fc7aec)</li> </ul> <h2>1.4.3</h2> <p><strong>Known Issue for at least some builds targeting Java 8, fixed in <a href="https://github.com/google/truth/releases/tag/v1.4.4">1.4.4</a>:</strong> &quot;unknown enum constant ElementType.MODULE&quot;: <a href="https://redirect.github.com/google/truth/issues/1320">google/truth#1320</a>. As far as we know, this is only a warning, so it should cause practical problems only if you use <code>-Werror</code> or you perform reflection on <a href="https://jspecify.dev/docs/api/org/jspecify/annotations/NullMarked.html"><code>@NullMarked</code></a> under a Java 8 runtime.</p> <ul> <li>Added more nullness information to our APIs (in the form of <a href="https://jspecify.dev/">JSpecify</a> annotations). This could lead to additional warnings (or even errors) for users of Kotlin and other nullness checkers. Please <a href="https://github.com/google/truth/issues/new">report any problems</a>. (ee680cbaf)</li> <li>Deprecated <code>Subject.Factory</code> methods for Java 8 types. We won't remove them, but you can simplify your code by migrating off them: Just replace <code>assertAbout(foos()).that(foo)</code> with <code>assertThat(foo)</code> (or <code>about(foos()).that(foo)</code> with <code>that(foo)</code>). (59e7a5065)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/google/truth/commit/ddeaa0ce957075de803dc936f72f931a58a7abb5"><code>ddeaa0c</code></a> Set version number for truth-parent to 1.4.4.</li> <li><a href="https://github.com/google/truth/commit/e107aeadc83761211a48e5170eb0c64756a0c20f"><code>e107aea</code></a> Annotate the rest of the main package (basically just the Java 8 subjects) fo...</li> <li><a href="https://github.com/google/truth/commit/8ac91a635a052472a224442f684948b43cfb7ed7"><code>8ac91a6</code></a> Document that <code>truth-java8-extension</code> is obsolete.</li> <li><a href="https://github.com/google/truth/commit/99af8bef97c52f909b369a7f0b3157053e6ffb99"><code>99af8be</code></a> Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24 in the d...</li> <li><a href="https://github.com/google/truth/commit/54e548c9fe9bfe9032f36ef7669230369e327687"><code>54e548c</code></a> Bump the dependencies group with 2 updates</li> <li><a href="https://github.com/google/truth/commit/2183a144db938b8d0e64503fa992c7ad24a9d875"><code>2183a14</code></a> Migrate from legacy com.google.gwt to org.gwtproject.</li> <li><a href="https://github.com/google/truth/commit/7e9fc7aec13385fdc34afc13db0220d99a9b6c5a"><code>7e9fc7a</code></a> Make StringSubject.matches suggest using containsMatch if matches(x) fails bu...</li> <li><a href="https://github.com/google/truth/commit/af140d666537d8a74f7fb3207e6a45403169901c"><code>af140d6</code></a> Fix grammar in Javadoc comments.</li> <li><a href="https://github.com/google/truth/commit/afda443cb1d6942fd4195f0bf54f68fdea2bf779"><code>afda443</code></a> Annotate <code>formattingDiffsUsing</code> methods as supporting nullable element/value ...</li> <li><a href="https://github.com/google/truth/commit/ee680cbafc7db5ce188ad26077e7dbb4eb2a97cb"><code>ee680cb</code></a> Use JSpecify annotations in the public release.</li> <li>Additional commits viewable in <a href="https://github.com/google/truth/compare/v1.4.2...v1.4.4">compare view</a></li> </ul> </details> <br /> Updates `com.google.truth.extensions:truth-liteproto-extension` from 1.4.2 to 1.4.4 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> Co-authored-by: Rodrigo Lazo <[email protected]>
1 parent 043bdc0 commit 72c0dcb

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
@@ -71,7 +71,7 @@ serialization-plugin = "1.8.22"
7171
slf4jNop = "2.0.9"
7272
spotless = "7.0.0.BETA3"
7373
testServices = "1.2.0"
74-
truth = "1.4.2"
74+
truth = "1.4.4"
7575
truthProtoExtension = "1.0"
7676
wiremockStandalone = "2.26.3"
7777

0 commit comments

Comments
 (0)