-
Notifications
You must be signed in to change notification settings - Fork 26
Switch to JDK 18 as minumum supported version #29
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
Conversation
Thanks for the PR. I'm fine with adding Java 21 to the CI, but unless there's a reason to drop support for earlier versions, I'd prefer not to do so. Some users would like to even support Java 17, as mentioned in issue #28. My suggestion would be to create a separate GitHub job that utilizes Java 21 for building and testing the library. We can set this up using a matrix. |
Set up matrix build, for versions 18 to 21
Switched to a matrix build and to 18 as the minimal version with all required features that are used now. |
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.
In the README there are two places where the required Java version is mentioned:
- https://github.com/simdjson/simdjson-java/blob/main/README.md?plain=1#L50
- https://github.com/simdjson/simdjson-java/blob/main/README.md?plain=1#L90
If we want to start supporting Java 18, we need to update the README.
Looks good. Thanks again! |
* Drop minimum supported JDK version to 18 Set up matrix build, for versions 18 to 21 * Drop publish to JDK 18 and don't require adoptium * Update README.md
Switches to 18 as base release having the minimum supported features. Adds matrix build for JDK versions up to 21.