summaryrefslogtreecommitdiffstats
path: root/docs/changes.rst
diff options
context:
space:
mode:
authorMichael Hanselmann <public@hansmi.ch>2016-01-23 11:05:06 +0100
committerMichael Hanselmann <public@hansmi.ch>2016-01-23 11:05:17 +0100
commit14934dab08099d8adc76aa258349621f1181a831 (patch)
tree921d6f1c533be86b74eba588040147f5b48d605f /docs/changes.rst
parenta237c1fb5374b4bdc8b7bdd72bb0833f35e4d600 (diff)
Update changes for shell-style pattern support
Diffstat (limited to 'docs/changes.rst')
-rw-r--r--docs/changes.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/changes.rst b/docs/changes.rst
index 98be66d33..35aec31a1 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -34,10 +34,12 @@ New features:
- borg extract: support patterns, #361
- support different styles for patterns:
- - fnmatch (fm: prefix, default when omitted), like borg <= 0.29.
- - path prefix (pp: prefix, for unifying borg create pp1 pp2 into the
+ - fnmatch (`fm:` prefix, default when omitted), like borg <= 0.29.
+ - shell (`sh:` prefix) with `*` not matching directory separators and
+ `**/` matching 0..n directories
+ - path prefix (`pp:` prefix, for unifying borg create pp1 pp2 into the
patterns system), semantics like in borg <= 0.29
- - regular expression (re:), new!
+ - regular expression (`re:`), new!
- --progress option for borg upgrade (#291) and borg delete <archive>
- update progress indication more often (e.g. within big files), #500
- finer chunker granularity for items metadata stream, #547, #487