libtar version 1.2.16
[libtar.git] / ChangeLog
blob2355ea616b2d2f08e4a947d1c722d6e7530c2650
1         NOTE:
2         All releases below marked (Chris Frey) are maintenance releases
3         done by Chris Frey, temporarily stepping in for Mark Roth.
4         These releases are git-based only and can be found at:
5                 http://repo.or.cz/w/libtar.git
7         Both git downloads and tarball downloads are possible at this site.
10 libtar 1.2.16 - 2012/05/17 (Chris Frey)
11 -------------
12       Fixed build system to allow for out-of-source tree builds
15 libtar 1.2.15 - 2012/05/10 (Chris Frey)
16 -------------
17 Chris Frey (1):
18       Fixed harmless buffer overflow which is caught by FORTIFY on some systems
21 libtar 1.2.14 - 2011/12/22 (Chris Frey)
22 -------------
23 Chris Frey (1):
24       Fixed truncation check, so 100 char names get GNU extension support when enabled
27 libtar 1.2.13 - 2011/06/13 (Chris Frey)
28 -------------
29 Chris Frey (10):
30       Fixed incorrect URL in readme
31       Added autoconf/ as macro dir
32       Added autogen.sh script to build a fresh configure
33       Renamed autoconf/aclocal.m4 to psg.m4 so aclocal isn't so confused
34       Removed m4 includes, and straightened out [] m4 quoting for modern autoconfs
35       Removed auto-generated files
36       Added datarootdir to Makefile.in's
37       Fixed header warnings
38       Applied Marcin Gibula's patch fixing tar_extract_glob()
39       Changed root Makefile.in to Makefile.am, which make autoreconf workable
41 Glenn McGrath (1):
42       Use libtool to build dynamic library
44 James Morrison (1):
45       Document stupidity of tartype_t in libtar.c.
47 Magnus Holmgren (1):
48       Escape hyphens that should be minus signs in man pages.
50 Per Lidén (2):
51       Fix memory leak in th_get_pathname
52       Reduce memory used by libtar when extracting files.
54 ------------------------------------------------------------------------------
56 libtar 1.2.11 - 3/2/03
57 -------------
59 - updated autoconf macros, compat code, and listhash code
60 - fixed tar_extract_regfile() to pass mode argument to open()
61   (caused EPERM on Solaris NFS clients)
62 - updated README
64 ------------------------------------------------------------------------------
66 libtar 1.2.10 - 12/15/02
67 -------------
69 - updated README
70 - minor Makefile fixes
71 - fixed TH_ISREG() macro to not return true for hard links
73 ------------------------------------------------------------------------------
75 libtar 1.2.9 - 11/19/02
76 ------------
78 - fixed th_read() to return 1 on EOF
79   (thanks to Yves Crespin <Crespin.Quartz@WANADOO.FR> for the bug report)
80 - minor portability fixes
81   (thanks to Yves Crespin <Crespin.Quartz@WANADOO.FR> for the bug report)
82 - fixed segfault on extracting filenames with 8-bit ASCII characters
83   (thanks to Per Liden <per@FUKT.BTH.SE> for the patch)
84 - fixed TH_ISDIR() macro and th_get_mode() function to handle old
85   archives that don't set the typeflag field right for directories
86 - use 0777 instead of 0755 in mkdirhier()
87   (thanks to Yves Crespin <Crespin.Quartz@WANADOO.FR> for the bug report)
89 ------------------------------------------------------------------------------
91 libtar 1.2.8 - 9/13/02
92 ------------
94 - added "-I../listhash" to CPPFLAGS in libtar/Makefile.in
95   (thanks to Kris Warkentin <kewarken@QNX.COM> for the bug report)
96 - added .PHONY target to Makefile.in
97   (thanks to Steven Engelhardt <sengelha@YAHOO.COM> for the bug report)
99 ------------------------------------------------------------------------------
101 libtar 1.2.7 - 9/12/02
102 ------------
104 - fixed minor bugs in listhash code
105   (thanks to Jim Knoble <jmknoble@pobox.com> for the bug reports)
107 ------------------------------------------------------------------------------
109 libtar 1.2.6 - 9/10/02
110 ------------
112 - updated COPYRIGHT file
113 - do not check magic field by default
114   (replaced TAR_IGNORE_MAGIC option with TAR_CHECK_MAGIC to enable check)
115 - fixed th_get_mode() not to modify S_IFMT bits if they were already set
116 - fixed TH_IS*() macros to check the S_IFMT mode bits in addition to typeflag
117   (this allows us to handle old tar archives that set mode bits but not
118   typeflag field for directories and other special files)
119 - updated to autoconf-2.53
120 - restructured autoconf macros
121 - added "b" to gzoflags in gzopen_frontend() for win32 compatibility
122   (thanks to Kris Eric Warkentin <kewarken@QNX.COM> for reporting this)
123 - if O_BINARY is defined (as on win32), set that bit in oflags in tar_open()
124   (thanks to Kris Eric Warkentin <kewarken@QNX.COM> for reporting this)
125 - also use O_BINARY in when calling open() from tar_extract_regfile()
126   (based on patch from Graeme Peterson <gp@qnx.com>)
127 - added COMPAT_FUNC_MAKEDEV macro to handle 3-arg version of makedev()
128   (based on patch from Graeme Peterson <gp@qnx.com>)
130 ------------------------------------------------------------------------------
132 libtar 1.2.5 - 2/20/02
133 ------------
135 - updated to autoconf-2.52
136 - improved Makefile portability
137 - fixed memory leak in hard-link detection code
138   (thanks to Michael Kamp <kamp@HITT.NL> for the bug report)
139 - fixed memory leak in symlink handling code
140   (thanks to Michael Kamp <kamp@HITT.NL> for the bug report)
141 - fixed memory leak in GNU long filename code
143 ------------------------------------------------------------------------------
145 libtar 1.2.4 - 7/24/01
146 ------------
148 - code cleanups to make gcc -Wall happy
149   (thanks to Jim Knoble <jmknoble@POBOX.COM> for the patch)
150 - call utime() before chmod() in tar_set_file_perms() for cygwin
151   (thanks to Kris Eric Warkentin <kewarken@QNX.COM> for reporting this)
152 - added "-g" flag to trigger GNU extensions in libtar binary
153 - fixed buffer termination bugs in POSIX filename prefix encoding
154   (thanks to Joerg Schilling <schilling@fokus.gmd.de> for reporting this)
155 - fixed bug in th_crc_calc() for filenames with 8-bit ASCII characters
156   (thanks to Hamdouni El Bachir <bach@zehc.net> for reporting the bug
157    and Antoniu-George SAVU <santoniu@libertysurf.fr> for the patch)
158 - fixed backwards conditional expression in th_read()
159   (thanks to Antoniu-George SAVU <santoniu@LIBERTYSURF.FR> for the patch)
160 - added new tar_open() options to replace compile-time settings:
161   TAR_IGNORE_EOT, TAR_IGNORE_MAGIC, TAR_CHECK_VERSION, TAR_IGNORE_CRC
162   (based on feedback from Kris Eric Warkentin <kewarken@QNX.COM>)
164 ------------------------------------------------------------------------------
166 libtar 1.2.3 - 6/26/01
167 ------------
169 - misc portability fixes for OpenBSD
170 - fixed libtar.h to work with C++ programs
171 - fixed tar_extract_file() to properly check for pre-existing symlinks
172   (based on patch from Per Lid?n <per@fukt.hk-r.se>)
173 - fixed hash creation in tar_init()
174 - replaced mkdirhier() with non-recursive version
175 - updated autoconf macros, compat code, and listhash code
176 - reformatted code for readability
178 ------------------------------------------------------------------------------
180 libtar 1.2.2 - 1/12/01
181 ------------
183 - fixed th_print_long_ls() to not truncate user and group names
184 - code cleanups to make -Wall happy
186 ------------------------------------------------------------------------------
188 libtar 1.2.1 - 1/8/01
189 ------------
191 - updated WSG_ENCAP autoconf macro
192 - fixed autoconf macros to behave properly when a config.cache file
193   is present
194 - fixed doc/Makefile.in to create links during compilation, not
195   installation
196 - fixed listhash manpage .so link lists
198 ------------------------------------------------------------------------------
200 libtar 1.2 - 1/4/01
201 ----------
203 - minor code cleanups
205 ------------------------------------------------------------------------------
207 libtar 1.1.b8 - 1/2/01
208 -------------
210 - updated WSG_ENCAP autoconf macro
212 ------------------------------------------------------------------------------
214 libtar 1.1.b7 - 12/13/00
215 -------------
217 - fixed autoconf snprintf() test to make sure it NUL-terminates
219 ------------------------------------------------------------------------------
221 libtar 1.1.b6 - 11/30/00
222 -------------
224 - added $(DESTDIR) to Makefiles
225 - Makefile changes to support WSG_PKG and WSG_ENCAP autoconf macros
226 - changed lib/output.c to use strftime() where available
228 ------------------------------------------------------------------------------
230 libtar 1.1.b5 - 10/29/00
231 -------------
233 - Makefile fix
235 ------------------------------------------------------------------------------
237 libtar 1.1.b4 - 10/29/00
238 -------------
240 - more directory reorganization
241 - minor Makefile cleanups
242 - minor portability fixes
243 - added function typecasting to avoid compiler warnings
245 ------------------------------------------------------------------------------
247 libtar 1.1.b3 - 10/26/00
248 -------------
250 - updated aclocal.m4
251 - updated README
252 - updated manpages
253 - minor directory structure changes because of CVS setup
255 ------------------------------------------------------------------------------
257 libtar 1.1.b2 - 10/5/00
258 -------------
260 - added --without-zlib configure option
261 - minor portability fixes
263 ------------------------------------------------------------------------------
265 libtar 1.1.b1 - 8/21/00
266 -------------
268 - API changes:
269   - implemented tar_fdopen()
270   - implemented tar_fd()
271   - added TAR **t argument to tar_open() instead of returning dynamic memory
272   - if TAR_NOOVERWRITE is set in options and O_CREAT is set in oflags,
273     tar_open() automatically sets O_EXCL as well
275 ------------------------------------------------------------------------------
277 libtar 1.1.b0 - 7/10/00
278 -------------
280 - API changes:
281   - replaced internal table of tar file types with a tartype_t passed to
282     tar_open() by the caller
283     (allows file access methods to be defined dynamically)
284   - fixed tar_append_tree() to grok normal files as well as directories
285   - replaced mk_dirs_for_file() with mkdirhier() from epkg
286   - replaced strtok_r() with strsep()
287   - updated list/hash code to new interface
289 - autoconf changes:
290   - added aclocal.m4 to clean up configure.in
291   - minor portability fixes related to lib/fnmatch.c
293 - fixed a bug in tar_open() where the result of open() was being
294   checked for 0 instead of -1 to detect error
296 - updated libtar driver program to handle both .tar.gz and ordinary .tar
297   via the -z option