-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1084 from tesshuflower/restic_v0.16.4
Update restic to v0.16.4
- Loading branch information
Showing
52 changed files
with
540 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
https://github.com/restic/restic.git v0.16.3 abca1124041f9c83227d253142dcc713e7b3914c | ||
https://github.com/restic/restic.git v0.16.4 3786536dc18ef27aedcfa8e4c6953b48353eee79 | ||
https://github.com/minio/minio-go.git v7.0.66 5415e6c72a71610108fe05ee747ac760dd40094f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.16.3 | ||
0.16.4 |
18 changes: 18 additions & 0 deletions
18
mover-restic/restic/changelog/0.16.4_2024-02-04/issue-4529
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Enhancement: Add extra verification of data integrity before upload | ||
|
||
Hardware issues, or a bug in restic or its dependencies, could previously cause | ||
corruption in the files restic created and stored in the repository. Detecting | ||
such corruption previously required explicitly running the `check --read-data` | ||
or `check --read-data-subset` commands. | ||
|
||
To further ensure data integrity, even in the case of hardware issues or | ||
software bugs, restic now performs additional verification of the files about | ||
to be uploaded to the repository. | ||
|
||
These extra checks will increase CPU usage during backups. They can therefore, | ||
if absolutely necessary, be disabled using the `--no-extra-verify` global | ||
option. Please note that this should be combined with more active checking | ||
using the previously mentioned check commands. | ||
|
||
https://github.com/restic/restic/issues/4529 | ||
https://github.com/restic/restic/pull/4681 |
19 changes: 19 additions & 0 deletions
19
mover-restic/restic/changelog/0.16.4_2024-02-04/issue-4677
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Bugfix: Downgrade zstd library to fix rare data corruption at max. compression | ||
|
||
In restic 0.16.3, backups where the compression level was set to `max` (using | ||
`--compression max`) could in rare and very specific circumstances result in | ||
data corruption due to a bug in the library used for compressing data. Restic | ||
0.16.1 and 0.16.2 were not affected. | ||
|
||
Restic now uses the previous version of the library used to compress data, the | ||
same version used by restic 0.16.2. Please note that the `auto` compression | ||
level (which restic uses by default) was never affected, and even if you used | ||
`max` compression, chances of being affected by this issue are small. | ||
|
||
To check a repository for any corruption, run `restic check --read-data`. This | ||
will download and verify the whole repository and can be used at any time to | ||
completely verify the integrity of a repository. If the `check` command detects | ||
anomalies, follow the suggested steps. | ||
|
||
https://github.com/restic/restic/issues/4677 | ||
https://github.com/restic/restic/pull/4679 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.