Skip to content

restic 0.6.1

Compare
Choose a tag to compare
@fd0 fd0 released this 31 May 22:09
· 5624 commits to master since this release
v0.6.1

This is mostly a bugfix release and only contains small changes:

  • The release binaries are now built in a reproducible way, see https://github.com/restic/builder

  • We've fixed a bug where rebuild-index would corrupt the index when used with the s3 backend together with the default layout. This is not the default setting.

  • Backends based on HTTP now allow several idle connections in parallel. This is especially important for the REST backend, which (when used with a local server) may create a lot connections and exhaust available ports quickly. #985 #986

  • Regular status report: We've removed the status report that was printed every 10 seconds when restic is run non-interactively. You can still force reporting the current status by sending a USR1 signal to the process. #974

  • The build.go now strips the temporary directory used for compilation from the binary. This is the first step in enabling reproducible builds. #981

Change Log

v0.6.1 (2017-05-31)

Full Changelog

Fixed bugs:

  • "restic check" with rest-backend is using up too many fd's on rest-server. #985
  • Running rebuild-index on s3 with new default layout corrupts index #984
  • AWS credentials ending in "=" don't work #970

Closed issues:

  • Slow "restic prune" on Amazon s3 bucket #973

Merged pull requests:

  • [docs] Fix paragraph not indented correctly in #Autocomplete #987 (Thor77)
  • Allow many idle connections per host #986 (fd0)
  • build.go: Strip temporary path, allow reproducible builds #981 (fd0)