Prepare changelog for 0.11.0

This commit is contained in:
Alexander Neumann
2020-11-05 09:41:22 +01:00
parent 23f6b8c3fd
commit 9dba01021e
15 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
Enhancement: Optimize check for unchanged files during backup
During a backup restic skips processing files which have not changed since the last backup run.
Previously this required opening each file once which can be slow on network filesystems. The
backup command now checks for file changes before opening a file. This considerably reduces
the time to create a backup on network filesystems.
https://github.com/restic/restic/issues/2969
https://github.com/restic/restic/pull/2970