Wednesday, October 18, 2017

Java version history

The Java language has undergone several changes since JDK 1.0 as well as numerous additions of classes and packages to the standard library. Since J2SE 1.4, the evolution of the Java language has been governed by the Java Community Process (JCP), which uses Java Specification Requests (JSRs) to propose and specify additions and changes to the Java platform. The language is specified by the Java Language Specification (JLS); changes to the JLS are managed under JSR 901.
In addition to the language changes, much more dramatic changes have been made to the Java Class Library over the years, which has grown from a few hundred classes in JDK 1.0 to over three thousand in J2SE 5. Entire new APIs, such as Swing and Java2D, have been introduced, and many of the original JDK 1.0 classes and methods have been deprecated. Some programs allow conversion of Java programs from one version of the Java platform to an older one (for example Java 5.0 backported to 1.4) (see Java backporting tools).
In September 2017, Mark Reinhold, chief Architect of the Java Platform, proposed to change the release train to "one feature release every six months" rather than the current two-year schedule.[1][2]
Java 9 is the main publicly supported version (with Java 7 no longer publicly supported and Java 8 end of support announced[3]), while after public support periods of older versions has ended, non-public updates have been issued for Java 7 and earlier.[4]
While Java was originally made for e.g. client-side applet use in web browsers (usage shifted mostly to the backend), major browsers no longer have applet support (nor is that use case officially supported by Oracle; neither do they or Apple support Java for macOS; outdated Windows XP is also no longer offically supported, and Microsoft in general hindered use of unchanged Java with their Windows operating system, for a time competing with a J# language).
ReleaseYear
JDK Beta1994
JDK 1.01996
JDK 1.11997
J2SE 1.21998
J2SE 1.32000
J2SE 1.42002
J2SE 5.02004
Java SE 62006
Java SE 72011
Java SE 82014
Java SE 92017

JDK 1.0[edit]

The first version was released on January 23, 1996 and called Oak.[5][6] The first stable version, JDK 1.0.2, is called Java 1.[6]

JDK 1.1[edit]

Major additions in the release on February 19, 1997 included:[7]

J2SE 1.2[edit]

Codename Playground. The release on December 8, 1998 and subsequent releases through J2SE 5.0 were rebranded retrospectively Java 2 and the version name "J2SE" (Java 2 Platform, Standard Edition) replaced JDK to distinguish the base platform from J2EE (Java 2 Platform, Enterprise Edition) and J2ME (Java 2 Platform, Micro Edition). This was a very significant release of Java as it tripled the size of the Java platform to 1520 classes in 59 packages. Major additions included:[9]

J2SE 1.3[edit]

Codename Kestrel. The most notable changes in the May 8, 2000 release were:[10][11]

J2SE 1.4[edit]

Codename Merlin. The February 6, 2002 release was the first release of the Java platform developed under the Java Community Process as JSR 59. Major changes included:[12][13]
  • Language changes
  • Library improvements
Public support and security updates for Java 1.4 ended in October 2008. Paid security updates for Oracle customers ended in February 2013.[14]

J2SE 5.0[edit]

Codename Tiger. The release on September 30, 2004 was originally numbered 1.5, which is still used as the internal version number. The number was changed to "better reflect the level of maturity, stability, scalability and security of the J2SE".[15] This version was developed under JSR 176.
J2SE 5.0 entered its end-of-public-updates period on April 8, 2008; updates are no longer available to the public as of November 3, 2009. Updates were available to paid Oracle customers until May 2015.[16]
Tiger added a number of significant new language features:[17][18]
  • Generics: provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion) (specified by JSR 14)
  • Metadata: also called annotations; allows language constructs such as classes and methods to be tagged with additional data, which can then be processed by metadata-aware utilities (specified by JSR 175)
  • Autoboxing/unboxing: automatic conversions between primitive types (such as int) and primitive wrapper classes (such as Integer) (specified by JSR 201)
  • Enumerations: the enum keyword creates a typesafe, ordered list of values (such as Day.MONDAY, Day.TUESDAY, etc.); previously this could only be achieved by non-typesafe constant integers or manually constructed classes (typesafe enum pattern) (specified by JSR 201)
  • Varargs: the last parameter of a method can now be declared using a type name followed by three dots (e.g. void drawtext(String... lines)); in the calling code any number of parameters of that type can be used and they are then placed in an array to be passed to the method, or alternatively the calling code can pass an array of that type
  • Enhanced for each loop: the for loop syntax is extended with special syntax for iterating over each member of either an array or any Iterable, such as the standard Collection classes (specified by JSR 201)
  • Improved semantics of execution for multi-threaded Java programs; the new Java memory model addresses issues of complexity, effectiveness, and performance of previous specifications[19]
  • Static imports
There were also the following improvements to the standard libraries:
Java 5 is the last release of Java to officially support the Microsoft Windows 98 and Windows ME,[21] while Windows Vista is the newest version of Windows that J2SE 5 was supported on prior to Java 5 going end of life in October 2009.[14]
Java 5 Update 5 (1.5.0_05) is the last release of Java to work on Windows 95 (with Internet Explorer 5.5 installed) and Windows NT 4.0.[22]
Java 5 was first available on Apple Mac OS X 10.4 (Tiger)[23] and was the default version of Java installed on Apple Mac OS X 10.5 (Leopard).
Public support and security updates for Java 1.5 ended in November 2009. Paid security updates for Oracle customers ended in April 2015.

Versioning change[edit]

This version introduced a new versioning system for the Java language, although the old versioning system continued to be used for developer libraries:
Both version numbers "1.5.0" and "5.0" are used to identify this release of the Java 2 Platform Standard Edition. Version "5.0" is the product version, while "1.5.0" is the developer version. The number "5.0" is used to better reflect the level of maturity, stability, scalability and security of the J2SE.
This correspondence continued through later releases (Java 6 = JDK 1.6, Java 7 = JDK 1.7, and so on).

Java 5 updates[edit]

ReleaseRelease dateHighlights
Java SE 52004-10-4Metadata, generic types, autoboxing and auto-unboxing of primitive types, enhanced for loop, enumerated types, static import, formatted I/O, varargs, and concurrency utilities. Improved startup time and memory footprint. Sharing of read-only data between multiple running JVMs. Remote monitoring and management. A new JVM profiling API. Programmatic generation of stack traces. Support for XML 1.1 with Namespaces, XML Schema, SAX 2.0.2, DOM Level 3, and XSLT with a fast XLSTC compiler. Unicode 4.0 support.
Java SE 5 Update 12004-12-2550 bugs have been fixed.
Java SE 5 Update 22005-03-16A few crashes were fixed. The program is now compiled with better optimization. Calendar bugfixes and other bugfixes were made.
Java SE 5 Update 32005-05-03This release fixes several bugs, including crashes of the Linux Mozilla plugin.
Java SE 5 Update 42005-07-04With the release, J2SE support for Windows 64-bit has progressed from release candidate to final release. This version runs on AMD64/EM64T 64-bit mode machines with Windows Server 2003 x64 Editions.
Java SE 5 Update 52005-09-18Several bugs were fixed and performance enhancements were made. Last release for Windows 95 and Windows NT 4.0.
Java SE 5 Update 62005-12-07Prior to this update, an applet or application could specify the version of the JRE on which it would run. This has changed. All applets are executed with the latest JRE version.
Java SE 5 Update 72006-05-29Several bugs were fixed and performance enhancements were made.
Java SE 5 Update 82006-08-13Several bugs were fixed and performance enhancements were made.
Java SE 5 Update 92006-11-12This release fixes several minor regressions.
Java SE 5 Update 102006-12-22An implementation of the epoll I/O event notification facility, supported by Linux 2.6, was added. Many bugs were fixed.
Java SE 5 Update 112007-03-08Several bugs were fixed and performance enhancements were made.
Java SE 5 Update 122007-06-11
Java SE 5 Update 132007-10-05Multiple security vulnerabilities in Java Web Start relating to local file access were fixed. A security vulnerability in the JRE allowing network access restrictions to be circumvented was fixed. Several other security issues and minor bugs were fixed.
Java SE 5 Update 14

