You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2015/11/19 12:35:47 UTC

svn commit: r11239 - in /dev/commons/net: ./ binaries/ source/

Author: sebb
Date: Thu Nov 19 11:35:47 2015
New Revision: 11239

Log:
Staging Net 3.4 RC1

Added:
    dev/commons/net/RELEASE-NOTES.txt   (with props)
    dev/commons/net/binaries/commons-net-3.4-bin.tar.gz   (with props)
    dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.asc
    dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.md5
    dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.sha1
    dev/commons/net/binaries/commons-net-3.4-bin.zip   (with props)
    dev/commons/net/binaries/commons-net-3.4-bin.zip.asc
    dev/commons/net/binaries/commons-net-3.4-bin.zip.md5
    dev/commons/net/binaries/commons-net-3.4-bin.zip.sha1
    dev/commons/net/source/commons-net-3.4-src.tar.gz   (with props)
    dev/commons/net/source/commons-net-3.4-src.tar.gz.asc
    dev/commons/net/source/commons-net-3.4-src.tar.gz.md5
    dev/commons/net/source/commons-net-3.4-src.tar.gz.sha1
    dev/commons/net/source/commons-net-3.4-src.zip   (with props)
    dev/commons/net/source/commons-net-3.4-src.zip.asc
    dev/commons/net/source/commons-net-3.4-src.zip.md5
    dev/commons/net/source/commons-net-3.4-src.zip.sha1

Added: dev/commons/net/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/net/RELEASE-NOTES.txt (added)
+++ dev/commons/net/RELEASE-NOTES.txt Thu Nov 19 11:35:47 2015
@@ -0,0 +1,86 @@
+              Apache Apache Commons Net
+                  Version 3.4
+                 RELEASE NOTES
+
+The Apache Commons Net team is pleased to announce the release of Apache Apache Commons Net 3.4
+
+Apache Commons Net library contains a collection of network utilities and protocol implementations.
+Supported protocols include: Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S), Telnet, Whois
+
+This is mainly a bug-fix release. See further details below.
+
+This release is binary compatible with previous releases.
+ However it is not source compatible, as some methods have been added to the interface NtpV3Packet
+
+Notable additions:
+ IMAPExportMbox (example app) allows IMAP folders to be exported into an mbox file.
+ This is the inverse of the IMAPImportMbox example added previously
+
+Changes in this version include:
+
+New features:
+o NET-528:  FTPListParseEngine does not provide access to raw responses
+o NET-565:  Add FTPClient method to return an FTPFile from an MDTM command
+o NET-540:  Article#printThread should have option to use any PrintStream
+o NET-536:  IMAP FETCH example
+            IMAPExportMbox can export selected nessages from an IMAP folder
+o NET-535:  IMAP FETCH can overflow reply buffer; provide for partial responses
+o NET-527:  Add SimpleNTPServer as example and for testing Thanks to jason mathews.
+o NET-512:  Downloading files or members from the AS400 QSYS file system is not supported Thanks to Thomas Raddatz.
+
+Fixed Bugs:
+o NET-581:  SimpleSMTPHeader fails to supply the required Date: header
+o NET-582:  SimpleSMTPHeader does not allow for missing To: field
+o NET-580:  SMTPClient.sendSimpleMessage() silently ignores failed recipients
+            Update Javadoc Thanks to Simon Arlott.
+o NET-579:  SSL/TLS SocketClients do not verify the hostname against the certificate Thanks to Simon Arlott.
+o NET-538:  FTPHTTPClient should use socket factory to create sockets Thanks to Dzmitry.
+o NET-566:  UnixFTPEntryParser Drops Leading Spaces from File Names Thanks to Gary Russell.
+o NET-552:  SocketTimeoutException connecting a FTP server via an HTTP Proxy Thanks to Quentin Devriendt.
+o NET-563:  MLSxEntryParser needs test cases; parsing is too lax
+o NET-561:  FTPFile.toFormattedString prints user and group in wrong order
+o NET-544:  FTPClient.initiateListParsing does not correctly check if parserKey was cached Thanks to Olivier Queyrut.
+o NET-558:  FTPClient.getModificationTime(filename) returns complete received line including response code and EOL
+            Strip the response code and EOL Thanks to Ralph Becker.
+o NET-550:  Default FTPClient bufferSize results in very slow retrieve transfers
+            Fix code in Util#copyStream (also copyReader) that failed to use the proper default for buffer size 0 Thanks to Geoffrey Hardy.
+o NET-551:  Util copyReader calls CopyStreamListener.bytesTransferred with the incorrect value for bytesTransferred
+o NET-549:  Telnet does not convert LF to CRLF in ASCII mode Thanks to Pradeep Natarajan.
+o NET-543:  telnet: spy read EOL is reversed Thanks to Ferry Huberts.
+o NET-539:  NPE if Threader.thread invoked with empty list or with null array
+o NET-530:  input parameter of org.apache.commons.net.ftp.FTP.__getReply(boolean) is not used Thanks to fish ship.
+o NET-529:  SubnetUtils throws exception on valid input Thanks to Putinas Piliponis.
+o NET-516:  parser problem occurs if the filename contains one or more characters of which the second byte of Shift-JIS code is 0x85
+            Fix NT parser Thanks to Asha K S & pavan.
+o NET-520:  SubnetUtils("0.0.0.0/0") does not behave as expected
+            Fixed range checking so network and broadcast addresses are treated as unsigned ints
+o NET-521:  SubnetUtils.SubnetInfo.getAddressCount() can overflow as it returns an int
+o NET-515:  FTPClient sample in class javadoc "bug" Thanks to Sebastian Ritter.
+o NET-519:  Apache Commons Net 3.3 has a performance issue
+o NET-517:  FTPClient#reinitialize is package protected Thanks to David Kocher.
+o NET-518:  FTPClient#initFeatureMap should not initialize empty map if reply code is 530 Thanks to David Kocher.
+o NET-514:  IMAP APPEND multiple issues in IMapClient.
+            Deprecated unusable append methods.
+            Added new append method, as well as example IMapImportMbox class to make use of it.
+o NET-511:  Exception for new SubnetUtils("0.0.0.0/0"). Thanks to Kyriacos Elia, Daniel Scott.
+
+Changes:
+o NET-576:  Allow FTPClient to use SYST response if system type is not specified in configuration
+o NET-575:  FTPClientExample should support setting the date format
+o           examples/Main now uses a property file to define aliases instead of scanning class files
+o NET-564:  FTPFile.toFormattedString - allow specification of TimeZone for display
+o NET-562:  FTPFile.toFormattedString should print only signficant parts of the parsed date
+o NET-554:  Simplify TelnetOptionHandler class hierarchy
+o NET-556:  Make SubnetInfo.isInRange(int) public Thanks to Andy Rosa.
+o           Added control character processing to TelnetClientExample
+o NET-547:  There is a lack of documentation regarding setControlKeepAliveTimeout Thanks to Fabio Scippacercola.
+o NET-534:  Unnecesssary call to getReplyString() if no listeners configured
+o           Added control encoding option to FTPClientExample
+o NET-526:  Added missing set methods on NTP class and interface Thanks to Jason Mathews, MITRE Corp.
+o NET-526:  Avoid greedy matches within a regex
+
+
+For complete information on Apache Commons Net, including instructions on how to submit bug reports,
+patches, or suggestions for improvement, see the Apache Apache Commons Net website:
+
+http://commons.apache.org/proper/commons-net/
\ No newline at end of file

