-
Notifications
You must be signed in to change notification settings - Fork 136
test(deps): update dependency com.google.truth:truth to v1.3.0 #2762
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
arpan14
merged 3 commits into
googleapis:main
from
renovate-bot:renovate/com.google.truth-truth-1.x
Feb 21, 2024
Merged
test(deps): update dependency com.google.truth:truth to v1.3.0 #2762
arpan14
merged 3 commits into
googleapis:main
from
renovate-bot:renovate/com.google.truth-truth-1.x
Feb 21, 2024
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69f4c2b to
1648624
Compare
1648624 to
7f07272
Compare
7f07272 to
2be93f4
Compare
2be93f4 to
3080d23
Compare
3080d23 to
c47ee2a
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
arpan14
approved these changes
Feb 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.5->1.3.0Release Notes
google/truth (com.google.truth:truth)
v1.3.0: 1.3.0Compare Source
In 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 anyone, 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)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 has been generated by Mend Renovate. View repository job log here.