mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 04:45:15 +00:00
Merge branch 'patch-release'
This commit is contained in:
commit
03e06d0797
3425
CHANGELOG.md
3425
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
@ -4,7 +4,7 @@ Since Go 1.21, most filesystem reparse points on Windows are considered to be
|
|||||||
irregular files. This caused restic to show an `error: invalid node type ""`
|
irregular files. This caused restic to show an `error: invalid node type ""`
|
||||||
error message for those files.
|
error message for those files.
|
||||||
|
|
||||||
We have improved the error message to include the file path for those files:
|
This error message has now been improved and includes the relevant file path:
|
||||||
`error: nodeFromFileInfo path/to/file: unsupported file type "irregular"`.
|
`error: nodeFromFileInfo path/to/file: unsupported file type "irregular"`.
|
||||||
As irregular files are not required to behave like regular files, it is not
|
As irregular files are not required to behave like regular files, it is not
|
||||||
possible to provide a generic way to back up those files.
|
possible to provide a generic way to back up those files.
|
11
changelog/0.16.3_2024-01-14/issue-4574
Normal file
11
changelog/0.16.3_2024-01-14/issue-4574
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
Bugfix: Support backup of deduplicated files on Windows again
|
||||||
|
|
||||||
|
With the official release builds of restic 0.16.1 and 0.16.2, it was not
|
||||||
|
possible to back up files that were deduplicated by the corresponding
|
||||||
|
Windows Server feature. This also applied to restic versions built using
|
||||||
|
Go 1.21.0-1.21.4.
|
||||||
|
|
||||||
|
The Go version used to build restic has now been updated to fix this.
|
||||||
|
|
||||||
|
https://github.com/restic/restic/issues/4574
|
||||||
|
https://github.com/restic/restic/pull/4621
|
@ -1,11 +1,11 @@
|
|||||||
Bugfix: Correct restore progress information if an error occurs
|
Bugfix: Correct `restore` progress information if an error occurs
|
||||||
|
|
||||||
If an error occurred while restoring a snapshot, this could cause the restore
|
If an error occurred while restoring a snapshot, this could cause the `restore`
|
||||||
progress bar to show incorrect information. In addition, if a data file could
|
progress bar to show incorrect information. In addition, if a data file could
|
||||||
not be loaded completely, then errors would also be reported for some already
|
not be loaded completely, then errors would also be reported for some already
|
||||||
restored files.
|
restored files.
|
||||||
|
|
||||||
We have improved the error reporting of the restore command to be more accurate.
|
Error reporting of the `restore` command has now been made more accurate.
|
||||||
|
|
||||||
https://github.com/restic/restic/pull/4624
|
https://github.com/restic/restic/pull/4624
|
||||||
https://forum.restic.net/t/errors-restoring-with-restic-on-windows-server-s3/6943
|
https://forum.restic.net/t/errors-restoring-with-restic-on-windows-server-s3/6943
|
@ -1,11 +0,0 @@
|
|||||||
Bugfix: support backup of deduplicated files on Windows again
|
|
||||||
|
|
||||||
With the official release builds of restic 0.16.1 and 0.16.2, it was not
|
|
||||||
possible to back up files that were deduplicated by the corresponding Windows
|
|
||||||
Server feature. This also applies to restic versions built using Go
|
|
||||||
1.21.0 - 1.21.4.
|
|
||||||
|
|
||||||
We have updated the used Go version to fix this.
|
|
||||||
|
|
||||||
https://github.com/restic/restic/issues/4574
|
|
||||||
https://github.com/restic/restic/pull/4621
|
|
@ -43,7 +43,7 @@ import (
|
|||||||
"golang.org/x/term"
|
"golang.org/x/term"
|
||||||
)
|
)
|
||||||
|
|
||||||
var version = "0.16.2-dev (compiled manually)"
|
var version = "0.16.3-dev (compiled manually)"
|
||||||
|
|
||||||
// TimeFormat is the format used for all timestamps printed by restic.
|
// TimeFormat is the format used for all timestamps printed by restic.
|
||||||
const TimeFormat = "2006-01-02 15:04:05"
|
const TimeFormat = "2006-01-02 15:04:05"
|
||||||
|
Loading…
Reference in New Issue
Block a user