Skip to content

fix(deps): update dependency nl.jqno.equalsverifier:equalsverifier to v3.19 #7055

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
merged 1 commit into from
Feb 7, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 30, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
nl.jqno.equalsverifier:equalsverifier (source) 3.18.1 -> 3.19 age adoption passing confidence

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).

v3.18.2

Fixed
  • Gives readable error message when trying to use forPackage() on third-party dependency package, instead of a NullPointerException. (Issue 1040)

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner January 30, 2025 09:46
Copy link

codecov bot commented Jan 30, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 89.85%. Comparing base (cb64451) to head (c403b1e).
Report is 9 commits behind head on main.

❌ Your project status has failed because the head coverage (89.96%) is below the target coverage (90.00%). You can increase the head coverage or adjust the target coverage.

Additional details and impacted files
@@             Coverage Diff              @@
##               main    #7055      +/-   ##
============================================
+ Coverage     89.84%   89.85%   +0.01%     
- Complexity     6610     6611       +1     
============================================
  Files           740      740              
  Lines         19981    19981              
  Branches       1966     1966              
============================================
+ Hits          17951    17954       +3     
+ Misses         1440     1438       -2     
+ Partials        590      589       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot changed the title fix(deps): update dependency nl.jqno.equalsverifier:equalsverifier to v3.18.2 fix(deps): update dependency nl.jqno.equalsverifier:equalsverifier to v3.19 Feb 6, 2025
@renovate renovate bot force-pushed the renovate/nl.jqno.equalsverifier-equalsverifier-3.x branch from eb40486 to c403b1e Compare February 6, 2025 18:00
@jack-berg jack-berg merged commit 19650df into main Feb 7, 2025
24 of 25 checks passed
@jack-berg jack-berg deleted the renovate/nl.jqno.equalsverifier-equalsverifier-3.x branch February 7, 2025 19:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants