forked from backube/volsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tesshu Flower <[email protected]>
- Loading branch information
1 parent
41d0271
commit c3e5468
Showing
161 changed files
with
2,615 additions
and
362 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
https://github.com/restic/restic.git v0.17.0 277c8f5029a12bd882c2c1d2088f435caec67bb8 | ||
https://github.com/restic/restic.git v0.17.1 975aa41e1e6a1c88deb501451f23cbdbb013f1da | ||
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
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.17.0 | ||
0.17.1 |
18 changes: 18 additions & 0 deletions
18
mover-restic/restic/changelog/0.17.1_2024-09-05/issue-2004
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 @@ | ||
Bugfix: Correctly handle volume names in `backup` command on Windows | ||
|
||
On Windows, when the specified backup target only included the volume | ||
name without a trailing slash, for example, `C:`, then restoring the | ||
resulting snapshot would result in an error. Note that using `C:\` | ||
as backup target worked correctly. | ||
|
||
Specifying volume names is now handled correctly. To restore snapshots | ||
created before this bugfix, use the <snapshot>:<subpath> syntax. For | ||
example, to restore a snapshot with ID `12345678` that backed up `C:`, | ||
use the following command: | ||
|
||
``` | ||
restic restore 12345678:/C/C:./ --target output/folder | ||
``` | ||
|
||
https://github.com/restic/restic/issues/2004 | ||
https://github.com/restic/restic/pull/5028 |
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,8 @@ | ||
Enhancement: Display progress bar for `restore --verify` | ||
|
||
When the `restore` command is run with `--verify`, it now displays a progress | ||
bar while the verification step is running. The progress bar is not shown when | ||
the `--json` flag is specified. | ||
|
||
https://github.com/restic/restic/issues/4795 | ||
https://github.com/restic/restic/pull/4989 |
11 changes: 11 additions & 0 deletions
11
mover-restic/restic/changelog/0.17.1_2024-09-05/issue-4934
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,11 @@ | ||
Enhancement: Automatically clear removed snapshots from cache | ||
|
||
Previously, restic only removed snapshots from the cache on the host where the | ||
`forget` command was executed. On other hosts that use the same repository, the | ||
old snapshots remained in the cache. | ||
|
||
Restic now automatically clears old snapshots from the local cache of the | ||
current host. | ||
|
||
https://github.com/restic/restic/issues/4934 | ||
https://github.com/restic/restic/pull/4981 |
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,9 @@ | ||
Enhancement: Print JSON-formatted errors during `restore --json` | ||
|
||
Restic used to print any `restore` errors directly to the console as freeform | ||
text messages, even when using the `--json` option. | ||
|
||
Now, when `--json` is specified, restic prints them as JSON formatted messages. | ||
|
||
https://github.com/restic/restic/issues/4944 | ||
https://github.com/restic/restic/pull/4946 |
10 changes: 10 additions & 0 deletions
10
mover-restic/restic/changelog/0.17.1_2024-09-05/issue-4945
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,10 @@ | ||
Bugfix: Include missing backup error text with `--json` | ||
|
||
Previously, when running a backup with the `--json` option, restic failed to | ||
include the actual error message in the output, resulting in `"error": {}` | ||
being displayed. | ||
|
||
This has now been fixed, and restic now includes the error text in JSON output. | ||
|
||
https://github.com/restic/restic/issues/4945 | ||
https://github.com/restic/restic/pull/4946 |
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,7 @@ | ||
Bugfix: Correctly handle long paths on older Windows versions | ||
|
||
On older Windows versions, like Windows Server 2012, restic 0.17.0 failed to | ||
back up files with long paths. This problem has now been resolved. | ||
|
||
https://github.com/restic/restic/issues/4953 | ||
https://github.com/restic/restic/pull/4954 |
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,8 @@ | ||
Bugfix: Fix delayed cancellation of certain commands | ||
|
||
Since restic 0.17.0, some commands did not immediately respond to cancellation | ||
via Ctrl-C (SIGINT) and continued running for a short period. The most affected | ||
commands were `diff`,`find`, `ls`, `stats` and `rewrite`. This is now resolved. | ||
|
||
https://github.com/restic/restic/issues/4957 | ||
https://github.com/restic/restic/pull/4960 |
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,7 @@ | ||
Bugfix: Correctly restore timestamp for files with resource forks on macOS | ||
|
||
On macOS, timestamps were not restored for files with resource forks. This has | ||
now been fixed. | ||
|
||
https://github.com/restic/restic/issues/4969 | ||
https://github.com/restic/restic/pull/5006 |
Oops, something went wrong.