-
Notifications
You must be signed in to change notification settings - Fork 367
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
Minor Release 3.9.0 - Available #2160
Comments
I know it's a bit a kind of stupid question, but do you think there is some risk of regression or behavior change in this release OR this is just a very minor release with mainly some small fix ? |
That depends ... The main change is the switch from LeastRecentlyUsedCache to LeastRecentlyUpdatedCache. I use the LeastRecentlyUpdatedCache now for more than a year without issues. But never say never. |
The 3.9.0 is released and available on the Eclipse Repository. The tools and actinium are also available on the Eclipse Repository. The 3.9.0 is released is also pushed to Maven Central but it will take some time, until it gets available there. |
The 3.9.0 is now also available on Maven Central. |
with 3.9.0 I have some code which using it and would like to know how to adapt to not use deprecated code ? See : |
That's seems to be a very nasty dependency in the API. That set of methods depends on the implementation of the |
I understand that user will need to call 1 API or another depending of version of used LRU cache ? |
I investigated more. It's a java 7 rudiment, using java 8 it could be replaced in the API by So using the old ones works but reports the "deprecation warning". Otherwise the unit tests would have failed. |
I looked at the code and I understand there is strictly no reason to reuse LeastRecentlyUsedCache.Predicate for those methods ?
Could work as short term workaround (waiting v4.0.0) |
Yes, or half yes. I will try that out next week. |
PR #2165 handles the deprecation by introducing a separate interface |
See 3.9.0.
The text was updated successfully, but these errors were encountered: