-
The minimum
gitversion required is now 1.5.6. -
The
prune-oldercommand now keeps the most recent save in each period group (day, week, month, ...) rather than the oldest. -
bupnow adds a zero-padded suffix to the names of saves with the same timestamp (e.g. 1970-01-01-214640-07) in order to avoid duplicates. The sequence number currently represents the save's reversed position in defaultgit rev-listorder, so that given:/foo/1970-01-01-214640-09 /foo/1970-01-01-214640-10
In the normal case, the -10 save would be the next save made after -09 (and the -09 save would be the single parent commit for -10).
-
bupis not currently compatible with Python 3 and will now refuse to run if the Python version is not 2 unlessBUP_ALLOW_UNEXPECTED_PYTHON_VERSION=trueis set in the environment (which can be useful for development and testing). -
bup ls -snow reports the tree hash for commits unless--commit-hashis also specified.
-
bup gethas been added. This command allows the transfer or rewriting of data within and between repositories, local or remote. Among other things, it can be used to append remote saves to a local branch, which by extension supports merging repositories. Seebup-get(1)for further information, and please note, this is a new EXPERIMENTAL command that can (intentionally) modify your data in destructive ways. It is potentially much more dangerous than mostbupcommands. Treat with caution. -
bupcan now restore directly from a remote repository viabup restore -r host:path .... Seebup-restore(1)for more information. -
bup lscan now report information for remote repositories viabup ls -r host:path .... Seebup-ls(1)for more information. -
bupshould respect the git pack.packSizeLimit setting when writing packfiles, though at the moment it will only affect a remote repository when the option is set there directly. -
bup savenow stores the size for all links and normal files. For directories saved using this new format retrieving file sizes for larger files should be notably less expensive. Among other things this may improve the performance of commands likebup ls -lorfind /some/fuse/dir -ls. -
The VFS (Virtual File System) that underlies many operations, and provides the basis for commands like
restore,ls, etc. has been rewritten in a way that makes remote repository access easier, should decrease the memory footprint in some cases (e.g. for bup fuse), and should make it easier to provide more selective caching. At the moment, data is just evicted at random once a threshold is reached. -
A
--noop <--blobs|--tree>option has been added tobup splitwhich prints the resulting id without storing the data in the repository.
-
The way
buphandles output from subprocesses (diagnostics, progress, etc.) has been adjusted in a way that should make it less likely that bup might continue running after the main process has exited, say via a C-c (SIGINT). -
bupshould now respect the specified compression level when writing to a remote repository. -
bup restorenow creates FIFOs with mkfifo, not mknod, which is more portable. The previous approach did not work correctly on (at least) some versions of NetBSD. -
bupshould no longer just crash when it encounters a commit with a "mergetag" header. For the moment, it just ignores them, and they'll be discarded wheneverbuprewrites a commit, say via therm,prune-older, orgetcommands. -
The bloom command should now end progress messages with \r, not \n, which avoids leaving spurious output lines behind at exit.
-
A missing space has been added to the
bup split --benchoutput. -
Various Python version compatibility problems have been fixed, including some of the incompatibilities introduced by Python 3.
-
Some issues with mincore on WSL have been fixed.
-
Some Android build incompatibilities have been fixed.
-
The tests no longer assume pwd is in /bin.
-
The tests should be less sensitive to the locale.
-
test-metashould no longer try to apply chattr +T to files. 'T' only works for directories, and newer Linux kernels actually reject the attempt (as of at least 4.12, and maybe 4.10). -
test-rmshould no longer fail when newer versions of git automatically create packed-refs. -
test-sparse-filesshould be less likely to fail when run inside a container. -
test-index-check-deviceandtest-xdevnow use separate files for their loopback mounts. Previously each was mounting the same image twice, which could produce the same device number.
Alexander Barton, Artem Leshchev, Ben Kelly, Fabian 'xx4h' Melters, Greg Troxel, Jamie Wyrick, Julien Goodwin, Mateusz Konieczny, Nathaniel Filardo, Patrick Rouleau, Paul Kronenwetter, Rob Browning, Robert Evans, Tim Riemenschneider, and bedhanger