Skip to content
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

Update dependency nl.jqno.equalsverifier:equalsverifier to v3.19 #859

Merged
merged 2 commits into from
Feb 7, 2025

Conversation

juul-mobile-bot
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change
nl.jqno.equalsverifier:equalsverifier (source) dependencies minor 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 replaces forPackage(String packageName, boolean scanRecursively).
    • ScanOption.mustExtend(Class<?> type) to find only classes that extend or implement the given type. This replaces forPackage(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 combine ScanOption.recursive() and ScanOption.mustExtend(Class<?> type).
    • ScanOption.except(Class<?>... types) to find all classes except the given ones. This replaces forPackage(...).except(Class<?>... types).
    • ScanOption.except(Predicate<Class<?>> exclusionPredicate) to exclude all classes that match the given predicate. This replaces forPackage(...).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 by ScanOption.recursive().
  • forPackage(String packageName, Class<?> mustExtend): replaced by ScanOption.mustExtend(Class<?> type) combined with ScanOption.recursive().
  • forPackage(...).except(Class<?>... types): replaced by ScanOption.except(Class<?>... type).
  • forPackage(...).except(Predicate<Class<?>>... exclusionPredicate): replaced by ScanOption.except(Predicate<Class<?>> exclusionPredicate).

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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@twyatt twyatt enabled auto-merge (squash) February 7, 2025 09:27
@twyatt twyatt merged commit df1c8ca into main Feb 7, 2025
2 checks passed
@twyatt twyatt deleted the renovate/nl.jqno.equalsverifier-equalsverifier-3.x branch February 7, 2025 18:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants