blob: 2c006d7e1f51286e18c9a476516d39b181c13897 [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 Bodewigade93792010-03-08 12:00:25 +000026 <action type="add" date="2010-03-08" issue="COMPRESS-99">
27 ZipFile#getEntries returns entries in a predictable order -
28 the order they appear inside the central directory.
29 A new method getEntriesInPhysicalOrder returns entries in
30 order of the entry data, i.e. the order ZipArchiveInputStream
31 would see.
32 </action>
Stefan Bodewige0ffbc12010-02-19 10:59:01 +000033 <action type="add" date="2010-02-19">
Stefan Bodewige0692ec2010-02-24 15:35:47 +000034 The Archive*Stream and ZipFile classes now have
35 can(Read|Write)EntryData methods that can be used to check
36 whether a given entry's data can be read/written.
Stefan Bodewiga33505b2010-02-19 12:23:27 +000037 The method currently returns false for ZIP archives if an
38 entry uses an unsupported compression method or encryption.
Stefan Bodewige0ffbc12010-02-19 10:59:01 +000039 </action>
40 <action type="add" date="2010-02-19" issue="COMPRESS-89">
41 The ZIP classes now detect encrypted entries.
42 </action>
Stefan Bodewiga1015f32010-02-18 16:11:13 +000043 <action type="fix" date="2010-02-18" issue="COMPRESS-74">
44 ZipArchiveInputStream failed to update the number of bytes
45 read properly.
46 </action>
47 <action type="fix" date="2010-02-18">
48 ArchiveInputStream has a new method getBytesRead that should
49 be preferred over getCount since the later may truncate the
50 number of bytes read for big archives.
51 </action>
Stefan Bodewig315b9472010-02-18 14:56:03 +000052 <action type="fix" date="2010-02-18" issue="COMPRESS-85">
53 The cpio archives created by CpioArchiveOutputStream couldn't
54 be read by many existing native implementations because the
55 archives contained multiple entries with the same inode/device
56 combinations and weren't padded to a blocksize of 512 bytes.
57 </action>
Stefan Bodewig91695e42010-02-16 13:59:03 +000058 <action type="fix" date="2010-02-16" issue="COMPRESS-73">
59 ZipArchiveEntry, ZipFile and ZipArchiveInputStream are now
60 more lenient when parsing extra fields.
61 </action>
Stefan Bodewig292e1852010-03-04 15:54:09 +000062 <action type="add" date="2010-02-12" issue="COMPRESS-97">
63 Added autodetection of compression format to
64 CompressorStreamFactory.
65 </action>
Stefan Bodewig124f97c2010-02-12 11:35:14 +000066 <action type="fix" date="2010-02-12">
67 Improved exception message if the extra field data in ZIP
68 archives cannot be parsed.
69 </action>
70 <action type="add" issue="COMPRESS-95" date="2010-01-29"
Christian Grobmeiere7517b82010-01-29 07:47:21 +000071 due-to="Joerg Bellmann">
72 Improve ExceptionMessages in ArchiveStreamFactory
73 </action>
Stefan Bodewig5066e9a2010-01-07 09:34:55 +000074 <action type="fix" issue="COMPRESS-94" date="2010-01-07"
75 due-to="Anon Devs">
76 ZipArchiveEntry's equals method was broken for entries created
77 with the String-arg constructor. This lead to broken ZIP
78 archives if two different entries had the same hash code.
79 </action>
Stefan Bodewigdc3fc472009-10-30 05:29:17 +000080 <action type="fix" issue="COMPRESS-87" date="2009-10-30"
81 due-to="Antoni Mylka">
82 ZipArchiveInputStream could repeatedly return 0 on read() when
83 the archive was truncated.
84 </action>
Stefan Bodewig7bb5d882009-10-08 12:07:19 +000085 <action type="fix" issue="COMPRESS-86" date="2009-10-08">
86 Tar archive entries holding the file name for names longer
87 than 100 characters in GNU longfile mode didn't properly
88 specify they'd be using the "oldgnu" extension.
89 </action>
Stefan Bodewig3e2ddad2009-08-25 08:11:44 +000090 <action type="add" date="2009-08-25">
91 A new constructor of TarArchiveEntry can create entries with
92 names that start with slashes - the default is to strip
93 leading slashes in order to create relative path names.
94 </action>
Stefan Bodewig7be8ef62009-08-01 20:25:13 +000095 <action issue="COMPRESS-83" type="fix" date="2009-08-01">
96 Delegate all read and write methods in GZip stream in order to
97 speed up operations.
98 </action>
99 <action type="add" date="2009-08-01">
100 ArchiveEntry now has a getLastModifiedDate method.
101 </action>
102 <action type="fix" date="2009-08-01">
103 The ar and cpio streams now properly read and write last
104 modified times.
105 </action>
Stefan Bodewig2318ba32009-06-30 07:25:44 +0000106 <action issue="COMPRESS-81" type="fix" date="2009-06-30">
107 TarOutputStream can leave garbage at the end of the archive
108 </action>
Stefan Bodewig47b706e2009-06-30 08:23:08 +0000109 <action issue="COMPRESS-78" type="add" date="2009-06-30"
110 due-to="Jukka Zitting">
111 Add a BZip2Utils class modelled after GZipUtils
112 </action>
Stefan Bodewig2318ba32009-06-30 07:25:44 +0000113 </release>
114 <release version="1.0" date="2009-05-21" description="First Public Release">
115 <action dev="all" type="add" date="2009-05-21">
Christian Grobmeier35ac05e2009-05-10 17:32:20 +0000116 Initial release
117 </action>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000118 <action dev="sgoeschl" type="fix">
119 Updating the pom.xml for preparing a move to commons-proper
120 </action>
121 </release>
122 </body>
123</document>