blob: d91d24e0327b91b697e1f089fc82ccf427d1cae3 [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-->
Sebastian Bazley48882f12010-04-13 21:02:37 +000020
21<!--
22This file is also used by the maven-changes-plugin to generate the release notes.
23Useful ways of finding items to add to this file are:
24
Sebastian Bazley27dea242010-05-10 17:42:37 +0000251. Add items when you fix a bug or add a feature (this makes the
Sebastian Bazley48882f12010-04-13 21:02:37 +000026release process easy :-).
27
282. Do a JIRA search for tickets closed since the previous release.
29
303. Use the report generated by the maven-changelog-plugin to see all
31SVN commits. TBA how to use this with SVN.
32
33To generate the release notes from this file:
34
Sebastian Bazley7badf0e2012-03-31 12:06:33 +000035mvn changes:announcement-generate -Prelease-notes [-Dchanges.version=m.n]
Sebastian Bazley48882f12010-04-13 21:02:37 +000036
37The <action> type attribute can be add,update,fix,remove.
38-->
39
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000040<document>
41 <properties>
42 <title>commons-compress</title>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000043 </properties>
44 <body>
Stefan Bodewiga7be29e2013-03-14 08:37:14 +000045 <release version="1.6" date="not released, yet"
46 description="Release 1.6">
Stefan Bodewigd4baeb12013-04-25 13:36:09 +000047 <action type="fix" date="2013-04-25" issue="COMPRESS-223"
48 due-to="Jeremy Gustie">
49 TarBuffer.tryToConsumeSecondEOFRecord could throw a
50 NullPointerException
51 </action>
Stefan Bodewig026afc52013-06-04 04:26:51 +000052 <action type="add" date="2013-05-07" issue="COMPRESS-54"
53 due-to="Damjan Jovanovic">
54 Added read-only support for 7z archives that don't use
55 LZMA compression.
56 </action>
57 <action type="add" date="2013-05-19" issue="COMPRESS-226"
58 due-to="Damjan Jovanovic">
59 Added read-only support for ARJ archives that don't use
60 compression.
61 </action>
Stefan Bodewige860d2f2013-05-26 17:36:35 +000062 <action type="fix" date="2013-05-26" issue="COMPRESS-228">
63 Parsing of zip64 extra fields has become more lenient in order
64 to be able to read archives created by DotNetZip and maybe
65 other archivers as well.
66 </action>
Stefan Bodewig601e4d72013-06-03 09:20:30 +000067 <action type="fix" date="2013-06-03" issue="COMPRESS-229"
68 due-to="Christoph Gysin">
69 TAR will now properly read the names of symbolic links with
70 long names that use the GNU variant to specify the long file
71 name.
72 </action>
Stefan Bodewig026afc52013-06-04 04:26:51 +000073 <action type="fix" date="2013-06-04" issue="COMPRESS-227">
Stefan Bodewig866f6d22013-08-09 07:13:06 +000074 ZipFile#getInputStream could return null if the archive
Stefan Bodewig026afc52013-06-04 04:26:51 +000075 contained duplicate entries.
76 The class now also provides two new methods to obtain all
77 entries of a given name rather than just the first one.
78 </action>
Stefan Bodewigd57a6622013-07-08 14:25:37 +000079 <action type="update" date="2013-07-08" issue="COMPRESS-232"
80 due-to="BELUGA BEHR">
81 Readabilty patch to TarArchiveInputStream.
82 </action>
Stefan Bodewig040e42d2013-08-08 16:18:45 +000083 <action type="update" date="2013-08-08" issue="COMPRESS-234"
Stefan Bodewigd2bcb032013-07-08 15:09:16 +000084 due-to="BELUGA BEHR">
Stefan Bodewiga671a702013-08-08 15:57:55 +000085 Performance improvements to TarArchiveInputStream, in
86 particular to the skip method.
Stefan Bodewigd2bcb032013-07-08 15:09:16 +000087 </action>
Stefan Bodewig040e42d2013-08-08 16:18:45 +000088 <action type="fix" date="2013-08-08" issue="COMPRESS-236"
89 due-to="Andrew Duffy">
90 CpioArchiveInputStream failed to read archives created by
91 Redline RPM.
92 </action>
Stefan Bodewig2ba22032013-08-09 06:51:18 +000093 <action type="fix" date="2013-08-09" issue="COMPRESS-237"
94 due-to="Emmanuel Bourg">
95 TarArchiveOutputStream now properly handles link names that
96 are too long to fit into a traditional TAR header.
97 </action>
Stefan Bodewig5972cab2013-08-10 16:22:49 +000098 <action type="add" date="2013-08-10">
99 DumpArchiveInputStream now supports an encoding parameter that
100 can be used to specify the default encoding of file names.
101 </action>
Stefan Bodewiga7be29e2013-03-14 08:37:14 +0000102 </release>
103 <release version="1.5" date="2013-03-14"
Stefan Bodewig9bdacbf2012-07-07 05:30:40 +0000104 description="Release 1.5">
Sebastian Bazley853576a2013-02-19 17:18:57 +0000105 <action type="fix" date="2012-02-19" issue="COMPRESS-218"
106 due-to="Gili">
107 Typo in CompressorStreamFactory Javadoc
108 </action>
Stefan Bodewigc96b2e22012-07-08 18:55:06 +0000109 <action type="update" date="2012-07-08" issue="COMPRESS-188"
110 due-to="Harald Kuhn">
111 Improved exception message if a zip archive cannot be read
112 because of an unsupported compression method.
113 </action>
Stefan Bodewig2ab43b02012-07-07 19:34:11 +0000114 <action type="update" date="2012-07-07" issue="COMPRESS-192"
115 due-to="Jukka Zitting">
116 ArchiveStreamFactory has a setting for file name encoding that
117 sets up encoding for ZIP and TAR streams.
118 </action>
Stefan Bodewig9bdacbf2012-07-07 05:30:40 +0000119 <action type="fix" date="2012-07-07" issue="COMPRESS-191"
120 due-to="Jukka Zitting">
121 ArchiveStreamFactory's tar stream detection created false
122 positives for AIFF files.
123 </action>
124 <action type="update" date="2012-07-07" issue="COMPRESS-191"
125 due-to="Jukka Zitting">
126 TarArchiveEntry now has a method to verify its checksum.
127 </action>
Stefan Bodewig73603cd2012-12-27 18:28:24 +0000128 <action type="fix" date="2012-12-27" issue="COMPRESS-199"
129 due-to="Jukka Zitting">
Stefan Bodewigb19fe702013-01-31 14:20:14 +0000130 XZ for Java didn't provide an OSGi bundle. Compress'
Stefan Bodewig73603cd2012-12-27 18:28:24 +0000131 dependency on it has now been marked optional so Compress
132 itself can still be used in an OSGi context.
133 </action>
Stefan Bodewigca5721d2012-12-28 17:34:54 +0000134 <action type="fix" date="2012-12-27" issue="COMPRESS-200"
135 due-to="Christian Schlichtherle">
Stefan Bodewige9d7bcf2012-12-27 20:54:42 +0000136 When specifying the encoding explicitly TarArchiveOutputStream
137 would write unreadable names in GNU mode or even cause errors
138 in POSIX mode for file names longer than 66 characters.
139 </action>
Stefan Bodewig09b8f6d2012-12-27 21:34:35 +0000140 <action type="fix" date="2012-12-27" issue="COMPRESS-203">
141 Writing TAR PAX headers failed if the generated entry name
142 ended with a "/".
143 </action>
Stefan Bodewigca5721d2012-12-28 17:34:54 +0000144 <action type="fix" date="2012-12-28" issue="COMPRESS-189"
145 due-to="Daniel Lowe">
Stefan Bodewige2cf4122012-12-28 06:53:21 +0000146 ZipArchiveInputStream sometimes failed to provide input to the
147 Inflater when it needed it, leading to reads returning 0.
148 </action>
Stefan Bodewig376f7d62013-01-01 11:11:26 +0000149 <action type="update" date="2013-01-01">
150 Split/spanned ZIP archives are now properly detected by
151 ArchiveStreamFactory but will cause an
152 UnsupportedZipFeatureException when read.
153 </action>
154 <action type="update" date="2013-01-01" issue="COMPRESS-208">
155 ZipArchiveInputStream now reads archives that start with a
156 "PK00" signature. Archives with this signatures are created
157 when the archiver was willing to split the archive but in the
158 end only needed a single segment - so didn't split anything.
159 </action>
Stefan Bodewig65837142013-01-01 17:30:48 +0000160 <action type="update" date="2013-01-01" issue="COMPRESS-201">
161 TarArchiveEntry has a new constructor that allows setting
162 linkFlag and preserveLeadingSlashes at the same time.
163 </action>
Stefan Bodewigec0f5852013-01-01 18:33:33 +0000164 <action type="update" date="2013-01-01" issue="COMPRESS-159">
165 ChangeSetPerformer has a new perform overload that uses a
166 ZipFile instance as input.
167 </action>
Stefan Bodewigf4044dd2013-01-04 15:59:38 +0000168 <action type="fix" date="2013-01-04" issue="COMPRESS-212">
169 TarArchiveInputStream ignored the encoding for GNU long name
170 entries.
171 </action>
Stefan Bodewiga2f978e2013-01-05 19:28:42 +0000172 <action type="update" date="2013-01-05" issue="COMPRESS-172"
173 due-to="Thomas Mair">
174 Garbage collection pressure has been reduced by reusing
175 temporary byte arrays in classes.
176 </action>
Julius Davies2a2c5fc2013-01-08 22:16:17 +0000177 <action type="update" date="2013-01-08" issue="COMPRESS-210"
178 due-to="Julius Davies">
179 Can now handle zip extra field 0x5455 - Extended Timestamp.
180 </action>
181 <action type="update" date="2013-01-07" issue="COMPRESS-211"
182 due-to="Julius Davies">
183 handle zip extra field 0x7875 - Info Zip New Unix Extra Field.
184 </action>
185 <action type="update" date="2013-01-07" issue="COMPRESS-213"
186 due-to="Julius Davies">
187 ZipShort, ZipLong, ZipEightByteInteger should implement Serializable
188 </action>
Stefan Bodewigdf4c4792013-01-19 14:02:01 +0000189 <action type="update" date="2013-01-14" issue="COMPRESS-214"
190 due-to="Julius Davies">
191 better support for unix symlinks in ZipFile entries
192 </action>
193 <action type="update" date="2013-01-19" issue="COMPRESS-215"
194 due-to="Robin Power">
195 ZipFile's initialization has been improved for non-Zip64
196 archives.
Julius Davies8f398dd2013-01-14 21:47:51 +0000197 </action>
Stefan Bodewig79a7d822013-01-20 19:10:24 +0000198 <action type="fix" date="2013-01-20" issue="COMPRESS-206"
199 due-to="Peter De Maeyer">
200 TarArchiveInputStream could leave the second EOF record
201 inside the stream it had just finished reading.
202 </action>
Stefan Bodewig31610932013-01-20 19:32:30 +0000203 <action type="fix" date="2013-01-20">
204 DumpArchiveInputStream no longer implicitly closes the
205 original input stream when it reaches the end of the
206 archive.
207 </action>
Stefan Bodewig7181d542013-01-22 12:45:24 +0000208 <action type="fix" date="2013-01-22">
209 ZipArchiveInputStream now consumes the remainder of the
210 archive when getNextZipEntry returns null.
211 </action>
Stefan Bodewigbb74f0c2013-01-27 09:45:53 +0000212 <action type="fix" date="2013-01-27" issue="COMPRESS-205"
213 due-to="Daniel Lowe">
214 Unit tests could fail if the source tree was checked out to
215 a directory tree containign spaces.
216 </action>
Stefan Bodewig6caf54d2013-01-31 14:19:04 +0000217 <action type="update" date="2013-01-31">
218 Updated XZ for Java dependency to 1.2 as this version
219 provides proper OSGi manifest attributes.
220 </action>
Stefan Bodewigd9b55962013-02-20 19:22:39 +0000221 <action type="fix" date="2013-02-20" issue="COMPRESS-219">
222 Fixed a potential ArrayIndexOutOfBoundsException when
223 reading STORED entries from ZipArchiveInputStream.
224 </action>
Stefan Bodewig62200b42013-03-07 16:16:32 +0000225 <action type="fix" date="2013-03-07" issue="COMPRESS-221">
226 CompressorStreamFactory can now be used without XZ for Java
227 being available.
228 </action>
Stefan Bodewig01c3fe92013-03-07 16:24:37 +0000229 <action type="add" date="2013-03-07" issue="COMPRESS-220">
230 CompressorStreamFactory has an option to create
231 decompressing streams that decompress the full input for
232 formats that support multiple concatenated streams.
233 </action>
Stefan Bodewig9bdacbf2012-07-07 05:30:40 +0000234 </release>
Stefan Bodewigc5674662012-05-23 14:11:38 +0000235 <release version="1.4.1" date="2012-05-23"
Stefan Bodewig15883a62012-05-20 18:44:25 +0000236 description="Release 1.4.1">
237 <action type="fix" date="2012-05-20">
238 Ported libbzip2's fallback sort algorithm to
239 BZip2CompressorOutputStream to speed up compression in certain
240 edge cases.
Stefan Bodewigc5674662012-05-23 14:11:38 +0000241 Using specially crafted inputs this can be used as a denial
242 of service attack. See the security reports page for details.
Stefan Bodewig15883a62012-05-20 18:44:25 +0000243 </action>
Stefan Bodewigbbb461e2012-04-11 05:00:20 +0000244 </release>
245 <release version="1.4" date="2012-04-11"
Stefan Bodewig3447a362011-11-01 06:16:11 +0000246 description="Release 1.4">
Stefan Bodewig96292652012-03-24 05:32:31 +0000247 <action issue="COMPRESS-183" type="fix" date="2012-03-24">
248 The tar package now allows the encoding of file names to be
249 specified and can optionally use PAX extension headers to
250 write non-ASCII file names.
251 The stream classes now write (or expect to read) archives that
252 use the platform's native encoding for file names. Apache
253 Commons Compress 1.3 used to strip everything but the lower
254 eight bits of each character which effectively only worked for
255 ASCII and ISO-8859-1 file names.
256 This new default behavior is a breaking change.
257 </action>
Stefan Bodewig4f42b002012-03-23 13:58:04 +0000258 <action issue="COMPRESS-184" type="fix" date="2012-03-23">
Stefan Bodewigc2bc7a42012-03-23 13:47:59 +0000259 TarArchiveInputStream failed to parse PAX headers that
260 contained non-ASCII characters.
261 </action>
Stefan Bodewig42398712012-03-10 06:45:36 +0000262 <action issue="COMPRESS-182" type="update" date="2012-03-02">
263 The tar package can now write archives that use star/GNU/BSD
264 extensions or use the POSIX/PAX variant to store numeric
265 values that don't fit into the traditional header fields.
266 </action>
Stefan Bodewig40f2e632012-03-02 19:59:50 +0000267 <action issue="COMPRESS-181" type="update" date="2012-03-02">
268 Added a workaround for a Bug some tar implementations that add
269 a NUL byte as first byte in numeric header fields.
270 </action>
Stefan Bodewigc75c10f2012-02-28 05:00:26 +0000271 <action issue="COMPRESS-176" type="update" date="2012-02-28">
272 Added a workaround for a Bug in WinZIP which uses backslashes
273 as path separators in Unicode Extra Fields.
274 </action>
Sebastian Bazley432543d2012-02-23 01:30:56 +0000275 <action issue="COMPRESS-131" type="update" date="2012-02-23">
276 ArrayOutOfBounds while decompressing bz2. Added test case - code already seems to have been fixed.
277 </action>
Sebastian Bazleybc84d202012-02-23 01:03:01 +0000278 <action issue="COMPRESS-178" type="fix" date="2012-02-23">
279 TarArchiveInputStream throws IllegalArgumentException instead of IOException
280 </action>
Sebastian Bazley915e8ef2012-02-23 00:36:15 +0000281 <action issue="COMPRESS-179" type="fix" date="2012-02-23">
282 TarUtils.formatLongOctalOrBinaryBytes() assumes the field will be 12 bytes long
283 </action>
Sebastian Bazley7ee6b672012-02-22 23:42:49 +0000284 <action issue="COMPRESS-175" type="fix" date="2012-02-22">
285 GNU Tar sometimes uses binary encoding for UID and GID
286 </action>
Stefan Bodewiga9331732012-01-29 20:56:50 +0000287 <action issue="COMPRESS-171" type="fix" date="2012-01-29">
288 ArchiveStreamFactory.createArchiveInputStream would claim
289 short text files were TAR archives.
290 </action>
Stefan Bodewige166fa72011-11-03 06:32:25 +0000291 <action issue="COMPRESS-156" type="add" date="2011-11-02">
292 Support for the XZ format has been added.
293 </action>
Stefan Bodewig20fd83a2011-11-07 16:36:51 +0000294 <action issue="COMPRESS-146" type="update" date="2011-11-07">
295 BZip2CompressorInputStream now optionally supports reading of
296 concatenated .bz2 files.
297 </action>
Stefan Bodewigfa237cc2011-11-09 16:18:05 +0000298 <action issue="COMPRESS-154" type="update" date="2011-11-09">
299 GZipCompressorInputStream now optionally supports reading of
300 concatenated .gz files.
301 </action>
Stefan Bodewig34766062011-12-05 15:39:52 +0000302 <action issue="COMPRESS-164" type="fix" date="2011-12-05">
303 ZipFile didn't work properly for archives using unicode extra
304 fields rather than UTF-8 filenames and the EFS-Flag.
305 </action>
Stefan Bodewigc4704be2011-12-07 12:14:59 +0000306 <action issue="COMPRESS-16" type="update" date="2011-12-07">
307 The tar package can now read archives that use star/GNU/BSD
308 extensions for files that are longer than 8 GByte as well as
309 archives that use the POSIX/PAX variant.
310 </action>
Stefan Bodewigf90c1cb2011-12-08 16:43:50 +0000311 <action issue="COMPRESS-165" type="update" date="2011-12-08">
312 The tar package can now write archives that use star/GNU/BSD
313 extensions for files that are longer than 8 GByte as well as
314 archives that use the POSIX/PAX variant.
315 </action>
316 <action issue="COMPRESS-166" type="update" date="2011-12-08">
317 The tar package can now use the POSIX/PAX variant for writing
318 entries with names longer than 100 characters.
319 </action>
Stefan Bodewig00cc49e2011-12-22 17:22:19 +0000320 <action issue="COMPRESS-169" type="fix" date="2011-12-22">
321 For corrupt archives ZipFile would throw a RuntimeException in
322 some cases and an IOException in others. It will now
323 consistently throw an IOException.
324 </action>
Stefan Bodewig3447a362011-11-01 06:16:11 +0000325 </release>
326 <release version="1.3" date="2011-11-01"
Stefan Bodewig7df24262011-07-31 05:43:43 +0000327 description="Release 1.3 - API compatible to 1.2 but requires Java5 at runtime">
Stefan Bodewigf4ff2002011-09-14 15:03:35 +0000328 <action issue="COMPRESS-142" type="add" date="2011-09-14">
329 Support for the Pack200 format has been added.
330 </action>
Stefan Bodewig67248f02011-08-22 05:47:26 +0000331 <action issue="COMPRESS-132" type="add" date="2011-08-17">
332 Read-only support for the format used by the Unix dump(8) tool
333 has been added.
334 </action>
Stefan Bodewig3ae0c502011-08-15 04:13:10 +0000335 <action issue="COMPRESS-36" type="update" date="2011-08-15">
336 The ZIP package now supports Zip64 extensions.
337 </action>
Stefan Bodewig1b915c72011-08-08 11:39:41 +0000338 <action issue="COMPRESS-144" type="update" date="2011-08-08">
339 The AR package now supports the BSD dialect of storing file
340 names longer than 16 chars (both reading and writing).
341 </action>
Stefan Bodewig02991912011-08-08 04:41:15 +0000342 <action type="fix" date="2011-08-08">
Stefan Bodewigc84526b2011-08-08 05:09:25 +0000343 BZip2CompressorInputStream's getBytesRead method always
Stefan Bodewig02991912011-08-08 04:41:15 +0000344 returned 0.
345 </action>
Stefan Bodewigd48f1062011-08-03 13:36:01 +0000346 <action issue="COMPRESS-152" type="fix" date="2011-08-03">
347 ZipArchiveInputStream and ZipArchiveOutputStream could leak
348 resources on some JDKs.
349 </action>
Stefan Bodewigfdac1472011-10-23 12:15:13 +0000350 <action issue="COMPRESS-160" type="fix" date="2011-10-23">
351 TarArchiveOutputStream's getBytesWritten method didn't count
352 correctly.
353 </action>
Stefan Bodewig7df24262011-07-31 05:43:43 +0000354 </release>
355 <release version="1.2" date="2011-07-31"
Stefan Bodewig947e9832011-07-27 03:53:35 +0000356 description="Release 1.2 - a bugfix release, the last release expected to be compatible with Java 1.4">
Stefan Bodewiga9bd2e22011-07-26 14:12:44 +0000357 <action issue="COMPRESS-129" type="fix" date="2011-07-26">
358 ZipArchiveInputStream could fail with a "Truncated ZIP" error
359 message for entries between 2 GByte and 4 GByte in size.
360 </action>
Stefan Bodewigeedeff92011-07-23 04:57:17 +0000361 <action issue="COMPRESS-145" type="fix" date="2011-07-23"
362 due-tue="Patrick Dreyer">
Stefan Bodewig2b90da62011-07-25 05:54:45 +0000363 TarArchiveInputStream now detects sparse entries using the
364 oldgnu format and properly reports it cannot extract their
365 contents.
Stefan Bodewigeedeff92011-07-23 04:57:17 +0000366 </action>
367 <action issue="COMPRESS-123" type="add" date="2011-07-23">
Stefan Bodewig934a96e2011-07-23 04:33:44 +0000368 ZipArchiveEntry has a new method getRawName that provides the
369 original bytes that made up the name. This may allow user
370 code to detect the encoding.
371 </action>
Stefan Bodewig7a76c472011-07-20 14:55:50 +0000372 <action issue="COMPRESS-130" type="fix" date="2011-07-20">
373 The Javadoc for ZipArchiveInputStream#skip now matches the
374 implementation, the code has been made more defensive.
375 </action>
Stefan Bodewig541898f2011-07-20 14:23:20 +0000376 <action issue="COMPRESS-140" type="fix" date="2011-07-20"
377 due-to="Trejkaz">
378 ArArchiveInputStream fails if entries contain only blanks for
379 userId or groupId.
380 </action>
Stefan Bodewigb4d75052011-07-13 13:53:18 +0000381 <action issue="COMPRESS-139" type="fix" date="2011-07-13">
382 ZipFile may leak resources on some JDKs.
383 </action>
Stefan Bodewig8c2e5e62011-04-18 04:28:14 +0000384 <action type="update" date="2011-04-18">
385 ZipFile now implements finalize which closes the underlying
386 file.
387 </action>
Sebastian Bazley60d6b6a2011-03-23 12:50:15 +0000388 <action issue="COMPRESS-117" type="update" date="2011-03-23">
389 Certain tar files not recognised by ArchiveStreamFactory.
390 </action>
Sebastian Bazley9f68b5d2011-03-23 11:17:25 +0000391 <action issue="COMPRESS-125" type="fix" date="2011-03-23">
392 BZip2CompressorInputStream throws IOException if underlying stream returns available() == 0.
393 Removed the check.
394 </action>
Sebastian Bazley8376ecf2011-03-23 11:06:43 +0000395 <action issue="COMPRESS-127" type="fix" date="2011-03-23">
396 Calling close() on inputStream returned by CompressorStreamFactory.createCompressorInputStream()
397 does not close the underlying input stream.
398 </action>
Stefan Bodewig86aaf842010-10-29 15:03:49 +0000399 <action issue="COMPRESS-122" type="add" date="2010-10-29">
400 TarArchiveEntry provides access to the flags that determine
401 whether it is an archived symbolic link, pipe or other
402 "uncommon" file system object.
403 </action>
Stefan Bodewig1eb9dbb2010-10-26 09:44:59 +0000404 <action issue="COMPRESS-119" type="fix" date="2010-10-26">
Sebastian Bazley7dd43012010-10-28 14:15:27 +0000405 TarArchiveOutputStream#finish now writes all buffered data to the stream
Stefan Bodewig1eb9dbb2010-10-26 09:44:59 +0000406 </action>
407 </release>
408 <release version="1.1" date="2010-08-13" description="Release 1.1">
Sebastian Bazley75c87112010-06-02 11:15:23 +0000409 <action issue="COMPRESS-72" type="fix" date="2010-06-02">
410 Move acknowledgements from NOTICE to README
411 </action>
Sebastian Bazley35e4e4f2010-06-02 11:00:25 +0000412 <action issue="COMPRESS-113" type="fix" date="2010-06-02">
413 TarArchiveEntry.parseTarHeader() includes the trailing space/NUL when parsing the octal size
414 </action>
415 <action issue="COMPRESS-108" type="add" date="2010-05-23">
Sebastian Bazleydfc66382010-05-23 11:53:07 +0000416 Command-line interface to list archive contents.
417 Usage: java -jar commons-compress-n.m.jar archive-name [zip|tar|etc]
418 </action>
Sebastian Bazley050db3d2010-05-17 15:09:29 +0000419 <action issue="COMPRESS-118" type="fix" date="2010-05-17">
420 TarUtils.parseName does not properly handle characters outside the range 0-127
421 </action>
Sebastian Bazleyc83d9f72010-05-13 10:25:15 +0000422 <action issue="COMPRESS-112" type="update" date="2010-05-13">
423 ArArchiveInputStream does not handle GNU extended filename records (//)
424 </action>
Sebastian Bazley35e4e4f2010-06-02 11:00:25 +0000425 <action issue="COMPRESS-109" type="add" date="2010-05-10">
Sebastian Bazley23bfa662010-05-10 15:10:27 +0000426 Tar implementation does not support Pax headers
427 Added support for reading pax headers.
428 Note: does not support global pax headers
Sebastian Bazley27dea242010-05-10 17:42:37 +0000429 </action>
Sebastian Bazley23bfa662010-05-10 15:10:27 +0000430 <action issue="COMPRESS-107" type="fix" date="2010-05-10">
431 ArchiveStreamFactory does not recognise tar files created by Ant
Sebastian Bazley27dea242010-05-10 17:42:37 +0000432 </action>
Sebastian Bazley8fcd06e2010-05-09 20:46:59 +0000433 <action issue="COMPRESS-110" type="fix" date="2010-05-09">
434 Support "ustar" prefix field, which is used when file paths are longer
435 than 100 characters.
Sebastian Bazley27dea242010-05-10 17:42:37 +0000436 </action>
Sebastian Bazley69f6d062010-05-05 10:59:58 +0000437 <action type="update" date="2010-04-19" issue="COMPRESS-105">
438 Document that the name of an ZipArchiveEntry determines whether
Sebastian Bazley27dea242010-05-10 17:42:37 +0000439 an entry is considered a directory or not.
Sebastian Bazley69f6d062010-05-05 10:59:58 +0000440 If you don't use the constructor with the File argument the entry's
441 name must end in a "/" in order for the entry to be known as a directory.
442 </action>
Stefan Bodewig03e94a42010-03-19 15:08:23 +0000443 <action type="add" date="2010-03-19" issue="COMPRESS-103">
444 ZipArchiveInputStream can optionally extract data that used
445 the STORED compression method and a data descriptor.
446 Doing so in a stream is not safe in general, so you have to
447 explicitly enable the feature. By default the stream will
448 throw an exception if it encounters such an entry.
449 </action>
Stefan Bodewig62cb9c42010-03-12 16:06:20 +0000450 <action type="fix" date="2010-03-12" issue="COMPRESS-100">
451 ZipArchiveInputStream will throw an exception if it detects an
452 entry that uses a data descriptor for a STORED entry since it
453 cannot reliably find the end of data for this "compression"
454 method.
455 </action>
Stefan Bodewigd7ea9ff2010-03-12 15:35:44 +0000456 <action type="fix" date="2010-03-12" issue="COMPRESS-101">
457 ZipArchiveInputStream should now properly read archives that
458 use data descriptors but without the "unofficial" signature.
459 </action>
Stefan Bodewig30e1cc82010-03-09 11:23:41 +0000460 <action type="add" date="2010-03-09" issue="COMPRESS-98">
461 The ZIP classes will throw specialized exceptions if any
462 attempt is made to read or write data that uses zip features
463 not supported (yet).
464 </action>
Stefan Bodewigade93792010-03-08 12:00:25 +0000465 <action type="add" date="2010-03-08" issue="COMPRESS-99">
466 ZipFile#getEntries returns entries in a predictable order -
467 the order they appear inside the central directory.
468 A new method getEntriesInPhysicalOrder returns entries in
469 order of the entry data, i.e. the order ZipArchiveInputStream
470 would see.
471 </action>
Stefan Bodewige0ffbc12010-02-19 10:59:01 +0000472 <action type="add" date="2010-02-19">
Stefan Bodewige0692ec2010-02-24 15:35:47 +0000473 The Archive*Stream and ZipFile classes now have
474 can(Read|Write)EntryData methods that can be used to check
475 whether a given entry's data can be read/written.
Stefan Bodewiga33505b2010-02-19 12:23:27 +0000476 The method currently returns false for ZIP archives if an
477 entry uses an unsupported compression method or encryption.
Stefan Bodewige0ffbc12010-02-19 10:59:01 +0000478 </action>
479 <action type="add" date="2010-02-19" issue="COMPRESS-89">
480 The ZIP classes now detect encrypted entries.
481 </action>
Sebastian Bazley886f71b2010-04-13 21:21:03 +0000482 <action type="update" date="2010-02-18" issue="COMPRESS-79">
483 Move DOS/Java time conversions into Zip utility class.
484 </action>
Stefan Bodewiga1015f32010-02-18 16:11:13 +0000485 <action type="fix" date="2010-02-18" issue="COMPRESS-74">
486 ZipArchiveInputStream failed to update the number of bytes
487 read properly.
488 </action>
489 <action type="fix" date="2010-02-18">
490 ArchiveInputStream has a new method getBytesRead that should
491 be preferred over getCount since the later may truncate the
492 number of bytes read for big archives.
493 </action>
Stefan Bodewig315b9472010-02-18 14:56:03 +0000494 <action type="fix" date="2010-02-18" issue="COMPRESS-85">
495 The cpio archives created by CpioArchiveOutputStream couldn't
496 be read by many existing native implementations because the
497 archives contained multiple entries with the same inode/device
498 combinations and weren't padded to a blocksize of 512 bytes.
499 </action>
Stefan Bodewig91695e42010-02-16 13:59:03 +0000500 <action type="fix" date="2010-02-16" issue="COMPRESS-73">
501 ZipArchiveEntry, ZipFile and ZipArchiveInputStream are now
502 more lenient when parsing extra fields.
503 </action>
Sebastian Bazley78e0f2c2010-06-01 16:38:13 +0000504 <action issue="COMPRESS-75" type="update" date="2010-02-12">
505 ZipArchiveInputStream does not show location in file where a problem occurred.
506 </action>
Sebastian Bazley886f71b2010-04-13 21:21:03 +0000507 <action type="fix" date="2010-02-12" issue="COMPRESS-82">
508 cpio is terribly slow.
509 Documented that buffered streams are needed for performance
510 </action>
Stefan Bodewig292e1852010-03-04 15:54:09 +0000511 <action type="add" date="2010-02-12" issue="COMPRESS-97">
512 Added autodetection of compression format to
513 CompressorStreamFactory.
514 </action>
Stefan Bodewig124f97c2010-02-12 11:35:14 +0000515 <action type="fix" date="2010-02-12">
516 Improved exception message if the extra field data in ZIP
517 archives cannot be parsed.
518 </action>
Sebastian Bazley886f71b2010-04-13 21:21:03 +0000519 <action type="fix" date="2010-02-11" issue="COMPRESS-17">
520 Tar format unspecified - current support documented.
521 </action>
Stefan Bodewig124f97c2010-02-12 11:35:14 +0000522 <action type="add" issue="COMPRESS-95" date="2010-01-29"
Christian Grobmeiere7517b82010-01-29 07:47:21 +0000523 due-to="Joerg Bellmann">
524 Improve ExceptionMessages in ArchiveStreamFactory
525 </action>
Stefan Bodewig5066e9a2010-01-07 09:34:55 +0000526 <action type="fix" issue="COMPRESS-94" date="2010-01-07"
527 due-to="Anon Devs">
528 ZipArchiveEntry's equals method was broken for entries created
529 with the String-arg constructor. This lead to broken ZIP
530 archives if two different entries had the same hash code.
531 </action>
Stefan Bodewigdc3fc472009-10-30 05:29:17 +0000532 <action type="fix" issue="COMPRESS-87" date="2009-10-30"
533 due-to="Antoni Mylka">
534 ZipArchiveInputStream could repeatedly return 0 on read() when
535 the archive was truncated.
536 </action>
Stefan Bodewig7bb5d882009-10-08 12:07:19 +0000537 <action type="fix" issue="COMPRESS-86" date="2009-10-08">
538 Tar archive entries holding the file name for names longer
539 than 100 characters in GNU longfile mode didn't properly
540 specify they'd be using the "oldgnu" extension.
541 </action>
Stefan Bodewig3e2ddad2009-08-25 08:11:44 +0000542 <action type="add" date="2009-08-25">
543 A new constructor of TarArchiveEntry can create entries with
544 names that start with slashes - the default is to strip
545 leading slashes in order to create relative path names.
546 </action>
Stefan Bodewig7be8ef62009-08-01 20:25:13 +0000547 <action issue="COMPRESS-83" type="fix" date="2009-08-01">
548 Delegate all read and write methods in GZip stream in order to
549 speed up operations.
550 </action>
551 <action type="add" date="2009-08-01">
552 ArchiveEntry now has a getLastModifiedDate method.
553 </action>
554 <action type="fix" date="2009-08-01">
555 The ar and cpio streams now properly read and write last
556 modified times.
557 </action>
Stefan Bodewig2318ba32009-06-30 07:25:44 +0000558 <action issue="COMPRESS-81" type="fix" date="2009-06-30">
559 TarOutputStream can leave garbage at the end of the archive
560 </action>
Stefan Bodewig47b706e2009-06-30 08:23:08 +0000561 <action issue="COMPRESS-78" type="add" date="2009-06-30"
562 due-to="Jukka Zitting">
563 Add a BZip2Utils class modelled after GZipUtils
564 </action>
Stefan Bodewig2318ba32009-06-30 07:25:44 +0000565 </release>
566 <release version="1.0" date="2009-05-21" description="First Public Release">
567 <action dev="all" type="add" date="2009-05-21">
Christian Grobmeier35ac05e2009-05-10 17:32:20 +0000568 Initial release
569 </action>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000570 <action dev="sgoeschl" type="fix">
571 Updating the pom.xml for preparing a move to commons-proper
572 </action>
573 </release>
574 </body>
575</document>