Java SE 5 Update 152008-03-06Several crashes due to heap buffer out-of-bounds were fixed, along with several other bugs. New root certificates from AOL, DigiCert, and TrustCenter are now included.
Java SE 5 Update 162008-07-23This release fixes several security flaws, such as DoS vulnerabilities, buffer overflows, and other bugs which could lead to crashes or which would give applets access to certain system resources. These vulnerabilities were located in Java Web Start, in the Java Management Extensions (JMX) Management Agent, and in the functions for handling XML data.
Java SE 5 Update 172008-12-03The UTF-8 charset implementation was updated to handle the non-shortest form of UTF-8 byte sequences, introducing an incompatibility from previous releases. New root certificates were added. Many bugs were fixed.
Java SE 5 Update 182009-03-25Several security issues were resolved. The behavior of the JNDI feature to store and retrieve Java objects in an LDAP directory was slightly modified. Five new root certificates were added. Many bugs were fixed.
Java SE 5 Update 192009-05-29Support was added for several system configurations. Service Tag support was added. Many bugs were fixed, including several crashes and memory leaks.
Java SE 5 Update 202009-08-06Several security vulnerabilities were resolved, such as potential system access by untrusted applets, and integer overflows in image processing and in Unpack200. Several new root certificates were added. Many other minor bugs were fixed.
Java SE 5 Update 212009-09-09Many minor bugs were fixed.
Java SE 5 Update 222009-11-04This release marks the End of Service Life (EOSL) for Java 5, and is its final public version. Several security vulnerabilities, reported as Sun Alerts 269868, 270474, 270475, and 270476, were fixed. Several other bugs were fixed. Furthermore, two new root certificates were added.
Java SE 5 Update 232010-01-13Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 32 security fixes.
Java SE 5 Update 242010-04-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 2 security fixes.
Java SE 5 Update 252010-07-07Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 26 security fixes.
Java SE 5 Update 262010-10-12Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 2 security fixes.
Java SE 5 Update 272010-12-08Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 22 security fixes.
Java SE 5 Update 282011-02-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 22 security fixes[25]
Java SE 5 Update 292011-03-21Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 21 security fixes.
Java SE 5 Update 302011-06-07Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix.
Java SE 5 Update 312011-08-16Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 10 security fixes.
Java SE 5 Update 322011-10-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 20 security fixes[26]
Java SE 5 Update 332011-12-12Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 21 security fixes.
Java SE 5 Update 342012-02-14Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[27]
Java SE 5 Update 352012-04-26Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes.
Java SE 5 Update 362012-06-12Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[28]
Java SE 5 Update 382012-08-14Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 30 security fixes[29]
Java SE 5 Update 392013-02-19Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 50 security fixes[30]
Java SE 5 Update 402013-02-19Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[31]
Java SE 5 Update 412013-03-04Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 2 security fixes[32]
Java SE 5 Update 452013-04-16Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 42 security fixes[33]
Java SE 5 Update 512013-06-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 40 security fixes[34]
Java SE 5 Update 552013-10-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 51 security fixes[35]
Java SE 5 Update 612014-01-14Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 36 security fixes[36]
Java SE 5 Update 652014-04-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 37 security fixes[37]
Java SE 5 Update 712014-07-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 20 security fixes[38]
Java SE 5 Update 752014-10-16Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 25 security fixes[39]
Java SE 5 Update 812015-01-21Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 19 security fixes[40]
Java SE 5 Update 852015-04-14Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[41]

Java SE 6[edit]

Codename Mustang. As of the version released on December 11, 2006, Sun replaced the name "J2SE" with Java SE and dropped the ".0" from the version number.[42] Internal numbering for developers remains 1.6.0.[43] This version was developed under JSR 270.
During the development phase, new builds including enhancements and bug fixes were released approximately weekly. Beta versions were released in February and June 2006, leading up to a final release that occurred on December 11, 2006.
Major changes included in this version:[44][45]
  • Support for older Win9x versions dropped; unofficially, Java 6 Update 7 was the last release of Java shown to work on these versions of Windows.[citation needed] This is believed[by whom?] to be due to the major changes in Update 10.
  • Scripting Language Support (JSR 223): Generic API for tight integration with scripting languages, and built-in Mozilla JavaScript Rhino integration.
  • Dramatic performance improvements for the core platform,[46][47] and Swing.
  • Improved Web Service support through JAX-WS (JSR 224).
  • JDBC 4.0 support (JSR 221).
  • Java Compiler API (JSR 199): an API allowing a Java program to select and invoke a Java Compiler programmatically.
  • Upgrade of JAXB to version 2.0: Including integration of a StAX parser.
  • Support for pluggable annotations (JSR 269).[48]
  • Many GUI improvements, such as integration of SwingWorker in the API, table sorting and filtering, and true Swing double-buffering (eliminating the gray-area effect).
  • JVM improvements include: synchronization and compiler performance optimizations, new algorithms and upgrades to existing garbage collection algorithms, and application start-up performance.
Java 6 can be installed to Mac OS X 10.5 (Leopard) running on 64-bit (Core 2 Duo and higher) processor machines.[49] Java 6 is also supported by both 32-bit and 64-bit machines running Mac OS X 10.6 (Snow Leopard).
Java 6 reached the end of its supported life in February 2013, at which time all public updates, including security updates, were scheduled to be stopped.[50][51] Oracle released two more updates to Java 6 in March and April 2013, which patched some security vulnerabilities.[52][53]

Java 6 updates[edit]

After Java 6 release, Sun, and later Oracle, released several updates which, while not changing any public API, enhanced end-user usability or fixed bugs.[54]
ReleaseRelease dateHighlights
Java SE 62006-12-23This release adds many enhancements in the fields of Web services, scripting, databases, pluggable annotations, and security, as well as quality, compatibility, and stability. JConsole is now officially supported. Java DB support has been added.
Java SE 6 Update 12007-05-07
Java SE 6 Update 22007-07-03
Java SE 6 Update 32007-10-03
Java SE 6 Update 42008-01-14HotSpot VM 10
Java SE 6 Update 52008-03-05Several security flaws were eliminated. New root certificates from AOL, DigiCert, and TrustCenter are now included.
Java SE 6 Update 62008-04-16A workaround for the infamous Xlib/XCB locking assertion issue was introduced. A memory leak when using Kerberos authentication with LoginContext was fixed. Several other bugs were fixed.
Java SE 6 Update 7[55]
Unofficially, Java SE 6 Update 7 (1.6.0.7) is the last version of Java that was shown to be working on the Win9x family of operating systems[citation needed]
Java SE 6 Update 10[56]2008-10-15HotSpot VM 11. Major changes for this update include:
  • Java Deployment Toolkit, a set of JavaScript functions to ease the deployment of applets and Java Web Start applications.[57]
  • Java Kernel, a small installer including only the most commonly used JRE classes. Other packages are downloaded when needed.
  • Enhanced updater.
  • Enhanced versioning and pack200 support: server-side support is no longer required.[58]
  • Java Quick Starter, to improve cold start-up time.
  • Improved performance of Java2D graphics primitives on Windows, using Direct3D and hardware acceleration.
  • A new Swing look and feel called Nimbus and based on synth.[59]
  • Next-Generation Java Plug-In: applets now run in a separate process and support many features of Web Start applications.[60]
Java SE 6 Update 11[61]2008-12-0313 security fixes[62]
Java SE 6 Update 12[63]2008-12-12No security fixes; 64-bit Java plug-in (for 64-bit web browsers only); Windows Server 2008 support; performance improvements of graphics and JavaFX applications
Java SE 6 Update 13[64]2009-03-247 security fixes, JNDI store and retrieve Java objects in LDAP slightly modified, JMX Change (createMBeanunregisterMBean), 4 new root certificates added
Java SE 6 Update 14[65]2009-05-28HotSpot VM 14. This release includes extensive performance updates to the JIT compiler, compressed pointers for 64-bit machines, as well as support for the G1 (Garbage First) low-pause garbage collector.[66][67]
The -XX:+DoEscapeAnalysis option directs the HotSpot JIT compiler to use escape analysis to determine if local objects can be allocated on the stack instead of the heap.[68]
Some developers have noticed an issue introduced in this release which causes debuggers to miss breakpoints seemingly randomly.[69] Sun has a corresponding bug, which is tracking the issue. The workaround applies to the Client and Server VMs.[70] Using the -XX:+UseParallelGC option will prevent the failure. Another workaround is to roll back to update 13, or to upgrade to update 16.
Java SE 6 Update 152009-08-04Introduced patch-in-place functionality[71]
Java SE 6 Update 162009-08-11Fixed the issue introduced in update 14 which caused debuggers to miss breakpoints[72]
Java SE 6 Update 17[73]2009-11-04Security fixes; two new root certificates
Java SE 6 Update 18[74]2010-01-13No security fixes; Hotspot VM 16; support for Ubuntu 8.04 LTS Desktop Edition, SLES 11, Windows 7, Red Hat Enterprise Linux 5.3, Firefox 3.6, VisualVM 1.2; updated Java DB; many performance improvements
Java SE 6 Update 19[75]2010-03-30Security fixes; root certificate changes: seven new, three removed, five replaced with stronger signature algorithms; interim fix for TLS renegotiation attack
Java SE 6 Update 20[76]2010-04-152 security fixes
Java SE 6 Update 21[77]2010-07-07No security fixes; Hotspot VM 17; support for Red Hat Enterprise Linux 5.4 and 5.5, Oracle Enterprise Linux 4.8, 5.4, 5.5; Google Chrome 4 support; support for Customized Loading Progress Indicators; VisualVM 1.2.2
Java SE 6 Update 22[78]2010-10-1229 security fixes; RFC 5746 support
Java SE 6 Update 23[79]2010-12-08No security fixes; Hotspot VM 19; better support for right-to-left languages
Java SE 6 Update 24[80]2011-02-1521 security fixes; updated Java DB
Java SE 6 Update 252011-03-21No security fixes; Hotspot VM 20; support for Internet Explorer 9, Firefox 4 and Chrome 10; improved BigDecimal; includes "tiered" compilation in the Server VM that enables it to start quickly as does the Client VM, while achieving better peak performance (this feature is enabled by specifying -server and -XX:+TieredCompilation command options)[81]
Java SE 6 Update 26[82]2011-06-0717 new security fixes;[83] last version compatible with Windows Vista SP1
Java SE 6 Update 27[84]2011-08-16No security fixes; certification for Firefox 5
Java SE 6 Update 29[85]2011-10-1820 security fixes, various bug fixes[86]
Java SE 6 Update 30[87]2011-12-12No security fixes; fix for SSL regression in Update 29; support for Red Hat Enterprise Linux 6
Java SE 6 Update 31[88]2012-02-1414 security fixes and one bug fix; last version work reliably for Windows 2000[89]
JAVA SE 6 Update 32[90]2012-04-26No security fixes, various bug fixes
Java SE 6 Update 33[91]2012-06-1214 security fixes, improved VM configuration file loading
Java SE 6 Update 34[92]2012-08-14No security fixes, various bug fixes
Java SE 6 Update 35[93]2012-08-30Contains a security-in-depth fix[94]
Java SE 6 Update 37[95]2012-10-1630 security fixes
Java SE 6 Update 38[96]2012-12-11Various bug fixes[97]
Java SE 6 Update 39[98]2013-02-0150 security fixes
Java SE 6 Update 41[99]2013-02-195 security fixes
Java SE 6 Update 43[100]2013-03-042 security fixes
Java SE 6 Update 45[101]2013-04-1642 security fixes;[102] other changes;[101] final public update.[103]
Java SE 6 Update 51[104]2013-06-18Not available publicly, only available through the Java SE Support program and in Apple Update for OS X Snow Leopard, Lion & Mountain Lion; up to 40 security fixes[105]
Java SE 6 Update 65[106]2013-10-15Not available publicly, only available through the Java SE Support program and in Apple Update for OS X Snow Leopard, Lion & Mountain Lion; at least 11 critical security fixes[107]
Java SE 6 Update 71[108]2014-01-14Not available for public download; 33 fixes[109]
Java SE 6 Update 75[110]2014-04-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster no. #54; 25 security fixes[111]
Java SE 6 Update 81[112]2014-07-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes[113]
Java SE 6 Update 85[114]2014-10-16Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[115]
Java SE 6 Update 91[116]2015-01-21Linux x64 and Windows i586 versions are available as the Java SE 6 Reference Implementation.[117] Other versions are only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[118]
Java SE 6 Update 952015-04-14Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[119]
Java SE 6 Update 1012015-07-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[120] Certification for IE 10 and 11 was introduced in 1.6.0_101
Java SE 6 Update 1052015-10-20Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[121]
Java SE 6 Update 1112016-01-20Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[122]
Java SE 6 Update 1132016-02-05Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[123]
Java SE 6 Update 1152016-04-21Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[124]
Java SE 6 Update 1212016-07-19Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[125]
Java SE 6 Update 1312016-10-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[126]
Java SE 6 Update 1412017-01-17Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[127]
Java SE 6 Update 1512017-04-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 10 security fixes[128]
Java SE 6 Update 1612017-07-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[129]

Java SE 7[edit]

Java 7 (codename Dolphin[130]) is a major update that was launched on July 7, 2011[131] and was made available for developers on July 28, 2011.[132] The development period was organized into thirteen milestones; on June 6, 2011, the last of the thirteen milestones was finished.[133][134] On average, 8 builds (which generally included enhancements and bug fixes) were released per milestone. The feature list at the OpenJDK 7 project lists many of the changes.
Additions in Java 7 include:[135]
  • Strings in switch[140]
  • Automatic resource management in try-statement[141]
  • Improved type inference for generic instance creation, aka the diamond operator <>[142]
  • Simplified varargs method declaration[143]
  • Binary integer literals[144]
  • Allowing underscores in numeric literals[145]
  • Catching multiple exception types and rethrowing exceptions with improved type checking[146]
  • Concurrency utilities under JSR 166[147]
  • New file I/O library (defined by JSR 203) adding support for multiple file systems, file metadata and symbolic links. The new packages are java.nio.file, java.nio.file.attribute and java.nio.file.spi[148][149]
  • Timsort is used to sort collections and arrays of objects instead of merge sort
  • Library-level support for elliptic curve cryptography algorithms
  • An XRender pipeline for Java 2D, which improves handling of features specific to modern GPUs
  • New platform APIs for the graphics features originally implemented in version 6u10 as unsupported APIs[150]
  • Enhanced library-level support for new network protocols, including SCTP and Sockets Direct Protocol
  • Upstream updates to XML and Unicode
  • Java Deployment Rulesets[151]
Lambda (Java's implementation of lambda functions), Jigsaw (Java's implementation of modules), and part of Coin were dropped from Java 7, and released as part of Java 8 (except for Jigsaw, which will be in Java 9).[152][153]
Java 7 was the default version to download on java.com from April 2012 until Java 8 was released.[154]

Java 7 updates[edit]

Oracle issued public updates to the Java 7 family on a quarterly basis[155] until April 2015 when the product reached the end of its support lifecycle.[4][156]
ReleaseRelease dateHighlights
Java SE 7[157]2011-07-28Initial release; HotSpot VM 21
Java SE 7 Update 1[158]2011-10-1820 security fixes, other bug fixes
Java SE 7 Update 2[159]2011-12-12No security fixes; HotSpot VM 22; reliability and performance improvements; support for Solaris 11 and Firefox 5 and later; JavaFX included with Java SE JDK, improvements for web-deployed applications
Java SE 7 Update 3[160]2012-02-1414 security fixes[161]
Java SE 7 Update 4[162]2012-04-26No security updates; HotSpot VM 23; JDK Support for Mac OS X
Java SE 7 Update 5[163]2012-06-1214 security fixes[164]
Java SE 7 Update 6[165]2012-08-14JavaFX and Java Access Bridge included in Java SE JDK and JRE installation, JavaFX support for touch-enabled monitors and touch pads, JavaFX support for Linux, JDK and JRE Support for Mac OS X, JDK for Linux on ARM[166]
Java SE 7 Update 7[167]2012-08-304 security fixes[94]
Java SE 7 Update 9[168]2012-10-1630 security vulnerabilities fixes[169]
Java SE 7 Update 10[170]2012-12-11New security features, such as the ability to disable any Java application from running in the browser and new dialogs to warn you when the JRE is insecure, and bug fixes
Java SE 7 Update 11[171]2013-01-13Olson Data 2012i; bugfix for problems with registration of plugin on systems with Stand-alone version of JavaFX Installed, security fixes for CVE-2013-0422;[172] the default security level for Java applets and web start applications has been increased from "Medium" to "High"
Java SE 7 Update 13[173]2013-02-0150 security fixes
Java SE 7 Update 15[174]2013-02-195 security fixes
Java SE 7 Update 17[175]2013-03-042 security fixes
Java SE 7 Update 21[176]2013-04-16Multiple changes including 42 security fixes, a new Server JRE that doesn't include the plug-in, and the JDK for Linux on ARM
Java SE 7 Update 25[177]2013-06-18Multiple changes including 40 security fixes[105][178]
Java SE 7 Update 40[179]2013-09-10621 bug fixes,[180] New security features, hardfloat ARM, Java Mission Control 5.2 and Retina Display support[181]
Java SE 7 Update 45[182]2013-10-1551 security fixes;[183] protections against unauthorized redistribution of Java applications; restore security prompts; JAXP changes; TimeZone.setDefault change
Java SE 7 Update 51[184]2014-01-1436 security fixes; block JAVA applets without manifest (like Remote console – Java Applet – IBM IMM card, HP iLO card) even if warning dialog is with sentence "will be blocked in next version",[185][186] 17 bug fixes
Java SE 7 Update 55[187]2014-04-1537 security fixes,[188] 19 bug fixes[189]
Java SE 7 Update 60[190]2014-05-28Java Mission Control 5.3,[191] 130 bug fixes[192]
Java SE 7 Update 65[193]2014-07-1518 bug fixes[194]
Java SE 7 Update 67[195]2014-08-041 bug fix[196]
Java SE 7 Update 71[197]2014-10-1416 bug fixes[198]
Java SE 7 Update 72[199]2014-10-14Same release date with Update 71 as a corresponding Patch Set Update (PSU) for Java SE 7,[200] 36 bug fixes[201]
Java SE 7 Update 75[202]2015-01-2012 bug fixes,[203] SSLv3 disabled by default
Java SE 7 Update 76[204]2015-01-20Same release date with Update 75 as a corresponding Patch Set Update (PSU) for Java SE 7,[200] 97 bug fixes[205]
Java SE 7 Update 79[206]2015-04-1421 security fixes, 6 bug fixes,[207]
Java SE 7 Update 80[208]2015-04-14Last public release of Java 7; same release date with Update 79 as a corresponding Patch Set Update (PSU) for Java SE 7, 104 bug fixes[209]
Java SE 7 Update 852015-07-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 25 security fixes[210]
Java SE 7 Update 912015-10-20Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 20 security fixes[211]
Java SE 7 Update 952016-01-19Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[212]
Java SE 7 Update 972016-02-05Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[213]
Java SE 7 Update 992016-03-23Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[214]
Java SE 7 Update 1012016-04-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 22 security fixes[215]
Java SE 7 Update 1112016-07-19Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 36 security fixes[216]
Java SE 7 Update 1212016-10-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 32 security fixes[217]
Java SE 7 Update 1312017-01-17Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 34 security fixes[218]
Java SE 7 Update 1412017-04-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[219]
Java SE 7 Update 1512017-07-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 4 security fixes[220]

Java SE 8[edit]

Java 8 (codename: Spider) was released on March 18, 2014,[221][222] and included some features that were planned for Java 7 but later deferred.[223]
Work on features was organized in terms of JDK Enhancement Proposals (JEPs).[224]
  • JSR 335, JEP 126: Language-level support for lambda expressions (officially, lambda expressions; unofficially, closures) under Project Lambda[225] and default methods (virtual extension methods)[226][227][228] which allow the addition of methods to interfaces without breaking existing implementations. There was an ongoing debate in the Java community on whether to add support for lambda expressions.[229][230] Sun later declared that lambda expressions would be included in Java and asked for community input to refine the feature.[231] Supporting lambda expressions also allows the performance of functional-style operations on streams of elements, such as MapReduce-inspired transformations on collections. Default methods allow an author of an API to add new methods to an interface without breaking the old code using it. Although it was not their primary intent,[226] default methods also allow multiple inheritance of behavior (but not state).
  • JSR 223, JEP 174: Project Nashorn, a JavaScript runtime which allows developers to embed JavaScript code within applications
  • JSR 308, JEP 104: Annotation on Java Types[232]
  • Unsigned Integer Arithmetic[233]
  • JSR 337, JEP 120: Repeating annotations[234]
  • JSR 310, JEP 150: Date and Time API[235]
  • JEP 178: Statically-linked JNI libraries[236]
  • JEP 153: Launch JavaFX applications (direct launching of JavaFX application JARs)[237]
  • JEP 122: Remove the permanent generation[238]
Java 8 is not supported on Windows XP[239] but as of JDK 8 update 25, it can still be installed and run under Windows XP.[240] Previous updates of JDK 8 could be run under XP, but had to be installed after a forced installation by directly unzipping files from the installation executable.
From October 2014, Java 8 was the default version to download from the official website.[241] "Oracle will not post further updates of Java SE 8 to its public download sites for commercial use after September 2018".[3]

Java 8 updates[edit]

