Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6610F91F0 for ; Sun, 4 Dec 2011 22:12:26 +0000 (UTC) Received: (qmail 88592 invoked by uid 500); 4 Dec 2011 22:12:26 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 88506 invoked by uid 500); 4 Dec 2011 22:12:26 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 88499 invoked by uid 99); 4 Dec 2011 22:12:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Dec 2011 22:12:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Dec 2011 22:12:24 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 06DD923889E2 for ; Sun, 4 Dec 2011 22:12:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1210254 - /commons/proper/email/trunk/RELEASE-NOTES.txt Date: Sun, 04 Dec 2011 22:12:03 -0000 To: commits@commons.apache.org From: sgoeschl@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111204221204.06DD923889E2@eris.apache.org> Author: sgoeschl Date: Sun Dec 4 22:12:03 2011 New Revision: 1210254 URL: http://svn.apache.org/viewvc?rev=1210254&view=rev Log: Preparing 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=1210254&r1=1210253&r2=1210254&view=diff ============================================================================== --- commons/proper/email/trunk/RELEASE-NOTES.txt (original) +++ commons/proper/email/trunk/RELEASE-NOTES.txt Sun Dec 4 22:12:03 2011 @@ -1,5 +1,5 @@ Commons Email Package - Version 1.2 + Version 1.3 Release Notes INTRODUCTION: @@ -24,40 +24,53 @@ CHANGES FROM 1.2: == New Features == -o Adding ImageHtmlEmail to create HTML emails with embedded images either - downloaded from HTTP or from the local file system. - Issue: EMAIL-92. Thanks to Dominik Stadler. +* HtmlmageEmail should support class path resources + Issue: EMAIL-108. Thanks to Elisabeth Kasimir, Alexander Kasimir. -o Added MimeMessageParser and MimeMessageUtils. +* Added a MultiPartEmail.attach(File) method since attaching a file is a simple and common. -== Misc == - -o Moving the various constants from 'EMail' to 'EmailConstants' +* Added MimeMessageParser and MimeMessageUtils. == Fixed Bugs == -o Throwing an IllegalStateException when setting mail session properties - for an already created mail session because the settings would be - ignored. Please note that this change could potentially break existing - (but invalid) code. Issue: EMAIL-96. - -o Encoding and folding of headers is now done by commons-email. - Issue: EMAIL-98. Thanks to Mario Daepp. - -o The default connection timeout is set to a reasonable default value of - 60 seconds. Issue: EMAIL-100. Thanks to David Parks. - -o All setters are returning "this" to simplify building an email. - Issue: EMAIL-76. Thanks to Yu Kobayashi. - -o Calling buildMimeMessage() before invoking send() caused duplicated - mime parts for HtmlEmail. The implementation now enforces that an email - can be only used once and throw an exception when multiple invocations of - buildMimeMessage() are detected. Issue: EMAIL-95. - -o Incorrect SMTP Port number shown in error message when an email fails - to send due to a blocked port and SSL is used. - Issue: EMAIL-91. Thanks to Kevin Lester. +* Added mime.types to META-INF - the definition is actually found in activation.jar + but did not work. Issue: EMAIL-107. Thanks to Claus Polanka, Michael Jakl. + +* STARTTLS can be used even without authenticator. Issue: EMAIL-106. Thanks to Bruno Harbulot. + +* Clarified the meaning of setTLS() which actually sends a "STARTTLS" command from the + client to the SMTP server. Please note that some "protected" variables were renamed + which could break existing code. Issue: EMAIL-105. Thanks to Bruno Harbulot. + +* Fixed HtmlEmail embed toLowerCase bug with Turkish locale. Issue: EMAIL-102. Thanks to Okan Özeren. + +* Specified Content-ID is now used when embedding a File object in an HtmlEmail. + Issue: EMAIL-101. Thanks to Andrew Starodub. + +* Restore Java 1.4 compatibility. + +* Throwing an IllegalStateException when setting mail session properties for an already + created mail session because the settings would be ignored. Please note that this + change could potentially break existing (but invalid) code. Issue: EMAIL-96. + +* Encoding and folding of headers is now done by commons-email. Issue: EMAIL-98. Thanks to Mario Daepp. + +* The default connection timeout is set to a reasonable default value of 60 seconds. Issue: EMAIL-100. Thanks to David Parks. + +* Moving the various constants from 'EMail' to 'EmailConstants' + +* All setters are returning "this" to simplify building an email. Issue: EMAIL-76. Thanks to Yu Kobayashi. + +* Adding ImageHtmlEmail to create HTML emails with embedded images either + downloaded from HTTP or from the local file system. Issue: EMAIL-92. Thanks to Dominik Stadler. + +* Calling buildMimeMessage() before invoking send() caused + duplicated mime parts for HtmlEmail. The implementation now enforces + that an email can be only used once and throw an exception when + multiple invocations of buildMimeMessage() are detected. Issue: EMAIL-95. + +* Incorrect SMTP Port number shown in error message when an email fails + to send due to a blocked port and SSL is used. Issue: EMAIL-91. Thanks to Kevin Lester. CHANGES FROM 1.1: @@ -142,7 +155,4 @@ Java 2 Enterprise Edition 1.4 users must JavaMail and JAF indicated above are available to their applications; the J2EE 1.4 specification only requires earlier versions. -Earlier versions of J2EE are not supported. - - - +Earlier versions of J2EE are not supported. \ No newline at end of file