Preparing for release of 2.6.8pre1
[rsync/rsync.git] / NEWS
diff --git a/NEWS b/NEWS
index a5ce254..4459ae0 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,57 +1,48 @@
-rsync 2.4.7 (sometime in 2001, maybe :)
+NEWS for rsync 2.6.8 (UNRELEASED)
+Protocol: 29 (unchanged)
+Changes since 2.6.7:
 
-  ANNOUNCEMENTS
-
-    * Martin Pool <mbp@samba.org> is now a co-maintainer.
-
-  NEW FEATURES
-
-    * Support for LSB-compliant packaging <http://www.linuxbase.org/>
-
-    * Shell wildcards are allowed in "auth users" lines.
-
-  ENHANCEMENTS
-
-    * Include/exclude cluestick: with -vv, print out whether files are
-      included or excluded and why.
-
-    * Many error messages have more friendly explanations and more
-      details.
-
-    * Manual page improvements plus scanty protocol documentation.
+  BUG FIXES:
 
-    * When running as --daemon in the background and using a "log
-      file" rsyncd.conf directive, close the log file every time it is
-      open when going to sleep on the socket.  This allows the log
-      file to get cleaned out by another process.
+    - Fixed a bug in the exclude code where an anchored exclude without any
+      wildcards fails to match an absolute source arg, but only when --relative
+      is in effect.
 
-    * Change to using libpopt rather than getopt for processing
-      options.  This makes the code cleaner and the behaviour more
-      consistent across platforms.  popt is included and built if not
-      installed on the platform.
+    - Improved the I/O code for the generator to fix a potential hang when the
+      receiver gets an EOF on the socket but the generator's select() call
+      never indicates that the socket is writable for it to be notified about
+      the EOF.  (This can happen when using stunnel).
 
-    * More details in --version, including note about whether 64-bit
-      files, symlinks and hardlinks are supported.
+    - Fixed a problem with the file-reading code where a failed read (such as
+      that caused by a bad sector) would make rsync think that the file's
+      read-position was left after the failed read's data.
 
-    * MD4 code may use less CPU cycles.
+    - Fixed a logging bug where the "log file" directive was not being honored
+      in a single-use daemon (one spawned by a remote-shell connection or by
+      init).
 
-    * Use mkstemp on systems where it is secure.  If we use mktemp,
-      explain that we do it in a secure way.
+    - If rsync cannot honor the --delete option, we output an error and exit
+      instead of silently ignoring the option.
 
-    * --whole-file is the default when source and target are on the
-        local machine.
+  ENHANCEMENTS:
 
-  BUG FIXES:
+    - In daemon mode, if rsync fails to bind to the requested port, the
+      error(s) returned by socket() and/or bind() are now logged.
 
-    * Attempt to fix Large File Summit support on AIX.
+    - When we output a fatal error, we now output the version of rsync in the
+      message.
 
-    * Attempt to fix error handling lockup bug.
+    - The rsyncstats script in "support" has an improved line-parsing regex
+      that is easier to read and also makes it to parse syslog-generated lines.
 
-    * Give a non-0 exit code if *any* of the files we have been asked
-      to transfer fail to transfer 
+    - A new script in "support": file-attr-restore, can be used to restore the
+      attributes of a file-set (the permissions, ownership, and group info)
+      taken from the cached output of a "find ARG... -ls" command.
 
-    * Fix --cvs-exclude sigsegv bug.
+  DEVELOPER RELATED:
 
-    * Applied "simple nohang patch" from Wayne Davison.
+    - The acls.diff patch has been improved quite a bit, with more to come.
 
-    * Update to work with autoconf2.50 and 2.13.
+    - A new patch was added: log-file.diff.  This contains an early version of
+      a future option, --log-file=FILE, that will allow any rsync to log its
+      actions to a file (something that only a daemon supports at present).