1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-01 12:09:10 +00:00

Merge pull request #7214 from ThomasWaldmann/update-changes-1.2

update CHANGES (1.2-maint)
This commit is contained in:
TW 2022-12-17 18:13:31 +01:00 committed by GitHub
commit d61f5eba63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -217,8 +217,8 @@ The best check that everything is ok is to run a dry-run extraction::
Change Log
==========
Version 1.2.2 (2022-08-20)
--------------------------
Version 1.2.3 (not released yet)
--------------------------------
Upgrade notes:
@ -297,6 +297,33 @@ Compatibility notes:
if you have scripts expecting rc == 2 for a signal exit, you need to update
them to check for >= 128.
Fixes:
- create: fix --list --dry-run output for directories, #7209
- diff/recreate: normalize chunker params before comparing them, #7079
- check: fix uninitialised variable if repo is completely empty, #7034
- xattrs: improve error handling, #6988
- fix args.paths related argparsing, #6994
- archive.save(): always use metadata from stats (e.g. nfiles, size, ...), #7072
- tar_filter: recognize .tar.zst as zstd, #7093
- get_chunker: fix missing sparse=False argument, #7056
- file_integrity.py: make sure file_fd is always closed on exit
- repository: cleanup(): close segment before unlinking
- repository: use os.replace instead of os.rename
Other changes:
- remove python < 3.7 compatibility code
- do not use version_tuple placeholder in setuptools_scm template
- CI: fix tox4 passenv issue, #7199
- vagrant: update python 3.9 and 3.11
- misc. test suite and docs fixes / improvements
- Windows: use MSYS2 for Github CI, remove Appveyor CI
Version 1.2.2 (2022-08-20)
--------------------------
New features:
- prune/delete --checkpoint-interval=1800 and ctrl-c/SIGINT support, #6284