Debian lenny version packages
[pkg-perl] / deb-src / libarchive-zip-perl / libarchive-zip-perl-1.18 / Changes
1 Revision history for Perl extension Archive::Zip.
2
3 1.18 Wed 25 Oct 2006 - Adam Kennedy
4   - Changing to a production version for final release
5   - No other changes of any kind
6
7 1.17_05 Tue 19 Sep 2006 - Adam Kennedy
8   - Seperated the classes from the main file into seperate packages.
9   - Merged the Zip.pod into the main Zip.pm file.
10   - Applied default Perl::Tidy to all of the source files, to improve
11     the readability and maintainability of the files.
12   - Added license in Makefile.PL
13   - Added some additional entries to the realclean files
14
15 1.17_03 Sat 16 Sep 2006 - Adam Kennedy
16   - Adding dependency on File::Which to deal with problems on systems
17     that lack zip and unzip programs. This really should be a build-time
18     dependency only, but ExtUtils::MakeMaker lacks that capability.
19   - Builds and tests cleanly on Win32 now.
20
21 1.17_02 Sun  7 May 2006 - Adam Kennedy
22   - Renamed the test scripts to the more conventional 01_name.t style
23   - Upgraded all test scripts from Test.pm to Test::More (removing Test.pm dependency)
24   - Various other miscellaneous cleanups of the test scripts
25   - Removed MANIFEST and pod.t from repository (will be auto-generated)
26   - Some cleaning up of the POD documentation for readability
27   - Added SUPPORT section to docs
28   - Merged external TODO file into the POD as a more-common TO DO section
29   - Added a BUGS section to the docs
30
31 1.17_01 Sun 30 Apr 2006 - Adam Kennedy
32   - Imported Archive::Zip into http://svn.phase-n.com/svn/cpan/ orphanage.
33     If you have a CPAN login and have released a module, ask ADAMK about an
34     account and you can repair your bug directly in the repository.
35   - Removed the revision comments from the old CVS repository
36   - DOS DateTime Format doesn't support dates before 1980 and goes crazy when
37     decoding back to unix time. If we don't get passed a time at all
38     (0 or undef) we now throw an error.
39   - DOS DateTime Format doesn't support dates before 1980, so if we find any
40     we warn and use Jan 1 12:01pm 1980 if we encounter any
41   - Win32 doesn't support directory modification times.
42     Tentatively use the current time as the mod-time to prevent sending
43     null times to the unix2dos converter (and the resulting error)
44   - Reformat the expected empty zip warning in the output to add a note that
45     the warning is entirely normal. Would be nice if some time later we can
46     suppress it altogether, but I don't have the cross-platform STDERR-fu
47     without adding a dependency to IPC::Run3 (which would be bad).
48   - Adding a proper $VERSION to all classes, and synchronising them to the
49     same value.
50   - Adding a BEGIN block around the require 5.003_96 so it works at
51     compile-time instead of post-compile.
52   - Moved crc32 to bin/crc32 in line with package layout conventions
53
54 1.16 Mon Jul 04 12:49:30 CDT 2005
55   - Grrrr...removed test that fails when installing under CPANPLUS.
56
57 1.15 Wed Jun 22 10:24:25 CDT 2005
58   - added fix for RT #12771 Minor nit: warning in Archive::Zip::DirectoryMember::contents() 
59   - added fix for RT #13327 Formatting problem in Archive::Zip::Tree manpage
60
61 1.15_02 Sat Mar 12 09:16:30 CST 2005 
62   - fixed dates in previous entry!
63   - began the process of migrating from the monolithic t/test.t to 
64     smaller scripts using Test::More.
65   - started work on improving Archive::Zip's test coverage.  Coverage
66     is now up to just over 80%.
67   - added error handling to writeToFileHandle
68   - fixed small bug in extractMember from previous version
69  
70 1.15_01 Wed Mar  9 22:26:52 CST 2005
71   - added fix for RT #11818 extractMember method corrupts archive
72   - added t/pod.t to test for pod correctness
73
74 1.10 Thu Mar 25 06:24:17 PST 2004
75   - Fixed documentation of setErrorHandler()
76   - Fixed link to Japanese translation of docs
77   - Added Compress::Zlib Bufsize patch from Yeasah Pell that was supposed to
78     have been added in 1.02
79   - Fixed problems with backup filenames for zips with no extension
80   - Fixed problems with undef volume names in _asLocalName()
81
82 1.09 Wed Nov 26 17:43:49 PST 2003
83   - Fixed handling of inserted garbage (as from viruses)
84   - Always check for local header signatures before using them
85   - Added updateMember() and updateTree() functions
86   - Added examples/mailZip.pl
87   - Added examples/updateTree.pl
88   - Fixed some potential but unreported bugs with function parameters like '0'
89   - Removed stray warn() call
90   - Caught undef second arg to replaceMember()
91   - Fixed test suite run with spaces in build dir name (ticket 4214)
92
93 1.08 Tue Oct 21 07:01:29 PDT 2003
94   - test noise fix from Michael Schwern (ticket 4174)
95   - FAQ NAME fix from Michael Schwern (ticket 4175)
96
97 1.07 Mon Oct 20 06:48:41 PDT 2003
98   - Added file attribute code by Maurice Aubrey
99   - Added FAQ about RedHat 9
100   - Added check for empty filenames
101
102 1.06 Thu Jul 17 11:06:18 PDT 2003
103   - Fixed seek use with IO::Scalar and IO::String
104   - Fixed use of binmode with pseudo-file handles
105   - Removed qr{} form for older Perl versions
106   - Changed rel2abs logic in _asLocalName() if there is a volume
107   - Fixed errors with making directories in extractMember() when none provided
108   - Return AZ_OK in extractMemberWithoutPaths() if member is a directory
109   - Fixed problem in extractTree with blank directory becoming "." prefix
110   - Added examples/writeScalar2.pl to show how to use IO::String as destination of Zip write
111   - Edited docs and FAQ to recommend against using absolute path names in zip files.
112
113 1.05 Wed Sep 11 12:31:20 PDT 2002
114   - fixed untaint from 1.04
115
116 1.04 Wed Sep 11 07:22:04 PDT 2002
117   - added untaint of lastModFileDateTime
118
119 1.03 Mon Sep  2 20:42:43 PDT 2002
120   - Removed dependency on IO::Scalar
121   - Set required version of File::Spec to 0.8
122   - Removed tests of examples that needed IO::Scalar
123   - Added binmode() call to read/writeScalar examples
124   - Fixed addTree() for 5.005 compatibility (still untested with 5.004)
125   - Fixed mkdir() calls for 5.005
126   - Clarified documentation of tree operations
127
128 1.02 Fri Aug 23 17:07:22 PDT 2002
129   - Many changes for cross-platform use (use File::Spec everywhere)
130   - Separated POD from Perl
131   - Moved Archive::Zip::Tree contents into Archive::Zip
132     A::Z::Tree is now deprecated and will warn with -w
133   - Reorganized docs
134   - Added FAQ
135   - Added chunkSize() call to report current chunk size
136     and added C::Z BufSize patch from Yeasah Pell.
137   - Added fileName() to report last read zip file name
138   - Added capability to prepend data, like for SFX files
139   - Added examples/selfex.pl for self-extracting archives creation
140   - Added examples/zipcheck.pl for validity testing
141   - Made extractToFileNamed() set access/modification times
142   - Added t/testTree.t to test A::Z::Tree
143   - Fix/speed up memberNamed()
144   - Added Archive::Zip::MemberRead by Sreeji K. Das
145   - Added tempFile(), tempName()
146   - Added overwrite() and overwriteAs() to allow read/modify/write of zip
147   - added examples/updateZip.pl to show how to read/modify/write
148
149 1.01 Tue Apr 30 10:34:44 PDT 2002
150   - Changed mkpath call for directories to work with BSD/OS
151   - Changed tests to work with BSD/OS
152
153 1.00 Sun Apr 28 2002
154   - Added several examples:
155     - examples/calcSizes.pl
156       How to find out how big a zip file will be before writing it
157     - examples/readScalar.pl
158       shows how to use IO::Scalar as the source of a zip read
159     - examples/unzipAll.pl
160       uses Archive::Zip::Tree to unzip an entire zip
161     - examples/writeScalar.pl
162       shows how to use IO::Scalar as the destination of a zip write
163     - examples/zipGrep.pl
164       Searches for text in zip files
165   - Changed required version of Compress::Zlib to 1.08
166   - Added detection and repair of zips with added garbage (as caused by
167     the Sircam worm)
168   - Added more documentation for FAQ-type questions, though few seem to
169     actually read the documentation.
170   - Fixed problem with stat vs lstat
171   - Changed version number to 1.00 for PHB compatibility
172
173 0.12 Wed May 23 17:48:21 PDT 2001
174   - Added writeScalar.pl and readScalar.pl to show use of IO::Scalar
175   - Fixed docs
176   - Fixed bug with EOCD signature on block boundary
177   - Made it work with IO::Scalar as file handles
178   - added readFromFileHandle()
179   - remove guess at seekability for Windows compatibility
180
181 0.11 Tue Jan  9 11:40:10 PST 2001
182   - Added examples/ziprecent.pl (by Rudi Farkas)
183   - Fixed up documentation in Archive::Zip::Tree
184   - Added to documentation in Archive::Zip::Tree
185   - Fixed bugs in Archive::Zip::Tree that kept predicates from working
186   - Detected file not existing errors in addFile
187
188 0.10 Tue Aug  8 13:50:19 PDT 2000
189   - Several bug fixes
190   - More robust new file handle logic can (again)
191     take opened file handles
192   - Detect attempts to overwrite zip file when members
193     depend on it
194
195 0.09 Tue May  9 13:27:35 PDT 2000
196   - Added fix for bug in contents()
197   - removed system("rm") call in t/test.t for Windows.
198
199 0.08 March 27 2000 (unreleased)
200   - Fixed documentation
201   - Used IO::File instead of FileHandle, allowed for use of almost anything as
202     a file handle.
203   - Extra filenames can be passed to extractMember(),
204     extractMemberWithoutPaths(), addFile(), addDirectory()
205   - Added work-around for WinZip bug with 0-length DEFLATED files
206   - Added Archive::Zip::Tree module for adding/extracting hierarchies
207
208 0.07  Fri Mar 24 10:26:51 PST 2000
209   - Added copyright
210   - Added desiredCompressionLevel() and documentation
211   - Made writeToFileHandle() detect seekability by default
212   - Allowed Archive::Zip->new() to take filename for read()
213   - Added crc32String() to Archive::Zip::Member
214   - Changed requirement in Makefile.PL to Compress::Zip
215     version 1.06 or later (bug in earlier versions can truncate data)
216   - Moved BufferedFileHandle and MockFileHandle into
217     Archive::Zip namespace
218   - Allowed changing error printing routine
219   - Factored out reading of signatures
220   - Made re-read of local header for directory members
221     depend on file handle seekability
222   - Added ability to change member contents
223   - Fixed a possible truncation bug in contents() method
224
225 0.06  Tue Mar 21 15:28:22 PST 2000
226   - first release to CPAN
227
228 0.01  Sun Mar 12 18:59:55 2000
229   - original version; created by h2xs 1.19