aboutsummaryrefslogtreecommitdiff
path: root/RELEASE-NOTES.txt
diff options
context:
space:
mode:
authorNiall Pemberton <niallp@apache.org>2010-12-23 03:32:58 +0000
committerNiall Pemberton <niallp@apache.org>2010-12-23 03:32:58 +0000
commitf37d91a5137eb89a9c8053cb4eefc523232e7c00 (patch)
tree6d78d91658c6154af8c4a65f833137b7b19a21dd /RELEASE-NOTES.txt
parent97191772383bc267d16497c884a1c8b90033911b (diff)
downloadapache-commons-io-f37d91a5137eb89a9c8053cb4eefc523232e7c00.tar.gz
prepare for IO 2.0.1 release
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1052167 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'RELEASE-NOTES.txt')
-rw-r--r--RELEASE-NOTES.txt109
1 files changed, 9 insertions, 100 deletions
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 8611759d..cbecaf78 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,7 +1,7 @@
$Id$
Commons IO Package
- Version 2.0
+ Version 2.0.1
Release Notes
@@ -15,8 +15,8 @@ Commons IO contains utility classes, stream implementations, file filters,
file comparators and endian transformation classes.
-Compatibility with 1.4
-----------------------
+Compatibility with 2.0 and 1.4
+------------------------------
Binary compatible - Yes
Source compatible - Yes
@@ -24,112 +24,21 @@ Source compatible - Yes
Semantic compatible - Yes
Check the bug fixes section for semantic bug fixes
-Commons IO 2.0 requires a minimum of JDK 1.5
+Commons IO 2.0.1 requires a minimum of JDK 1.5
(Commons IO 1.4 had a minimum of JDK 1.3)
-Deprecations from 1.4
+Enhancements from 2.0
---------------------
-- IOUtils
- - write(StringBuffer, Writer) in favour of write(CharSequence, Writer)
- - write(StringBuffer, OutputStream) in favour of write(CharSequence, OutputStream)
- - write(StringBuffer, OutputStream, String) in favour of write(CharSequence, OutputStream, String)
-
-- FileFilterUtils
- - andFileFilter(IOFileFilter, IOFileFilter) in favour of and(IOFileFilter...)
- - orFileFilter(IOFileFilter, IOFileFilter) in favour of or(IOFileFilter...)
+ * [IO-256] - Provide thread factory for FileAlternationMonitor
-Enhancements from 1.4
----------------------
-
- * [IO-140] Move minimum Java requirement from JDK 1.3 to JDK 1.5
- - use Generics
- - add new CharSequence write() flavour methods to IOUtils and FileUtils
- - replace StringBuffer with StringBuilder, where appropriate
- - add new Reader/Writer methods to ProxyReader and ProxyWriter
- - Annotate with @Override and @Deprecated
-
- * [IO-178] New BOMInputStream and ByteOrderMark implementations - to detect and optionally exclude an initial Byte Order mark (BOM)
- * [IO-197] New BoundedInputStream (copied from from Apache JackRabbit)
- * [IO-193] New Broken Input and Output streams
- * [IO-132] New File Listener/Monitor facility
- * [IO-158] New ReaderInputStream and WriterOutputStream implementations
- * [IO-139] New StringBuilder Writer implementation
- * [IO-192] New Tagged Input and Output streams
- * [IO-177] New Tailer class - simple implementation of the Unix "tail -f" functionality
- * [IO-162] New XML Stream Reader/Writer implementations (from ROME via plexus-utils)
-
- * [IO-142] Comparators - add facility to sort file lists/arrays
- * [IO-186] Comparators - new Composite and Directory File Comparator implementations
- * [IO-176] DirectoryWalker - add filterDirectoryContents() callback method for filtering directory contents
- * [IO-210] FileFilter - new Magic Number FileFilter
- * [IO-221] FileFilterUtils - add methods for suffix and prefix filters which take an IOCase object
- * [IO-232] FileFilterUtils - add method for name filters which take an IOCase object
- * [IO-229] FileFilterUtils - add varargs and() and or() methods
- * [IO-198] FileFilterUtils - add ability to apply file filters to collections and arrays
- * [IO-156] FilenameUtils - add normalize() and normalizeNoEndSeparator() methods which allow the separator character to be specified
- * [IO-194] FileSystemUtils - add freeSpaceKb() method with no input arguments
- * [IO-185] FileSystemUtils - add freeSpaceKb() methods that take a timeout parameter - fixes freeSpaceWindows() blocks
- * [IO-155] FileUtils - use NIO to copy files
- * [IO-168] FileUtils - add new isSymlink() method
- * [IO-219] FileUtils - throw FileExistsException when moving a file or directory if the destination already exists
- * [IO-234] FileUtils - add Methods for retrieving System User/Temp directories/paths
- * [IO-208] FileUtils - add timeout (connection and read) support for copyURLToFile() method
- * [IO-238] FileUtils - add sizeOf(File) method
- * [IO-181] LineIterator now implements Iterable
- * [IO-224] IOUtils - add closeQuietly(Closeable) and closeQuietly(Socket) methods
- * [IO-203] IOUtils - add skipFully() method for InputStreams
- * [IO-137] IOUtils and ByteArrayOutputStream - add toBufferedInputStream() method to avoid unnecessary array allocation/copy
- * [IO-195] Proxy streams/Reader/Writer - provide exception handling methods
- * [IO-211] Proxy Input/Output streams - add pre/post processing support
- * [IO-242] Proxy Reader/Writer - add pre/post processing support
-
-
-Bug fixes from 1.4
+Bug fixes from 2.0
------------------
- * [IO-214] ByteArrayOutputStream - fix inconsistent synchronization of fields
- * [IO-201] Counting Input/Output streams - fix inconsistent synchronization
- * [IO-159] FileCleaningTracker - fix remove() never returns null
- * [IO-220] FileCleaningTracker - fix Vector performs badly under load
- * [IO-167] FilenameUtils - fix case-insensitive string handling in FilenameUtils and FilesystemUtils
- * [IO-179] FilenameUtils - fix StringIndexOutOfBounds exception in getPathNoEndSeparator()
- * [IO-248] FilenameUtils - fix getFullPathNoEndSeparator() returns empty while path is a one level directory
- * [IO-246] FilenameUtils - fix wildcardMatch gives incorrect results
- * [IO-187] FileSystemUtils - fix freeSpaceKb() doesn't work with relative paths on Linux
- * [IO-160] FileSystemUtils - fix freeSpace() fails on solaris
- * [IO-209] FileSystemUtils - fix freeSpaceKb() fails to return correct size for a windows mount point
- * [IO-163] FileUtils - fix toURLs() using deprecated method of conversion to URL
- * [IO-168] FileUtils - fix Symbolic links followed when deleting directory
- * [IO-231] FileUtils - fix wrong exception message generated in isFileNewer() method
- * [IO-207] FileUtils - fix race condition in forceMkdir() method
- * [IO-217] FileUtils - fix copyDirectoryToDirectory() makes infinite loops
- * [IO-166] FileUtils - fix URL decoding in toFile(URL)
- * [IO-190] FileUtils - fix copyDirectory not preserving lastmodified date on sub-directories
- * [IO-240] FileFilterUtils - ensure cvsFilter and svnFilter are only created once.
- * [IO-175] IOUtils - fix copyFile() issues with very large files
- * [IO-191] Improvements from static analysis
- * [IO-216] LockableFileWriter - delete files quietly when an exception is thrown during initialization
- * [IO-243] SwappedDataInputStream - fix readBoolean is inverted
- * [IO-235] Tests - remove unused YellOnFlushAndCloseOutputStream from CopyUtilsTest
- * [IO-161] Tests - fix FileCleaningTrackerTestCase hanging
-
-
-Documentation changes from 1.4
-------------------------------
- * [IO-183 FilenameUtils.getExtension() method documentation improvements
- * [IO-226 FileUtils.byteCountToDisplaySize() documentation corrections
- * [IO-205 FileUtils.forceMkdir() documentation improvements
- * [IO-215 FileUtils copy file/directory improve documentation regarding preserving the last modified date
- * [IO-189 HexDump.dump() method documentation improvements
- * [IO-171 IOCase document that it assumes there are only two OSes: Windows and Unix
- * [IO-223 IOUtils.copy() documentation corrections
- * [IO-247 IOUtils.closeQuietly() improve documentation with examples
- * [IO-202 NotFileFilter documentation corrections
- * [IO-206 ProxyInputStream - fix misleading parameter names
- * [IO-212 ProxyInputStream.skip() documentation corrections
+ * [IO-257] - BOMInputStream.read(byte[]) can return 0 which it should not
+ * [IO-258] - XmlStreamReader consumes the stream during encoding detection
Feedback
--------