restic 0.7.1 released
22 Jul 2017We’re proud to present restic 0.7.1! For downloading the code, head over to GitHub. As always, thanks for reporting any issues you encounter!
The binaries released with each restic version starting are reproducible, which means that you can easily reproduce a byte identical version from the source code for that release. Instructions on how to do that are contained in the builder repository.
Important Changes in 0.7.1
- The
migrate
command for changing thes3legacy
layout to thedefault
layout for s3 backends has been improved: It can now be restarted withrestic migrate --force s3_layout
and automatically retries operations on error. #1073 #1075
Small changes
-
The local and sftp backends now create the subdirs below
data/
on open/init. This way, restic makes sure that they always exist. This is connected to an issue for the sftp server: #11 #1055 #1077 #1105 -
When no S3 credentials are specified in the environment variables, restic now tries to load credentials from an IAM instance profile when the s3 backend is used. #1067 #1086
-
On Darwin and FreeBSD, restic now prints stats when SIGINFO is received (usually when ctrl+t is pressed). #1082
-
A bug was found (and corrected) in the index rebuilding after prune, which led to indexes which include files that were not present in the repo any more. There were already checks in place which detected this situation and aborted with an error message. A new run of either
prune
orrebuild-index
corrected the index files. This is now fixed and a test has been added to detect this. #1115 -
Errors for chmod() on Unix for filesystems which do not support it (e.g. smb mounted via gvfs) are now ignored. #1080 #1112
-
The semantic for the
--tags
option toforget
andsnapshots
was clarified: #1081 #1090