2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-27 15:26:37 +00:00
restic/changelog/0.17.0_2024-07-26/issue-693

14 lines
620 B
Plaintext
Raw Normal View History

2024-07-22 22:19:22 +00:00
Enhancement: Include snapshot size in `snapshots` output
2024-02-23 21:29:10 +00:00
2024-07-22 22:19:22 +00:00
The `snapshots` command now prints the size for snapshots created using this
or a future restic version. To achieve this, the `backup` command now stores
the backup summary statistics in the snapshot.
2024-02-23 21:29:10 +00:00
The text output of the `snapshots` command only shows the snapshot size. The
other statistics are only included in the JSON output. To inspect these
statistics use `restic snapshots --json` or `restic cat snapshot <snapshotID>`.
https://github.com/restic/restic/issues/693
https://github.com/restic/restic/pull/4705
https://github.com/restic/restic/pull/4913