blob: 9d68e83cbeae35d4ee9d20e4a269b95750c4ff8a [file] [log] [blame]
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
20<document>
21 <properties>
22 <title>commons-compress</title>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000023 </properties>
24 <body>
Stefan Bodewig2318ba32009-06-30 07:25:44 +000025 <release version="1.1" date="as in SVN" description="Release 1.1">
Stefan Bodewigd7ea9ff2010-03-12 15:35:44 +000026 <action type="fix" date="2010-03-12" issue="COMPRESS-101">
27 ZipArchiveInputStream should now properly read archives that
28 use data descriptors but without the "unofficial" signature.
29 </action>
Stefan Bodewig30e1cc82010-03-09 11:23:41 +000030 <action type="add" date="2010-03-09" issue="COMPRESS-98">
31 The ZIP classes will throw specialized exceptions if any
32 attempt is made to read or write data that uses zip features
33 not supported (yet).
34 </action>
Stefan Bodewigade93792010-03-08 12:00:25 +000035 <action type="add" date="2010-03-08" issue="COMPRESS-99">
36 ZipFile#getEntries returns entries in a predictable order -
37 the order they appear inside the central directory.
38 A new method getEntriesInPhysicalOrder returns entries in
39 order of the entry data, i.e. the order ZipArchiveInputStream
40 would see.
41 </action>
Stefan Bodewige0ffbc12010-02-19 10:59:01 +000042 <action type="add" date="2010-02-19">
Stefan Bodewige0692ec2010-02-24 15:35:47 +000043 The Archive*Stream and ZipFile classes now have
44 can(Read|Write)EntryData methods that can be used to check
45 whether a given entry's data can be read/written.
Stefan Bodewiga33505b2010-02-19 12:23:27 +000046 The method currently returns false for ZIP archives if an
47 entry uses an unsupported compression method or encryption.
Stefan Bodewige0ffbc12010-02-19 10:59:01 +000048 </action>
49 <action type="add" date="2010-02-19" issue="COMPRESS-89">
50 The ZIP classes now detect encrypted entries.
51 </action>
Stefan Bodewiga1015f32010-02-18 16:11:13 +000052 <action type="fix" date="2010-02-18" issue="COMPRESS-74">
53 ZipArchiveInputStream failed to update the number of bytes
54 read properly.
55 </action>
56 <action type="fix" date="2010-02-18">
57 ArchiveInputStream has a new method getBytesRead that should
58 be preferred over getCount since the later may truncate the
59 number of bytes read for big archives.
60 </action>
Stefan Bodewig315b9472010-02-18 14:56:03 +000061 <action type="fix" date="2010-02-18" issue="COMPRESS-85">
62 The cpio archives created by CpioArchiveOutputStream couldn't
63 be read by many existing native implementations because the
64 archives contained multiple entries with the same inode/device
65 combinations and weren't padded to a blocksize of 512 bytes.
66 </action>
Stefan Bodewig91695e42010-02-16 13:59:03 +000067 <action type="fix" date="2010-02-16" issue="COMPRESS-73">
68 ZipArchiveEntry, ZipFile and ZipArchiveInputStream are now
69 more lenient when parsing extra fields.
70 </action>
Stefan Bodewig292e1852010-03-04 15:54:09 +000071 <action type="add" date="2010-02-12" issue="COMPRESS-97">
72 Added autodetection of compression format to
73 CompressorStreamFactory.
74 </action>
Stefan Bodewig124f97c2010-02-12 11:35:14 +000075 <action type="fix" date="2010-02-12">
76 Improved exception message if the extra field data in ZIP
77 archives cannot be parsed.
78 </action>
79 <action type="add" issue="COMPRESS-95" date="2010-01-29"
Christian Grobmeiere7517b82010-01-29 07:47:21 +000080 due-to="Joerg Bellmann">
81 Improve ExceptionMessages in ArchiveStreamFactory
82 </action>
Stefan Bodewig5066e9a2010-01-07 09:34:55 +000083 <action type="fix" issue="COMPRESS-94" date="2010-01-07"
84 due-to="Anon Devs">
85 ZipArchiveEntry's equals method was broken for entries created
86 with the String-arg constructor. This lead to broken ZIP
87 archives if two different entries had the same hash code.
88 </action>
Stefan Bodewigdc3fc472009-10-30 05:29:17 +000089 <action type="fix" issue="COMPRESS-87" date="2009-10-30"
90 due-to="Antoni Mylka">
91 ZipArchiveInputStream could repeatedly return 0 on read() when
92 the archive was truncated.
93 </action>
Stefan Bodewig7bb5d882009-10-08 12:07:19 +000094 <action type="fix" issue="COMPRESS-86" date="2009-10-08">
95 Tar archive entries holding the file name for names longer
96 than 100 characters in GNU longfile mode didn't properly
97 specify they'd be using the "oldgnu" extension.
98 </action>
Stefan Bodewig3e2ddad2009-08-25 08:11:44 +000099 <action type="add" date="2009-08-25">
100 A new constructor of TarArchiveEntry can create entries with
101 names that start with slashes - the default is to strip
102 leading slashes in order to create relative path names.
103 </action>
Stefan Bodewig7be8ef62009-08-01 20:25:13 +0000104 <action issue="COMPRESS-83" type="fix" date="2009-08-01">
105 Delegate all read and write methods in GZip stream in order to
106 speed up operations.
107 </action>
108 <action type="add" date="2009-08-01">
109 ArchiveEntry now has a getLastModifiedDate method.
110 </action>
111 <action type="fix" date="2009-08-01">
112 The ar and cpio streams now properly read and write last
113 modified times.
114 </action>
Stefan Bodewig2318ba32009-06-30 07:25:44 +0000115 <action issue="COMPRESS-81" type="fix" date="2009-06-30">
116 TarOutputStream can leave garbage at the end of the archive
117 </action>
Stefan Bodewig47b706e2009-06-30 08:23:08 +0000118 <action issue="COMPRESS-78" type="add" date="2009-06-30"
119 due-to="Jukka Zitting">
120 Add a BZip2Utils class modelled after GZipUtils
121 </action>
Stefan Bodewig2318ba32009-06-30 07:25:44 +0000122 </release>
123 <release version="1.0" date="2009-05-21" description="First Public Release">
124 <action dev="all" type="add" date="2009-05-21">
Christian Grobmeier35ac05e2009-05-10 17:32:20 +0000125 Initial release
126 </action>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000127 <action dev="sgoeschl" type="fix">
128 Updating the pom.xml for preparing a move to commons-proper
129 </action>
130 </release>
131 </body>
132</document>