|
1 | 1 |
|
2 | 2 | ChangeLog file for zlib
|
3 | 3 |
|
| 4 | +Changes in 1.2.13 (13 Oct 2022) |
| 5 | +- Fix configure issue that discarded provided CC definition |
| 6 | +- Correct incorrect inputs provided to the CRC functions |
| 7 | +- Repair prototypes and exporting of new CRC functions |
| 8 | +- Fix inflateBack to detect invalid input with distances too far |
| 9 | +- Have infback() deliver all of the available output up to any error |
| 10 | +- Fix a bug when getting a gzip header extra field with inflate() |
| 11 | +- Fix bug in block type selection when Z_FIXED used |
| 12 | +- Tighten deflateBound bounds |
| 13 | +- Remove deleted assembler code references |
| 14 | +- Various portability and appearance improvements |
| 15 | + |
4 | 16 | Changes in 1.2.12 (27 Mar 2022)
|
5 | 17 | - Cygwin does not have _wopen(), so do not create gzopen_w() there
|
6 | 18 | - Permit a deflateParams() parameter change as soon as possible
|
@@ -159,7 +171,7 @@ Changes in 1.2.7.1 (24 Mar 2013)
|
159 | 171 | - Fix types in contrib/minizip to match result of get_crc_table()
|
160 | 172 | - Simplify contrib/vstudio/vc10 with 'd' suffix
|
161 | 173 | - Add TOP support to win32/Makefile.msc
|
162 |
| -- Suport i686 and amd64 assembler builds in CMakeLists.txt |
| 174 | +- Support i686 and amd64 assembler builds in CMakeLists.txt |
163 | 175 | - Fix typos in the use of _LARGEFILE64_SOURCE in zconf.h
|
164 | 176 | - Add vc11 and vc12 build files to contrib/vstudio
|
165 | 177 | - Add gzvprintf() as an undocumented function in zlib
|
@@ -359,14 +371,14 @@ Changes in 1.2.5.1 (10 Sep 2011)
|
359 | 371 | - Use u4 type for crc_table to avoid conversion warnings
|
360 | 372 | - Apply casts in zlib.h to avoid conversion warnings
|
361 | 373 | - Add OF to prototypes for adler32_combine_ and crc32_combine_ [Miller]
|
362 |
| -- Improve inflateSync() documentation to note indeterminancy |
| 374 | +- Improve inflateSync() documentation to note indeterminacy |
363 | 375 | - Add deflatePending() function to return the amount of pending output
|
364 | 376 | - Correct the spelling of "specification" in FAQ [Randers-Pehrson]
|
365 | 377 | - Add a check in configure for stdarg.h, use for gzprintf()
|
366 | 378 | - Check that pointers fit in ints when gzprint() compiled old style
|
367 | 379 | - Add dummy name before $(SHAREDLIBV) in Makefile [Bar-Lev, Bowler]
|
368 | 380 | - Delete line in configure that adds -L. libz.a to LDFLAGS [Weigelt]
|
369 |
| -- Add debug records in assmebler code [Londer] |
| 381 | +- Add debug records in assembler code [Londer] |
370 | 382 | - Update RFC references to use http://tools.ietf.org/html/... [Li]
|
371 | 383 | - Add --archs option, use of libtool to configure for Mac OS X [Borstel]
|
372 | 384 |
|
@@ -1033,7 +1045,7 @@ Changes in 1.2.0.1 (17 March 2003)
|
1033 | 1045 | - Include additional header file on VMS for off_t typedef
|
1034 | 1046 | - Try to use _vsnprintf where it supplants vsprintf [Vollant]
|
1035 | 1047 | - Add some casts in inffast.c
|
1036 |
| -- Enchance comments in zlib.h on what happens if gzprintf() tries to |
| 1048 | +- Enhance comments in zlib.h on what happens if gzprintf() tries to |
1037 | 1049 | write more than 4095 bytes before compression
|
1038 | 1050 | - Remove unused state from inflateBackEnd()
|
1039 | 1051 | - Remove exit(0) from minigzip.c, example.c
|
@@ -1211,7 +1223,7 @@ Changes in 1.0.9 (17 Feb 1998)
|
1211 | 1223 | - Avoid gcc 2.8.0 comparison bug a little differently than zlib 1.0.8
|
1212 | 1224 | - in inftrees.c, avoid cc -O bug on HP (Farshid Elahi)
|
1213 | 1225 | - in zconf.h move the ZLIB_DLL stuff earlier to avoid problems with
|
1214 |
| - the declaration of FAR (Gilles VOllant) |
| 1226 | + the declaration of FAR (Gilles Vollant) |
1215 | 1227 | - install libz.so* with mode 755 (executable) instead of 644 (Marc Lehmann)
|
1216 | 1228 | - read_buf buf parameter of type Bytef* instead of charf*
|
1217 | 1229 | - zmemcpy parameters are of type Bytef*, not charf* (Joseph Strout)
|
@@ -1567,7 +1579,7 @@ Changes in 0.4:
|
1567 | 1579 | - renamed deflateOptions as deflateInit2, call one or the other but not both
|
1568 | 1580 | - added the method parameter for deflateInit2
|
1569 | 1581 | - added inflateInit2
|
1570 |
| -- simplied considerably deflateInit and inflateInit by not supporting |
| 1582 | +- simplified considerably deflateInit and inflateInit by not supporting |
1571 | 1583 | user-provided history buffer. This is supported only in deflateInit2
|
1572 | 1584 | and inflateInit2
|
1573 | 1585 |
|
|
0 commit comments