restic v0.8.3 Release Notes

Release Date: 2018-02-26 // about 6 years ago
  • We're very pleased to announce restic 0.8.3! restic is distributed as a standalone binary: download the correct file for your operating system and architecture, extract the file and just run it. If you run into any issues, please report them at the GitHub issue tracker or visit the forum.

    ๐Ÿš€ The binaries released with each restic version 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.

    ๐Ÿš€ For the 0.8.3 release, the binaries are a bit harder to reproduce since Go 1.10 changed a command-line parameter we're using, and we did not catch this early enough for the release. Instructions on how to reproduce them can be found in the forum.

    ๐Ÿ”„ Changelog for restic 0.8.3 (2018-02-26)

    The following sections list the changes in restic 0.8.3 relevant to restic users. The changes are ordered by importance.

    Summary

    • ๐Ÿ›  Fix #1633: Fixed unexpected 'pack file cannot be listed' error
    • ๐Ÿ›  Fix #1641: Ignore files with invalid names in the repo
    • ๐Ÿ›  Fix #1638: Handle errors listing files in the backend
    • Enh #1497: Add --read-data-subset flag to check command
    • Enh #1560: Retry all repository file download errors
    • Enh #1623: Don't check for presence of files in the backend before writing
    • โฌ†๏ธ Enh #1634: Upgrade B2 client library, reduce HTTP requests

    Details

    ๐Ÿ›  Bugfix #1633: Fixed unexpected 'pack file cannot be listed' error

    Due to a regression introduced in 0.8.2, the rebuild-index and prune commands failed to read pack files with size of 587, 588, 589 or 590 bytes.

    #1633 #1635

    ๐Ÿ›  Bugfix #1641: Ignore files with invalid names in the repo

    ๐Ÿš€ The release 0.8.2 introduced a bug: when restic encounters files in the repo which do not have a valid name, it tries to load a file with a name of lots of zeroes instead of ignoring it. This is now resolved, invalid file names are just ignored.

    #1641 #1643

    ๐Ÿ›  Bugfix #1638: Handle errors listing files in the backend

    ๐Ÿ–จ A user reported in the forum that restic completes a backup although a concurrent prune operation was running. A few error messages were printed, but the backup was attempted and completed successfully. No error code was returned.

    This should not happen: The repository is exclusively locked during prune, so when restic backup is run in parallel, it should abort and return an error code instead.

    It was found that the bug was in the code introduced only recently, which retries a List() operation on the backend should that fail. It is now corrected.

    #1638

    โœจ Enhancement #1497: Add --read-data-subset flag to check command

    This change introduces ability to check integrity of a subset of repository data packs. This can be used to spread integrity check of larger repositories over a period of time.

    #1497 #1556

    โœจ Enhancement #1560: Retry all repository file download errors

    Restic will now retry failed downloads, similar to other operations.

    #1560

    โœจ Enhancement #1623: Don't check for presence of files in the backend before writing

    Before, all backend implementations were required to return an error if the file that is to be written already exists in the backend. For most backends, that means making a request (e.g. via HTTP) and returning an error when the file already exists.

    โœ… This is not accurate, the file could have been created between the HTTP request testing for it, and when writing starts, so we've relaxed this requeriment, which saves one additional HTTP request per newly added file.

    #1623

    โœจ Enhancement #1634: Upgrade B2 client library, reduce HTTP requests

    โฌ†๏ธ We've upgraded the B2 client library restic uses to access BackBlaze B2. This reduces the number of HTTP requests needed to upload a new file from two to one, which should improve throughput to B2.

    #1634