]> git.cworth.org Git - tar/blob - NEWS
strip docs under GFDL which are not DFSG-compliant
[tar] / NEWS
1 GNU tar NEWS - User visible changes. 2008-04-14
2 Please send GNU tar bug reports to <bug-tar@gnu.org>
3
4 \f
5 version 1.20 - Sergey Poznyakoff, 2008-04-14
6
7 * New option --auto-compress (-a)
8
9 With --create, selects compression algorithm basing on the suffix
10 of the archive file name.
11
12 * New option --lzma
13
14 Selects LZMA compression algorithm
15
16 * New option --hard-dereference
17
18 During archive creation, dereferences hard links and stores the files
19 they refer to, instead of creating usual hard link members (type '1').
20
21 * New option --checkpoint-action
22
23 This action allows to specify an action to be executed upon hitting a
24 checkpoint.  Recognized actions are: dot, echo (the default),
25 echo=string, ttyout=string, exec=cmdline, and sleep=value.  Any number
26 of `--checkpoint-action' options can be specified, the actions will be
27 executed in order of their appearance in the command line.  See
28 chapter 3.8 "Checkpoints" for a complete description.
29
30 * New options --no-check-device, --check-device.
31
32 The `--no-check-device' option disables comparing device numbers during
33 preparatory stage of an incremental dump.  This allows to avoid
34 creating full dumps if the device numbers change (e.g. when using an
35 LVM snapshot).
36
37 The `--check-device' option enables comparing device numbers.  This is
38 the default.  This option is provided to undo the effect of the previous
39 `--no-check-device' option, e.g. if it was set in TAR_OPTIONS
40 environment variable.
41
42 * The --transform option.
43
44 Any number of `--transform' options can be given in the command line.
45 The specified transformations will be applied in turn.
46
47 The argument to `--transform' option can be a list of replace
48 expressions, separated by a semicolon (as in `sed').
49
50 Filename transformations are applied to symbolic link targets
51 during both creation and extraction.  Tar 1.19 used them only
52 during extraction.
53
54 For a detailed description, see chapter 6.7 "Modifying File and Member
55 Names". 
56
57 * Info (end-of-volume) scripts
58
59 The value of the blocking factor is made available to info and
60 checkpoint scripts via environment variable TAR_BLOCKING_FACTOR.
61
62 * Incremental archives
63
64 Improved (sped up) extracting from incremental archives.
65
66 * Bugfixes.
67 ** Fix bug introduced in version 1.19: tar refused to update non-existing
68 archives.
69
70 \f
71 version 1.19 - Sergey Poznyakoff, 2007-10-10
72
73 * New option --exclude-vcs
74
75 Excludes directories and files, created by several widely used version
76 control systems, e.g. "CVS/", ".svn/", etc.
77
78 * --exclude-tag and --exclude-cache options
79
80 The following options now work with incremental archives as well:
81
82   --exclude-caches       
83   --exclude-caches-all   
84   --exclude-tag
85   --exclude-tag-all
86   --exclude-tag-under
87
88 * Fix handling of renamed files in listed incremental archives.
89
90 Previous versions always stored absolute file names in rename
91 records, even if -P was not used. This is fixed: rename records
92 contain file names processed in accordance with the command line
93 settings.
94   
95 * Fix --version output.
96
97 * Recognition of broken archives.
98
99 When supplied an archive smaller than 512 bytes in reading mode (-x,
100 -t), the previous version of tar silently ignored it, exiting with
101 code 0. It is fixed. Tar now issues the following diagnostic message:
102 'This does not look like a tar archive', and exits with code 2.
103
104 * Fix double-dot recognition in archive member names in case of duplicate '/.'.
105
106 * Fix file padding in case of truncation of the input file to zero size.
107
108 \f
109 version 1.18 - Sergey Poznyakoff, 2007-06-29
110
111 * Licensed under the GPLv3
112
113 * Fixed several bugs in the testsuite
114
115 \f
116 version 1.17 - Sergey Poznyakoff, 2007-06-08
117
118 * Fix archivation of sparse files in posix mode.  Previous versions padded
119   sparse members with spurious zero blocks.
120
121 * Fix operation of --verify --listed-incremental.  Version 1.16.1 produced
122   a full dump when both options were given.
123
124 * Fix --occurrence.  In previous versions it continued scanning the archive
125   even though all requested members has already been extracted.
126
127 * Scope of --transform and --strip-components options.
128
129 In addition to affecting regular archive members, the --transform
130 option affects hard and soft link targets and the --strip-components
131 option affects hard link targets as well.
132
133 * End-of-volume script can send the new volume name to tar by writing
134   it to the file descriptor stored in the environment variable `TAR_FD'.
135
136 \f
137 version 1.16.1 - Sergey Poznyakoff, 2006-12-09
138
139 * New option --exclude-tag allows to specify "exclusion tag files", i.e.
140   files whose presence in a directory means that the directory should not
141   be archived.
142
143 * The --exclude-cache option excludes directories that contain the
144   CACHEDIR.TAG file from being archived.  Previous versions excluded
145   directory contents only, while the directories themselves were
146   still added to the archive.
147
148 * Support for reading ustar type 'N' header logical records has been removed.
149   This GNU extension was generated only by very old versions of GNU 'tar'.
150   Unfortunately its implementation had security holes; see
151   <http://archives.neohapsis.com/archives/fulldisclosure/2006-11/0344.html>.
152   We don't expect that any tar archives in practical use have type 'N'
153   records, but if you have one and you trust its contents, you can
154   decode it with GNU tar 1.16 or earlier.
155
156 * Race conditions have been fixed that in some cases briefly allowed
157   files extracted by 'tar -x --same-owner' (or plain 'tar -x', when
158   running as root) to be accessed by users that they shouldn't have been.
159
160 \f
161 version 1.16 - Sergey Poznyakoff, 2006-10-21
162
163 * After creating an archive, tar exits with code 1 if some files were
164 changed while being read.  Previous versions exited with code 2 (fatal
165 error), and only if some files were truncated while being archived.
166
167 * New option --mtime allows to set modification times for all archive
168 members during creation.
169
170 * Bug fixes
171 ** Avoid running off file descriptors when using multiple -C options.
172 ** tar --index-file=FILE --file=- sent the archive to FILE, and
173 the listing to stderr.
174
175 \f
176 version 1.15.91 - Sergey Poznyakoff, 2006-06-16
177
178 * Incompatible changes
179
180 ** Globbing
181
182 Previous versions of GNU tar assumed shell-style globbing when
183 extracting from or listing an archive.  For example:
184
185   tar xf foo.tar '*.c'
186
187 would extract all files whose names end in '.c'.  This behavior
188 was not documented and was incompatible with traditional tar
189 implementations.  Therefore, starting from this version, GNU tar
190 no longer uses globbing by default.  For example, the above invocation
191 is now interpreted as a request to extract from the archive the file
192 named '*.c'.
193
194 To treat member names as globbing patterns, use --wildcards option.
195 If you wish tar to mimic the behavior of versions up to 1.15.90,
196 add --wildcards to the value of the environment variable TAR_OPTIONS.
197
198 The exact way in which tar interprets member names is controlled by the
199 following command line options:
200
201      --wildcards              use wildcards
202      --anchored               patterns match file name start
203      --ignore-case            ignore case
204      --wildcards-match-slash  wildcards match `/'
205
206 Each of these options has a '--no-' counterpart that disables its
207 effect (e.g. --no-wildcards).
208
209 These options affect both the interpretation of member names from
210 command line and that of the exclusion patterns (given with --exclude
211 and --exclude-from options). The defaults are:
212
213  1. For member names: --no-wildcards --anchored
214  2. For exclusion patterns: --wildcards --no-anchored --wildcards-match-slash
215
216 The options can appear multiple times in the command line, thereby
217 changing the way command line arguments are interpreted.  For example,
218 to use case-insensitive matching in exclude patterns and to revert to
219 case-sensitive matching for the rest of command line, one could write:
220
221   tar xf foo.tar --ignore-case --exclude-from=FILE --no-ignore-case file.name
222
223 ** Short option -l is now an alias of --check-links option, which complies
224 with UNIX98.  This ends the transition period started with version 1.14.
225
226 * New features
227
228 ** New option --transform allows to transform file names before storing them
229 in the archive or member names before extracting.  The option takes a
230 sed replace expression as its argument.  For example,
231
232   tar cf foo.tar --transform 's,^,prefix/,'
233
234 will add 'prefix/' to all file names stored in foo.tar.
235
236 ** --strip-components option works when deleting and comparing.  In previous
237 versions it worked only with --extract.
238
239 ** New option --show-transformed-names enables display of transformed file
240 or archive.   It generalizes --show-stored-names option, introduced in
241 1.15.90.  In particular, when creating an archive in verbose mode, it lists
242 member names as stored in the archive, i.e., with any eventual prefixes
243 removed and file name transformations applied.  The option is useful,
244 for example, while comparing `tar cv' and `tar tv' outputs.
245
246 ** New incremental snapshot file format keeps information about file names
247 as well as that about directories.
248
249 ** The --checkpoint option takes an optional argument specifying the number
250 of records between the two successive checkpoints.   Optional dot
251 starting the argument intructs tar to print dots instead of textual
252 checkpoints.
253
254 ** The --totals option can be used with any tar operation (previous versions
255 understood it only with --create).  If an argument to this option is
256 given, it specifies the signal upon delivery of which the statistics
257 is to be printed.  Both forms of this option (with and without
258 argument) can be given to in a single invocation of tar.
259
260 * Bug fixes
261 ** Detect attempts to update compressed archives.
262
263 \f
264 version 1.15.90 - Sergey Poznyakoff, 2006-02-19
265
266 * New features
267
268 ** Any number of -T (--files-from) options may be used in the command line.
269 The file specified with -T may include any valid `tar' options,
270 including another -T option.
271 Compatibility note: older versions of tar would only recognize -C
272 as an option name within the file list file.  Now any file whose name
273 starts with - is handled as an option.  To insert file names starting with
274 dash, use the --add-file option.
275
276 ** List files containing null-separated file names are detected and processed
277 automatically.  It is no longer necessary to give the --null option.
278
279 ** New option --no-unquote disables the unquoting of input file names.
280 This is useful for processing output from `find dir -print0'.
281 An orthogonal option --unquote is provided as well.
282
283 ** New option --test-label tests the archive volume label.
284 If an argument is specified, the label is compared against its value.
285 Tar exits with code 0 if the two strings match, and with code 2 if
286 they do not.
287
288 If no argument is given, the --verbose option is implied.  In this case,
289 tar prints the label name if present and exits with code 0.
290
291 ** New option --show-stored-names.  When creating an archive in verbose mode,
292 it lists member names as stored in the archive, i.e., with any eventual
293 prefixes removed.  The option is useful, for example, while comparing
294 `tar cv' and `tar tv' outputs.
295
296 ** New option --to-command pipes the contents of archive members to the
297 specified command.
298
299 ** New option --atime-preserve=system, which uses the O_NOATIME feature
300 of recent Linux kernels to avoid some problems when preserving file
301 access times.
302
303 ** New option --delay-directory-restore delays restoring modification times
304 and permissions of extracted directories until the end of extraction.
305 This is necessary for restoring from archives with unusual member
306 ordering (in particular, those created with --no-recursion option).
307 This option is implied when restoring from incremental archives.
308
309 ** New option --restrict prohibits use of some potentially harmful tar
310 options.  Currently it disables '!' escape in multi-volume name menu.
311
312 ** New options --quoting-style and --quote-chars control the way tar
313 quotes member names on output. The --quoting-style takes an argument
314 specifying the quoting style to use (literal, shell, shell-always,
315 c, escape, locale, clocale). The argument to --quote-chars is a string
316 specifying characters to quote, even if the selected quoting style
317 would not quote them otherwise. The option --no-quote-chars is
318 provided to disable quoting certain characters.
319
320 ** The end-of-volume script (introduced with --info-script option) can
321 get current archive name from the environment variable TAR_ARCHIVE and
322 the volume number from the variable TAR_VOLUME.  It can alter the
323 archive name by writing new name to the file descriptor 3.
324
325 ** Better support for full-resolution time stamps.  Tar cannot restore
326 time stamps to full nanosecond resolution, though, until the kernel
327 guys get their act together and give us a system call to set file time
328 stamps to nanosecond resolution.
329
330 ** The -v option now prints time stamps only to 1-minute resolution,
331 not full resolution, to avoid using up too many output columns.
332 Nanosecond resolution is now supported, but that would be too much.
333
334 * Bug fixes
335
336 ** Allow non-option arguments to be interspersed with options.
337 ** When extracting or listing archives in old GNU format, tar
338 used to read an extra block of data after a long name header
339 if length of the member name was divisible by block size (512).
340 Consequently, the file pointer was set off and the next member
341 was not processed correctly.
342 ** Previous version created invalid archives when files shrink
343 during reading.
344 ** Compare mode (tar d) hung when trying to compare file contents.
345 ** Previous versions in certain cases failed to restore directory
346 modification times.
347 ** When creating an archive, do not attempt to store files whose
348 meta-data cannot be stored in the header due to format limitations
349 (for ustar and v7 formats).
350 ** The --version option now also outputs information about copyright,
351 license, and credits.  This reverts to the behavior of tar 1.14 and
352 earlier, and conforms to the GNU coding standards.  The --license (-L)
353 option introduced in tar 1.15 has been removed, since it's no longer
354 needed.
355
356 \f
357 version 1.15.1 - Sergey Poznyakoff, 2004-12-21
358
359 This version fixes a bug introduced in 1.15 which caused
360 tar to refuse to extract files from standard input.
361
362 \f
363 version 1.15 - Sergey Poznyakoff, 2004-12-20
364
365 * Compressed archives are recognised automatically, it is no longer
366 necessary to specify -Z, -z, or -j options to read them.  Thus, you can
367 now run `tar tf archive.tar.gz'.
368
369 * When restoring incremental dumps, --one-file-system option
370 prevents directory hierarchies residing on different devices
371 from being purged.
372
373 With the previous versions of tar it was dangerous to create
374 incremental dumps with --one-file-system option, since they
375 would recursively remove mount points when restoring from the
376 back up.  This change fixes the bug.
377
378 * Renamed --strip-path to --strip-components for consistency with
379 the GNU convention.
380
381 * Skipping archive members is sped up if the archive media supports
382 seeks.
383
384 * Restore script starts restoring only if it is given --all (-a) option,
385 or some patterns.  This is to prevent accidental restores.
386
387 * `tar --verify' prints a warning if during archive creation some of
388 the file names had their prefixes stripped off.
389
390 * New option --exclude-caches instructs tar to exclude cache directories
391 automatically on archive creation.  Cache directories are those
392 containing a standardized tag file, as specified at:
393
394         http://www.brynosaurus.com/cachedir/spec.html
395
396 * New configure option --with-rmt allows to specify full path name to
397 the `rmt' utility.  This supersedes DEFAULT_RMT_COMMAND variable
398 introduced in version 1.14
399
400 * New configure variable DEFAULT_RMT_DIR allows to specify the directory
401 where to install `rmt' utility.  This is necessary since modifying
402 --libexecdir as was suggested for version 1.14 produced a side effect: it
403 also modified installation prefix for backup scripts (if
404 --enable-backup-scripts was given).
405
406 * Bug fixes:
407 ** Fixed flow in recognizing files to be included in incremental dumps.
408 ** Correctly recognize sparse archive members when used with -T option.
409 ** GNU multivolume headers cannot store filenames longer than 100 characters.
410 Do not allow multivolume archives to begin with such filenames.
411 ** If a member with link count > 2 was stored in the archive twice,
412 previous versions of tar were not able to extract it, since they
413 were trying to link the file to itself, which always failed and
414 lead to removing the already extracted copy.  Preserve the first
415 extracted copy in such cases.
416 ** Restore script was passing improper argument to tar --listed option (which
417 didn't affect the functionality, but was logically incorrect).
418 ** Fixed verification of created archives.
419 ** Fixed unquoting of file names containing backslash escapes (previous
420 versions failed to recognize \a and \v).
421 ** When attempting to delete a non-existing member from the archive, previous
422 versions of tar used to overwrite last archive block with zeroes.
423
424 \f
425 version 1.14 - Sergey Poznyakoff, 2004-05-11
426
427 * Added support for POSIX.1-2001 and ustar archive formats.
428 * New option --format allows to select the output archive format
429 * The default output format can be selected at configuration time
430   by presetting the environment variable DEFAULT_ARCHIVE_FORMAT.
431   Allowed values are GNU, V7, OLDGNU and POSIX.
432 * New option --strip-path allows to cut off a given number of
433   path elements from the name of the file being extracted.
434
435 * New options --index-file, --no-overwrite-dir.  The --overwrite-dir
436   option is now the default; use --no-overwrite-dir if you prefer
437   the previous default behavior.
438
439 * The semantics of -o option is changed.  When extracting, it
440   does the same as --no-same-owner GNU tar option.  This is compatible
441   with UNIX98 tar.  Otherwise, its effect is the same as that of
442   --old-archive option.  This latter is deprecated and will be removed
443   in future.
444
445 * New option --check-links prints a message if not all links are dumped
446   for a file being archived.  This corresponds to the UNIX98 -l option.
447   The current semantics of the -l option is retained for compatibility
448   with previous releases, however such usage is strongly deprecated as
449   the option will change to its UNIX98 semantics in the future releases.
450
451 * New option --occurrence[=N] can be used in conjunction with one of
452   the subcommands --delete, --diff, --extract or --list when a list of
453   files is given either on the command line or via -T option.  This
454   option instructs tar to process only the Nth occurrence of each named
455   file.  N defaults to 1, so `tar -x -f archive --occurrence filename'
456   extracts the first occurrence of `filename' from `archive'
457   and terminates without scanning to the end of the archive.
458
459 * New option --pax-option allows to control the handling of POSIX
460   keywords in `pax' extended headers.  It is equivalent to `pax'
461   -o option.
462
463 * --incremental and --listed-incremental options work correctly on
464   individual files, as well as on directories.
465
466 * New scripts: backup (replaces old level-0 and level-1) and restore.
467 The scripts are compiled and installed if --enable-backup-scripts
468 option is given to configure.
469
470 * By default tar searches "rmt" utility in "$prefix/libexec/rmt",
471 which is consistent with the location where the version of "rmt"
472 included in the package is installed.  Previous versions of tar
473 used "/etc/rmt".  To install "rmt" to its traditional location,
474 run configure with option --libexecdir=/etc.  Otherwise, if you
475 already have rmt installed and wish to use it, instead of the
476 shipped in version, set the variable DEFAULT_RMT_COMMAND to
477 the full path name of the utility, e.g., ./configure
478 DEFAULT_RMT_COMMAND=/etc/rmt.
479
480 Notice also that the full path name of the "rmt" utility to
481 use can be set at runtime, by giving option --rmt-command to
482 tar.
483
484 * Removed obsolete command line options:
485 ** --absolute-paths superseded by --absolute-names
486 ** --block-compress is not needed any longer
487 ** --block-size superseded by --blocking-factor
488 ** --modification-time superseded by --touch
489 ** --read-full-blocks superseded by --read-full-records
490 ** --record-number superseded by --block-number
491 ** --version-control superseded by --backup
492
493 * New message translations fi (Finnish), gl (Galician), hr (Croatian),
494   hu (Hungarian), ms (Malaysian), nb (Norwegian), ro (Romanian), sk
495   (Slovak), zh_CN (Chinese simplified), zh_TW (Chinese traditional).
496   The code 'no' for Norwegian (Bokmål) has been withdrawn; use 'nb' instead.
497
498 * Bug fixes.
499
500 \f
501 version 1.13.25 - Paul Eggert, 2001-09-26
502
503 * Bug fixes.
504
505 \f
506 version 1.13.24 - Paul Eggert, 2001-09-22
507
508 * New option --overwrite-dir.
509 * Fixes for buffer overrun, porting, and copyright notice problems.
510 * The message translations for Korean are available again.
511
512 \f
513 version 1.13.23 - Paul Eggert, 2001-09-13
514
515 * Bug, porting, and copyright notice fixes.
516
517 \f
518 version 1.13.22 - Paul Eggert, 2001-08-29
519
520 * Bug fixes.
521
522 \f
523 version 1.13.21 - Paul Eggert, 2001-08-28
524
525 * Porting and copyright notice fixes.
526
527 \f
528 version 1.13.20 - Paul Eggert, 2001-08-27
529
530 * Some bugs were fixed:
531   - security problems
532   - hard links to symbolic links
533
534 * New option --recursion (the default) that is the inverse of --no-recursion.
535
536 * New options --anchored, --ignore-case, --wildcards,
537   --wildcards-match-slash, and their negations (e.g., --no-anchored).
538   Along with --recursion and --no-recursion, these options control how
539   exclude patterns are interpreted.
540
541 * The default interpretation of exclude patterns is now --no-anchored
542   --no-ignore-case --recursion --wildcards --wildcards-match-slash.
543   This is a quiet change to the semantics of --exclude.  The previous
544   semantics were a failed attempt at backward compatibility but it
545   became clear that the semantics were puzzling and did not satisfy
546   everybody.  Rather than continue to try to revive that dead horse we
547   thought it better to substitute cleaner semantics, with options so
548   that you can change the behavior more to your liking.
549
550 * New message translations for Indonesian and Turkish.
551   The translation for Korean has been withdrawn due to encoding errors.
552   It will be reissued once those are fixed.
553
554 \f
555 version 1.13.19 - Paul Eggert, 2001-01-13
556
557 * The -I option has been withdrawn, as it was buggy and confusing.
558   Eventually it is planned to be reintroduced, with the same meaning as -T.
559
560 * With an option like -N DATE, if DATE starts with "/" or ".", it is taken
561   to be a file name; the last-modified time of that file is used as the date.
562
563 \f
564 version 1.13.18 - Paul Eggert, 2000-10-29
565
566 * Some security problems have been fixed.  `tar -x' now modifies only
567   files under the working directory, unless you also specify an unsafe
568   option like --absolute-names or --overwrite.
569
570 * The short name of the --bzip option has been changed to -j,
571   and -I is now an alias for -T, for compatibility with Solaris tar.
572
573 * The manual is now distributed under the GNU Free Documentation License.
574
575 * The new environment variable TAR_OPTIONS holds default command-line options.
576
577 * The --no-recursion option now affects extraction too.
578
579 * The wording in some diagnostics has been changed slightly.
580
581 * Snapshot files now record whether each file was accessed via NFS.
582   The new file format is upward- and downward-compatible with the old.
583
584 * New language supported: da.
585
586 * Compilation by traditional (K&R) C compilers is no longer supported.
587   If you still use such a compiler, please use GCC instead.
588
589 * This version of tar works best with GNU gzip test version 1.3 or later.
590   Please see <ftp://alpha.gnu.org/gnu/gzip/>.
591
592 * `tar --delete -f -' now works again.
593
594 \f
595 version 1.13.17 - Paul Eggert, 2000-01-07.
596
597 * `tar --delete -f -' is no longer allowed; it was too buggy.
598 * Diagnostic messages have been made more regular and consistent.
599
600 \f
601 version 1.13.16 - Paul Eggert, 1999-12-13.
602
603 * By default, tar now refuses to overwrite an existing file when
604   extracting files from an archive; instead, it removes the file
605   before extracting it.  If the existing file is a symbolic link, the
606   link is removed and not the pointed-to file.  There is one
607   exception: existing nonempty directories are not removed, nor are
608   their ownerships or permissions extracted.  This fixes some
609   longstanding security problems.
610
611   The new --overwrite option enables the old default behavior.
612
613   For regular files, tar implements this change by using the O_EXCL
614   option of `open' to ensure that it creates the file; if this fails, it
615   removes the file and tries again.  This is similar to the behavior of
616   the --unlink-first option, but it is faster in the common case of
617   extracting a new directory.
618
619 * By default, tar now ignores file names containing a component of `..'
620   when extracting, and warns about such file names when creating an archive.
621   To enable the old behavior, use the -P or --absolute-names option.
622
623 * Tar now handles file names with multibyte encodings (e.g., UTF-8, Shift-JIS)
624   correctly.  It relies on the mbrtowc function to handle multibyte characters.
625
626 * The file generated by -g or --listed-incremental now uses a format
627   that is independent of locale, so that users need not worry about
628   locale when restoring a backup.  This is needed for proper support
629   of multibyte characters.  Old-format files can still be read, and
630   older versions of GNU tar can read new-format files, unless member
631   names have multibyte chars.
632
633 * Many diagnostics have been changed slightly, so that file names are
634   now output unambiguously.  File names in diagnostics now are either
635   `quoted like this' (in the default C locale) or are followed by
636   colon, newline, or space, depending on context.  Unprintable
637   characters are escaped with a C-like backslash conventions.
638   Terminating characters (e.g., close-quote, colon, newline)
639   are also escaped as needed.
640
641 * tar now ignores socket files when creating an archive.
642   Previously tar archived sockets as fifos, which caused problems.
643
644 \f
645 version 1.13.15 - Paul Eggert, 1999-12-03.
646
647 * If a file's ctime changes when being archived, report an error.
648   Previously tar looked at mtime, which missed some errors.
649
650 \f
651 version 1.13.14 - Paul Eggert, 1999-11-07.
652
653 * New translations ja, pt_BR.
654 * New options --help and --version for rmt.
655 * Ignore Solaris door files when creating an archive.
656
657 \f
658 version 1.13.13 - Paul Eggert, 1999-10-11.
659
660 * Invalid headers in tar files now elicit errors, not just warnings.
661 * `tar --version' output conforms to the latest GNU coding standards.
662 * If you specify an invalid date, `tar' now substitutes (time_t) -1.
663 * `configure --with-dmalloc' is no longer available.
664
665 \f
666 version 1.13.12 - Paul Eggert, 1999-09-24.
667
668 * `tar' now supports hard links to symbolic links.
669
670 * New options --no-same-owner, --no-same-permissions.
671
672 * --total now also outputs a human-readable size, and a throughput value.
673
674 * `tar' now uses two's-complement base-256 when outputting header
675   values that are out of the range of the standard unsigned base-8
676   format.  This affects archive members with negative or huge time
677   stamps or uids, and archive members 8 GB or larger.  The new tar
678   archives cannot be read by traditional tar, or by older versions of
679   GNU tar.  Use the --old-archive option to revert to the old
680   behavior, which uses unportable representations for negative values,
681   and which rejects large files.
682
683 * On 32-bit hosts, `tar' now assumes that an incoming time stamp T in
684   the range 2**31 <= T < 2**32 represents the negative time (T -
685   2**32).  This behavior is nonstandard and is not portable to 64-bit
686   time_t hosts, so `tar' issues a warning.
687
688 * `tar' no longer gives up extracting immediately upon discovering
689   that an archive contains garbage at the end.  It attempts to extract
690   as many files as possible from the good data before the garbage.
691
692 * A read error now causes a nonzero exit status, not just a warning.
693
694 * Some diagnostics have been reworded for consistency.
695
696 \f
697 version 1.13.11 - Paul Eggert, 1999-08-23.
698
699 * The short name of the --bzip option has been changed to -I,
700   for compatibility with paxutils.
701
702 * -T /dev/null now matches nothing; previously, it matched anything
703   if no explicit operands were given.
704
705 * The `--' option now works the same as with other GNU utilities;
706   it causes later operands to be interpreted as file names, not options,
707   even if they begin with `-'.
708
709 * For the --newer and --after-date options, the table of time zone
710   abbreviations like `EST' has been updated to match current practice.
711   Also, local time abbreviations are now recognized, even if they are
712   not in tar's hardwired table.  Remember, though, that you should use
713   numeric UTC offsets like `-0500' instead of abbreviations like
714   `EST', as abbreviations are not standardized and are ambiguous.
715
716 \f
717 version 1.13.10 - Paul Eggert, 1999-08-20.
718
719 * `tar' now uses signed base-64 when outputting header values that are
720   out of the range of the standard unsigned base-8 format.  [This
721   change was superseded in 1.13.12, described above.]
722
723 \f
724 version 1.13.9 - Paul Eggert, 1999-08-18.
725
726 * `tar' now writes two zero blocks at end-of-archive instead of just one.
727   POSIX.1 requires this, and some other `tar' implementations check for it.
728
729 * `tar' no longer silently accepts a block containing nonzero checksum bytes
730   as a zero block.
731
732 * `tar' now reads buggy tar files that have a null byte at the start of a
733   numeric header field.
734
735 \f
736 version 1.13.8 - Paul Eggert, 1999-08-16.
737
738 * For compatibility with traditional `tar', intermediate directories
739   created automatically by root are no longer given the uid and gid of
740   the original file or directory.
741
742 \f
743 version 1.13.7 - Paul Eggert, 1999-08-14.
744
745 * --listed-incremental and --newer are now incompatible options.
746
747 * When creating an archive, leading `./' is no longer stripped,
748   to match traditional tar's behavior (and simplify the documentation).
749
750 * --diff without --absolute-names no longer falls back on absolute names.
751
752 \f
753 version 1.13.6 - Paul Eggert, 1999-08-11.
754
755 * An --exclude pattern containing / now excludes a file only if it matches an
756   initial prefix of the file name; a pattern without / continues to
757   exclude a file if it matches any file name component.
758
759 * The protocol for talking to rmt has been extended slightly.
760   Open flags are now communicated in symbolic format as well as numeric.
761   The symbolic format (e.g., "O_WRONLY|O_CREAT|O_TRUNC") is for portability
762   when rmt is operating on a different operating system from tar.
763   The numeric format is retained, and rmt uses it if symbolic format is absent,
764   for backward compatibility with older versions of tar and rmt.
765
766 * When writing GNU tar format headers, tar now uses signed base-64
767   for values that cannot be represented in unsigned octal.
768   This supports larger files (2**66 - 1 bytes instead of 2**33 - 1 bytes),
769   larger uids, negative time stamps, etc.
770
771 * When extracting files with unknown ownership, tar now looks up the
772   uid and gid "nobody" on hosts whose headers do not define UID_NOBODY
773   and GID_NOBODY, and falls back on uid/gid -2 if there is no "nobody".
774
775 * tar -t --numeric-owner now prints numeric uids and gids, not symbolic.
776
777 * New option -y or --bzip2 for bzip2 compression, by popular request.
778
779 \f
780 version 1.13.5 - Paul Eggert, 1999-07-20.
781
782 * Do the delayed updates of file metadata even after a fatal error.
783
784 \f
785 version 1.13.4 - Paul Eggert, 1999-07-20.
786
787 * Do not chmod unless we are root or the -p option was given;
788   this matches historical practice.
789
790 \f
791 version 1.13.3 - Paul Eggert, 1999-07-16.
792
793 * A path name is excluded if any of its file name components matches an
794   excluded pattern, even if the path name was specified on the command line.
795   Also see 1.13.6 for later changes in this area.
796
797 \f
798 version 1.13.2 - Paul Eggert, 1999-07-14.
799
800 * Bug reporting address changed to <bug-tar@gnu.org>.
801
802 \f
803 version 1.13.1 - Paul Eggert, 1999-07-12.
804
805 * Bug fixes only.
806 \f
807 version 1.13 - Paul Eggert, 1999-07-08.
808
809 * Support for large files, e.g., files larger than 2 GB on many 32-bit hosts.
810   Also, support for larger uids, device ids, etc.
811 * Many bug fixes and porting fixes.
812 * This release is only for fixes.  A more ambitious test release,
813   with new features, is available as part of the paxutils.  Please see:
814     ftp://alpha.gnu.org/gnu/paxutils/
815   The fixes in this release are intended to be merged with paxutils
816   at some point, but they haven't been merged yet.
817 * An interim GNU tar alpha had new --bzip2 and --ending-file options,
818   but they have been removed to maintain compatibility with paxutils.
819   Please try --use=bzip2 instead of --bzip2.
820 \f
821 Version 1.12 - François Pinard, 1997-04.
822
823 Sensitive matters
824 * Use shell globbing patterns for --label, instead of regular expressions.
825 * Do not quote anymore internally over the quoting done by the shell.
826
827 Output for humans
828 * Offer internationalization capabilities of most recent GNU gettext.
829 * Messages available in many more languages, thanks to all translators!
830 * Usage of ISO 8601 dates in listings, instead of local American dates.
831 * More normalization and cleanup in error messages.
832
833 Creation
834 * For helping using tar with find, offer a --no-recursion option.
835 * Implement --numeric-owner for ignoring symbolic names at create time.
836 * New --owner, --group --mode options, still preliminary.
837 * Recognize creating an archive on /dev/null, so Amanda works faster.
838 * Object to the creation of an empty archive (like in `tar cf FILE').
839 * Barely start implementing --posix and POSIXLY_CORRECT.
840
841 Extraction
842 * Make a better job at restoring file and directory attributes.
843 * Automatically attempt deleting existing files when in the way.
844 * Option --unlink-first (-U) removes most files prior to extraction.
845 * Option --recursive-unlink removes non-empty directories when in the way.
846 * Option --numeric-owner ignores owner/group names, it uses UID/GID instead.
847 * Use global umask when creating missing intermediate directories.
848 * When symlinks are not available, extract symbolic links as hard links.
849 * Diagnose extraction of contiguous files as regular files.
850 * New --backup, --suffix and --version-control options.
851
852 Various changes
853 * Better support of huge archives with --tape-length and --totals.
854 * Rename option --read-full-blocks (-B) to --read-full-records (-B).
855 * Rename option --block-size (-b) to --blocking-factor (-b).
856 * Rename option --record-number (-R) to --block-number (-R).
857 * With --block-number (-R), report null blocks and end of file.
858 * Implement --record-size for introducing a size in bytes.
859 * Delete --block-compress option and rather decide it automatically.
860 * Rename option --modification-time to --touch.
861
862 Many bugs are squashed, while others still run free.
863 \f
864 Version 1.11.8 - François Pinard, 1995-06.
865
866 * Messages available in French, German, Portuguese and Swedish.
867 * The distribution provides a rudimentary Texinfo manual.
868 * The device defaults to stdin/stdout, unless overridden by the installer.
869 * Option --sparse (-S) should work on more systems.
870 * Option --rsh-command may select an alternative remote shell program.
871
872 Most changes are internal, and should yield better portability.
873 \f
874 Version 1.11.2 - Michael Bushnell, 1993-03.
875
876 * Changes in backup scripts: cleaned up considerably; notices error
877 conditions better over rsh; DUMP_REMIND_SCRIPT is now an option in
878 backup-specs; new file dump-remind is an example of a
879 DUMP_REMIND_SCRIPT.
880
881 * Superfluous "Reading dirname" was a bug; fixed.
882
883 * Incompatibility problems with a bug on Solaris are fixed.
884
885 * New option --gzip (aliases are --ungzip and -z); calls gzip instead
886 of compress.  Also, --use-compress-program lets you specify any
887 compress program.  --compress-block is renamed --block-compress and
888 now requires one of the three compression options to be specified.
889
890 * Several error messages are cleaned up.
891
892 * Directory owners are now set properly when running as root.
893
894 * Provide DUMP_REMIND_SCRIPT in backup-specs as a possible option
895 for --info-script.
896
897 * Behave better with broken rmt servers.
898
899 * Dump scripts no longer use --atime-preserve; this causes a nasty probem.
900
901 * Several Makefile cleanups.
902 \f
903 Version 1.11.1 - Michael Bushnell, 1992-09.
904
905 * Many bug fixes.
906 \f
907 Version 1.11 - Michael Bushnell, 1992-09.
908 Version 1.10.16 - 1992-07.
909 Version 1.10.15 - 1992-06.
910 Version 1.10.14 - 1992-05.
911 Version 1.10.13 - 1992-01.
912
913 * Many bug fixes.
914
915 * Now uses GNU standard configure, generated by Autoconf.
916
917 * Long options now use `--'; use of `+' is deprecated and support
918 for it will eventually be removed.
919
920 * New option --null causes filenames read by -T to be
921 null-terminated, and causes -C to be ignored.
922
923 * New option --remove-files deletes files (but not directories)
924 after they are added to the archive.
925
926 * New option --ignore-failed-read prevents read-errors from affecting
927 the exit status.
928
929 * New option --checkpoint prints occasional messages as the tape
930 is being read or written.
931
932 * New option --show-omitted-dirs prints the names of directories
933 omitted from the archive.
934
935 * Some tape drives which use a non-standard method of indicating
936 end-of-tape now work correctly with multi-tape archives.
937
938 * --volno-file: Read the volume number used in prompting the user
939 (but not in recording volume ID's on the archive) from a file.
940
941 * When using --multi-volume, you can now give multiple -f arguments;
942 the various tape drives will get used in sequence and then wrap
943 around to the beginning.
944
945 * Remote archive names no longer have to be in /dev: any file with a
946 `:' is interpreted as remote.  If new option --force-local is given,
947 then even archive files with a `:' are considered local.
948
949 * New option --atime-preserve restores (if possible) atimes to
950 their original values after dumping the file.
951
952 * No longer does tar confusingly dump "." when you don't tell it
953 what to dump.
954
955 * When extracting directories, tar now correctly restores their
956 modification and access times.
957
958 * Longnames support is redone differently--long name info directly
959 precedes the long-named file or link in the archive, so you no
960 longer have to wait for the extract to hit the end of the tape for
961 long names to work.
962 \f
963 Version 1.10 - Michael Bushnell, 1991-07.
964
965 * Filename to -G is optional.  -C works right.  Names +newer and
966 +newer-mtime work right.
967
968 * -g is now +incremental, -G is now +listed-incremental.
969
970 * Sparse files now work correctly.
971
972 * +volume is now called +label.
973
974 * +exclude now takes a filename argument, and +exclude-from does
975 what +exclude used to do.
976
977 * Exit status is now correct.
978
979 * +totals keeps track of total I/O and prints it when tar exits.
980
981 * When using +label with +extract, the label is now a regexp.
982
983 * New option +tape-length (-L) does multi-volume handling like BSD
984 dump: you tell tar how big the tape is and it will prompt at that
985 point instead of waiting for a write error.
986
987 * New backup scripts level-0 and level-1 which might be useful
988 to people.  They use a file "backup-specs" for information, and
989 shouldn't need local modification.  These are what we use to do
990 all our backups at the FSF.
991 \f
992 Version 1.09 - Jay Fenlason, 1990-10.
993 Version 1.08 - Jay Fenlason, 1990-01.
994 Versions 1.07 back to 1.00 by Jay Fenlason.
995
996 * See ChangeLog for more details.
997
998 \f
999
1000 Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003,
1001 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
1002
1003 This file is part of GNU tar.
1004
1005 GNU tar is free software; you can redistribute it and/or modify
1006 it under the terms of the GNU General Public License as published by
1007 the Free Software Foundation; either version 3, or (at your option)
1008 any later version.
1009
1010 GNU tar is distributed in the hope that it will be useful,
1011 but WITHOUT ANY WARRANTY; without even the implied warranty of
1012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1013 GNU General Public License for more details.
1014
1015 You should have received a copy of the GNU General Public License
1016 along with tar; see the file COPYING.  If not, write to
1017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1018 Boston, MA 02110-1301, USA.
1019 \f
1020 Local variables:
1021 mode: outline
1022 paragraph-separate: "[  \f]*$"
1023 eval: (add-hook 'write-file-hooks 'time-stamp)
1024 time-stamp-start: "changes. "
1025 time-stamp-format: "%:y-%02m-%02d"
1026 time-stamp-end: "\n"
1027 end: