My version of Matt's improvements related to missing source args:
[rsync/rsync.git] / NEWS
1 NEWS for rsync 3.0.6 (8 May 2009)
2 Protocol: 30 (unchanged)
3 Changes since 3.0.5:
4
5   BUG FIXES:
6
7     - Fixed a --read-batch hang when rsync is reading a batch file that was
8       created from an incremental-recursion transfer.
9
10     - Fixed the daemon's socket code to handle the simultaneous arrival of
11       multiple connections.
12
13     - Fix --safe-links/--copy-unsafe-links to properly handle symlinks that
14       have consecutive slashes in the value.
15
16     - Fixed the parsing of an [IPv6_LITERAL_ADDR] when a USER@ is prefixed.
17
18     - The sender now skips a (bogus) symlink that has a 0-length value, which
19       avoids a transfer error in the receiver.
20
21     - Added the --delete-missing option to delete user-specified files on the
22       receiver that are missing on the sender (normally the absence of user-
23       specified files generates an error).
24
25     - Fixed a case where the sender could die with a tag-0 error if there was
26       an I/O during the sending of the file list.
27
28     - Fixed the rrsync script to avoid a server-side problem when -e is at the
29       start of the short options.
30
31     - Fixed a problem where a vanished directory could turn into an exit code
32       23 instead of the proper exit code 24.
33
34     - Fixed the --iconv conversion of symlinks when doing a local copy.
35
36     - Fixed a problem where --one-file-system was not stopping deletions on the
37       receiving side when a mount-point directory did not match a directory in
38       the transfer.
39
40     - Fixed the dropping of an ACL mask when no named ACL values were present.
41
42     - Fixed an ACL/xattr corruption issue where the --backup option could cause
43       rsync to associate the wrong ACL/xattr information with received files.
44
45     - Fixed the use of --xattrs with --only-write-batch.
46
47     - Fixed the use of --dry-run with --read-batch.
48
49     - Fixed configure's erroneous use of target.
50
51     - Fixed configure's --disable-debug option.
52
53     - Fixed a run-time issue for systems that can't find iconv_open() by adding
54       the --disable-iconv-open configure option.
55
56     - Complain and die if the user tries to combine --remove-source-files (or
57       the deprecated --remove-sent-files) with --read-batch.
58
59     - Fixed an failure transferring special files from Solaris to Linux.