Propchange: dev/commons/net/RELEASE-NOTES.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/commons/net/binaries/commons-net-3.4-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/net/binaries/commons-net-3.4-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.asc
==============================================================================
--- dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.asc (added)
+++ dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.asc Thu Nov 19 11:35:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJWTaghAAoJEHqIYJRPrV9iE5AP/1eDSJyXS+WEemAwHHMr3pzC
+ZLWYpRTcGc8l3hqBTNJX5sSm85Rof3eTQ6XosygWlYK6SuYm7zkH8pDilX721eMp
+Rgp7oDr79fOU2B6NK+Xi8NXfz2r+JfvkK2ksHR1q89rPKLeTb2mYh5frvzCEMyN6
+5eGk2dqjEo+Yj27wBmsWulwqIGwSbOttvE2F5s8KEbmx/RHN+ZrCpvvEoNVG2tVD
+iRM3TwX9R+opXBbV1ldLv7rrkL0d4CozrKar+AThqfaiCTECCPE4pCFMGQ2tz0Nb
+BEPHsPWR37XzOdSJ7uUwUZr6oGtRoldTU8wibErHG1FiZqrVBPw/z7pWonVDjiZ8
+Z5vF5gPb0xY87bVnGCXyGkGNBzl/PHXOSQpP4D0NperbN5wkucxpi6w2qG7xs8yo
+qzok1KF8fBp7Kp/zn0m3caIFhVIReWcQ4lTRotOyeHodbeyHLI8BnHFX5csvJOfc
+Dnc64qJmr687u2CTHjyHWMEzlyRRsocNjMSo7hZFpbF/chUqNfLe3mSd9QMhsSjL
+Eywda+xVGjMA83WiVnaf/nZb/YTKr6VCOk6s38sRX7/jtVOt8Nm0Azd2peSutxIe
+WFRCsaf5wnp4ouvxNoA2oQoFwuUIDyIN1ieTG4LD9bRovXEFYk7feVXoQOFxYHER
+9iDvVOz0qxeKPBfUaStR
+=ScO7
+-----END PGP SIGNATURE-----

Added: dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.md5
==============================================================================
--- dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.md5 (added)
+++ dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.md5 Thu Nov 19 11:35:47 2015
@@ -0,0 +1 @@
+730ee1b82bf6284b0cb2d790d3bdf0da
\ No newline at end of file

Added: dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.sha1
==============================================================================
--- dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.sha1 (added)
+++ dev/commons/net/binaries/commons-net-3.4-bin.tar.gz.sha1 Thu Nov 19 11:35:47 2015
@@ -0,0 +1 @@
+5ae8d25aab040cc40c9ae9541a826a2f1682928e
\ No newline at end of file

Added: dev/commons/net/binaries/commons-net-3.4-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/net/binaries/commons-net-3.4-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/net/binaries/commons-net-3.4-bin.zip.asc
==============================================================================
--- dev/commons/net/binaries/commons-net-3.4-bin.zip.asc (added)
+++ dev/commons/net/binaries/commons-net-3.4-bin.zip.asc Thu Nov 19 11:35:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJWTaghAAoJEHqIYJRPrV9ins4P/A9noUCScJIRCBsXqRuiZLWe
+4t1gbvTdZIjQdNpjWqEGMJuOCNctbuhTf6E+S+g0aPet9RfNkxy9Ns/CoVuppXgJ
+c+VngH0faF8FiTQ0zSj7FM+vYauDjAbm7Ty6yBlVV7h32fCdPD+tPBeEQ4c8NAcP
+hDaj9d9cv8Bp/BBnbG8AqkzxrZH2yZeoyoEhvmJyrrSEn6/Tn1+1Wq3IRRZPUaRW
+vSVGdxxaUoFhZrypDD+IoaEvQBC0DJsoLoakuW6Vs9TItky8Qt4SGS+cnGbhT1E0
+4MyatFGSgmuo1FzAIWcES6GihVytt/+iwCuFrK7dGRXM9TuJ5aRq3cgkEYTAvdFG
+FlkoJbNIbdO+EHExRRivbqcSN70OnhifE4esqfXg/EU4ZY4qpOqG9iIWnJExmLyC
++cBJDwF8laf6xkYZXup/+gWdKEYKpI8zjwJTf/pNMLxbdOjz+nuDNBsmpMOoTW0G
+ZJjMHcuiFsqrNfiefGKS9zplCmltEalUhdnE8SvsDALILHkBzWR+suUxyeMrEvrR
+UP1xEOUaBUQtJV9dPOiCEChDAabOSaROl1m1+WzyZYHuCquUnVHStT9iupT/a44O
+O5E6p1DcNE78sFKIWZ4pZLNBM6+tRJ/IR6x9g6UNUmhP6e/LYH0QEdv1s+OklsyK
+0RtaFq6hsitJ7Z2Ex+2t
+=2UGa
+-----END PGP SIGNATURE-----

