Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 34137 invoked from network); 12 Jul 2010 16:48:38 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 12 Jul 2010 16:48:38 -0000 Received: (qmail 74923 invoked by uid 500); 12 Jul 2010 16:48:38 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 74858 invoked by uid 500); 12 Jul 2010 16:48:37 -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 74850 invoked by uid 99); 12 Jul 2010 16:48:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jul 2010 16:48:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Mon, 12 Jul 2010 16:48:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 152CF2388A5F; Mon, 12 Jul 2010 16:47:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r963346 - in /commons/proper/net/branches/NET_2_0: RELEASE-NOTES.txt src/changes/changes.xml Date: Mon, 12 Jul 2010 16:47:41 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100712164741.152CF2388A5F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Mon Jul 12 16:47:40 2010 New Revision: 963346 URL: http://svn.apache.org/viewvc?rev=963346&view=rev Log: Recent changes Modified: commons/proper/net/branches/NET_2_0/RELEASE-NOTES.txt commons/proper/net/branches/NET_2_0/src/changes/changes.xml Modified: commons/proper/net/branches/NET_2_0/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/RELEASE-NOTES.txt?rev=963346&r1=963345&r2=963346&view=diff ============================================================================== --- commons/proper/net/branches/NET_2_0/RELEASE-NOTES.txt (original) +++ commons/proper/net/branches/NET_2_0/RELEASE-NOTES.txt Mon Jul 12 16:47:40 2010 @@ -12,11 +12,16 @@ See the detailed list of changes below f Changes in this version include: New features: +o NET-244: Add support for FTPFileFilter filters. New classes FTPFileFilter, FTPFileFilters, new methods: + FTPListParseEngine#getFiles(FTPFileFilter filter) + FTPClient.listFiles(String pathname, FTPFileFilter filter) o NET-74: Testcase to show WindowSizeOptionHandler is working OK o NET-263: SubnetUtils / SubNetInfo toString() implementations o Javadoc fixes, improvements, and refactoring. Fixed Bugs: +o NET-313: Optionally enable EPSV with IPv4; Only send EPRT with IPv6. + Fix incorrect port used with EPRT. Allow activeMaxPort == activeMinPort in getActivePort() method. o NET-328: FromNetASCIIInputStream.read(byte[], int, int) may change length passed to superclass if not doing conversion o NET-330: The method VMSFTPEntryParser.parseFileList(InputStream listStream) should not be present. Mark method as deprecated and to be removed Modified: commons/proper/net/branches/NET_2_0/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/changes/changes.xml?rev=963346&r1=963345&r2=963346&view=diff ============================================================================== --- commons/proper/net/branches/NET_2_0/src/changes/changes.xml (original) +++ commons/proper/net/branches/NET_2_0/src/changes/changes.xml Mon Jul 12 16:47:40 2010 @@ -61,6 +61,15 @@ This is primarily a maintenance release, TO BE COMPLETED "> + + Add support for FTPFileFilter filters. New classes FTPFileFilter, FTPFileFilters, new methods: + FTPListParseEngine#getFiles(FTPFileFilter filter) + FTPClient.listFiles(String pathname, FTPFileFilter filter) + + + Optionally enable EPSV with IPv4; Only send EPRT with IPv6. + Fix incorrect port used with EPRT. Allow activeMaxPort == activeMinPort in getActivePort() method. + FromNetASCIIInputStream.read(byte[], int, int) may change length passed to superclass if not doing conversion