Upgrade to Compress::Zlib 1.40
[p5sagit/p5-mst-13.2.git] / ext / Compress / Zlib / Changes
1 CHANGES
2 -------
3
4   1.40 - 23 September 2005
5
6       * Fixed failure of 03examples.t for some windows systems.
7
8   1.39 - 15 September 2005
9
10       * Fixed dTHX macro for 5.00503 on FreeBSD
11
12   1.38 - 6 September 2005
13
14       * Integrate core change 25304 -- Symbian Update
15
16       * Added libscan to Makefile.PL
17
18   1.37 - 12 August 2005
19
20       * Change to t/03examples.t for VMS from Abe Timmerman
21
22   1.36 - 3 August 2005
23
24       * Renamed zlib-src-1.2.3 to zlib-src to help VMS
25
26       * Fixed Makefile.PL for VMS
27
28       * Fixed t/03examples.t for VMS
29
30       * Added a couple of notes about incompatibility with Unix compress.
31
32   1.35 - 16 July 2005
33
34       * Updated zlib source to 1.2.3
35
36       * Fixed problem with where two calls to gzclose would hang the debugger.
37         See https://rt.cpan.org/Ticket/Display.html?id=13789
38
39       * Added code from Alexey Tourbin to use XSLoader when available,
40         and DynaLoader otherwise.
41
42       * Documented that the compress & uncompress functions were not
43         the same as the Unix utilities of the same name.
44
45       * Fixed 05gzsetp -- it left a temp file hanging around. 
46
47       * Integrate core change 24787 - SvUPGRADE returns void in blead
48
49       * Integrate core change 24788 - Makefile.PL adjustments for the core
50
51
52   1.34 - 30 January 2005
53
54       * Fixed typo in the README
55
56       * Fixed examples.t on Win32 where paths have embedded whitespace.
57
58       * Fix for Cygwin and core integration from Jos I. Boumans
59
60       * Upgrade zlib source to 1.2.2
61
62   1.33 - 14 January 2004
63
64       * Reworked Makefile.PL to avoid creating a private copy of zlib. 
65         This both simplifies the build, plus it makes life easier for VMS.
66
67       * Patches for Makefile.PL to get it to work on VMS supplied by
68         Craig A. Berry.
69
70       * memGunzip has very slow on FreeBSD. Turns out to be down to
71         the way realloc works on FreeBSD. Changed both inflate & deflate
72         to use exponentially increasing buffer sizes when they need to
73         realloc. Thanks to Peter Jeremy for the lowdown on FreeBSD
74         memory allocation.
75
76   1.32 - 26 November 2003
77
78       * Steve Hay reported a problem on rt.cpan.org with Windows and
79         MSCV++ 6.0 where the source from the zlib directory was getting
80         installed with the rest of the module.
81         https://rt.cpan.org/Ticket/Display.html?id=1741
82
83         This has been fixed by renaming the "zlib" directory to "zlib-src"
84         thus avoiding a conflict with the name of this Perl module.
85
86       * Fixed a bug in the inflate method where the input buffer is an
87         lvalue (via substr). Problem & solution reported by Salvador Fandiqo.
88
89       * Tightened up the logic in Makefile.PL when BUILD_ZLIB is
90         True. Issue spotted by Ralf S. Engelschall.
91
92   1.31 - 29 October 2003
93
94       * Reinstated the creation of .bak files - $^I seems to need a
95         backup file on Windows. For OpenVMS, the extension _bak is used.
96
97   1.30 - 28 October 2003
98
99       * Bundled a sub-set of the zlib source with the module and changed
100         the default make behaviour to build with the included zlib source.
101         The previous behaviour of using a pre-built zlib library is
102         still available for those that want it.
103
104       * Added prototypes to the subs in Zlib.pm that didn't already have
105         them. Patch from Ed Avis.
106
107       * No .bak files are created by Makefile.PL any more - this keep
108         distclean much happier. Patch suggested by Ed Avis.
109         This also fixes a similar problem reported by Dr. Martin Zinser
110         on OpenVMS.
111
112       * Documentation for some of the gz functions updated.
113
114       * Format strings modified in DispStream to keep OpenVMS happy. 
115         Problem reported by Dr. Martin Zinser.
116
117
118   1.22 - 17 June 2003
119
120       * Makefile.PL now displays a warning about not installing
121         Compress::Zlib via the CPAN shell.
122
123       * Fix to allow intermingling of gzread & gzreadline - patch
124         supplied by Doug Perham.
125
126       * memGunzip will silently now work if the gzip trailer is
127         missing. Some HTTP Origin Servers seem to leave it out.
128
129   1.21 - 28 April 2003
130
131       * Tests 148 & 150 from t/02zlib.t were failing on redhat 9. 
132
133       * Added a few words about the problems with Mac OS X to the README file. 
134
135   1.20 - 4 April 2003
136
137       * Fixed bug in gzopen where $gzerrno wasn't being set correctly.
138         The symptom was $gzerrno was set to Z_MEM_ERROR although the file 
139         was opened ok. If gzopen failed, $gzerrno was being set correctly.
140         This problem wasn't spotted before because the typical test
141         to determine whether gzopen passed or failed was to check its
142         return value. 
143
144   1.19 - 31 October 2002
145
146       * fixed a problem with t/02zlib.t that was failing with redhat 8.
147
148   1.18 - 24 October 2002
149
150       * fixed a Win32 problem in t/02zlib.t by changing sysread to read.
151
152       * zlib 1.0.5 & older doesn't have gzsetparams & gzeof. Added a new
153         variable to config.in to flag an old version of zlib. Split
154         out the tests for gzsetparams into t/05gzsetp.t
155
156   1.17 - 22 October 2002
157
158       * Moved the test to check the versions of libz & zlib.h into a separate
159         file and added troubleshooting notes to README.
160
161       * In gzopen, only attempt to call "tell" for normal files.
162
163       * Broke changes out of README into Changes file.
164
165       * Replaced internal use of Z_PARTIAL_FLUSH symbol with Z_SYNC_FLUSH. 
166         zlib.h says  /* will be removed, use Z_SYNC_FLUSH instead */  
167
168       * Added support for zlib functions inflateSync and deflateParams.
169
170       * Added support for zlib functions gzeof and gzsetparams.
171
172       * Added support for access to adler, total_in & total_out
173
174       * The compress function can now take an optional parameter that
175         allows the compression level to be specified. This mirrors the
176         compress2 function available in zlib.
177
178       * memGzip doesn't work properly with perl 5.8.0 when it is given
179         UTF-8 data. Bug spotted by Andreas J. Koenig.
180
181       * Added note about Linux zlib-devel RPM to README.
182
183       * Fixed recursive build problem on win32 machines.
184
185       * Fixed problem with the test harness on Mac OS X.
186         Thanks to Carl Johan Berglund for reporting the problem and
187         helping track it down.
188
189
190   1.16 - 13 December 2001
191
192       * Fixed bug in Makefile.PL that stopped "perl Makefile.PL PREFIX=..."
193         working.
194
195   1.15 - 4th December 2001
196
197       * Changes a few types to get the module to build on 64-bit Solaris
198
199       * Changed the up/downgrade logic to default to the older constructs, and
200         to only call a downgrade if specifically requested. Some older versions
201         of Perl were having problems with the in-place edit.
202
203       * added the new XS constant code.
204
205   1.14 - 27th August 2001
206
207       * Memory overwrite bug fixed in "inflate". Kudos to Rob Simons for
208         reporting the bug and to Anton Berezin for fixing it for me.
209
210   1.13 - 31st June 2001
211
212       * Make sure config.in is consistent when released.
213
214   1.12 - 28th April 2001
215
216       * Modified Makefile.PL to only enable the warnings pragma if
217         using perl 5.6.1 or better.
218
219   1.11 - 17th February 2001
220
221       * Added logic in Makefile.PL to toggle between using $^W and
222         the warnings pragma in the module.
223
224       * The module, the examples & the test harness are now all strict
225         & warnings clean.
226
227   1.10 - 5th February 2001
228
229       * fixed a bug in memGunzip. Used Z_ERR instead of Z_DATA_ERROR.
230
231   1.09 - 15th January 2001
232
233       * Silenced a few compiler warnings.
234
235       * Updated zlib home site in README & Zlib.pm to www.info-zip.org
236
237       * Minor typo in Zlib.pm - a link used AUTHORS instead of AUTHOR
238         -- spotted by Frank Martini.
239
240       * Mention Archive::Zip
241
242       * added memGunzip. This is largely based on code provided by Jim Leonard.
243
244       * $deflate->flush can now take an optional parameter. Valid
245         values are Z_NO_FLUSH, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, Z_FULL_FLUSH
246         and Z_FINISH. The default is Z_FINISH.
247
248   1.08 - 6 Jan 2000
249
250       * uncompress was clobbering its input parameter. Now it doesn't.
251         This bug was spotted by Deven T. Corzine.
252  
253       * If a variable that only ever contained a number was given
254         to compress or deflate, it would not be compressed properly. Now
255         it will be coerced to a string and then compressed. This bug
256         was spotted by Deven T. Corzine.
257
258   1.07 - 27 Nov 1999
259
260       * ANSI-ified the static functions in Zlib.xs
261
262       * Added the ability to build zlib along with the module.
263         This feature is 90% based on a Makefile provided by Gurusamy
264         Sarathy.
265
266   1.06 - 20 Sep 1999
267
268       * Fixed a nasty problem where inflate could truncate the data
269         returned. Thanks to Douglas Thomson <dougt@mugc.cc.monash.edu.au>
270         for both spotting the problem and fixing the bug.
271
272       * Added a note about the undocumented features in zlib that are
273         required when accessing zip files.
274
275       * gzclose will now get called automatically when the gzip object is
276         destroyed.
277
278   1.05 - 3 June 1999
279
280       * Previous release used newSVpvn, which doesn't exist in 5.004_04
281         or earlier. Changed to use newSVpv instead.
282
283       * The module needs Perl 5.004 or better, so updated the version
284         checking in Zlib.pm and Makefile.PL
285
286   1.04 - 27 May 1999
287
288       * Bug 19990527.001: compress(undef) core dumps -- Fixed.  
289
290   1.03 - 17 Mar 1999
291
292       * Updated to use the new PL_ symbols. 
293         Means the module can be built with Perl 5.005_5*
294
295   1.02 - 31 Jan 1999
296
297       * The return codes for gzread, gzreadline and gzwrite were
298         documented incorrectly as returning a status code.
299
300       * The test harness was missing a "gzclose". This caused problem
301         showed up on an amiga. Thanks to Erik van Roode for reporting
302         this one.
303
304       * Patched zlib.t for OS/2. Thanks to Ilya Zakharevich for the patch.
305
306   1.01 - 23 Nov 1997
307
308       * A number of fixes to the test suite and the example scripts to
309         allow them to work under win32. All courtesy of Gurusamy
310         Sarathy.
311
312   1.00 - 14 Nov 1997
313
314       * Fixed crc32 & adler32. They were very broken. 
315
316       * The following functions can now take a scalar reference in
317         place of a scalar for their buffer parameters:
318
319             compress
320             uncompress
321             deflate
322             inflate
323             crc32
324             adler32
325  
326         This should mean applications that make use of the module don't
327         have to copy large buffers around.
328
329  
330       * Normally the inflate method consumes I<all> of the input buffer
331         before returning. The exception to this is when inflate detects
332         the end of the stream (Z_STREAM_END). In this case the input
333         buffer need not be completely consumed. To allow processing of
334         file formats that embed a deflation stream (e.g. zip, gzip),
335         the inflate method now sets the buffer parameter to be what
336         remains after inflation.
337
338         When the return status is Z_STREAM_END, it will be what remains
339         of the buffer (if any) after deflation. When the status is Z_OK
340         it will be an empty string.
341
342         This change means that the buffer parameter must be a lvalue.
343  
344       * Fixed crc32 and adler32. They were both very broken.
345
346       * Added the Compress::Zlib::memGzip function.
347
348   0.5 - Confirmed that no changes were necessary for zlib 1.0.3, or 1.0.4.
349
350         The optional parameters for deflateInit and inflateInit can now
351         be specified as an associative array in addition to a reference
352         to an associative array. They can also accept the -Name
353         syntax.
354
355         gzopen can now optionally take a reference to an open
356         filehandle in place of a filename. In this case it will call
357         gzdopen.
358
359         Added gzstream example script.
360  
361   0.4 - Upgrade to support zlib 0.99 
362
363         Added dictionary interface.
364
365         Fixed bug in gzreadline - previously it would keep returning
366         the same buffer. This bug was reported by Helmut Jarausch
367
368         Removed dependency to zutil.h and so dropped support for 
369         
370             DEF_MEM_LEVEL (use MAX_MEM_LEVEL instead)
371             DEF_WBITS     (use MAX_WBITS instead)
372
373   0.3 - Added prototype specification.
374
375   0.2 - Fixed a minor allocation problem in Zlib.xs
376
377   0.1 - first alpha release. 2nd October 1995