Added: dev/commons/net/binaries/commons-net-3.4-bin.zip.md5
==============================================================================
--- dev/commons/net/binaries/commons-net-3.4-bin.zip.md5 (added)
+++ dev/commons/net/binaries/commons-net-3.4-bin.zip.md5 Thu Nov 19 11:35:47 2015
@@ -0,0 +1 @@
+4920c722352af4a9533d89ad0ba335cf
\ No newline at end of file

Added: dev/commons/net/binaries/commons-net-3.4-bin.zip.sha1
==============================================================================
--- dev/commons/net/binaries/commons-net-3.4-bin.zip.sha1 (added)
+++ dev/commons/net/binaries/commons-net-3.4-bin.zip.sha1 Thu Nov 19 11:35:47 2015
@@ -0,0 +1 @@
+3bb6c64af84837b35c849add9bfcf51a1775cc6f
\ No newline at end of file

Added: dev/commons/net/source/commons-net-3.4-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/net/source/commons-net-3.4-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/commons/net/source/commons-net-3.4-src.tar.gz.asc
==============================================================================
--- dev/commons/net/source/commons-net-3.4-src.tar.gz.asc (added)
+++ dev/commons/net/source/commons-net-3.4-src.tar.gz.asc Thu Nov 19 11:35:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJWTaghAAoJEHqIYJRPrV9iZ9AP/j9UupW49Xt/rsjGpZ2N9GI8
+BEWq5odiRyY6C/uZhZgekmeErYIyn33InUjR2uSDsV5Hpey1oZ1jOe9wl0qD3T8R
+OBtZv9+7xm9NB3emev5YswELn25WanSOL9n6vr7DrP0D9LblSsxir3T2Rb8dCGnD
+095TXPcPuTWRQ+Wc6CTmQmOmY2KxL+lCFdOWplE454k+7gPA2tSkpNUZ/eF0DYLP
+MpuUqBahv1Wn1Tl5JkL8qGBCkQYkLQWBRM5WuJpNFLeAoC4yKQaMC86LHThjxb4C
+IaYh/7QZMglcrtUHi/WwM7vYYcwG8MI+aSr5iMNCzXu0bU3giZQHwxvabBHAJ1fW
+tnHwycHZT/zqldyfH/p2e9Ay0OCBMMNuaEZGLgoAXZ4+JlD0NcOGnNnDqD02/5RO
+NgG6uzD50WNOKF8RT0blYXmSe+AIuDdjhDT5BEh2Ow5lRExZ6WZAL3vj1k0h9Zyn
+DLqPCYVnq14UDmMTQq56xwrFlLyXSyBx9A5WdtCbe2xc2S1JvrLw1cnkWfdeWOYO
+u3VHP8kE8fvW8dSCrv8ty3JTm895QxvL8N7yVvwrEF0vOEKbP3oAFPRielIRsKqw
+A2QbOQfeCGVKtUI2Mjvucqjcktas5UICI5STMsjBB/XvUm9YUXbiYcoWCwQiQLqx
+e/2RApNaCCCK5xg2pznK
+=AYhK
+-----END PGP SIGNATURE-----

