Note that the current version of javax.mail is 1.6.0 and requires Java 7 IIRC.
Gary ---------- Forwarded message ---------- From: <sgoes...@apache.org> Date: Thu, Jul 20, 2017 at 12:34 PM Subject: svn commit: r1802527 - /commons/proper/email/trunk/RELEASE-NOTES.txt To: comm...@commons.apache.org Author: sgoeschl Date: Thu Jul 20 19:34:23 2017 New Revision: 1802527 URL: http://svn.apache.org/viewvc?rev=1802527&view=rev Log: Update release notes for upcoming commons-email 1.5 release Modified: commons/proper/email/trunk/RELEASE-NOTES.txt Modified: commons/proper/email/trunk/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/commons/proper/email/trunk/ RELEASE-NOTES.txt?rev=1802527&r1=1802526&r2=1802527&view=diff ============================================================ ================== --- commons/proper/email/trunk/RELEASE-NOTES.txt (original) +++ commons/proper/email/trunk/RELEASE-NOTES.txt Thu Jul 20 19:34:23 2017 @@ -1,5 +1,5 @@ Commons Email Package - Version 1.4 + Version 1.5 Release Notes INTRODUCTION: @@ -15,8 +15,45 @@ downloads, reports, and bug status: http://commons.apache.org/email/ -This is a minor release which adds some new features and fixes several bugs -present in the 1.3.3 release. All current users are encouraged to upgrade. +This is a major release which adds some new features and fixes several bugs +present in the 1.4.0 release. All current users are encouraged to upgrade. + +CHANGES FROM 1.4: +----------------- + +== Compatibility == + +* Java 6 or later is required. + +* JavaMail dependency has been upgraded to version 1.5.6, + as a consequence, the maven dependency has changed to: + + <dependency> + <groupId>com.sun.mail</groupId> + <artifactId>javax.mail</artifactId> + <version>1.5.6</version> + </dependency> + +== New Features == + +* Add Support for International Domain Names. This change requires JDK 1.6+. +Issue: EMAIL-160 + +* Add Email#getHeader(String) and Email#getHeaders() methods. +Issue: EMAIL-154. Thanks to Ken Geis, Balachandran Sivakumar + +== Updates == + +* Update Oracle JavaMail dependency from 1.5.2 to 1.5.6. + Issue: EMAIL-165. + +* Remove "javax.activation" dependency since it is included in JDK 1.6 + Issue: EMAIL-161. + +== Fixed Bugs == + +* DataSourceClassPathResolver doesn't close InputStream when resolving resources +Issue: EMAIL-167. Thanks to Lucian Burja. CHANGES FROM 1.3.3: -----------------