2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-06 11:00:48 +00:00

Polish changelog entries

This commit is contained in:
Leo R. Lundgren 2021-08-02 23:49:16 +02:00
parent b7fe1fe6b4
commit cb844e7136
7 changed files with 20 additions and 22 deletions

View File

@ -1,4 +1,4 @@
Bugfix: Improve error handling for rclone and rest backend over HTTP2 Bugfix: Improve error handling for rclone and REST backend over HTTP2
When retrieving data from the rclone / REST backend while also using HTTP2 When retrieving data from the rclone / REST backend while also using HTTP2
restic did not detect when no data was returned at all. This could cause restic did not detect when no data was returned at all. This could cause
@ -6,8 +6,7 @@ for example the `check` command to report the following error:
Pack ID does not match, want [...], got e3b0c442 Pack ID does not match, want [...], got e3b0c442
This has been fixed by correctly detecting the incomplete download and This has been fixed by correctly detecting and retrying the incomplete download.
retrying the download.
https://github.com/restic/restic/issues/2742 https://github.com/restic/restic/issues/2742
https://github.com/restic/restic/pull/3453 https://github.com/restic/restic/pull/3453

View File

@ -1,8 +1,8 @@
Change: Empty files now have size of 0 in restic ls --json output Change: Empty files now have size of 0 in `ls --json` output
Restic's `ls --json` command used to omit the sizes of empty files in its The `ls --json` command used to omit the sizes of empty files in its
output. It now reports a size of zero explicitly for regular files, while output. It now reports a size of zero explicitly for regular files,
omitting the size field for all other types. while omitting the size field for all other types.
https://github.com/restic/restic/issues/3247 https://github.com/restic/restic/issues/3247
https://github.com/restic/restic/pull/3257 https://github.com/restic/restic/pull/3257

View File

@ -1,6 +1,5 @@
Enhancement: Add auto-completion file for fish Enhancement: Add auto-completion support for fish
We added support for fish auto completion for the `generate` command by The `generate` command now supports fish auto completion.
upgrading the Cobra library.
https://github.com/restic/restic/pull/3312 https://github.com/restic/restic/pull/3312

View File

@ -1,6 +1,6 @@
Enhancement: Add release binaries for Apple Silicon Enhancement: Add release binaries for Apple Silicon
We've added release binaries for macOS on Apple Silicon (m1). We've added release binaries for macOS on Apple Silicon (M1).
https://github.com/restic/restic/issues/3377 https://github.com/restic/restic/issues/3377
https://github.com/restic/restic/pull/3394 https://github.com/restic/restic/pull/3394

View File

@ -1,13 +1,13 @@
Enhancement: Add `--keep-within-hourly` option to restic forget Enhancement: Add `--keep-within-hourly` option to restic forget
Restic forget allowed users to specify keeping a given number of The `forget` command allowed keeping a given number of hourly
hourly backups, or to keep all backups within a given interval, backups or to keep all backups within a given interval, but it
but not both, that is to specify keeping hourly backups within was not possible to specify keeping hourly backups within a given
a given interval. interval.
The `--keep-within-hourly` option offers this functionality and The new `--keep-within-hourly` option now offers this functionality.
similar options for daily/weekly/monthly/yearly are also Similar options for daily/weekly/monthly/yearly are also implemented,
implemented. The new flags are: the new options are:
--keep-within-hourly <1y2m3d4h> --keep-within-hourly <1y2m3d4h>
--keep-within-daily <1y2m3d4h> --keep-within-daily <1y2m3d4h>

View File

@ -1,4 +1,4 @@
Enhancement: Allow limiting the snapshots list Enhancement: Allow specifying limit of `snapshots` list
The `--last` option allowed limiting the output of the `snapshots` The `--last` option allowed limiting the output of the `snapshots`
command to the latest snapshot for each host. The new `--latest n` command to the latest snapshot for each host. The new `--latest n`

View File

@ -2,9 +2,9 @@ Enhancement: `find --pack` fallback to index if data file is missing
When investigating a repository with missing data files, it might be useful to When investigating a repository with missing data files, it might be useful to
determine affected snapshots before running `rebuild-index`. Previously, determine affected snapshots before running `rebuild-index`. Previously,
`restic find --pack pack-id` returned no data as it required accessing the data `find --pack pack-id` returned no data as it required accessing the data file.
file. Now, if the necessary data is still available in the repository index, it Now, if the necessary data is still available in the repository index, it gets
gets retrieved from there. retrieved from there.
The command now also supports looking up multiple pack files in a single `find` The command now also supports looking up multiple pack files in a single `find`
run. run.