X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/932fcfc1aab6c5cb376cc0a17487feaf1b285f8f..da01d2e84320680b1cf7502c2af9b426325a64fa:/NEWS diff --git a/NEWS b/NEWS index 926dba3b..0f7c634c 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,7 @@ Changes since 2.6.9: an implied dir be duplicated as a symlink, you should specify the transfer of the symlink and the transfer of the referent directory as separate args. (See also --keep-dirlinks and --no-implied-dirs.) + Also, exclude rules no longer have a partial affect on implied dirs. - Requesting a remote file list without specifying -r (--recursive) now sends the -d (--dirs) option to the remote rsync rather than sending -r @@ -29,6 +30,17 @@ Changes since 2.6.9: BUG FIXES: + - A daemon with "use chroot = no" and excluded items listed in the daemon + config file now properly checks an absolute-path arg specified for these + options: --compare-dest, --link-dest, --copy-dest, --partial-dir, + --backup-dir, --temp-dir, and --files-from. + + - If a file's data arrived successfully on the receiving side but the + rename of the tempory file to the destination file failed AND the + --remove-souce-files (or the deprecated --remove-sent-files) option + was specified, rsync no longer erroneously removes the associated + source file. + - Fixed the output of -ii when combined with one of the --*-dest options: it now itemizes all the items, not just the changed ones. @@ -86,6 +98,10 @@ Changes since 2.6.9: - Any errors output about password-file reading no longer cause an error at the end of the run about a partial transfer. + - The --read-batch option for protocol 30 now ensures that several more + options are set correctly for the current batch file: --iconv, --acls, + --xattrs, --inplace, --append, and --append-verify. + - Using --only-write-batch to a daemon receiver now work properly (older versions would update some files while writing the batch). @@ -176,6 +192,10 @@ Changes since 2.6.9: that should not have an effect in a directory that is being deleted. e.g. -f '-p .svn/' would only affect "live" .svn directories. + - Rsync checks all the alternate-destination args for validity (e.g. + --link-dest). This lets the user know when they specified a directory + that does not exist. + - If we get an error setting the time on a symlink, we don't complain about it anymore (since some operating systems don't support that, and it's not that important).