-
Notifications
You must be signed in to change notification settings - Fork 40.7k
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
Drop support for jOOQ until its JAX-B dependency is Jakarta EE 9 compatible #28821
Comments
Hi there! 👋 I guess that increases the pressure of actually doing that 😅. I'll ping you here when it's done. Release 3.16 is due for the end of the year. |
Please don't feel pressured, @lukaseder. 3.0's going to have a long release cycle with GA currently planned for November 2022. |
Yeah, no, I promised this already to a few folks, so a good reminder to push this. Shouldn't be too much effort as jOOQ isn't using much of JavaEE / Jakarta (ideally, just a dependency change and package update). I'm in the mood for busywork this week, now that H2 already broke pretty much everything: jOOQ/jOOQ#9609 |
I mean... upgrading the dependency (and removing the old one) won't be a problem for Spring Boot 2.x? |
Spring Boot 2.x is stuck on jOOQ 3.14 by default due to 3.15's move to Java 11 by default. For Boot 2.x users that want to upgrade jOOQ's version, switching to the From what I've seen while working on our Jakarta EE 9 upgrade, projects seem to be taking one of two approaches:
If your project is only making very light use of Jakarta EE, I'd strongly encourage considering a third option where you drop the dependencies altogether. The transition from EE 8 to EE 9 feels like it is going to take quite a long time and it's only with EE 10 that new features will arrive and users will benefit from it. If there's a possibility of getting jOOQ into a position where it doesn't matter how long the transition takes across the whole ecosystem, I'd grab it with both hands. Unfortunately, that's not possible for many parts of Spring where we heavily depend on the Servlet API, JPA, etc. |
So jOOQ/jOOQ#9609 is integrated in jOOQ 3.16, which no longer uses the
Right, I forgot
These APIs have almost no use within jOOQ, so there's little value of supporting both in parallel. I did expect trouble elsewhere in case both are on the classpath, which is why I implemented the above jOOQ/jOOQ#9609 as a breaking change in 3.16. I'll document this accordingly. Few jOOQ users use these dependencies in jOOQ, they're declared optional, and users can use Maven or Gradle to exclude them from jOOQ's transitive dependencies, if they don't need them.
I do have plans of:
So, this is an option for the future, but not too soon. Given that both dependencies are optional, and most users don't need them, I think:
|
N.B: I'll ping you again on this issue here once jOOQ 3.16 is released. |
jOOQ 3.16.0 including jOOQ/jOOQ#9641 has been released and the Let me know if you need any additional information, and I'll be very happy to help. |
Thanks, @lukaseder. I've opened #29271 to reinstate support by upgrading to 3.16. |
jOOQ/jOOQ#9641
The text was updated successfully, but these errors were encountered: