Jump to content

Java version history

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Simon04 (talk | contribs) at 20:30, 3 March 2023 (→‎External links: The Java Version Almanac). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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 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 then-current two-year schedule.[1][2] This proposal took effect for all following versions, and is still the current release schedule.

In addition to the language changes, other 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).

Regarding Oracle Java SE Support Roadmap,[3] version 19 is the latest one, and versions 17, 11 and 8 are the currently supported long-term support (LTS) versions, where Oracle Customers will receive Oracle Premier Support. Java 8 LTS the last free software public update for commercial use was released by Oracle in March 2022, while Oracle continues to release no-cost public Java 8 updates for development[3] and personal use indefinitely.[4] Java 7 is no longer publicly supported. For Java 11, long-term support will not be provided by Oracle for the public; instead, the broader OpenJDK community, as Eclipse Adoptium or others, is expected to perform the work.[5]

Java 17 the latest (3rd) LTS was released on September 14, 2021.[6]

Java 19 General Availability began on September 20, 2022.[7]

Release table

Template:Java version history/table

JDK 1.0

JDK 1.0
ReleasedJanuary 23, 1996
(28 years ago)
 (1996-01-23)

The first version was released on January 23, 1996.[8][9] The first stable version, JDK 1.0.2, is called Java 1.[9]

JDK 1.1

JDK 1.1
ReleasedFebruary 19, 1997
(27 years ago)
 (1997-02-19)

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

J2SE 1.2

J2SE 1.2
CodenamePlayground
ReleasedDecember 8, 1998
(25 years ago)
 (1998-12-08)

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:[12]

J2SE 1.3

J2SE 1.3
CodenameKestrel
ReleasedMay 8, 2000
(24 years ago)
 (2000-05-08)

The most notable changes in the May 8, 2000 release were:[13][14]

Java 1.3 is the last release of Java to officially support Microsoft Windows 95.[15]

J2SE 1.4

J2SE 1.4
CodenameMerlin
ReleasedFebruary 6, 2002
(22 years ago)
 (2002-02-06)
Support ended
PublicOctober 2008 (2008-10)
PaidFebruary 2013 (2013-02)

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:[16][17]

Public support and security updates for Java 1.4 ended in October 2008. Paid security updates for Oracle customers ended in February 2013.[18]

Java SE 5

Java SE 5
CodenameTiger
ReleasedSeptember 30, 2004
(19 years ago)
 (2004-09-30)
Support ended
PublicNovember 2009 (2009-11)
PaidApril 2015 (2015-04)

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".[19] This version was developed under JSR 176.

Java SE 5 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.[3]

Tiger added a number of significant new language features:[20][21]

  • 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[22]
  • Static imports

There were also the following improvements to the standard libraries:

Java 5 is the last release of Java to officially support Microsoft Windows 98 and Windows ME,[24] while Windows Vista was the newest version of Windows that Java SE 5 was supported on prior to Java 5 going end-of-life in October of 2009.[18]

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.[25]

Java 5 was first available on Apple Mac OS X 10.4 (Tiger)[26] 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

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.

— "Version 1.5.0 or 5.0?", Java release notes[27]

This correspondence continued through later releases (Java 6 = JDK 1.6, Java 7 = JDK 1.7, and so on).

Java 5 updates

Template:Java version history/5

Java SE 6

Java SE 6
CodenameMustang
ReleasedNovember 11, 2006
(17 years ago)
 (2006-11-11)
Support ended
PublicFebruary 2013 (2013-02)

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.[28] Internal numbering for developers remains 1.6.0.[29]

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:[30][31]

  • 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,[32][33] 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).[34]
  • 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.[35] 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.[36][37] Oracle released two more updates to Java 6 in March and April 2013, which patched some security vulnerabilities.[38][39]

Java 6 updates

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.[40]

Table of Java 6 updates
Release Release date Highlights
Java SE 6 2006-12-23 This 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 1Template:Java release notes 2007-05-07
Java SE 6 Update 2Template:Java release notes 2007-07-03
Java SE 6 Update 3Template:Java release notes 2007-10-03
Java SE 6 Update 4Template:Java release notes 2008-01-14 HotSpot VM 10
Java SE 6 Update 5Template:Java release notes 2008-03-05 Several security flaws were eliminated. New root certificates from AOL, DigiCert, and TrustCenter are now included.
Java SE 6 Update 6Template:Java release notes 2008-04-16 A 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 7Template:Java release notes 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 10Template:Java release notes 2008-10-15 HotSpot 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.[41]
  • 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.[41]
  • 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.[42]
  • Next-Generation Java Plug-In: applets now run in a separate process and support many features of Web Start applications.[41]
Java SE 6 Update 11[43] Template:Java release notes 2008-12-03 13 security fixesTemplate:Java release notes
Java SE 6 Update 12Template:Java release notes 2008-12-12 No 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 13Template:Java release notes 2009-03-24 7 security fixes, JNDI store and retrieve Java objects in LDAP slightly modified, JMX Change (createMBeanunregisterMBean), 4 new root certificates added
Java SE 6 Update 14Template:Java release notes 2009-05-28 HotSpot 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.[44][45]

The -XX:+DoEscapeAnalysis option directs the HotSpot JIT compiler to use escape analysis to determine whether local objects can be allocated on the stack instead of the heap.Template:Java release notes

Some developers have noticed an issue introduced in this release which causes debuggers to miss breakpoints seemingly randomly.[46] Sun has a corresponding bug, which is tracking the issue. The workaround applies to the Client and Server VMs.[47] 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 15Template:Java release notes 2009-08-04 Introduced patch-in-place functionality
Java SE 6 Update 16Template:Java release notes 2009-08-11 Fixed the issue introduced in update 14 which caused debuggers to miss breakpoints
Java SE 6 Update 17Template:Java release notes 2009-11-04 Security fixes; two new root certificates
Java SE 6 Update 18Template:Java release notes 2010-01-13 No 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 19Template:Java release notes 2010-03-30 Security fixes; root certificate changes: seven new, three removed, five replaced with stronger signature algorithms; interim fix for TLS renegotiation attack
Java SE 6 Update 20Template:Java release notes 2010-04-15 2 security fixes
Java SE 6 Update 21Template:Java release notes 2010-07-07 No 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 22Template:Java release notes 2010-10-12 29 security fixes; RFC 5746 support
Java SE 6 Update 23Template:Java release notes 2010-12-08 No security fixes; Hotspot VM 19; better support for right-to-left languages
Java SE 6 Update 24Template:Java release notes 2011-02-15 21 security fixes; updated Java DB
Java SE 6 Update 25Template:Java release notes 2011-03-21 No 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)
Java SE 6 Update 26Template:Java release notes 2011-06-07 17 new security fixes;[48] last version compatible with Windows Vista SP1
Java SE 6 Update 27Template:Java release notes 2011-08-16 No security fixes; certification for Firefox 5
Java SE 6 Update 29Template:Java release notes 2011-10-18 20 security fixes, various bug fixes[49]
Java SE 6 Update 30Template:Java release notes 2011-12-12 No security fixes; fix for SSL regression in Update 29; support for Red Hat Enterprise Linux 6
Java SE 6 Update 31Template:Java release notes 2012-02-14 14 security fixes and one bug fix; last version work reliably for Windows 2000[50]
Java SE 6 Update 32Template:Java release notes 2012-04-26 No security fixes, various bug fixes
Java SE 6 Update 33Template:Java release notes 2012-06-12 14 security fixes, improved VM configuration file loading
Java SE 6 Update 34Template:Java release notes 2012-08-14 No security fixes, various bug fixes
Java SE 6 Update 35Template:Java release notes 2012-08-30 Contains a security-in-depth fix[51]
Java SE 6 Update 37Template:Java release notes 2012-10-16 30 security fixes
Java SE 6 Update 38Template:Java release notes 2012-12-11 Various bug fixesTemplate:Java release notes
Java SE 6 Update 39Template:Java release notes 2013-02-01 50 security fixes
Java SE 6 Update 41Template:Java release notes 2013-02-19 5 security fixes
Java SE 6 Update 43Template:Java release notes 2013-03-04 2 security fixes
Java SE 6 Update 45Template:Java release notes 2013-04-16 42 security fixes;[52] other changes; final public update.[53]
Java SE 6 Update 51 2013-06-18 Not 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[54]
Java SE 6 Update 65 2013-10-15 Not 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[55]
Java SE 6 Update 71 2014-01-14 Not available for public download; 33 fixesTemplate:Java release notes
Java SE 6 Update 75 2014-04-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster no. #54; 25 security fixes[56]
Java SE 6 Update 81 2014-07-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes[57]
Java SE 6 Update 85 2014-10-16 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[58]
Java SE 6 Update 91 2015-01-21 Linux x64 and Windows i586 versions are available as the Java SE 6 Reference Implementation.[59] Other versions are only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[60]
Java SE 6 Update 95 2015-04-14 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[61]
Java SE 6 Update 101 2015-07-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[62] Certification for IE 10 and 11 was introduced in 1.6.0_101
Java SE 6 Update 105 2015-10-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[63]
Java SE 6 Update 111 2016-01-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[64]
Java SE 6 Update 113 2016-02-05 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[65]
Java SE 6 Update 115 2016-04-21 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[66]
Java SE 6 Update 121 2016-07-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[67]
Java SE 6 Update 131 2016-10-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[68]
Java SE 6 Update 141 2017-01-17 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[69]
Java SE 6 Update 151 2017-04-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 10 security fixes[70]
Java SE 6 Update 161 2017-07-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[71]
Java SE 6 Update 171 2017-10-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 7 security fixes[72]
Java SE 6 Update 181 2018-01-16 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 12 security fixes[73]
Java SE 6 Update 191 2018-04-17 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 7 security fixes[74]
Java SE 6 Update 201 2018-07-17 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 3 security fixes[75]
Java SE 6 Update 211 2018-10-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[76]

Java SE 7

Java SE 7
CodenameDolphin[77]
ReleasedJuly 28, 2011
(12 years ago)
 (2011-07-28)
Support ended
PublicApril 2015 (2015-04)
PaidJune 2022 (2022-06)

Java 7 is a major update that was launched on July 7, 2011[78] and was made available for developers on July 28, 2011.[79] The development period was organized into thirteen milestones; on June 6, 2011, the last of the thirteen milestones was finished.[79][80] 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:[81]

  • Strings in switch[86]
  • Automatic resource management in try-statement aka try-with-resources statement[87]
  • Improved type inference for generic instance creation, aka the diamond operator <>[88]
  • Simplified varargs method declaration[89]
  • Binary integer literals[90]
  • Allowing underscores in numeric literals[91]
  • Catching multiple exception types and rethrowing exceptions with improved type checking[92]
  • Concurrency utilities under JSR 166[93]
  • 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[94][95]
  • 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[96]
  • Enhanced library-level support for new network protocols, including SCTP and Sockets Direct Protocol
  • Upstream updates to XML and Unicode
  • Java deployment rule sets[97]

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 was released in Java 9).[98][99]

Java 7 was the default version to download on java.com from April 2012 until Java 8 was released.[100]

Java 7 updates

Oracle issued public updates to the Java 7 family on a quarterly basis[101] until April 2015 when the product reached the end of its public availability.[102] Further updates for JDK 7, which continued until July 2022, are only made available to customers with a support contract.[103]

Table of Java 7 updates
Release Release date Highlights
Java SE 7[104] 2011-07-28 Initial release; HotSpot VM 21
Java SE 7 Update 1Template:Java release notes 2011-10-18 20 security fixes, other bug fixes
Java SE 7 Update 2Template:Java release notes 2011-12-12 No 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 3Template:Java release notes 2012-02-14 14 security fixes[105]
Java SE 7 Update 4Template:Java release notes 2012-04-26 No security updates; HotSpot VM 23; JDK Support for Mac OS X
Java SE 7 Update 5Template:Java release notes 2012-06-12 14 security fixes[106]
Java SE 7 Update 6Template:Java release notes 2012-08-14 JavaFX 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[107]
Java SE 7 Update 7Template:Java release notes 2012-08-30 4 security fixes[51]
Java SE 7 Update 9Template:Java release notes 2012-10-16 30 security vulnerabilities fixes[108]
Java SE 7 Update 10Template:Java release notes 2012-12-11 New 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 11Template:Java release notes 2013-01-13 Olson Data 2012i; bugfix for problems with registration of plugin on systems with Stand-alone version of JavaFX Installed, security fixes for CVE-2013-0422;[109] the default security level for Java applets and web start applications has been increased from "Medium" to "High"
Java SE 7 Update 13[110] Template:Java release notes 2013-02-01 50 security fixes
Java SE 7 Update 15Template:Java release notes 2013-02-19 5 security fixes
Java SE 7 Update 17Template:Java release notes 2013-03-04 2 security fixes
Java SE 7 Update 21Template:Java release notes 2013-04-16 Multiple 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 25Template:Java release notes 2013-06-18 Multiple changes including 40 security fixes[54][111]
Java SE 7 Update 40Template:Java release notes 2013-09-10 621 bug fixes,[112] New security features, hardfloat ARM, Java Mission Control 5.2 and Retina Display support[113]
Java SE 7 Update 45Template:Java release notes 2013-10-15 51 security fixes;[55] protections against unauthorized redistribution of Java applications; restore security prompts; JAXP changes; TimeZone.setDefault change
Java SE 7 Update 51Template:Java release notes 2014-01-14 36 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",[114][115] 17 bug fixes
Java SE 7 Update 55Template:Java release notes 2014-04-15 37 security fixes,[56] 19 bug fixes[116]
Java SE 7 Update 60Template:Java release notes 2014-05-28 Java Mission Control 5.3,[117] 130 bug fixes[118]
Java SE 7 Update 65Template:Java release notes 2014-07-15 18 bug fixesTemplate:Java release notes
Java SE 7 Update 67Template:Java release notes 2014-08-04 1 bug fix
Java SE 7 Update 71Template:Java release notes 2014-10-14 16 bug fixesTemplate:Java release notes
Java SE 7 Update 72Template:Java release notes 2014-10-14 Same release date with Update 71 as a corresponding Patch Set Update (PSU) for Java SE 7,[119] 36 bug fixesTemplate:Java release notes
Java SE 7 Update 75Template:Java release notes 2015-01-20 12 bug fixes,Template:Java release notes SSLv3 disabled by default
Java SE 7 Update 76Template:Java release notes 2015-01-20 Same release date with Update 75 as a corresponding Patch Set Update (PSU) for Java SE 7,[119] 97 bug fixesTemplate:Java release notes
Java SE 7 Update 79Template:Java release notes 2015-04-14 21 security fixes, 6 bug fixes,Template:Java release notes
Java SE 7 Update 80Template:Java release notes 2015-04-14 Last public release of Java 7; same release date with Update 79 as a corresponding Patch Set Update (PSU) for Java SE 7, 104 bug fixesTemplate:Java release notes
Java SE 7 Update 85 2015-07-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 25 security fixes[120]
Java SE 7 Update 91 2015-10-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 20 security fixes[121]
Java SE 7 Update 95 2016-01-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[122]
Java SE 7 Update 97 2016-02-05 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[65]
Java SE 7 Update 99 2016-03-23 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[123]
Java SE 7 Update 101 2016-04-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 22 security fixes[124]
Java SE 7 Update 111 2016-07-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 36 security fixes[67]
Java SE 7 Update 121 2016-10-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 32 security fixes[68]
Java SE 7 Update 131 2017-01-17 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 34 security fixes[69]
Java SE 7 Update 141 2017-04-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[125]
Java SE 7 Update 151 2017-07-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 4 security fixes[71]
Java SE 7 Update 161 2017-10-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 4 security fixes[72]
Java SE 7 Update 171 2018-01-16 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 51 security fixes[73]
Java SE 7 Update 181 2018-04-17 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 12 security fixes[74]
Java SE 7 Update 191 2018-07-17 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 9 security fixes[75]
Java SE 7 Update 201 2018-10-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[76]
Java SE 7 Update 211 2019-01-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[126]
Java SE 7 Update 221 2019-04-16 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[127]
Java SE 7 Update 231 2019-07-16 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 6 security fixes[128]
Java SE 7 Update 241 2019-10-15 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[129]
Java SE 7 Update 251 2020-01-14 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 12 security fixes[130]
Java SE 7 Update 261 2020-04-14 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[131]
Java SE 7 Update 271 2020-07-14 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes[132]
Java SE 7 Update 281 2020-10-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[133]
Java SE 7 Update 291 2021-01-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fixes[134]
Java SE 7 Update 301 2021-04-12 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes[135]
Java SE 7 Update 311 2021-07-20 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 24 bug fixes[136]
Java SE 7 Update 321 2021-10-19 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 16 bug fixes[137]
Java SE 7 Update 331 2022-01-18 Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 bug fixes[138]

Java SE 8

Java SE 8
LTS version
ReleasedMarch 18, 2014
(10 years ago)
 (2014-03-18)
# of JEPs8

Java 8 was released on March 18, 2014,[139][140] and included some features that were planned for Java 7 but later deferred.[141]

Work on features was organized in terms of JDK Enhancement Proposals (JEPs).[142]

  • JSR 335, JEP 126: Language-level support for lambda expressions (officially, lambda expressions; unofficially, closures) under Project Lambda[143] and default methods (virtual extension methods)[144][145][146] which can be used to add methods to interfaces without breaking existing implementations. There was an ongoing debate in the Java community on whether to add support for lambda expressions.[147][148] Sun later declared that lambda expressions would be included in Java and asked for community input to refine the feature.[149] Supporting lambda expressions also enables functional-style operations on streams of elements, such as MapReduce-inspired transformations on collections. Default methods can be used by 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,[144] default methods can also be used for multiple inheritance of behavior (but not state).

Java 8 is not supported on Windows XP[151] but as of JDK 8 update 25, it can still be installed and run under Windows XP.[152] Previous updates of JDK 8 could be run under XP by downloading archived zip format file and unzipping it for the executable.The last version of Java 8 could run on XP is update 251.But its components compatibility starts to break on unsupported OS in early build during Java 8 updates development.[citation needed]

From October 2014, Java 8 was the default version to download (and then again the download replacing Java 9) from the official website.[153] "Oracle will continue to provide Public Updates and auto updates of Java SE 8, Indefinitely for Personal Users".[4]

Java 8 updates

Table of Java 8 updates
Release Release date Highlights
Java SE 8 2014-03-18 Initial release
Java SE 8 Update 5[154] 2014-04-15 Using "*" in Caller-Allowable-Codebase attribute; 11 bug fixes
Java SE 8 Update 11[155] 2014-07-15 Java 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,[156] 15 bug fixes
Java SE 8 Update 20[157] 2014-08-19 669 bug fixes,[158] JMC 5.4, String deduplication (disabled by default)
Java SE 8 Update 25[159] 2014-10-14 10 bug fixes
Java SE 8 Update 31[160] 2015-01-19 26 bug fixes; SSLv3 (disabled by default)
Java SE 8 Update 40[161] 2015-03-03 645 bug fixes,[162] 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[163] 2015-04-14 13 bug fixes
Java SE 8 Update 51[164] 2015-07-14 Added support for native sandbox on Windows platforms (disabled by default); also, 25 security fixes, 14 bug fixes
Java SE 8 Update 60[165] 2015-08-18 480 bug fixes[166]
Java SE 8 Update 65[167] 2015-10-20 25 security fixes, 3 bug fixes
Java SE 8 Update 66[168] 2015-11-16 15 bug fixes
Java SE 8 Update 71[169] 2016-01-19 8 security fixes, 5 bug fixes[170]
Java SE 8 Update 72 2016-01-19 8 security fixes, 5 bug fixes, several enhancements
Java SE 8 Update 73[171] 2016-02-03 1 security fix
Java SE 8 Update 74[172] 2016-02-03 1 security fix
Java SE 8 Update 77[173] 2016-03-23 1 security fix
Java SE 8 Update 91[174] 2016-04-19 9 security fixes, 4 bug fixes and enhancements
Java SE 8 Update 92[175] 2016-04-19 Security and bug fixes from 8u91, plus 76 additional bug fixes; the ExitOnOutOfMemoryError and CrashOnOutOfMemoryError flags have been introduced
Java SE 8 Update 101[176] 2016-07-19 Security and bug fixes from 8u92, plus 9 additional bug fixes
Java SE 8 Update 102[177] 2016-07-19 Security and bug fixes from 8u101, plus 118 additional bug fixes
Java SE 8 Update 111[178] 2016-10-18 7 Security fixes and 9 bug fixes
Java SE 8 Update 112[179] 2016-10-18 Additional features and 139 bug fixes over 8u111
Java SE 8 Update 121[180] 2017-01-17 3 additional features, 5 changes, and 11 bug fixes over 8u112.
Java SE 8 Update 131[181] 2017-04-18 4 changes and 42 bug fixes (2 notable).
Java SE 8 Update 141[182] 2017-07-18 Additional feature, 3 changes and 12 bug fixes.
Java SE 8 Update 144[183] 2017-07-26 32 Security fixes and bug fixes from 8u141.
Java SE 8 Update 151[184] 2017-10-17 22 Security fixes, 2 notes, 1 certificate revocation, 1 new feature, 6 changes and 24 bug fixes from 8u144.
Java SE 8 Update 152[185] 2017-10-17 Security fixes, 1 new feature, 1 change and 238 bug fixes from 8u151 (1 notable).
Java SE 8 Update 161[186] 2018-01-16 21 Security fixes, 3 new features, 9 changes and 1 bug fix from 8u152.
Java SE 8 Update 162[187] 2018-01-16 Security fixes, 63 bug fixes.
Java SE 8 Update 171[188] 2018-04-17 Security fixes, bug fixes.
Java SE 8 Update 172[189] 2018-04-17 Security fixes, bug fixes.
Java SE 8 Update 181[190] 2018-07-17 Security fixes, bug fixes.
Java SE 8 Update 191[191] 2018-10-16 New features, changes, bug fixes, security fixes.
Java SE 8 Update 192[192] 2018-10-16 New features, changes, bug fixes.
Java SE 8 Update 201[193] 2019-01-15 New features, changes, bug fixes.
Java SE 8 Update 202[194] 2019-01-15 New features, changes, bug fixes.
Java SE 8 Update 211[195] 2019-04-16 New features, changes, bug fixes. License Update.
Java SE 8 Update 212[196] 2019-04-16 New features (e.g. 5 currency symbols, including for Bitcoin and "New Japanese Era Name Reiwa"[196]), changes, bug fixes. License Update.
Java SE 8 Update 221[197] 2019-07-16 New features, changes, bug fixes.
Java SE 8 Update 231[198] 2019-10-15 New features, changes, bug fixes and 18 security fixes.
Java SE 8 Update 241[199] 2020-01-14 New features, changes, bug fixes.
Java SE 8 Update 251[200] 2020-04-14 New features, changes, bug fixes. The last version that was shown to be working on Windows XP unofficially.
Java SE 8 Update 261[201] 2020-07-14 New features, changes, 133 bug fixes.[202]
Java SE 8 Update 271[203] 2020-10-20 New features, changes, 65 bug fixes.[204]
Java SE 8 Update 281[205] 2021-01-19 New features, changes, 33 bug fixes.[206]
Java SE 8 Update 291[207] 2021-04-20 New features, changes, 28 bug fixes.[208]
Java SE 8 Update 301[209] 2021-07-20 New features, changes, 90 bug fixes.[210]
Java SE 8 Update 311[211] 2021-10-19 New features, changes, 52 bug fixes.[212]
Java SE 8 Update 321[213] 2022-01-18 New features, changes, 62 bug fixes.[214]
Java SE 8 Update 331[215] 2022-04-19 New features, changes, 37 bug fixes.[216]
Java SE 8 Update 333[217] 2022-05-02 Patch w/1 change and 2 bug fixes.[218]
Java SE 8 Update 341[219] 2022-07-19 New features, changes, 42 bug fixes.[220]
Java SE 8 Update 351[221] 2022-10-18 New features, changes, 95 bug fixes.[222]

Java SE 9

Java SE 9
ReleasedSeptember 21, 2017
(6 years ago)
 (2017-09-21)
# of JEPs9

Java SE 9 was made available on September 21, 2017,[223] due to controversial acceptance of the current implementation of Project Jigsaw by Java Executive Committee,[224] 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.[225]

The first Java 9 release candidate was released on August 9, 2017.[231] The first stable release of Java 9 was on September 21, 2017.[232]

History

At JavaOne 2011, Oracle discussed features they hoped to release for Java 9 in 2016.[233] Java 9 should include better support for multi-gigabyte heaps, better native code integration, a different default garbage collector (G1, for "shorter response times")[234] and a self-tuning JVM.[235] In early 2016, the release of Java 9 was rescheduled for March 2017[236] and later again postponed four more months to July 2017.[237]

Java 9 updates

Release Release date Highlights
Java SE 9[238] 2017-09-21 Initial release
Java SE 9.0.1[239] 2017-10-17 October 2017 security fixes and critical bug fixes
Java SE 9.0.4[240] 2018-01-16 Final release for JDK 9; January 2018 security fixes and critical bug fixes

Java SE 10

Java SE 10
ReleasedMarch 20, 2018
(6 years ago)
 (2018-03-20)
# of JEPs12

OpenJDK 10 was released on March 20, 2018, with twelve new features confirmed.[241] Among these features were:

The first of these JEP 286 Local-Variable Type Inference, allows the var keyword to be used for local variables with the actual type calculated by the compiler. So we can do:

var list = new ArrayList<String>(); // infers ArrayList<String>
var stream = list.stream();         // infers Stream<String>

Java 10 updates

Release Release date Highlights
Java SE 10[242] 2018-03-20 Initial release
Java SE 10.0.1[243] 2018-04-17 Security fixes, 5 bug fixes[244]
Java SE 10.0.2[245] 2018-07-17 Final release for JDK 10. Security fixes, 7 bug fixes[246]

Java SE 11

Java SE 11
LTS version
ReleasedSeptember 25, 2018
(5 years ago)
 (2018-09-25)
# of JEPs17
Removal(s)
NotableJava applets, Java Web Start, JavaFX, JavaEE, and CORBA modules

JDK 11 was released on September 25, 2018 and the version is currently open for bug fixes. It offers LTS, or Long-Term Support. Among others, Java 11 includes a number of new features, such as:[247]

A number of features from previous releases were dropped; in particular, Java applets and Java Web Start are no longer available. JavaFX, Java EE and CORBA modules have been removed from JDK.[248]

Java 11 updates

Table of Java 11 updates
Release Release date Highlights
Java SE 11[249] 2018-09-25 Initial release
Java SE 11.0.1[250] 2018-10-16 Security & bug fixes
Java SE 11.0.2[251] 2019-01-15 Security & bug fixes
Java SE 11.0.3[252] 2019-04-16 New features, Security & bug fixes
Java SE 11.0.4[253] 2019-07-16 New features, Security & bug fixes;

HotSpot Windows OS Detection Correctly Identifies Windows Server 2019

Java SE 11.0.5[254] 2019-10-15 New features, Security & bug fixes
Java SE 11.0.6[255] 2020-01-14 New features, Security & bug fixes
Java SE 11.0.7[256] 2020-04-14 New features, Security & bug fixes
Java SE 11.0.8[257] 2020-07-14 New features, Security & bug fixes
Java SE 11.0.9[258] 2020-10-20 New features, Security & bug fixes
Java SE 11.0.10[259] 2021-01-19 New features, Security & bug fixes
Java SE 11.0.11[260] 2021-04-20 New features, Security & bug fixes
Java SE 11.0.12[261] 2021-07-20 New features, Security & bug fixes
Java SE 11.0.13[262] 2021-10-19 New features, Security & 93 bug fixes[263]
Java SE 11.0.14[264] 2022-01-18 New features, Security & 71 bug fixes[265]
Java SE 11.0.15[266] 2022-04-19 New features, Security & 81 bug fixes[267]
Java SE 11.0.16[268] 2022-07-19 New features, Security & 74 bug fixes[269]
Java SE 11.0.17[270] 2022-10-18 New features, Security & 118 bug fixes[271]

Java SE 12

Java SE 12
ReleasedMarch 19, 2019
(5 years ago)
 (2019-03-19)
# of JEPs8
Addition(s)
Preview(s)Enhanced switch statements

JDK 12 was released on March 19, 2019. Among others, Java 12 includes a number of new features, such as:[272]

The preview feature JEP 325 extends the switch statement so it can also be used as an expression, and adds a new form of case label where the right hand side is an expression. No break statement is needed. For complex expressions a yield statement can be used. This becomes standard in Java SE 14.

int ndays = switch(month) {
    case JAN, MAR, MAY, JUL, AUG, OCT, DEC -> 31;
    case APR, JUN, SEP, NOV -> 30;
    case FEB -> {
        if (year % 400 == 0) yield 29;
        else if (year % 100 == 0) yield 28;
        else if (year % 4 == 0) yield 29;
        else yield 28; }
};

Java 12 updates

Release Release date Highlights
Java SE 12[273] 2019-03-19 Initial release
Java SE 12.0.1[274] 2019-04-16 New Japanese Era Name & Security fixes
Java SE 12.0.2[275] 2019-07-16 Removed some root CA certificates

Java SE 13

Java SE 13
ReleasedSeptember 17, 2019
(4 years ago)
 (2019-09-17)
# of JEPs5
Addition(s)
Preview(s)Enhanced switch statements, text blocks

JDK 13 was released on September 17, 2019. Java 13 includes the following new features, as well as "hundreds of smaller enhancements and thousands of bug fixes".[276]

JEP 355 Text Blocks allows multiline string literals:

String html = """
              <html lang="en">
                  <body>
                      <p>Hello, world</p>
                  </body>
              </html>
              """;

Java 13 updates

Release Release date Highlights
Java SE 13[277] 2019-09-17 General Availability Release
Java SE 13.0.1[278] 2019-10-15 Security & bug fixes
Java SE 13.0.2[279] 2020-01-14 Security & bug fixes

Java SE 14

Java SE 14
ReleasedMarch 17, 2020
(4 years ago)
 (2020-03-17)
# of JEPs16
Addition(s)
NotableHelpful NullPointerExceptions, enhanced switch statements
Preview(s)Pattern matching for instanceof, records, text blocks
Incubatingjpackager, Foreign memory access
Removal(s)
NotableRemove Concurrent Mark Sweep garbage collector

JDK 14 was released on March 17, 2020. Java 14 includes the following new features, as well as "hundreds of smaller enhancements and thousands of bug fixes".[280]

JEP 305, Pattern Matching for instanceof simplifies the common case of an instanceof test being immediately followed by cast, replacing

if (obj instanceof String) {
    String s = (String) obj;
    System.out.println( s.length() );
}

with

if (obj instanceof String s) {
    System.out.println( s.length() );
}

JEP 359 Records allows easy creation of simple immutable Tuple-like classes.[281]

record Point(int x, int y) { }
Point p = new Point(3,4);
System.out.println( p.x() );

Java 14 updates

Release Release date Highlights
Java SE 14[282] 2020-03-17 General Availability Release
Java SE 14.0.1[283] 2020-04-14 Security & bug fixes
Java SE 14.0.2[284] 2020-07-14 Security & bug fixes

Java SE 15

Java SE 15
ReleasedSeptember 15, 2020
(3 years ago)
 (2020-09-15)
# of JEPs14
Addition(s)
NotableHidden classes, ZGC (garbage collector), Shenandoah (garbage collector), text blocks
Preview(s)Sealed classes, pattern matching of instanceof, records
IncubatingForeign-memory access
Removal(s)
NotableJavaScript engine, Solaris and SPARC ports

JDK 15 was released on September 15, 2020. Java 15 adds e.g. support for multi-line string literals (aka Text Blocks). The Shenandoah and Z garbage collectors (latter sometimes abbreviated ZGC) are now ready for use in production (i.e. no longer marked experimental). Support for Oracle's Solaris operating system (and SPARC CPUs) is dropped (while still available in e.g. Java 11). The Nashorn JavaScript Engine is removed. Also removed some root CA certificates.

JEP 360 Sealed Classes adds sealed classes and interfaces that restrict which other classes or interfaces may extend or implement them. Only those classes specified in a permits clause may extend the class or interface.

package com.example.geometry;

public abstract sealed class Shape
    permits Circle, Rectangle, Square {...}

Together with records, sealed classes are sum types. They work well with other recent features like records, switch expressions, and pattern matching for instance-of. They all form part of a system for "Pattern matching in Java" first discussed by Gavin Bierman and Brian Goetz, in September 2018.[285]

Java 15 updates

Release Release date Highlights
Java SE 15[286] 2020-09-15 General Availability Release
Java SE 15.0.1[287] 2020-10-20 Security & bug fixes
Java SE 15.0.2[288] 2021-01-19 Security & bug fixes

Java SE 16

Java SE 16
ReleasedMarch 16, 2021
(3 years ago)
 (2021-03-16)
# of JEPs17
Addition(s)
NotableWindows/AArch64 Port, jpackager, pattern matching for instanceof, records
Preview(s)Sealed classes
IncubatingForeign linker, Foreign-memory access

JDK 16 was released on March 16, 2021. Java 16 removes Ahead-of-Time compilation (and Graal JIT) options.[289] The Java implementation itself was and is still written in C++, while as of Java 16, more recent C++14 (but still not e.g. C++17 or C++20) is allowed. The code was also moved to GitHub, dropping Mercurial as the source control system.

Java 16 updates

Release Release date Highlights
Java SE 16[290] 2021-03-16 General-Availability Release
Java SE 16.0.1[291] 2021-04-20 Timezone database update, bug fixes, and security updates
Java SE 16.0.2[292] 2021-07-20 Security & bug fixes

Java SE 17

Java SE 17
LTS version
ReleasedSeptember 14, 2021
(2 years ago)
 (2021-09-14)
# of JEPs14
Addition(s)
NotablemacOS/AArch64 Port, sealed classes
Preview(s)Switch pattern matching
IncubatingVector API, Foreign function & memory API
Removal(s)
NotableAOT compiler, RMI activation, strictfp keyword made obsolete (PEP 306)

JDK 17 is the current long-term support (LTS) release since September 2021.[293] Java 17 is the 2nd long-term support (LTS) release since switching to the new 6-month release cadence (the first being Java 11).

JEP 406 extends the pattern matching syntax used in instanceof operations to switch statements and expressions. It allows cases to be selected based on the type of the argument, null cases and refining patterns

Object o = ...;
return switch (o) {
        case null       -> "Null";
        case String s   -> String.format("String %s", s);
        case Long l     -> String.format("long %d", l);
        case Double d   -> String.format("double %f", d);
        case Integer i && i > 0                            // refining patterns
                        -> String.format("positive int %d", i);
        case Integer i && i ==0 
                        -> String.format("zero int %d", i);
        case Integer i && i < 0 
                        -> String.format("negative int %d", i);
        default         -> o.toString();
    };
};

Java 17 updates

Release Release date Highlights
Java SE 17[294] 2021-09-14 General-Availability Release: Long-term support
Java SE 17.0.1+12[295] 2021-10-19 Removed IdenTrust Root Certificate,[296] Release Doesn't Correctly Recognize Windows 11,[297] System Property to Control Reconstruction of Reference Address Objects by JDK's Built-in JNDI LDAP Implementation, Release Doesn't Correctly Recognize Windows Server 2022,[298] security fixes,[299] 21 bug fixes[300]
Java SE 17.0.2+8[301] 2022-01-18 Removed Google's GlobalSign Root Certificate,[302] 164 bug fixes[303]
Java SE 17.0.3[304] 2022-04-19 New XML processing limits, Only Expose Certificates With Proper Trust Settings as Trusted Certificate Entries in macOS KeychainStore, Restricted Parsing of URL Strings in Built-in JNDI Providers, 48 bug fixes[305]
Java SE 17.0.4+11[306] 2022-07-19 HTTPS Channel Binding Support for Java GSS/Kerberos, Update java.net.InetAddress to Detect Ambiguous IPv4 Address Literals, Default JDK Compressor Will Be Closed when IOException Is Encountered, CPU Shares Ignored When Computing Active Processor Count, 60 bug fixes
Java SE 17.0.5+9[307] 2022-10-18 Disabled SHA-1 Signed JARs, Make HttpURLConnection Default Keep Alive Timeout Configurable, Update Timezone Data to 2022c, 77 bug fixes

Java SE 18

Java SE 18
ReleasedMarch 22, 2022
(2 years ago)
 (2022-03-22)
# of JEPs9
Addition(s)
Notable
  • UTF by default
  • Javadoc code snippets
Preview(s)Switch pattern matching
Incubating
  • Vector API
  • Foreign function & memory API
Removal(s)
NotableDeprecated finalization for removal

JDK 18 was released on March 22, 2022.

Java 18 updates

Release Release date Highlights
Java SE 18[308] 2022-03-22 General-Availability Release
Java SE 18.0.1[309] 2022-04-19 Security & bug fixes
Java SE 18.0.1.1[310] 2022-05-06 Security & bug fixes
Java SE 18.0.2[311] 2022-07-19 Security & bug fixes
Java SE 18.0.2.1[312] 2022-08-18 Fixes a regression in the C2 JIT compiler (see JDK-8292260)[313]

Java SE 19

Java SE 19
ReleasedSeptember 20, 2022
(21 months ago)
 (2022-09-20)
# of JEPs7
Addition(s)
Preview(s)
  • Foreign function & memory API
  • Switch pattern matching
Incubating
  • Vector API
  • Structured concurrency

JDK 19 was released on 20 September 2022.[314]

Jep 405 allows record patterns, extending the pattern matching capabilities of instanceof operators, and switch expressions, to include record patterns that explicitly refer to the components of the record.

record Rectangle(int x, int y, int w, int h) {}

int area(Object o) {
    if (o instanceof Rectangle(int x, int y, int w, int h)) {
        return w * h;
    }
    return 0;
}

Such patterns can include nested patterns, where the components of records are themselves records, allowing patterns to match more object graphs.

Java 19 updates

Release Release date Highlights
Java SE 19[315] 2022-09-20 General-Availability Release

Java SE 20

Java SE 20
ReleasingMarch 21, 2023
(14 months ago)
 (2023-03-21)
# of JEPs6
Addition(s)
IncubatingScoped values, Structured concurrency

As of September 2022, the specification for Java 20 has not yet been finalized. Java 20 is scheduled for release in March 2023.[316]

Java 20 updates

Release Release date Highlights
Latest Build[317] 2023-03-21 Early-Access Builds: Build 15 (2022-09-15)

Future features

  • Project Valhalla: Value types, objects without identity but with an efficient memory layout and leading to better results of escape analysis.
  • Project Panama: Improved interoperability with native code, to enable Java source code to call functions and use data types from other languages, in a way that is easier and has better performance than today. Vector API (a portable and relatively low-level abstraction layer for SIMD programming) is also developed under Project Panama umbrella.
  • Project Loom: Virtual threads, a lightweight user-mode scheduled alternative to standard OS managed threads. Virtual threads are mapped to OS threads in a many-to-many relationship, in contrast to the many-to-one relationship from the original green threads implementation in early versions of Java.

Implementations

The officially supported Java platform, first developed at Sun and now stewarded by Oracle, is Java SE. Releases are based on the OpenJDK project, a free and open-source project with an open development model. Other Java implementations exist, however—in part due to Java's early history as proprietary software. In contrast, some implementations were created to offer some benefits over the standard implementation, often the result of some area of academic or corporate-sponsored research. Many Linux distributions include builds of OpenJDK through the IcedTea project started by Red Hat, which provides a more straightforward build and integration environment.

Visual J++ and the Microsoft Java Virtual Machine were created as incompatible implementations. After the Sun v. Microsoft lawsuit, Microsoft abandoned it and began work on the .NET platform. In 2021, Microsoft started distributing compatible "Microsoft Build of OpenJDK" for Java 11 first then also for Java 17. Their builds support not only Windows, but also Linux and macOS.

Other proprietary Java implementations are available, such as Azul's Zing. Azul offers certified open source OpenJDK builds under the Zulu moniker.

Prior to the release of OpenJDK, while Sun's implementation was still proprietary, the GNU Classpath project was created to provide a free and open-source implementation of the Java platform. Since the release of JDK 7, when OpenJDK became the official reference implementation, the original motivation for the GNU Classpath project almost completely disappeared, and its last release was in 2012.

The Apache Harmony project was started shortly before the release of OpenJDK. After Sun's initial source code release, the Harmony project continued, working to provide an implementation under a lax license, in contrast to the protective license chosen for OpenJDK. Google later developed Android and released it under a lax license. Android incorporated parts of the Harmony project, supplemented with Google's own Dalvik virtual machine and ART. Apache Harmony has since been retired, and Google has switched its Harmony components with equivalent ones from OpenJDK.

Both Jikes and Jikes RVM are open-source research projects that IBM developed.

Several other implementations exist that started as proprietary software but are now open source. IBM initially developed OpenJ9 as the proprietary J9[318] but has since relicensed the project and donated it to the Eclipse Foundation. JRockit is a proprietary implementation that was acquired by Oracle and incorporated into subsequent OpenJDK versions.

References

  1. ^ Reinhold, Mark (2017-09-06). "Moving Java Forward Faster". Retrieved 2017-09-16.
  2. ^ "Calling 'all aboard' on the six-month Java release train". theserverside.com. 2017-09-12. Retrieved 2017-09-16.
  3. ^ a b c "Oracle Java SE Support Roadmap". www.oracle.com.
  4. ^ a b "Oracle Java SE Support Roadmap". Retrieved 2021-02-17.
  5. ^ Reinhold, Mark (2018-08-17). "What does LTS mean for OpenJDK?". Retrieved 2018-08-28.
  6. ^ "JDK 17". openjdk.java.net. Retrieved 2021-08-26.
  7. ^ "JDK 19". openjdk.java.net. Retrieved 2022-09-20.
  8. ^ "JavaSoft ships Java 1.0". Archived from the original on March 10, 2007. Retrieved 2008-02-05.
  9. ^ a b Ortiz, C. Enrique; Giguère, Éric (2001). Mobile Information Device Profile for Java 2 Micro Edition: Developer's Guide. John Wiley & Sons. ISBN 978-0471034650. Retrieved May 30, 2012.
  10. ^ Version 1.1 press release, Sun.
  11. ^ Tennant, Don (March 15, 1997). "Taligent prepares internationalisation technology for the big time". Computerworld. IDG. Retrieved January 16, 2021.
  12. ^ Version 1.2 press release, Sun.
  13. ^ Version 1.3 press release, Sun.
  14. ^ "Version 1.3 full list of changes". Archived from the original on November 7, 2006.
  15. ^ "How do I run Java on a Windows 95 computer?".
  16. ^ Version 1.4 press release.
  17. ^ "Version full 1.4 list of changes". Archived from the original on January 8, 2007.
  18. ^ a b "Java 2 Platform 5.0 and Java for Business 5.0". Oracle Corporation. 2010. Retrieved October 22, 2012.
  19. ^ "Version 1.5.0 or 5.0?". Oracle.
  20. ^ Version 1.5 press release.
  21. ^ Version 1.5 full list of changes.
  22. ^ "JSR 133, 2.4 Why isn't this need met by existing specifications?". Oracle.
  23. ^ Goetz, Brian (2006). Java Concurrency in Practice. Addison-Wesley. p. xvii. ISBN 0-321-34960-1.
  24. ^ "Java 5.0 is no longer available on Java.com". Java.com. 2009-11-03. Retrieved 2016-09-30.
  25. ^ Lineback, Nathan. "Misc Windows 2 – Nathan's Toasty Technology page". Retrieved 2016-09-30.
  26. ^ Yank, Kebin (May 3, 2005). "Java 5 available for Mac OS X". Sitepoint. Retrieved September 30, 2016.
  27. ^ "Version 1.5.0 or 5.0?". Oracle.com. Retrieved April 18, 2016.
  28. ^ Java brand naming.
  29. ^ Version 6, Java webnotes, Sun.
  30. ^ Version 1.6 press release.
  31. ^ Version 1.6 full list of changes.
  32. ^ Java Lobby Archived 2008-10-13 at the Wayback Machine.
  33. ^ "Mustang's HotSpot". Archived from the original on January 2, 2007.
  34. ^ Darcy, Joe (2008-08-03). "An apt replacement". Retrieved 2009-07-29.
  35. ^ "Install Java 6 on Mac OS X Leopard | Gephi, open source graph visualization software". Gephi.org. Retrieved 2016-09-30.
  36. ^ "Oracle Java SE Support Roadmap". Oracle Corporation. September 19, 2012. Retrieved October 22, 2012.
  37. ^ "Auto-update and update through Java Control Panel of JRE 6 will replace JRE 6 with JRE 7". Oracle Corporation. February 19, 2013. Retrieved March 2, 2013.
  38. ^ "Java SE Development Kit 6, Update 43 Release notes". Oracle Corporation. March 4, 2013. Retrieved March 4, 2013.
  39. ^ "Java SE Development Kit 6, Update 45 Release notes". Oracle Corporation. March 4, 2013. Retrieved March 4, 2013.
  40. ^ "Java SE 6 Update Release Notes". www.oracle.com.
  41. ^ a b c "Oracle Java Technologies | Oracle". www.oracle.com.
  42. ^ "Nimbus — Java.net". Archived from the original on 20 August 2011. Retrieved 1 February 2020.
  43. ^ "Sun Java 6 Update 11 Available Now, Waiting on JavaFX". FindMySoft.com. Retrieved 2009-11-13.
  44. ^ Humble, Charles (2008-05-13). "JavaOne: Garbage First". infoq.com. Retrieved 2008-09-07.
  45. ^ Coward, Dany (2008-11-12). "Java VM: Trying a new Garbage Collector for JDK 7". Archived from the original on 2011-12-08. Retrieved 2012-01-22.
  46. ^ "Breakpoints fail to hit under JDK 1.6.0_14". Retrieved 2009-07-14.
  47. ^ "Bug ID: 6862295 JDWP threadid changes during debugging session (leading to ignored breakpoints)". Retrieved 2009-07-22.
  48. ^ "Oracle Java SE Critical Patch Update Advisory - June 2011". www.oracle.com.
  49. ^ "Oracle Java SE Critical Patch Update Advisory - October 2011". www.oracle.com.
  50. ^ "Java 6 Update 32 fails to install..." MSFN. Archived from the original on 2016-08-16. Retrieved 2016-07-31.
  51. ^ a b "Oracle Security Alert for CVE-2012-4681". Oracle Corporation.
  52. ^ "Oracle Java SE Critical Patch Update Advisory - April 2013". www.oracle.com.
  53. ^ "Why should I upgrade Java ?". java.com.
  54. ^ a b "Oracle Java Critical Patch Update - June 2013". www.oracle.com.
  55. ^ a b "Oracle Critical Patch Update - October 2013". www.oracle.com.
  56. ^ a b "Oracle Critical Patch Update - April 2014". www.oracle.com.
  57. ^ "Oracle Critical Patch Update - July 2014". www.oracle.com.
  58. ^ "Oracle Critical Patch Update - October 2014". www.oracle.com.
  59. ^ "Java SE 6 Reference Implementation". Oracle Corporation. Retrieved 2016-10-24.
  60. ^ "Oracle Critical Patch Update Advisory - January 2015". www.oracle.com.
  61. ^ "Oracle Critical Patch Update - April 2015". www.oracle.com.
  62. ^ "Oracle Critical Patch Update Advisory – July 2015". Retrieved 2015-07-15.
  63. ^ "Oracle Critical Patch Update Advisory – October 2015". Retrieved 2015-10-20.
  64. ^ "Oracle Critical Patch Update Advisory – January 2016". Retrieved 2016-01-20.
  65. ^ a b "Oracle Security Alert for CVE-2016-0603". Retrieved 2016-02-08.
  66. ^ "Oracle Critical Patch Update CVSS V2 Risk Matrices – April 2016". Retrieved 2016-04-21.
  67. ^ a b "Oracle Critical Patch Update Advisory – July 2016". Retrieved 2016-07-19.
  68. ^ a b "Oracle Critical Patch Update Advisory – October 2016". Retrieved 2016-10-18.
  69. ^ a b "Oracle Critical Patch Update Advisory – January 2017". Retrieved 2017-01-17.
  70. ^ "Oracle Critical Patch Update Advisory – April 2017". Retrieved 2017-04-18.
  71. ^ a b "Oracle Critical Patch Update Advisory – July 2017". Retrieved 2017-07-18.
  72. ^ a b "Oracle Critical Patch Update Advisory – October 2017". Retrieved 2017-10-20.
  73. ^ a b "Oracle Critical Patch Update Advisory – January 2018". Retrieved 2017-10-20.
  74. ^ a b "Oracle Critical Patch Update Advisory – April 2018". Retrieved 2018-04-17.
  75. ^ a b "Oracle Critical Patch Update Advisory – July 2018". Retrieved 2018-07-17.
  76. ^ a b "Oracle Critical Patch Update Advisory – October 2018". Retrieved 2018-10-18.
  77. ^ JDK7 Archived 2016-12-15 at the Wayback Machine, Sun.
  78. ^ "Introducing Java 7 Webcast: Moving Java Forward". Oracle Corporation. July 7, 2011. Retrieved May 30, 2012.
  79. ^ a b "JDK 7". openjdk.java.net.
  80. ^ "JDK 7 Milestones". OpenJDK. Oracle Corporation. Retrieved May 30, 2012.
  81. ^ Miller, Alex. "Java 7". Retrieved 2008-05-30.
  82. ^ "JSR 292: Supporting Dynamically Typed Languages on the Java Platform". Retrieved August 25, 2013.
  83. ^ "Compressed oops in the Hotspot JVM". OpenJDK. Retrieved 2012-08-01.
  84. ^ "Java HotSpot VM Options". Oracle. Retrieved 2013-04-11.
  85. ^ "Java Programming Language Enhancements". Download.oracle.com. Retrieved 2013-01-15.
  86. ^ "Strings in switch Statements". Download.oracle.com. Retrieved 2013-01-15.
  87. ^ "The try-with-resources Statement". Download.oracle.com. Retrieved 2013-01-15.
  88. ^ "Type Inference for Generic Instance Creation". Download.oracle.com. Retrieved 2013-01-15.
  89. ^ "Improved Compiler Warnings When Using Non-Reifiable Formal Parameters with Varargs Methods". Download.oracle.com. Retrieved 2013-01-15.
  90. ^ "Binary Literals". Download.oracle.com. Retrieved 2013-01-15.
  91. ^ "Underscores in Numeric Literals". Download.oracle.com. Retrieved 2013-01-15.
  92. ^ "Catching Multiple Exception Types and Rethrowing Exceptions with Improved Type Checking". Download.oracle.com. Retrieved 2013-01-15.
  93. ^ "Concurrency JSR-166". Retrieved 2010-04-16.
  94. ^ "File I/O (Featuring NIO.2)". Java.sun.com. 2008-03-14. Retrieved 2013-01-15.
  95. ^ "Legacy File I/O Code". Java.sun.com. 2012-02-28. Retrieved 2013-01-15.
  96. ^ "JDK 7 Features". OpenJDK. 2011-07-28. Retrieved 2013-03-15.
  97. ^ "Introducing Deployment Rule Sets". Oracle. 2013-08-21. Retrieved 2019-01-22.
  98. ^ "JavaOne 2011 Keynote". Oracle. Archived from the original on 2011-10-26.
  99. ^ a b "Project Jigsaw". OpenJDK.
    "Java Module-System Requirements — DRAFT 12". Oracle.
    Krill, Paul (July 18, 2012). "Project Jigsaw delayed until Java 9". InfoWorld. Retrieved 2020-07-15.
  100. ^ "Java 7 Auto-Update and Java 6". Oracle.
  101. ^ Critical Patch Update table shows four dates per year
  102. ^ "End of Java 7 Public Updates". After April 2015, Oracle will no longer post updates of Java SE 7 to its public download sites. Existing Java SE 7 downloads already posted as of April 2015 will remain accessible in the Java Archive on the Oracle Technology Network. Developers and end-users are encouraged to update to more recent Java SE versions that remain available for public download in order to continue receiving public updates and security enhancements. [..] July 2015: Updates for Java 7 are no longer available to the public. Oracle offers updates to Java 7 only for customers who have purchased Java support or have Oracle products that require Java 7.
  103. ^ "Oracle Java SE Support Roadmap". Oracle Corporation. 2014-12-19. Retrieved 2015-01-07.
  104. ^ "JDK 7 Release Notes". www.oracle.com.
  105. ^ "Oracle Java SE Critical Patch Update Advisory - February 2012". www.oracle.com.
  106. ^ "Oracle Java SE Critical Patch Update Advisory - June 2012". www.oracle.com.
  107. ^ "Java SE 7 Update 6 Released". Archived from the original on October 27, 2012.
  108. ^ "Oracle Java SE Critical Patch Update Advisory - October 2012". www.oracle.com.
  109. ^ "Oracle Security Alert for CVE-2013-0422". Oracle Corporation.
  110. ^ "Oracle Java SE Critical Patch Update Advisory - February 2013". www.oracle.com.
  111. ^ "Oracle releases fixes for 40 Java holes - The H Security: News and Features". www.h-online.com.
  112. ^ "Java SE Development Kit 7 Update 40 Bug Fixes". www.oracle.com.
  113. ^ "Oracle JDK 7u40 released – security features, hardfloat ARM, Java Mission Control and more". Archived from the original on October 2, 2013.
  114. ^ Oracle to patch Java, other products Tuesday, ZDNet,
  115. ^ "Oracle Critical Patch Update - January 2014". www.oracle.com.
  116. ^ "Java SE Development Kit 7 Update 55 Bug Fixes". www.oracle.com.
  117. ^ "Java Mission Control 5.3 Release Notes". www.oracle.com.
  118. ^ "Java SE Development Kit 7 Update 60 Bug Fixes". www.oracle.com.
  119. ^ a b "Java CPU and PSU Releases Explained". www.oracle.com.
  120. ^ "Oracle Critical Patch Update Advisory - July 2015". www.oracle.com.
  121. ^ "Oracle Critical Patch Update Advisory - October 2015". www.oracle.com.
  122. ^ "Oracle Critical Patch Update – January 2016". www.oracle.com. Retrieved 2016-01-20.
  123. ^ "Java SE Development Kit 7, Update 99". Retrieved 2016-03-23.
  124. ^ "Oracle Critical Patch Update Advisory – April 2016". Retrieved 2016-04-18.
  125. ^ "Oracle Critical Patch Update Advisory – April 2017". Retrieved 2017-04-18.
  126. ^ "Oracle Critical Patch Update Advisory – January 2019". Retrieved 2019-04-18.
  127. ^ "Oracle Critical Patch Update Advisory – April 2019". Retrieved 2019-04-18.
  128. ^ "Oracle Critical Patch Update Advisory - July 2019". Retrieved 2020-01-07.
  129. ^ "Oracle Critical Patch Update Advisory - October 2019". Retrieved 2020-01-07.
  130. ^ "Oracle Critical Patch Update Advisory - January 2020". Retrieved 2021-04-22.
  131. ^ "Oracle Critical Patch Update Advisory - April 2020". Retrieved 2021-04-22.
  132. ^ "Oracle Critical Patch Update Advisory - July 2020". Retrieved 2021-04-22.
  133. ^ "Oracle Critical Patch Update Advisory - October 2020". Retrieved 2021-04-22.
  134. ^ "Oracle Critical Patch Update Advisory - January 2021". Retrieved 2021-04-22.
  135. ^ "Oracle Critical Patch Update Advisory - April 2021". Retrieved 2021-04-22.
  136. ^ "Release Notes for JDK 7 and JDK 7 Update Releases". Retrieved 2022-01-25.
  137. ^ "Release Notes for JDK 7 and JDK 7 Update Releases". Retrieved 2022-01-25.
  138. ^ "Release Notes for JDK 7 and JDK 7 Update Releases". Retrieved 2022-01-25.
  139. ^ "Proposed new schedule for Java 8". 2013-04-18. Retrieved 2013-04-19.
  140. ^ "JDK 8". OpenJDK. 2013-04-18. Retrieved 2014-01-28.
  141. ^ "JDK 8 features". OpenJDK. 2014-01-28. Retrieved 2014-01-28.
  142. ^ "JSR 337". Retrieved 2014-01-30.
  143. ^ "Java 7 Features". Sun Microsystems. 2010-02-09. Retrieved 2010-04-16.
  144. ^ a b "Interface evolution via virtual extension methods" (PDF). Brian Goetz. 2011-07-20. Retrieved 2014-03-27.
  145. ^ "Lambda Expressions for the Java Programming Language". Brian Goetz. 2012-10-23. Retrieved 2014-03-27.
  146. ^ "The Java Tutorials: Default Methods". Oracle. Archived from the original on 2017-05-23. Retrieved 2014-03-27.
  147. ^ Gafter, Neal (2006-08-18). "Closures for Java". Retrieved 2008-03-09.
  148. ^ Gosling, James (2008-01-31). "Closures". Archived from the original on 2011-07-22. Retrieved 2008-03-09.
  149. ^ Reinhold, Mark (2009-11-28). "Closures for Java". Retrieved 2009-11-24.
  150. ^ Darcy, Joe. "Unsigned Integer Arithmetic API now in JDK 8". blogs.oracle.com.
  151. ^ "Oracle JDK 8 and JRE 8 Certified System Configurations". Oracle Corporation. Retrieved 2014-04-15.
  152. ^ Stahl, Henrik (2014-07-11). "Updated: The future of Java on Windows XP". Oracle Corporation. Archived from the original on 2014-11-11. Retrieved 2014-11-11. JDK 8 is not supported on Windows XP. Early versions of JDK 8 had known issues with the installer on Windows XP that prevented it from installing without manual intervention. This was resolved in JDK 8 Update 25. The important point here is that we can no longer provide complete guarantees for Java on Windows XP, since the OS is no longer being updated by Microsoft. We strongly recommend that users upgrade to a newer version of Windows that is still supported by Microsoft in order to maintain a stable and secure environment.
  153. ^ Wieldt, Tori (October 27, 2014). "Java SE 8 on Java.com". blog.oracle.com. Archived from the original on November 29, 2014. Retrieved November 24, 2014.
  154. ^ "Java SE Development Kit 8, Update 5 (JDK 8u5)". oracle.com. Retrieved 2014-04-28.
  155. ^ "Java SE Development Kit 8, Update 11 (JDK 8u11)". oracle.com. Retrieved 2014-07-16.
  156. ^ "18 security bug fixes". oracle.com. Retrieved 2014-07-16.
  157. ^ "Java SE Development Kit 8, Update 20 (JDK 8u20)". oracle.com. Retrieved 2014-08-27.
  158. ^ "Java SE Development Kit 8 Update 20 Bug Fixes". www.oracle.com.
  159. ^ "Java SE Development Kit 8, Update 25 (JDK 8u25)". oracle.com. Retrieved 2014-10-14.
  160. ^ "Java SE Development Kit 8, Update 31 (JDK 8u31)". oracle.com. Retrieved 2015-01-21.
  161. ^ "Java SE Development Kit 8, Update 40 (JDK 8u40)". oracle.com. Retrieved 2015-03-04.
  162. ^ "Java SE Development Kit 8 Update 40 Bug Fixes". www.oracle.com.
  163. ^ "Java SE Development Kit 8, Update 45 (JDK 8u45)". oracle.com. Retrieved 2015-04-15.
  164. ^ "Java SE Development Kit 8, Update 51 (JDK 8u51)". oracle.com. Retrieved 2015-07-14.
  165. ^ "Java SE Development Kit 8, Update 60 (JDK 8u60)". oracle.com. Retrieved 2015-08-18.
  166. ^ "Java SE Development Kit 8 Update 60 Bug Fixes". www.oracle.com.
  167. ^ "Java SE Development Kit 8, Update 65 (JDK 8u65)". oracle.com. Retrieved 2015-10-20.
  168. ^ "Java SE Development Kit 8, Update 66 Release Notes". oracle.com. Retrieved October 22, 2015.
  169. ^ "Java SE Development Kit 8, Update 71 Release Notes". oracle.com. Retrieved January 20, 2015.
  170. ^ "Java SE Development Kit 8 Update 71 Bug Fixes". oracle.com. Retrieved January 20, 2015.
  171. ^ "Java SE Development Kit 8, Update 73 Release Notes". oracle.com. Retrieved February 6, 2016.
  172. ^ "Java SE Development Kit 8, Update 74 Release Notes". oracle.com. Retrieved February 6, 2016.
  173. ^ "Java SE Development Kit 8, Update 77 Release Notes". oracle.com. Retrieved March 23, 2016.
  174. ^ "Java SE Development Kit 8, Update 91 Release Notes". oracle.com. Retrieved March 23, 2016.
  175. ^ "Java SE Development Kit 8, Update 92 Release Notes". Retrieved March 23, 2016.
  176. ^ "Java SE Development Kit 8, Update 101 Release Notes". Retrieved July 19, 2016.
  177. ^ "Java SE Development Kit 8, Update 102 Release Notes". Retrieved July 19, 2016.
  178. ^ "Java SE Development Kit 8, Update 111 Release Notes". Retrieved October 19, 2016.
  179. ^ "Java SE Development Kit 8, Update 112 Release Notes". Retrieved October 19, 2016.
  180. ^ "Java SE Development Kit 8, Update 121 Release Notes". Retrieved January 17, 2016.
  181. ^ "Java SE Development Kit 8, Update 131 Release Notes". www.oracle.com. Retrieved 2017-04-18.
  182. ^ "Java SE Development Kit 8, Update 141 Release Notes". www.oracle.com. Retrieved 2017-07-18.
  183. ^ "Java SE Development Kit 8, Update 144 Release Notes". www.oracle.com. Retrieved 2017-07-26.
  184. ^ "Java SE Development Kit 8, Update 151 Release Notes". www.oracle.com. Retrieved 2017-10-19.
  185. ^ "Java SE Development Kit 8, Update 152 Release Notes". www.oracle.com. Retrieved 2017-10-19.
  186. ^ "Java SE Development Kit 8, Update 161 Release Notes". www.oracle.com. Retrieved 2018-01-18.
  187. ^ "Java SE Development Kit 8, Update 162 Release Notes". www.oracle.com. Retrieved 2018-01-16.
  188. ^ "Java SE Development Kit 8, Update 171 Release Notes". www.oracle.com. Retrieved 2018-04-17.
  189. ^ "Java SE Development Kit 8, Update 172 Release Notes". www.oracle.com. Retrieved 2018-04-17.
  190. ^ "Java SE Development Kit 8, Update 181 Release Notes". www.oracle.com. Retrieved 2018-07-20.
  191. ^ "Java SE Development Kit 8, Update 191 Release Notes". www.oracle.com. Retrieved 2018-10-16.
  192. ^ "Java SE Development Kit 8, Update 192 Release Notes". www.oracle.com. Retrieved 2018-10-16.
  193. ^ "Java SE Development Kit 8, Update 201 Release Notes". www.oracle.com. Retrieved 2019-01-16.
  194. ^ "Java SE Development Kit 8, Update 202 Release Notes". www.oracle.com. Retrieved 2019-01-16.
  195. ^ "Java SE Development Kit 8, Update 211 Release Notes". www.oracle.com. Retrieved 2019-04-16.
  196. ^ a b "Java SE Development Kit 8, Update 212 Release Notes". www.oracle.com. Retrieved 2019-04-16.
  197. ^ "Java SE Development Kit 8, Update 221 Release Notes". www.oracle.com. Retrieved 2019-07-30.
  198. ^ "Java SE Development Kit 8, Update 231 Release Notes". www.oracle.com. Retrieved 2019-10-16.
  199. ^ "Java SE Development Kit 8, Update 241 Release Notes". www.oracle.com. Retrieved 2020-01-18.
  200. ^ "Java SE Development Kit 8, Update 251 Release Notes". www.oracle.com. Retrieved 2020-04-14.
  201. ^ "Java SE Development Kit 8, Update 261 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  202. ^ "JDK 8u261 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  203. ^ "Java SE Development Kit 8, Update 271 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  204. ^ "JDK 8u271 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  205. ^ "Java SE Development Kit 8, Update 281 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  206. ^ "JDK 8u281 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  207. ^ "Java SE Development Kit 8, Update 291 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  208. ^ "JDK 8u291 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  209. ^ "Java SE Development Kit 8, Update 301 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  210. ^ "JDK 8u301 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  211. ^ "Java SE Development Kit 8, Update 311 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  212. ^ "JDK 8u311 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  213. ^ "Java SE Development Kit 8, Update 321 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  214. ^ "Java SE Development Kit 8, Update 321 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  215. ^ "Java SE Development Kit 8, Update 331 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  216. ^ "Java SE Development Kit 8, Update 331 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  217. ^ "Java SE Development Kit 8, Update 333 Release Notes". www.oracle.com. Retrieved 2022-05-02.
  218. ^ "Java SE Development Kit 8, Update 333 Bug Fixes". www.oracle.com. Retrieved 2022-05-02.
  219. ^ "Java SE Development Kit 8, Update 341 Release Notes". www.oracle.com. Retrieved 2022-07-30.
  220. ^ "Java SE Development Kit 8, Update 341 Bug Fixes". www.oracle.com. Retrieved 2022-07-30.
  221. ^ "Java SE Development Kit 8, Update 351 Release Notes". www.oracle.com. Retrieved 2022-10-18.
  222. ^ "Java SE Development Kit 8, Update 351 Bug Fixes". www.oracle.com. Retrieved 2022-10-18.
  223. ^ "JDK 9". Retrieved 2017-06-16.
  224. ^ "Java modularity specification opposed by Red Hat, IBM is voted down". InfoWorld. 2017-05-09. Retrieved 2017-06-16.
  225. ^ Chirgwin, Richard (July 2, 2017). "Java 9 release back on track, community votes 'yes'". tweet_btn(). Retrieved 2017-07-29.
  226. ^ "Java Platform, Standard Edition Oracle JDK 9 Migration Guide". docs.oracle.com. Retrieved 15 May 2018.
  227. ^ "OpenJDK: Project Kulla".
  228. ^ Lea, Doug (January 15, 2015). "[concurrency-interest] jdk9 Candidate classes Flow and Submission Publisher". Archived from the original on January 20, 2015. Retrieved December 24, 2015.
  229. ^ "Flow (Java SE 9 & JDK 9 )". docs.oracle.com.
  230. ^ Reactive Streams Releases First Stable Version for JVM
  231. ^ "JDK 9: First Release Candidate". 2017-08-09. Retrieved 2017-08-21.
  232. ^ "Java 9: Release date and new features". techworld.com. 2017-07-21. Retrieved 2017-09-16.
    "JDK 9". Oracle Corporation. Retrieved 2017-09-16.
  233. ^ "Mark your calendar: Java 9 finally has a release date". 2015-05-07.
  234. ^ "Java 9's new garbage collector: What's changing? What's staying?". June 26, 2015.
  235. ^ "JavaOne: JavaFX 2, Java on iOS".
  236. ^ "Java 9 Release Date Now March 2017". 2016-01-05.
  237. ^ "JDK 9 release delayed another four months". The Register. Retrieved 2016-10-14.
  238. ^ "Java Development Kit 9 Release Notes". oracle.com. 21 September 2017. Retrieved 3 October 2017.
  239. ^ "JDK 9.0.1 Release Notes". oracle.com. 2017-10-17. Retrieved 2017-10-19.
  240. ^ "JDK 9.0.4 Release Notes". oracle.com. 2018-01-16. Retrieved 2018-01-16.
  241. ^ OpenJDK. "JDK 10".
  242. ^ "JDK 10 Release Notes". oracle.com. 2018-03-20. Retrieved 2018-03-20.
  243. ^ "JDK 10.0.1 Release Notes". oracle.com. 2018-04-17. Retrieved 2018-04-17.
  244. ^ "JDK 10.0.1 Bug Fixes". oracle.com. 2018-04-17. Retrieved 2018-04-17.
  245. ^ "JDK 10.0.2 Release Notes". oracle.com. 2018-07-17. Retrieved 2019-04-16.
  246. ^ "JDK 10.0.2 Bug Fixes". oracle.com. 2018-07-17. Retrieved 2019-04-16.
  247. ^ OpenJDK. "JDK 11".
  248. ^ "Oracle JDK Migration Guide". Oracle Help Center. Retrieved 27 September 2018.
  249. ^ "JDK 11". openjdk.java.net. 2018-09-25. Retrieved 2018-11-13.
  250. ^ "JDK 11.0.1 Release Notes". oracle.com. 2018-10-16. Retrieved 2018-11-13.
  251. ^ "JDK 11.0.2 Release Notes". oracle.com. 2019-01-15. Retrieved 2019-01-16.
  252. ^ "JDK 11.0.3 Release Notes". oracle.com. 2019-04-16. Retrieved 2019-04-16.
  253. ^ "JDK 11.0.4 Release Notes". oracle.com. 2019-07-16. Retrieved 2019-07-30.
  254. ^ "JDK 11.0.5 Release Notes". oracle.com. 2019-10-15. Retrieved 2019-10-16.
  255. ^ "JDK 11.0.6 Release Notes". oracle.com. 2020-01-14. Retrieved 2020-01-18.
  256. ^ "JDK 11.0.7 Release Notes". oracle.com. 2020-04-14. Retrieved 2020-04-14.
  257. ^ "JDK 11.0.8 Release Notes". oracle.com. 2020-07-14. Retrieved 2020-07-14.
  258. ^ "JDK 11.0.9 Release Notes". oracle.com. 2020-10-20. Retrieved 2020-11-03.
  259. ^ "JDK 11.0.10 Release Notes". oracle.com. 2021-01-19. Retrieved 2021-01-20.
  260. ^ "JDK 11.0.11 Release Notes". oracle.com. 2021-04-20. Retrieved 2021-04-20.
  261. ^ "JDK 11.0.12 Release Notes". oracle.com. 2021-07-20. Retrieved 2021-07-20.
  262. ^ "JDK 11.0.13+10 Release Notes". oracle.com. 2021-10-19.
  263. ^ "JDK 11.0.13 Bug Fixes". oracle.com. 2021-10-19.
  264. ^ "JDK 11.0.14 Release Notes". oracle.com. 2022-01-18.
  265. ^ "JDK 11.0.14 Bug Fixes". oracle.com. 2022-01-18.
  266. ^ "JDK 11.0.15 Release Notes". oracle.com. 2022-04-19.
  267. ^ "JDK 11.0.15 Bug Fixes". oracle.com. 2022-04-19.
  268. ^ "JDK 11.0.16 Release Notes". oracle.com. 2022-07-19.
  269. ^ "JDK 11.0.16 Bug Fixes". oracle.com. 2022-07-19.
  270. ^ "JDK 11.0.17 Release Notes". oracle.com. 2022-10-19.
  271. ^ "JDK 11.0.17 Bug Fixes". oracle.com. 2022-10-19.
  272. ^ OpenJDK. "12".
  273. ^ "JDK 12 Release Notes". openjdk.java.net. 2019-03-19. Retrieved 2019-03-19.
  274. ^ "JDK 12.0.1 Release Notes". openjdk.java.net. 2019-04-16. Retrieved 2019-04-16.
  275. ^ "JDK 12.0.2 Release Notes". openjdk.java.net. 2019-07-16. Retrieved 2021-02-08.
  276. ^ oracle.com, mark reinhold at (September 17, 2019). "Java 13 / JDK 13: General Availability".
  277. ^ "JDK 13". openjdk.java.net. 2019-09-17. Retrieved 2019-09-17.
  278. ^ "JDK 13.0.1 Release Notes". oracle.com. 2019-10-15. Retrieved 2019-10-16.
  279. ^ "Java SE Development Kit 13, 13.0.2 Release Notes". www.oracle.com. Retrieved 2020-01-15.
  280. ^ oracle.com, mark reinhold at (March 17, 2020). "Java 14 / JDK 14: General Availability".
  281. ^ Evans, Ben (January 10, 2020). "Records Come to Java". Java Magazine. Oracle. Retrieved 10 July 2021.
  282. ^ "JDK 14". openjdk.java.net. 2020-03-17. Retrieved 2020-04-01.
  283. ^ "Java SE Development Kit 14, 14.0.1 Release Notes". www.oracle.com. Retrieved 2020-04-14.
  284. ^ "Java SE Development Kit 14, 14.0.2 Release Notes". www.oracle.com. Retrieved 2020-07-23.
  285. ^ Gavin Bierman; Brian Goetz (September 2018). "Pattern Matching for Java". cr.openjdk.java.net. Retrieved 2021-04-28.
  286. ^ "JDK 15". openjdk.java.net. 2020-09-15. Retrieved 2020-09-16.
  287. ^ "JDK 15.0.1 Release Notes". www.oracle.com. 2020-10-20. Retrieved 2020-10-21.
  288. ^ "JDK 15.0.2 Release Notes". www.oracle.com. 2021-01-19. Retrieved 2021-01-25.
  289. ^ "[JDK-8255616] Removal of experimental features AOT and Graal JIT - Java Bug System". bugs.openjdk.java.net. Retrieved 2021-02-19.
  290. ^ "JDK 16". openjdk.java.net. Retrieved 2021-02-19.
  291. ^ "JDK 16.0.1 Release Notes". Oracle. 2021-04-20. Retrieved 2021-04-28.
  292. ^ "JDK 16.0.2 Release Notes". Oracle. 2021-07-20. Retrieved 2021-07-22.
  293. ^ "JDK 17". openjdk.java.net. Retrieved 2021-09-17.
  294. ^ "JDK 17". openjdk.java.net. 2021-06-17. Retrieved 2021-06-22.
  295. ^ "JDK 17.0.1 Release Notes". www.oracle.com. 2021-10-19. Retrieved 2021-10-22.
  296. ^ "Remove IdenTrust certificate that is expiring in September 2021". openjdk.java.net. 2021-07-22. Retrieved 2021-10-22.
  297. ^ "Update OS detection code to recognize Windows 11". openjdk.java.net. 2021-07-22. Retrieved 2021-10-22.
  298. ^ "Update OS detection code to recognize Windows Server 2022". openjdk.java.net. 2021-07-22. Retrieved 2021-10-22.
  299. ^ "Oracle Critical Patch Update Advisory - October 2021". www.oracle.com. 2021-07-22. Retrieved 2021-10-22.
  300. ^ "JDK 17.0.1 Bug Fixes". www.oracle.com. 2021-10-18. Retrieved 2021-10-23.
  301. ^ "JDK 17.0.2 Release Notes". www.oracle.com. 2022-01-18. Retrieved 2022-01-23.
  302. ^ "Remove globalsignr2ca root from 17.0.2". openjdk.java.net. 2022-01-22. Retrieved 2022-01-22.
  303. ^ "JDK 17.0.2 Bug Fixes". www.oracle.com. 2022-01-18. Retrieved 2022-01-23.
  304. ^ "JDK 17.0.3 Release Notes". www.oracle.com. 2022-04-19. Retrieved 2022-05-01.
  305. ^ "JDK 17.0.3 Bug Fixes". www.oracle.com. 2022-04-19. Retrieved 2022-05-01.
  306. ^ "JDK 17.0.4 Release Notes". www.oracle.com. 2022-07-19. Retrieved 2022-12-04.
  307. ^ "JDK 17.0.5 Release Notes". www.oracle.com. 2022-10-18. Retrieved 2022-12-04.
  308. ^ "JDK 18 Release Notes". Oracle. 2022-03-22. Retrieved 2022-06-14.
  309. ^ "JDK 18.0.1 Release Notes". Oracle. 2022-04-19. Retrieved 2022-06-14.
  310. ^ "JDK 18.0.1.1 Release Notes". Oracle. 2022-05-06. Retrieved 2022-06-14.
  311. ^ "JDK 18.0.2 Release Notes". July 19, 2022. Retrieved August 2, 2022.
  312. ^ "JDK Patch 18.0.2.1 Release Notes". August 18, 2022. Retrieved September 23, 2022.
  313. ^ "C2 crash when allocating array of size too large".
  314. ^ "JDK 19". openjdk.org. Retrieved 2022-09-19.
  315. ^ "JDK 19 Release Notes". Oracle. 2022-09-20. Retrieved 2022-09-20.
  316. ^ "Java SE 20 Platform JSR 395". openjdk.org. Retrieved 2022-09-20.
  317. ^ "JDK 20". openjdk.java.net. 2022-09-15. Retrieved 2022-09-20.
  318. ^ "Downloads - Overview". July 18, 2016.

Updates

External links