- Use BIGPATHBUFLEN for the length of two line buffers.
[rsync/rsync.git] / NEWS
diff --git a/NEWS b/NEWS
index fc916f4..b439830 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,23 +1,23 @@
-rsync 2.5.1 (sometime in 2001?)
+NEWS for rsync 2.6.7 (UNRELEASED)
+Protocol: 29 (unchanged)
+Changes since 2.6.6:
 
-  ENHANCEMENTS:
+  BUG FIXES:
 
-    * --progress and -P now show estimated data transfer rate (in a
-        multiple of bytes/s) and estimated time to completion.  Based
-        on a patch by Rik Faith.
-   
-    * --no-detach option, required to run as a W32 service and also
-        useful when running on Unix under daemontools, AIX's SRC, or a
-        debugger.  Thanks to Max Bowsher and Jos Backus.
+    - If the user specifies a remote-host for both the source and destination,
+      we now output a syntax error rather than trying to open the destination
+      hostspec as a filename.
 
-  BUG FIXES: 
-   
-    * Correct string<->address parsing for both IPv4 and 6.  Thankyou
-      to YOSHIFUJI Hideaki, SUMIKAWA Munechika and Jun-ichiro "itojun"
-      Hagino.
+  ENHANCEMENTS:
 
-    * rsync.1 typo fix by Matt Kraai.
+    - Added the --append option that makes rsync append data onto files
+      that are longer on the source than the destination (this includes new
+      files).
 
-    * Fix for segfault in rsyncd.conf parser by Paul Mackerras.
+    - If lutimes() and/or lchmod() are around, use them to allow the
+      preservation of attributes on symlinks.
 
-    * Test suite typo fixes Tom Schmidt.
+    - Added two config items to the rsyncd.conf parsing:  "pre-xfer exec"
+      and "post-xfer exec".  These allow a command to be specified on a
+      per-module basis that will be run before and/or after a daemon-mode
+      transfer.