chore(deps): update dependency com.google.truth:truth to v1.4.5 #103
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.1.3->1.4.5Release Notes
google/truth (com.google.truth:truth)
v1.4.5: 1.4.5assertThat(nullMap).isEmpty()to fail with a useful failure message instead of throwingNullPointerException(and similarly for other "bogus" values, such as negative sizes). (da5d6e9)isInstanceOf(Int::class.java)(and Java'sisInstanceOf(int.class)) a valid way to check forInt/Integerinstances. (974ef19)isWithinto pretty-print numbers in its failure messages. (de78553,07318c2)Integerinstead ofjava.lang.Integer). (0ba72d6)ExpectFailureto never generate "value of" lines based on bytecode. This slightly simplifies writing new tests withExpectFailureand prevents future behavior changes in someExpectFailuretests that already exist. However, it may also require changes to other existingExpectFailuretests to remove or change any assertions about the "value of" line. (3caa0e8)minSdkVersionis now 23 (Marshmallow). This follows the minimum of Google's foundational Android libraries, and we expect it to have no practical impact on users. (c85c75c)@NullMarked. This was making all our types non-null in those environments, since we don't yet use@Nullablein the GWT/J2CL artifact. (6392d37)v1.4.4@NullMarkedannotation from individual classes up to the package to avoid a warning under--release 8. (e107aea)matchesto conditionally suggest usingcontainsMatch. (7e9fc7a)v1.4.3: 1.4.3Known Issue for at least some builds targeting Java 8, fixed in 1.4.4: "unknown enum constant ElementType.MODULE": #1320. As far as we know, this is only a warning, so it should cause practical problems only if you use
-Werroror you perform reflection on@NullMarkedunder a Java 8 runtime.ee680cb)Subject.Factorymethods for Java 8 types. We won't remove them, but you can simplify your code by migrating off them: Just replaceassertAbout(foos()).that(foo)withassertThat(foo)(orabout(foos()).that(foo)withthat(foo)). (59e7a50)v1.4.2: 1.4.2This release is the final step of copying all our methods from
Truth8toTruth. If you have not already migrated your usages fromTruth8toTruth, you may see build errors:In most cases, you can migrate your whole project mechanically:
git grep -l Truth8 | xargs perl -pi -e 's/\bTruth8\b/Truth/g;'. (You can make that change before upgrading to Truth 1.4.2 or as part of the same commit.)If you instead need to migrate your project incrementally (for example, because it is very large), you may want to upgrade your version of Truth incrementally, too, following our instructions for 1.3.0 and 1.4.0.
For help
Please feel welcome to open an issue to report problems or request help.
Changelog
Truth.assertThat(Stream)andTruth.assertThat(Optional). This can create build errors, which you can fix by replacing all your references toTruth8with references toTruth. (45782bd)v1.4.1: 1.4.1This release deprecates
Truth8.All its methods have become available on the main
Truthclass. In most cases, you can migrate your whole project mechanically:git grep -l Truth8 | xargs perl -pi -e 's/\bTruth8\b/Truth/g;'While we do not plan to delete
Truth8, we recommend migrating off it, at least if you static importassertThat: If you do not migrate, such static imports become ambiguous in Truth 1.4.2, breaking your build.v1.4.0: 1.4.0In this release, our assertions on Java 8 types continue to move from the
Truth8class to the mainTruthclass. This change should not break compatibility for any supported JDK or Android version, even users who test under old versions of Android without API desugaring. Additionally, we will never break binary compatibility, though some users will have to make changes to their source code in order for it to compile against newer versions.This release is likely to lead to more build failures than 1.3.0 did. However, those failures should be straightforward to fix.
Example build failure
Simplest upgrade strategy (if you can update all your code atomically in the same commit as the Truth upgrade)
In the same commit:
import static com.google.common.truth.Truth8.assertThat;withimport static com.google.common.truth.Truth.assertThat;.import com.google.common.truth.Truth8.assertThatwithimport com.google.common.truth.Truth.assertThat.import com.google.common.truth.Truth8;withimport com.google.common.truth.Truth;.Truth8with references toTruth.Truth8.assertThat(optional).isPresent()withTruth.assertThat(optional).isPresent().If you're feeling lucky, you can try this one-liner for the code updates:
In most cases, that can be further simplified to:
After that process, it is possible that you'll still see build errors from ambiguous usages of
assertThatstatic imports. If so, you can find a workaround in the section about overload ambiguity in the release notes for 1.3.0. Alternatively, you can wait to upgrade until after a future Truth release, which will eliminate the ambiguity by changing the signatures of someTruth.assertThatoverloads.Incremental upgrade strategy
If you have a very large repo or you have other reasons to prefer to upgrade incrementally, you can use the approach that we used inside Google. Roughly, that approach was:
Truth8.assertThat, change them to avoid static import.assertThat(optional).isPresent()withTruth8.assertThat(optional).isPresent().Truth8with references toTruth(including restoring static imports if desired), as discussed in section about the simple upgrade strategy above.Optional additional changes
assertWithMessage(...).about(intStreams()).that(...),expect.about(optionalLongs()).that(...), or similar, you can remove your call toabout. This change will never be necessary; it is just a simplification.streamsandoptionals, whereas 1.4.0 solves it for the otherTruth8types.For help
Please feel welcome to open an issue to report problems or request help.
Changelog
Truth8.assertThatoverloads to the mainTruthclass. (9be8e77,1f81827)thatoverloads to make it possible to write type-specific assertions when using the remaining Java 8 types. (7c65fc6)v1.3.0: 1.3.0In this release, our assertions on Java 8 types begin to move from the
truth-java8-extensionsartifact and theTruth8class to the maintruthartifact and theTruthclass. This change should not break compatibility for any supported JDK or Android version, even users who test under old versions of Android without API desugaring. Additionally, we will never break binary compatibility, though some users will have to make changes to their source code in order for it to compile against newer versions.This change will be routine for most users, but we're providing as much information as we can for any users who do encounter problems.
We will post fuller instructions for migration later on, once we've learned more from our internal migration efforts. For now, you may find that you need to make one kind of change, and you may elect to make others. (If we missed anything, please open an issue to report problems or request help.)
The change you might need to make:
Truth.assertThat, we cause some code to fail to compile because of an overload ambiguity. This is rare, but it can happen if you static import bothTruth.assertThatand some otherassertThatmethod that includes overloads forOptionalorStream. (It does not happen forTruth8.assertThat, though, except with the Eclipse compiler. Nor it does necessarily happen for otherassertThat(Stream)andassertThat(Optional)methods.) If this happens to you, you'll need to remove one of the static imports, changing the corresponding call sites from "assertThat" to "FooSubject.assertThat."Truth.assertThatoverloads. Once we make those further changes, you may be able to simultaneously replace all your imports ofTruth8.assertThatwith imports ofTruth.assertThatas you upgrade to the new version, likely without introducing overload ambiguities.The changes you might elect to make:
If you use
Truth8.assertThat(Stream)orTruth8.assertThat(Optional), you can migrate to the new overloads inTruth. If you static importTruth8.assertThat, you can usually make this change simply by replacing that static import with a static import ofTruth.assertThat—or, if you already have an import ofTruth.assertThat, by just removing the import ofTruth8.assertThat. (If you additionally use less common assertion methods, likeassertThat(OptionalInt), you'll want to use both imports for now. Later, we'll moveassertThat(OptionalInt)and friends, too.) We recommend making this change now, since your calls toTruth8.assertThatwill fail to compile against some future version of Truth, unless you plan to wait to update your Truth dependency until we've made all our changes for Java 8 types.If you use
assertWithMessage(...).about(streams()).that(...),expect.about(optionals()).that(...), or similar, you can remove your call toabout. This change will never be necessary; it is just a simplification.If you depend on
truth-java8-extension, you may remove it. All its classes are now part of the maintruthartifact. This change, too, is not necessary; it is just a simplification. (OK, if your build system has a concept of strict deps, there is a chance that you'll need to add deps ontruthto replace your deps ontruth-java8-extension.)Finally, the changelog for this release:
StreamSubjectavoid collecting theStreamuntil necessary, and made itsisEqualToandisNotEqualTomethods no longer always throw. (f8ecaec)assertThatoverloads forOptionalandStreamto the mainTruthclass. (37fd8be)thatoverloads to make it possible to write type-specific assertions when usingexpect.that(optional)andexpect.that(stream). (ca7e8f4)truth-java8-extensionclasses into the maintruthartifact. There is no longer any need to depend ontruth-java8-extension, which is now empty. (We've also removed theTruth8GWT module.) (eb0426e)Again, if you have any problems, please let us know.
v1.2.0: 1.2.0Anymessages. This fix may cause tests to fail, since ProtoTruth will now check whether the message contents match. If so, you may need to change the values that your tests expect, or there may be a bug in the code under test that had been hidden by the Truth bug. Sorry for the trouble. (8bd3ef6)isWithin().of()support toIntegerSubjectandLongSubject. (6464cb5,0e99a27)v1.1.5: 1.1.5IterableOfProtosSubjectto produce a proper failure message instead of NPE when the actual value isnull.v1.1.4: 1.1.4-source 8 -target 8. This means that it no longer runs under Java 7 VMs. It continues to run under Android, even old versions, for all apps that have enabled support for Java 8 language features. (db5db24)f8d4dbb,99b1df8)value of: method()toexpect.that, matching the existing support forassertThat. (bd8efd0)IterableSubject.containsAtLeastElementsIn().inOrder()to print an extra line that shows only the expected elements in their actual order. (9da7dd1)2151add)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.