summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2022-07-29 11:48:18 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2022-07-29 11:48:18 +0200
commite7bd9e8442c93a34e4a0bb1edb49ad3ea7341ee6 (patch)
tree1a96e388c8e7a2521afb27ca3e60cb1fd9a75230 /docs
parent3d94c595b0b3b8fcf51513a3c9708c78d3cc4e5a (diff)
update CHANGES
Diffstat (limited to 'docs')
-rw-r--r--docs/changes.rst36
1 files changed, 34 insertions, 2 deletions
diff --git a/docs/changes.rst b/docs/changes.rst
index 8340da88..89202d6c 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -217,8 +217,7 @@ The best check that everything is ok is to run a dry-run extraction::
Change Log
==========
-
-Version 1.2.1 (2022-06-06)
+Version 1.2.2 (2022-07-xx)
--------------------------
Upgrade notes:
@@ -268,6 +267,7 @@ Compatibility notes:
- mount: the default for --numeric-ids is False now (same as borg extract)
- borg create --noatime is deprecated. Not storing atime is the default behaviour
now (use --atime if you want to store the atime).
+- --prefix is deprecated, use -a / --glob-archives, see #6806
- list: corrected mix-up of "isomtime" and "mtime" formats.
Previously, "isomtime" was the default but produced a verbose human format,
while "mtime" produced a ISO-8601-like format.
@@ -299,6 +299,38 @@ Compatibility notes:
Fixes:
+- SaveFile: avoid chmod OSError: operation not supported - the chmod is optional, #6786
+ (some filesystems like cifs/smbfs do not support chmod, just ignore if it is failing)
+- hashindex_compact: fix eval order (check idx before use), #5899
+- create --paths-from-(stdin|command): normalize paths, #6778
+- secure_erase: avoid collateral damage, #6768
+ (if a hardlink copy of a repo was made and a new repo config shall be saved,
+ do NOT fill in random garbage before deleting the previous repo config,
+ because that would damage the hardlink copy).
+
+Other changes:
+
+- deprecate --prefix, use -a / --glob-archives, see #6806
+- fix pyproject.toml to create a fixed _version.py file, compatible with both
+ old and new setuptools_scm version, #6875
+- automate asciinema screencasts
+- CI: test on macOS 12 without fuse / fuse tests
+ (too troublesome on github CI due to kernel extensions needed by macFUSE)
+- tests: fix test_obfuscate byte accounting
+- docs:
+
+ - add info on man page installation, #6894
+ - update archive_progress json description about "finished", #6570
+ - json progress_percent: some values are optional, #4074
+ - FAQ: full quota / full disk, #5960
+ - correct shell syntax for installation using git
+
+
+Version 1.2.1 (2022-06-06)
+--------------------------
+
+Fixes:
+
- create: skip with warning if opening the parent dir of recursion root fails, #6374
- create: fix crash. metadata stream can produce all-zero chunks, #6587
- fix crash when computing stats, escape % chars in archive name, #6500