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