X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/d11a5b80c1c948fb23c65c369461079242569920..4640ae85fe8b35d3410b319f532e3ad9ff7eac79:/NEWS diff --git a/NEWS b/NEWS index b9bfead9..e9a84b42 100644 --- a/NEWS +++ b/NEWS @@ -1,59 +1,55 @@ -NEWS for rsync 3.0.4 (UNRELEASED) +NEWS for rsync 3.0.6 (UNRELEASED) Protocol: 30 (unchanged) -Changes since 3.0.3: +Changes since 3.0.5: BUG FIXES: - - Fixed a bug in the hard-linking code where it would sometimes try to - allocate 0 bytes of memory (which fails on some OSes, such as AIX). + - Fixed a --read-batch hang when rsync is reading a batch file that was + created from an incremental-recursion transfer. - - Fixed the hard-linking of files from a device that has a device number - of 0 (which seems to be a common device number on NetBSD). + - Fixed the daemon's socket code to handle the simultaneous arrival of + multiple connections. - - Fixed the handling of a --partial-dir that cannot be created. This - particularly impacts the --delay-updates option (since the files cannot - be delayed without a partial-dir), and was potentially destructive if - the --remove-source-files was also specified. + - Fix --safe-links/--copy-unsafe-links to properly handle symlinks that + have consecutive slashes in the value. - - Fixed a couple issues in the --fake-super handling of xattrs when the - destination files have root-level attributes (e.g. selinux values) that - a non-root copy can't affect. + - Fixed the parsing of an [IPv6_LITERAL_ADDR] when a USER@ is prefixed. - - Improved the keep-alive check in the generator to fire consistently in - incremental-recursion mode when --timeout is enabled. + - The sender now skips a (bogus) symlink that has a 0-length value, which + avoids a transfer error in the receiver. - - The --iconv option now converts the content of a symlink too, instead - of leaving it in the wrong character-set (requires 3.0.4 on both sides - of the transfer). + - Fixed a case where the sender could die with a tag-0 error if there was + an I/O during the sending of the file list. - - When using --iconv, if a filename fails to convert on the receiving side, - this no longer makes deletions in the root-dir of the transfer fail - silently (the user should see the warning about deletions being disabled - due to IO error when --ignore-errors was not specified). + - Fixed the rrsync script to avoid a server-side problem when -e is at the + start of the short options. - - When using --iconv, if a server-side receiver can't convert a filename, - it now outputs the name back to the client without mangling the charset. + - Fixed a problem where a vanished directory could turn into an exit code + 23 instead of the proper exit code 24. - - Fixed a potential alignment issue in the IRIX ACL code when allocating - the initial "struct acl" object. Also, cast mallocs to avoid warnings. + - Fixed the --iconv conversion of symlinks when doing a local copy. - - Changed some errors that were going to stdout to go to stderr. + - Fixed a problem where --one-file-system was not stopping deletions on the + receiving side when a mount-point directory did not match a directory in + the transfer. - - Made human_num() and human_dnum() able to output a negative number - (rather than outputting a cryptic string of punctuation). + - Fixed the dropping of an ACL mask when no named ACL values were present. - ENHANCEMENTS: + - Fixed an ACL/xattr corruption issue where the --backup option could cause + rsync to associate the wrong ACL/xattr information with received files. - - Rsync will avoid sending an -e option to the server if an older protocol - is requested (and thus the option would not be useful). This lets the - user specify the --protocol=29 option to access an overly-restrictive - server that is rejecting the protocol-30 use of -e to the server. + - Fixed the use of --xattrs with --only-write-batch. - - Improved the message output for an RERR_PARTIAL exit. + - Fixed the use of --dry-run with --read-batch. - DEVELOPER RELATED: + - Fixed configure's erroneous use of target. - - The Makefile will not halt for just a timestamp change on the Makefile - or the configure files, only for actual changes in content. + - Fixed configure's --disable-debug option. - - Enhanced the release scripts to be able to handle a branch release. + - Fixed a run-time issue for systems that can't find iconv_open() by adding + the --disable-iconv-open configure option. + + - Complain and die if the user tries to combine --remove-source-files (or + the deprecated --remove-sent-files) with --read-batch. + + - Fixed an failure transferring special files from Solaris to Linux.