Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to map Fixed Versions of a java bug to release?

Tags:

java

I am looking at some java bugs.

For example, one below is fixed by 7(b14). How can I find the JDK (Oracle or OpenJDK) version matching it?

http://bugs.java.com/view_bug.do?bug_id=6533413

enter image description here

like image 784
Jayan Avatar asked Sep 09 '14 09:09

Jayan


1 Answers

To solve this problem, it's better to use the OpenJDK bug system. You can find there the equivalent page for your bug.

There you can click on the Fix Version label and obtain the page corresponding to the JDK 7 without updates

If you look in the mercurial repository, you will see that the tags for build numbers are from jdk7-b24 to jdk7-b147

So it means that the build b14 is already integrated into the initial release of the JDK7.

like image 176
Ortomala Lokni Avatar answered Nov 10 '22 00:11

Ortomala Lokni