Properly handle the backup_suffix/backup_dir settings when deleting
[rsync/rsync.git] / NEWS
diff --git a/NEWS b/NEWS
index 99cc19b..88c1989 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -23,9 +23,30 @@ Changes since version 2.5.6:
 
   BUG FIXES:
 
+    * Fixed several exclude/include matching bugs when using wild-cards.
+      This has a several user-visible effects, all of which make the
+      matching more consistent and intuitive.  This should hopefully not
+      cause anyone problems since it makes the matching work more like
+      what people are expecting. (Wayne Davison)
+
+      - A pattern with a "**" no longer causes a "*" to match slashes.
+        For example, with "/*/foo/**", "foo" must be 2 levels deep.
+
+      - "**/foo" now matches at the base of the transfer (i.e. /foo).
+
+      - An non-anchored wildcard term floats to match beyond the base of
+        the transfer.  E.g. "CVS/R*" matches at the end of the path,
+        just like the non-wildcard term "CVS/Root" does.
+
+      - Including a "**" in the match term causes it to be matched
+        against the entire path, not just the name portion, even if
+        there aren't any interior slashes in the term.  E.g. "foo**bar"
+        would exclude "/path/foo-bar" (just like before) as well as
+        "/foo-path/baz-bar" (for instance).
+
     * The exclude list specified in the daemon's config file is now
       properly applied to the pulled items no matter how deep the
-      user's file args are in the source tree. (Wayne Davison)
+      user's file args are in the source tree.  (Wayne Davison)
 
     * For protocol version >= 27, mdfour_tail() is called when the
       block size (including checksum_seed) is a multiple of 64.
@@ -48,13 +69,12 @@ Changes since version 2.5.6:
     * Made rsync treat a trailing slash in the destination in a more
       consistent manner.
 
-    * Fixed some exclude/include matching bugs when using wild-cards.
-      For instance, "**/foo" now matches at the root, "CVS/R*" now
-      matches beyond the root, and "foo**bar" is matched against the
-      path, not just the trailing name.  (Wayne Davison)
-
     * Fixed file I/O error detection.  (John Van Essen)
 
+    * Fixed a compression (-z) bug when syncing a mostly-matching file
+      that contains already-compressed data.  (Yasuoka Masahiko and
+      Wayne Davison)
+
   INTERNAL:
 
     * Eliminated vestigial support for old versions that we stopped