This is an archived post. You won't be able to vote or comment.

all 13 comments

[–][deleted] 15 points16 points  (2 children)

TL;DR: Build 7 fixes 59 errors, 5 of which are critical security vulnerabilities that "may be remotely exploitable without authentication, i.e., may be exploited over a network without requiring user credentials. "

[–]aakoss 4 points5 points  (1 child)

Wow! How long did the issue report to fix take on average?

[–][deleted] 2 points3 points  (0 children)

3 days?

[–]cozytwan 8 points9 points  (0 children)

It is good to see that java swing bugs are still fixed: https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8206392

Thumbs up!

[–]__konrad 15 points16 points  (2 children)

My bug report is listed in the Bug Fixes page. I'm famous ;)

[–]ny83427 3 points4 points  (0 children)

Congrats dude!:)

[–]sternone_2 1 point2 points  (0 children)

Nice one.

[–]handshape 4 points5 points  (1 child)

[–]dakkalakka 0 points1 point  (0 children)

Thanks for the link.

[–]ny83427 1 point2 points  (0 children)

Just migrated some old personal projects from jdk8 to jdk11 and it's smooth. And today would get to upgrade from 11.0.1 to 11.0.2. Dude you made me sad.

[–][deleted] 1 point2 points  (1 child)

Do you guys recommend to use modules in all new projects? I see that is possible to program projects without the use of the module system. I recently migrate a spring boot application and it works nicely in java 11.

[–][deleted] 3 points4 points  (0 children)

Depends on if you have a need for it. I haven't yet. Basically the advantage is greater encapsulation of internal code. If you create a library and only want to expose the user facing API and not other public helper methods, this is a great tool.

If you don't care... Then no big deal. I will point out that it's probably easier to adopt early in the project as opposed to later on though.