From 07b47ef4a54d367162a4c1d2777ac573f5949e43 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 13 Aug 2016 00:49:07 +0200 Subject: [PATCH] update CHANGES --- docs/changes.rst | 36 +++++++++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/docs/changes.rst b/docs/changes.rst index 4972dc382..601008417 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -58,8 +58,8 @@ Security fixes: - fix security issue with remote repository access, #1428 -Version 1.0.7rc2 (not released yet) ------------------------------------ +Version 1.0.7rc2 (2016-08-13) +----------------------------- Bug fixes: @@ -68,11 +68,33 @@ Bug fixes: IMPORTANT: if you created archives with many millions of files or directories, please verify if you can open them successfully, e.g. try a "borg list REPO::ARCHIVE". -- fixed a race condition in extended attributes querying that led to the - entire file not being backed up (while logging the error, exit code = 1), - #1469 -- fixed a race condition in extended attributes querying that led to a crash, - #1462 +- lz4 compression: dynamically enlarge the (de)compression buffer, the static + buffer was not big enough for archives with extremely many items, #1453 +- larger item metadata stream chunks, raise archive limit by 8x, #1452 +- fix untracked segments made by moved DELETEs, #1442 +- extended attributes (xattrs) related fixes: + + - fixed a race condition in xattrs querying that led to the entire file not + being backed up (while logging the error, exit code = 1), #1469 + - fixed a race condition in xattrs querying that led to a crash, #1462 + - raise OSError including the error message derived from errno, deal with + path being a integer FD + +Other changes: + +- print active env var override by default, #1467 +- xattr module: refactor code, deduplicate, clean up +- repository: split object size check into too small and too big +- add a transaction_id assertion, so borg init on a broken (inconsistent) + filesystem does not look like a coding error in borg, but points to the + real problem. +- explain confusing TypeError caused by compat support for old servers, #1456 +- add forgotten usage help file from build_usage +- refactor/unify buffer code into helpers.Buffer class, add tests +- docs: + + - document archive limitation, #1452 + - improve prune examples Version 1.0.7rc1 (2016-08-05)