Update dependency nl.jqno.equalsverifier:equalsverifier to v3.19 #403
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:
3.18.2
->3.19
Release Notes
jqno/equalsverifier (nl.jqno.equalsverifier:equalsverifier)
v3.19
Added
forPackage(String packageName, ScanOption... option)
overload. This provides a more consistent way to fine-tune the scanning of packages.ScanOption
provides several features, which can be mixed and matched:ScanOption.recursive()
to search recursively. This replacesforPackage(String packageName, boolean scanRecursively)
.ScanOption.mustExtend(Class<?> type)
to find only classes that extend or implement the given type. This replacesforPackage(String packageName, Class<?> mustExtend)
. Note that this overload used to search recursively too; this is no longer the case. If you want a recursive search that also only matches subtypes, you have to combineScanOption.recursive()
andScanOption.mustExtend(Class<?> type)
.ScanOption.except(Class<?>... types)
to find all classes except the given ones. This replacesforPackage(...).except(Class<?>... types)
.ScanOption.except(Predicate<Class<?>> exclusionPredicate)
to exclude all classes that match the given predicate. This replacesforPackage(...).except(Predicate<Class<?>> exclusionPredicate)
.ScanOption.ignoreExternalJars()
to not throw an exception when attempting to scan a package from a third-party jar file. This can be useful if you have a split package between a dependency and your own codebase. This is a new option. (Issue 1040)Deprecated
forPackage(String packageName, boolean scanRecursively)
: replaced byScanOption.recursive()
.forPackage(String packageName, Class<?> mustExtend)
: replaced byScanOption.mustExtend(Class<?> type)
combined withScanOption.recursive()
.forPackage(...).except(Class<?>... types)
: replaced byScanOption.except(Class<?>... type)
.forPackage(...).except(Predicate<Class<?>>... exclusionPredicate)
: replaced byScanOption.except(Predicate<Class<?>> exclusionPredicate)
.Configuration
📅 Schedule: Branch creation - "* 0-4,22-23 * * 1-5,* * * * 0,6" (UTC), 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.