Added: dev/commons/net/source/commons-net-3.4-src.tar.gz.md5
==============================================================================
--- dev/commons/net/source/commons-net-3.4-src.tar.gz.md5 (added)
+++ dev/commons/net/source/commons-net-3.4-src.tar.gz.md5 Thu Nov 19 11:35:47 2015
@@ -0,0 +1 @@
+d2946097fa00e8223135eb3ac630b25a
\ No newline at end of file

Added: dev/commons/net/source/commons-net-3.4-src.tar.gz.sha1
==============================================================================
--- dev/commons/net/source/commons-net-3.4-src.tar.gz.sha1 (added)
+++ dev/commons/net/source/commons-net-3.4-src.tar.gz.sha1 Thu Nov 19 11:35:47 2015
@@ -0,0 +1 @@
+b5eda4e1e488894aa3a671c462a6a18812a6b048
\ No newline at end of file

Added: dev/commons/net/source/commons-net-3.4-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/net/source/commons-net-3.4-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/net/source/commons-net-3.4-src.zip.asc
==============================================================================
--- dev/commons/net/source/commons-net-3.4-src.zip.asc (added)
+++ dev/commons/net/source/commons-net-3.4-src.zip.asc Thu Nov 19 11:35:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJWTaghAAoJEHqIYJRPrV9iDp8QAIuor9Vt9mcdYQgsp9Xj78Wm
+TEEWNaV3z7hGkG4HDMBPajFIBucCBt/gpM9VsQSKKpUtiMsJy47chEzFsRO9HfCc
+cBkaQrfzk5VsJU+j09iazUNmEteSpj7ZpfTPfU7InHI8FceWjbRfUZo3O34jSPP+
+XQFn56Jw+y65WjCmqLxSYOE2JVKaB21/9QrLc2XqZ7vBNiLvT8t6gwS64LuSL/9K
+ZnbU9gPnZ1HNlmCv74Y8WawepbJ+1gaB3/LqbmyZi/02hxVajidwc1YIiV+f99hR
+Egl49iem2Ppw0i3TVohqgpTYt3h8TRQtAHCGIg0DapPx/HiT/+j1vwGL2r/dKok8
+1JlN7U//hh7Av+t4zsV2sFtdqlMXoQuWF887jWDuiKPs11jr11H/M0OKZ2Wur4vW
+EFu3LixXZFHt+uUp1pOmb+5prmfsYriOhXMCDJ0W2NcSy6uV3g/EgQrgttCJed4e
+Ua0ocHqQalAsPs5mfkQa8FNfYpybm2UMm25jGotZchuG8TaTkSLZuGNvm3ZSyeS6
+U1hO19QIQgfL+FaUKBPVn55g66sZWq9RJJEI6ZrvF0cMdZmU8u9K2sqEvvqdtz/x
+G81nYSsmbX8pLIi1ZgfIzj8NIcEWb2vQrrvIE7msNpXNPEKL0FRkVI0Q8cnObn5o
+e7wPKhvBhpF0kPDb1F7U
+=Lobn
+-----END PGP SIGNATURE-----

Added: dev/commons/net/source/commons-net-3.4-src.zip.md5
==============================================================================
--- dev/commons/net/source/commons-net-3.4-src.zip.md5 (added)
+++ dev/commons/net/source/commons-net-3.4-src.zip.md5 Thu Nov 19 11:35:47 2015
@@ -0,0 +1 @@
+ceb30bfe26642e57344da0a6f79a430f
\ No newline at end of file

Added: dev/commons/net/source/commons-net-3.4-src.zip.sha1
==============================================================================
--- dev/commons/net/source/commons-net-3.4-src.zip.sha1 (added)
+++ dev/commons/net/source/commons-net-3.4-src.zip.sha1 Thu Nov 19 11:35:47 2015
@@ -0,0 +1 @@
+fe6331b710ea744f91e3f9d41d721984b486b75a
\ No newline at end of file