-
Notifications
You must be signed in to change notification settings - Fork 36
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
Remove joda-time and use Java 8 time instead #67
base: master
Are you sure you want to change the base?
Conversation
Relevant to #55 |
This is initially a mechanical line-by-line port from the Joda methods to the relevant Java 8 time methods. Will see what fails and evolve it from there. |
One fairly regular error stands out at first, when it tries to format a date:
|
Fixed, but there is a catch: the java.util.Date instance is converted to a |
@damnhandy would you be able to review this? |
@damnhandy would you be able to take a look at this? |
Hey @chriskilding, I'll be taking a look at this. I'm making some changes to the CI set up of the project, it's been kind of a mess for years. Once I get through that for version |
Happy to see traction here, I'm getting some pressure about my use of damnhandy due to the EOL status of joda-time, and I'd rather not have to go looking for another solution. Thanks! |
Bumping this. We would also like migrate to the latest version of handy-uri-templates, but with joda-time this is not an option. |
Would really like to see this land 😄 Some of the Jenkins plugin uses this lib and it would be nice to have a library not depend on any libraries. |
Any update here? |
+1 to reviewing this. Joda-Time is now vulnerable! https://nvd.nist.gov/vuln/detail/CVE-2024-23080 |
Remove
joda-time
library and use Java 8 time instead.