gerrit-rest-java-client
gerrit-rest-java-client copied to clipboard
Bump com.google.truth:truth from 0.44 to 1.0
Bumps com.google.truth:truth from 0.44 to 1.0.
Release notes
Sourced from com.google.truth:truth's releases.
Truth 1.0
Truth is a library for performing assertions in tests:
assertThat(notificationText).contains("[email protected]");Truth is owned and maintained by the Guava team. It is used in the majority of the tests in Google’s own codebase.
For more information, see our full documentation at truth.dev, or start with our higher-level blog post.
Users of AssertJ will be particularly interested in our comparison of Truth and AssertJ.
Truth 1.0 contains no changes relative to 1.0-rc2. For a list of changes since Truth 0.46, see the release notes for rc1 and rc2.
Now that we have reached 1.0 (after eight years! We're sorry, and we thank you again for your patience), we will maintain binary compatibility.
Truth 0.46
- Removed deprecated
containsAllOfandcontainsAllIn. UsecontainsAtLeastandcontainsAtLeastElementsIn, which are equivalent. (5de3d216)- Removed deprecated
isOrderedandisStrictlyOrdered. UseisInOrderandisInStrictOrder, which are equivalent. (5de3d216)- Removed deprecated
SortedMapSubjectandSortedSetSubject. Users will have to perform assertions directly on the result of methods likefirstKey. We haven't found sufficient demand for the classes to keep them. (057ef315)- Removed deprecated
ListMultimapSubject,SetMultimapSubject, and ProtoTruth equivalents, which add little to the generalMultimapsubjects. (057ef315)- Removed the type parameters from
Subject. If you subclass this type (or declare it as a method return type, etc.), you will have to update those usages at the same time you update Truth. Or you can remove the type parameters from your usages (temporarily introducing rawtypes/unchecked warnings, which you may wish to suppress) and then update Truth (at which point the warnings will go away and you can remove any suppressions). (3740ee65) To remove the type parameters fromSubjectsubclasses, you can get most of the way there with a Perl-compatible regex search-and-replace operation:s/\bSubject<([^<>]*|[^<>]*<[^<>]*>[^<>]*|[^<>]*<[^<>]*>[^<>]*<[^<>]*>[^<>]*|[^<>]*<[^<>]*<[^<>]*>[^<>]*>)>/Subject/g- Removed the self-type parameter of
ComparableSubjectand most of the type parameters ofIterableOfProtosSubject,MapWithProtoValuesSubject, andMultimapWithProtoValuesSubject. If you subclass any of those types (or declare them as method return types, etc.), you will have to update those usages at the same time you update Truth. Or you can remove the type parameters from your usages, update Truth, and then add back the remaining type parameters. (e611568b)- Removed the type parameters of
ProtoSubjectandLiteProtoSubject. If you subclass either of those types (or declare them as method return types, etc.), you will have to update those usages at the same time you update Truth. Or you can remove the type parameters from your usages (temporarily introducing rawtypes/unchecked warnings, which you may wish to suppress) and then update Truth (at which point the warnings will go away and you can remove any suppressions). (eb3852c4)- Removed deprecated
actual(),getSubject(),named(),internalCustomName(), andactualAsString(). To automate most migrations, we've providedStoreActualValueInFieldandNamedToWithMessage(and a quick-and-dirty regex version for common cases). (If you are migrating manually, you may need to know how to handlejava.util.Optional,Stream, and other types that aren't built in.) You might also be interested in our notes from the API Review of this decision. (c1db1b78)- Changed
ProtoSubjectto not extendProtoFluentAssertion. It still contains all the same methods, except thatisEqualToandisNotEqualTonow require aMessage, rather than accept anyObject. (777af33d)- Deprecated the overload of
StandardSubjectBuilder.fail(...)that accepts a message. Instead ofassert_().fail(...), useassertWithMessage(...).fail(). Similarly, instead ofexpect.fail(...), useexpect.withMessage(...).fail(), and so forth. (227b559e)- Deprecated
AtomicLongMapSubject. In most cases, you can assert on theasMap()view instead. (19e1f22c)- Deprecated
Optional*Subject.hasValueThat(). Instead ofassertThat(optional).hasValueThat()...., useassertThat(optional.getAs*())..... (227b559e)- Changed
assertWithMessageto throw an exception if given format arguments but a null format string. (31e44cc3d2597b90986122853c149d68ea2c5cde)- Reimplemented the message-accepting overload of
fail(...)in terms ofwithMessage(...). This is mostly a no-op but can affect behavior in unusual cases. For details, see the commit description. (a52f89b9)- Made
IterableSubject.isEqualToproduce the same message format ascontainsExactly. (27a9111c504648ab830929730d6a2b0face5d23d)- Introduced
TruthFailureSubject.truthFailures()factory for callers that want to test Truth failure messages withexpect,assertWithMessage, etc. (c1db1b78)Truth 0.45
We are pushing hard to release a Truth 1.0 by June 30, after which we don't expect to remove any more APIs. Thanks for your patience with both our slow progress over the past several years and our rapid churn now.
To use the migration tools below, you'll need to set up Error Prone and configure our tools as plugins to run in patch mode.
Deletions:
- Removed deprecated
Subject.isSameAsandisNotSameAs. UseisSameInstanceAsandisNotSameInstanceAs, which are equivalent. (36200e6a)- Hid the constuctor of
Correspondence. Use the class's static factory methods instead. The most mechanical migration is usually toCorrespondence.from. To help with migration, we're releasedCorrespondenceSubclassToFactoryCall. (11da1ca2)- Removed deprecated
Subject.fail*methods. SeeSubject.failWithActualandfailWithoutActual, which use the newFactclass. To help with migration, we're releasedFailWithFacts(and alsoImplementAssertionWithChaining, which is also sometimes useful for these migrations), though you will likely need to make manual changes, as well. (36200e6a)- Removed deprecated no-arg
Subject.check(). Use the overload that accepts a description. (To help with this migration, we have addedProvideDescriptionToCheckto Error Prone -- but then removed it before it became part of a release, so you'll need to pull it in manually.) (36200e6a)- Removed deprecated
MathUtil. For similar static methods, see Guava'sDoubleMath.fuzzyEquals. But callers from customSubjectimplementations may prefer an approach likecheck("score()").that(actual.score()).isWithin(tolerance).of(expected). (7b2876d0)- Removed deprecated
createAndEnableStackTrace(). Usecreate(), which now also enables stack traces. (9362f4cb)
... (truncated)
Commits
- See full diff in compare view
Most Recent Ignore Conditions Applied to This Pull Request
| Dependency Name | Ignore Conditions |
|---|---|
| com.google.truth:truth | [>= 1.a, < 2] |
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)