Change sending/receiving/storing of the rdev value for special files.
[rsync/rsync.git] / NEWS
diff --git a/NEWS b/NEWS
index 477ec23..e9a84b4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,42 +1,55 @@
-NEWS for rsync 3.0.0 (UNRELEASED)
-Protocol: 30 (changed)
-Changes since 2.6.9:
+NEWS for rsync 3.0.6 (UNRELEASED)
+Protocol: 30 (unchanged)
+Changes since 3.0.5:
 
   BUG FIXES:
 
-    - Fixed the output of -ii when combined with one of the --*-dest options:
-      it now itemizes all the items, not just the changed ones.
+    - Fixed a --read-batch hang when rsync is reading a batch file that was
+      created from an incremental-recursion transfer.
 
-    - Made the output of all file types consistent when using a --*-dest
-      option.  Prior versions used to output too many creation events for
-      matching items.
+    - Fixed the daemon's socket code to handle the simultaneous arrival of
+      multiple connections.
 
-    - A negated filter rule now sends the negation option when sending the
-      filter rules.
+    - Fix --safe-links/--copy-unsafe-links to properly handle symlinks that
+      have consecutive slashes in the value.
 
-  ENHANCEMENTS:
+    - Fixed the parsing of an [IPv6_LITERAL_ADDR] when a USER@ is prefixed.
 
-    - You may specify --max-delete=0 to a 3.0.0 client as long as the
-      receiving side is at least version 3.0.0.  This means that you
-      can pull from an older rsync with this option, but pushing to an
-      older rsync will generate an error.  *Be careful to never specify
-      a 0 value to older rsync client, or it will be silently ignored.*
+    - The sender now skips a (bogus) symlink that has a 0-length value, which
+      avoids a transfer error in the receiver.
 
-  INTERNAL:
+    - 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.
 
-    - Added some isType() functions that make dealing with signed characters
-      easier without forcing variables via casts.
+    - Fixed the rrsync script to avoid a server-side problem when -e is at the
+      start of the short options.
 
-    - Upgraded the included popt version to 1.10.2 and improved its use of
-      string-handling functions.
+    - Fixed a problem where a vanished directory could turn into an exit code
+      23 instead of the proper exit code 24.
 
-    - Added missing prototypes for compatibility functions from the lib dir.
+    - Fixed the --iconv conversion of symlinks when doing a local copy.
 
-    - Figure out if the iconv() function has a const arg to avoid a compiler
-      warning.
+    - 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.
 
-    - Improved the use of "const" on pointers.
+    - Fixed the dropping of an ACL mask when no named ACL values were present.
 
-  DEVELOPER RELATED:
+    - Fixed an ACL/xattr corruption issue where the --backup option could cause
+      rsync to associate the wrong ACL/xattr information with received files.
 
-    - ...
+    - Fixed the use of --xattrs with --only-write-batch.
+
+    - Fixed the use of --dry-run with --read-batch.
+
+    - Fixed configure's erroneous use of target.
+
+    - Fixed configure's --disable-debug option.
+
+    - 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.