2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 16:40:50 +00:00
restic/changelog/0.15.2_2023-04-24/issue-2260

13 lines
518 B
Plaintext
Raw Normal View History

2023-04-23 20:09:52 +00:00
Bugfix: Sanitize filenames printed by `backup` during processing
2023-04-23 20:09:52 +00:00
The `backup` command would previously not sanitize the filenames it printed
during processing, potentially causing newlines or terminal control characters
to mangle the status output or even change the state of a terminal.
Filenames are now checked and quoted if they contain non-printable or
non-Unicode characters.
https://github.com/restic/restic/issues/2260
https://github.com/restic/restic/issues/4191
https://github.com/restic/restic/pull/4192