ReleaseRelease dateHighlights
Java SE 82014-03-18Initial release
Java SE 8 Update 5[242]2014-04-15Using "*" in Caller-Allowable-Codebase attribute; 11 bug fixes
Java SE 8 Update 11[243]2014-07-15Java Dependency Analysis Tool (jdeps); Java Control Panel option to disable sponsors; JAR file attribute – Entry-Point; JAXP processing limit property – maxElementDepth; 18 security bug fixes,[244] 15 bug fixes
Java SE 8 Update 20[245]2014-08-19669 bug fixes,[246] JMC 5.4, String deduplication (disabled by default)
Java SE 8 Update 25[247]2014-10-1410 bug fixes
Java SE 8 Update 31[248]2015-01-1926 bug fixes; SSLv3 (disabled by default)
Java SE 8 Update 40[249]2015-03-03645 bug fixes,[250] Added the notion of "memory pressure" to help indicate how much of system's memory is still available (low pressure = high memory, high pressure = low memory)
Java SE 8 Update 45[251]2015-04-1413 bug fixes
Java SE 8 Update 51[252]2015-07-14Added support for native sandbox on Windows platforms (disabled by default); also, 25 security fixes, 14 bug fixes
Java SE 8 Update 60[253]2015-08-18480 bug fixes[254]
Java SE 8 Update 65[255]2015-10-2025 security fixes, 3 bug fixes
Java SE 8 Update 66[256]2015-11-1615 bug fixes
Java SE 8 Update 71[257]2016-01-198 security fixes, 5 bug fixes[258]
Java SE 8 Update 722016-01-198 security fixes, 5 bug fixes, several enhancements
Java SE 8 Update 73[259]2016-02-031 security fix
Java SE 8 Update 74[260]2016-02-031 security fix
Java SE 8 Update 77[261]2016-03-231 security fix
Java SE 8 Update 91[262]2016-04-199 security fixes, 4 bug fixes and enhancements
Java SE 8 Update 92[263]2016-04-19Security and bug fixes from 8u91, plus 76 additional bug fixes; the ExitOnOutOfMemoryError and CrashOnOutOfMemoryError flags have been introduced
Java SE 8 Update 101[264]2016-07-19Security and bug fixes from 8u92, plus 9 additional bug fixes
Java SE 8 Update 102[265]2016-07-19Security and bug fixes from 8u101, plus 118 additional bug fixes
Java SE 8 Update 111[266]2016-10-18Security fixes and 9 bug fixes
Java SE 8 Update 112[267]2016-10-18Additional features and 139 bug fixes over 8u111
Java SE 8 Update 121[268]2017-01-173 additional features, 5 changes, and 11 bug fixes over 8u112.
Java SE 8 Update 131[269]2017-04-184 changes and 42 bug fixes (2 notable).
Java SE 8 Update 141[270]2017-07-18Additional feature, 3 changes and 12 bug fixes.
Java SE 8 Update 144[271]2017-07-26Security fixes and bug fixes from 8u141.

Java SE 9[edit]

At JavaOne 2011, Oracle discussed features they hoped to release for Java 9 in 2016.[272] Java 9 should include better support for multi-gigabyte heaps, better native code integration, a different default garbage collector (G1, for "shorter response times")[273] and a self-tuning JVM.[274] In early 2016, the release of Java 9 was rescheduled for March 2017,[275] later again postponed four more months to July 2017,[276] and changed again to be finally available on September 21, 2017,[277] due to controversial acceptance of the current implementation of Project Jigsaw by Java Executive Committee,[278] which led Oracle to fix some open issues and concerns, and to refine some critical technical questions. In the last days of June 2017, Java Community Process expressed nearly unanimous consensus on the proposed Module System scheme.[279]
  • JSR 376: Modularization of the JDK under Project Jigsaw (Java Platform Module System)[153]
  • JEP 222: jshell: The Java Shell (a Java REPL)[280]
  • JEP 295: Ahead-of-Time Compilation[281]
  • JEP 268: XML Catalogs[282]
  • JEP 266: More Concurrency Updates.[283] It includes a Java implementation of Reactive Streams,[284] including a new Flow class[285] that will include the interfaces currently provided by Reactive Streams.[286]
  • JEP 193: Variable Handles:[287] Define a standard means to invoke the equivalents of various java.util.concurrent.atomic and sun.misc.Unsafe operations
  • JEP 282: jlink: The Java Linker:[288] Create a tool that can assemble and optimize a set of modules and their dependencies into a custom run-time image. It effectively allows to produce a fully usable executable including the JVM to run it.
The first Java 9 release candidate was released on August 9, 2017.[289] The first stable release of Java 9 was on September 21, 2017.[290]

Java 9 updates[edit]

ReleaseRelease dateHighlights
Java SE 9[291]2017-09-21Initial release

Java SE 10[edit]

There is speculation of introducing objects without identity (value types),[292][293] as well as moving towards 64-bit addressable arrays to support large data sets.[294]

Implementations[edit]

Before OpenJDK, several free Java implementations were made by various companies and groups. One example is Apache Harmony. IBM also provides Java implementations,[297] and Red Hat provides it through the IcedTea project: a build and integration project for OpenJDK.

No comments:

Post a Comment