-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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 minimum support Java version from 8 to 11 #2804
Conversation
@TimvdLippe started the initial work here, thank you |
It seems like I run into mojohaus/animal-sniffer#172 again (but this time using 1.22) :( |
Thanks for the PR, this is great! We will need to publish Seems like CI is unhappy about our Javadoc. I couldn't find the failing error, but we have to build our Javadoc with no errors. |
👍
Thanks @TimvdLippe , I will certainly take a look |
@TimvdLippe looks like regression mojohaus/animal-sniffer#172 is back in the new version, I will try to figure that out.
|
fe59f40
to
cd0c8f9
Compare
Huh ... found a workaround here: https://github.com/mockito/mockito/pull/2804/files#diff-49a96e7eea8a94af862798a45174e6ac43eb4f8b4bd40759b5da63ba31ec3ef7R109, not ideal but the only one which works |
42161f9
to
af69a17
Compare
subprojects/kotlinTest/src/test/kotlin/org/mockito/kotlin/CircularityTest.kt
Show resolved
Hide resolved
5c0902f
to
877152e
Compare
Codecov ReportBase: 84.91% // Head: 84.91% // No change to project coverage 👍
Additional details and impacted files@@ Coverage Diff @@
## main #2804 +/- ##
=========================================
Coverage 84.91% 84.91%
Complexity 2812 2812
=========================================
Files 320 320
Lines 8574 8574
Branches 1042 1042
=========================================
Hits 7281 7281
Misses 1012 1012
Partials 281 281 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
@@ -24,26 +24,13 @@ private interface Factory { | |||
} | |||
|
|||
private static Factory createLocationFactory() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know you were initially working on this PR to get these changes in. However, I would like to include these changes in Mockito 5.1.0, so to avoid pulling in too many changes into 1 go. Can you split out these changes into a separate PR so that we can land that? We can then also consider cleaning up some more of these Java 8 utility classes such as JavaEightUtil
(
mockito/src/main/java/org/mockito/internal/stubbing/defaultanswers/ReturnsEmptyValues.java
Line 132 in e2e6289
} else if ("java.util.Optional".equals(type.getName())) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TimvdLippe sure, I can split that, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TimvdLippe I reverted the changes, would you be open to have a plugin for LocationFactory
so the alternative implementation could be supplied? (with revert, we are back to reflection <-> SecurityManager
issues we've started with). I will open separate issue / pull request, should be a low risk change from implementation perspective, but I am wondering how it is aligned with the project.
All of these changes look good! I would like to land the functional changes in a separate PR and in Mockito 5.1.0 to minimize impact. Other than that, we are mostly blocked on |
Signed-off-by: Andriy Redko <[email protected]>
Signed-off-by: Andriy Redko <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great work, thank you so much!
import java.util.stream.Collectors; | ||
import java.util.stream.Stream; | ||
|
||
class LocationImpl implements Location, Serializable { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably have been removed from this PR as well, but I don't see any harm in including an unused class for now. Since I don't want another review cycle, let's merge this now so we can get things going! Thanks 😄
Signed-off-by: Andriy Redko [email protected]
Fixes #2798
Checklist
including project members to get a better picture of the change
commit is meaningful and help the people that will explore a change in 2 years
Fixes #<issue number>
in the description if relevantFixes #<issue number>
if relevant