duplicity 3.0.6.dev8__tar.gz → 3.0.6.dev12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/CHANGELOG.md +515 -311
- {duplicity-3.0.6.dev8/duplicity.egg-info → duplicity-3.0.6.dev12}/PKG-INFO +3 -3
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/__init__.py +2 -2
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/__main__.py +8 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/argparse311.py +4 -4
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backend.py +5 -3
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backend_pool.py +0 -36
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/_cf_cloudfiles.py +1 -1
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/_cf_pyrax.py +1 -1
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/_testbackend.py +1 -5
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/b2backend.py +8 -6
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/boxbackend.py +1 -1
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/dpbxbackend.py +1 -1
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/gdocsbackend.py +1 -1
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/jottacloudbackend.py +1 -3
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/mediafirebackend.py +1 -1
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/onedrivebackend.py +1 -1
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/pcabackend.py +3 -3
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/pyrax_identity/hubic.py +3 -3
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/s3_boto3_backend.py +1 -1
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/ssh_pexpect_backend.py +3 -3
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/swiftbackend.py +3 -3
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/webdavbackend.py +10 -2
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/xorrisobackend.py +5 -5
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/cli_data.py +7 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/cli_main.py +2 -2
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/cli_util.py +3 -7
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/config.py +1 -1
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/diffdir.py +6 -6
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/dup_collections.py +55 -34
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/dup_main.py +30 -28
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/dup_temp.py +3 -3
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/dup_time.py +21 -17
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/file_naming.py +25 -12
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/globmatch.py +2 -2
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/gpg.py +20 -19
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/lazy.py +2 -2
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/librsync.py +4 -4
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/manifest.py +5 -5
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/patchdir.py +18 -12
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/path.py +21 -17
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/selection.py +9 -9
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/statistics.py +3 -3
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12/duplicity.egg-info}/PKG-INFO +3 -3
- duplicity-3.0.6.dev8/po/POTFILES.in → duplicity-3.0.6.dev12/duplicity.egg-info/SOURCES.txt +97 -32
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/man/duplicity.1 +17 -23
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/pyproject.toml +14 -28
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/setup.py +8 -114
- duplicity-3.0.6.dev8/.gitchangelog.rc +0 -318
- duplicity-3.0.6.dev8/.gitignore +0 -37
- duplicity-3.0.6.dev8/.gitlab-ci.yml +0 -190
- duplicity-3.0.6.dev8/Makefile +0 -60
- duplicity-3.0.6.dev8/README-SNAP.md +0 -93
- duplicity-3.0.6.dev8/crowdin.yml +0 -6
- duplicity-3.0.6.dev8/debian/changelog +0 -5
- duplicity-3.0.6.dev8/debian/compat +0 -1
- duplicity-3.0.6.dev8/debian/control +0 -46
- duplicity-3.0.6.dev8/debian/copyright +0 -33
- duplicity-3.0.6.dev8/debian/duplicity.sh +0 -8
- duplicity-3.0.6.dev8/debian/rules +0 -23
- duplicity-3.0.6.dev8/debian/source/format +0 -1
- duplicity-3.0.6.dev8/docs/Makefile +0 -28
- duplicity-3.0.6.dev8/docs/README.md +0 -18
- duplicity-3.0.6.dev8/docs/conf.py +0 -108
- duplicity-3.0.6.dev8/docs/index.rst +0 -28
- duplicity-3.0.6.dev8/docs/modules.rst +0 -8
- duplicity-3.0.6.dev8/duplicity/backends/README +0 -89
- duplicity-3.0.6.dev8/duplicity.egg-info/SOURCES.txt +0 -344
- duplicity-3.0.6.dev8/po/LINGUAS +0 -46
- duplicity-3.0.6.dev8/po/Makevars +0 -28
- duplicity-3.0.6.dev8/po/POTFILES.skip +0 -37
- duplicity-3.0.6.dev8/po/af_ZA.po +0 -1669
- duplicity-3.0.6.dev8/po/ar_SA.po +0 -1709
- duplicity-3.0.6.dev8/po/ca_ES.po +0 -1669
- duplicity-3.0.6.dev8/po/cs_CZ.po +0 -1701
- duplicity-3.0.6.dev8/po/da_DK.po +0 -1706
- duplicity-3.0.6.dev8/po/de_AT.po +0 -1706
- duplicity-3.0.6.dev8/po/de_DE.po +0 -1706
- duplicity-3.0.6.dev8/po/duplicity.pot +0 -1739
- duplicity-3.0.6.dev8/po/el_GR.po +0 -1694
- duplicity-3.0.6.dev8/po/en_AU.po +0 -1669
- duplicity-3.0.6.dev8/po/en_GB.po +0 -1676
- duplicity-3.0.6.dev8/po/en_PR.po +0 -1669
- duplicity-3.0.6.dev8/po/en_US.po +0 -1669
- duplicity-3.0.6.dev8/po/es_EM.po +0 -1706
- duplicity-3.0.6.dev8/po/es_ES.po +0 -1706
- duplicity-3.0.6.dev8/po/es_MX.po +0 -1706
- duplicity-3.0.6.dev8/po/es_PR.po +0 -1706
- duplicity-3.0.6.dev8/po/es_US.po +0 -1706
- duplicity-3.0.6.dev8/po/fi_FI.po +0 -1706
- duplicity-3.0.6.dev8/po/fr_FR.po +0 -1703
- duplicity-3.0.6.dev8/po/he_IL.po +0 -1673
- duplicity-3.0.6.dev8/po/hu_HU.po +0 -1686
- duplicity-3.0.6.dev8/po/it_IT.po +0 -1706
- duplicity-3.0.6.dev8/po/ja_JP.po +0 -1684
- duplicity-3.0.6.dev8/po/ko_KR.po +0 -1667
- duplicity-3.0.6.dev8/po/nl_BE.po +0 -1706
- duplicity-3.0.6.dev8/po/nl_NL.po +0 -1706
- duplicity-3.0.6.dev8/po/nl_SR.po +0 -1706
- duplicity-3.0.6.dev8/po/no_NO.po +0 -1699
- duplicity-3.0.6.dev8/po/pl_PL.po +0 -1709
- duplicity-3.0.6.dev8/po/pt_BR.po +0 -1705
- duplicity-3.0.6.dev8/po/pt_PT.po +0 -1704
- duplicity-3.0.6.dev8/po/ro_RO.po +0 -1707
- duplicity-3.0.6.dev8/po/ru_BY.po +0 -1709
- duplicity-3.0.6.dev8/po/ru_MD.po +0 -1709
- duplicity-3.0.6.dev8/po/ru_RU.po +0 -1709
- duplicity-3.0.6.dev8/po/ru_UA.po +0 -1709
- duplicity-3.0.6.dev8/po/sr_SP.po +0 -1671
- duplicity-3.0.6.dev8/po/sv_SE.po +0 -1706
- duplicity-3.0.6.dev8/po/tr_TR.po +0 -1669
- duplicity-3.0.6.dev8/po/uk_UA.po +0 -1690
- duplicity-3.0.6.dev8/po/update-pot +0 -33
- duplicity-3.0.6.dev8/po/vi_VN.po +0 -1667
- duplicity-3.0.6.dev8/po/zh_CN.po +0 -1701
- duplicity-3.0.6.dev8/po/zh_HK.po +0 -1667
- duplicity-3.0.6.dev8/po/zh_MO.po +0 -1667
- duplicity-3.0.6.dev8/po/zh_SG.po +0 -1667
- duplicity-3.0.6.dev8/po/zh_TW.po +0 -1667
- duplicity-3.0.6.dev8/readthedocs.yaml +0 -28
- duplicity-3.0.6.dev8/requirements.dev +0 -17
- duplicity-3.0.6.dev8/snap/local/launcher.sh +0 -38
- duplicity-3.0.6.dev8/snap/snapcraft.yaml +0 -136
- duplicity-3.0.6.dev8/testing/__init__.py +0 -153
- duplicity-3.0.6.dev8/testing/conftest.py +0 -65
- duplicity-3.0.6.dev8/testing/docker/bugs/issue853/Dockerfile +0 -31
- duplicity-3.0.6.dev8/testing/docker/bugs/issue853/Dockerfile-orig +0 -16
- duplicity-3.0.6.dev8/testing/docker/build-distro.sh +0 -45
- duplicity-3.0.6.dev8/testing/docker/build-dupCI.sh +0 -45
- duplicity-3.0.6.dev8/testing/docker/distro/Dockerfile.ub20 +0 -95
- duplicity-3.0.6.dev8/testing/docker/distro/Dockerfile.ub22 +0 -95
- duplicity-3.0.6.dev8/testing/docker/distro/Dockerfile.ub24 +0 -95
- duplicity-3.0.6.dev8/testing/docker/distro/compose.yml +0 -66
- duplicity-3.0.6.dev8/testing/docker/dupCI/Dockerfile.py310 +0 -89
- duplicity-3.0.6.dev8/testing/docker/dupCI/Dockerfile.py311 +0 -89
- duplicity-3.0.6.dev8/testing/docker/dupCI/Dockerfile.py312 +0 -89
- duplicity-3.0.6.dev8/testing/docker/dupCI/Dockerfile.py313 +0 -89
- duplicity-3.0.6.dev8/testing/docker/dupCI/Dockerfile.py314 +0 -89
- duplicity-3.0.6.dev8/testing/docker/dupCI/Dockerfile.py39 +0 -89
- duplicity-3.0.6.dev8/testing/docker/dupCI/compose.yml +0 -102
- duplicity-3.0.6.dev8/testing/docker/run-distro.sh +0 -11
- duplicity-3.0.6.dev8/testing/docker/run-dupCI.sh +0 -11
- duplicity-3.0.6.dev8/testing/functional/__init__.py +0 -299
- duplicity-3.0.6.dev8/testing/functional/test_badupload.py +0 -91
- duplicity-3.0.6.dev8/testing/functional/test_cleanup.py +0 -92
- duplicity-3.0.6.dev8/testing/functional/test_concurrency.py +0 -198
- duplicity-3.0.6.dev8/testing/functional/test_final.py +0 -323
- duplicity-3.0.6.dev8/testing/functional/test_log.py +0 -77
- duplicity-3.0.6.dev8/testing/functional/test_restart.py +0 -427
- duplicity-3.0.6.dev8/testing/functional/test_restore.py +0 -152
- duplicity-3.0.6.dev8/testing/functional/test_selection.py +0 -2430
- duplicity-3.0.6.dev8/testing/functional/test_verify.py +0 -210
- duplicity-3.0.6.dev8/testing/gnupg/README +0 -15
- duplicity-3.0.6.dev8/testing/gnupg/gpg-agent.conf +0 -3
- duplicity-3.0.6.dev8/testing/gnupg/gpg.conf +0 -9
- duplicity-3.0.6.dev8/testing/gnupg/private-keys-v1.d/165F2FB4F58D537404FE223A603878F54CD444E5.key +0 -42
- duplicity-3.0.6.dev8/testing/gnupg/private-keys-v1.d/1DBE767B921015FD5466978BAC968320E5BF6812.key +0 -38
- duplicity-3.0.6.dev8/testing/gnupg/private-keys-v1.d/4572B9686180E88EA52ED65F1416E486F7A8CAF5.key +0 -32
- duplicity-3.0.6.dev8/testing/gnupg/private-keys-v1.d/7229722CD5A4726D5CC5588034ADA07429FDECAB.key +0 -38
- duplicity-3.0.6.dev8/testing/gnupg/private-keys-v1.d/86E23738BB09B27C6C7E4F76C39DA0194586CF4B.key +0 -42
- duplicity-3.0.6.dev8/testing/gnupg/private-keys-v1.d/910D6B4035D3FEE3DA5960C1EE573C5F9ECE2B8D.key +0 -32
- duplicity-3.0.6.dev8/testing/gnupg/private-keys-v1.d/B29B24778338E7F20437B21704EA434E522BC1FE.key +0 -38
- duplicity-3.0.6.dev8/testing/gnupg/private-keys-v1.d/D2DF6D795DFD90DB4F7A109970F506692731CA67.key +0 -38
- duplicity-3.0.6.dev8/testing/gnupg/pubring.gpg +0 -0
- duplicity-3.0.6.dev8/testing/gnupg/pubring.kbx +0 -0
- duplicity-3.0.6.dev8/testing/gnupg/secring.gpg +0 -0
- duplicity-3.0.6.dev8/testing/gnupg/trustdb.gpg +0 -0
- duplicity-3.0.6.dev8/testing/gnupg/trustlist.txt +0 -2
- duplicity-3.0.6.dev8/testing/manual/2G-test.sh +0 -30
- duplicity-3.0.6.dev8/testing/manual/auto-ctrl-c-test.sh +0 -61
- duplicity-3.0.6.dev8/testing/manual/backendtest.py +0 -239
- duplicity-3.0.6.dev8/testing/manual/manual-ctrl-c-test.sh +0 -74
- duplicity-3.0.6.dev8/testing/manual/rootfiles.tar.gz +0 -0
- duplicity-3.0.6.dev8/testing/manual/roottest.py +0 -136
- duplicity-3.0.6.dev8/testing/manual/run-coverage.sh +0 -60
- duplicity-3.0.6.dev8/testing/manual/test-concurrency-performance-stats.py +0 -53
- duplicity-3.0.6.dev8/testing/manual/test-concurrency-performance.sh +0 -25
- duplicity-3.0.6.dev8/testing/manual/test-prefix-install.sh +0 -15
- duplicity-3.0.6.dev8/testing/manual/test-venv-install.sh +0 -22
- duplicity-3.0.6.dev8/testing/manual/test_config.py.tmpl +0 -69
- duplicity-3.0.6.dev8/testing/overrides/__init__.py +0 -2
- duplicity-3.0.6.dev8/testing/overrides/bin/hsi +0 -16
- duplicity-3.0.6.dev8/testing/overrides/bin/lftp +0 -22
- duplicity-3.0.6.dev8/testing/overrides/bin/ncftpget +0 -6
- duplicity-3.0.6.dev8/testing/overrides/bin/ncftpls +0 -20
- duplicity-3.0.6.dev8/testing/overrides/bin/ncftpput +0 -6
- duplicity-3.0.6.dev8/testing/overrides/bin/tahoe +0 -17
- duplicity-3.0.6.dev8/testing/regression/bug1526557.sh +0 -9
- duplicity-3.0.6.dev8/testing/regression/bug1846678.sh +0 -10
- duplicity-3.0.6.dev8/testing/regression/bug1860200.sh +0 -47
- duplicity-3.0.6.dev8/testing/regression/bug487720.sh +0 -36
- duplicity-3.0.6.dev8/testing/regression/bug930151.sh +0 -23
- duplicity-3.0.6.dev8/testing/regression/issue100.sh +0 -17
- duplicity-3.0.6.dev8/testing/regression/issue103-conc.json +0 -16
- duplicity-3.0.6.dev8/testing/regression/issue103-conc.sh +0 -68
- duplicity-3.0.6.dev8/testing/regression/issue103.json +0 -16
- duplicity-3.0.6.dev8/testing/regression/issue103.sh +0 -64
- duplicity-3.0.6.dev8/testing/regression/issue110-setup.sh +0 -24
- duplicity-3.0.6.dev8/testing/regression/issue110-test.sh +0 -16
- duplicity-3.0.6.dev8/testing/regression/issue125.sh +0 -58
- duplicity-3.0.6.dev8/testing/regression/issue147.sh +0 -12
- duplicity-3.0.6.dev8/testing/regression/issue25.json +0 -10
- duplicity-3.0.6.dev8/testing/regression/issue25.sh +0 -17
- duplicity-3.0.6.dev8/testing/regression/issue26.sh +0 -21
- duplicity-3.0.6.dev8/testing/regression/issue683.sh +0 -16
- duplicity-3.0.6.dev8/testing/regression/issue725.sh +0 -32
- duplicity-3.0.6.dev8/testing/regression/issue73.env +0 -7
- duplicity-3.0.6.dev8/testing/regression/issue73.sh +0 -16
- duplicity-3.0.6.dev8/testing/regression/issue745.sh +0 -35
- duplicity-3.0.6.dev8/testing/regression/issue781.json +0 -10
- duplicity-3.0.6.dev8/testing/regression/issue781.sh +0 -28
- duplicity-3.0.6.dev8/testing/regression/issue79.json +0 -10
- duplicity-3.0.6.dev8/testing/regression/issue79.sh +0 -28
- duplicity-3.0.6.dev8/testing/regression/issue824.sh +0 -19
- duplicity-3.0.6.dev8/testing/regression/issue863.sh +0 -16
- duplicity-3.0.6.dev8/testing/regression/issue881.json +0 -10
- duplicity-3.0.6.dev8/testing/regression/issue881.sh +0 -12
- duplicity-3.0.6.dev8/testing/regression/issue98.sh +0 -54
- duplicity-3.0.6.dev8/testing/test_code.py +0 -102
- duplicity-3.0.6.dev8/testing/testfiles.tar.gz +0 -0
- duplicity-3.0.6.dev8/testing/unit/__init__.py +0 -26
- duplicity-3.0.6.dev8/testing/unit/test_backend.py +0 -427
- duplicity-3.0.6.dev8/testing/unit/test_backend_instance.py +0 -290
- duplicity-3.0.6.dev8/testing/unit/test_cli_main.py +0 -583
- duplicity-3.0.6.dev8/testing/unit/test_collections.py +0 -355
- duplicity-3.0.6.dev8/testing/unit/test_diffdir.py +0 -317
- duplicity-3.0.6.dev8/testing/unit/test_dup_temp.py +0 -76
- duplicity-3.0.6.dev8/testing/unit/test_dup_time.py +0 -143
- duplicity-3.0.6.dev8/testing/unit/test_file_naming.py +0 -181
- duplicity-3.0.6.dev8/testing/unit/test_globmatch.py +0 -323
- duplicity-3.0.6.dev8/testing/unit/test_gpg.py +0 -284
- duplicity-3.0.6.dev8/testing/unit/test_gpginterface.py +0 -254
- duplicity-3.0.6.dev8/testing/unit/test_lazy.py +0 -370
- duplicity-3.0.6.dev8/testing/unit/test_manifest.py +0 -175
- duplicity-3.0.6.dev8/testing/unit/test_patchdir.py +0 -341
- duplicity-3.0.6.dev8/testing/unit/test_path.py +0 -87
- duplicity-3.0.6.dev8/testing/unit/test_selection.py +0 -1519
- duplicity-3.0.6.dev8/testing/unit/test_statistics.py +0 -179
- duplicity-3.0.6.dev8/testing/unit/test_tarfile.py +0 -36
- duplicity-3.0.6.dev8/testing/unit/test_tempdir.py +0 -90
- duplicity-3.0.6.dev8/testing/unit/test_util.py +0 -43
- duplicity-3.0.6.dev8/tools/installsnap +0 -51
- duplicity-3.0.6.dev8/tools/makechangelog +0 -46
- duplicity-3.0.6.dev8/tools/makepip +0 -41
- duplicity-3.0.6.dev8/tools/makesnap +0 -36
- duplicity-3.0.6.dev8/tools/pushpip +0 -39
- duplicity-3.0.6.dev8/tools/pushsnap +0 -43
- duplicity-3.0.6.dev8/tools/release-prep +0 -78
- duplicity-3.0.6.dev8/tools/testsnap +0 -55
- duplicity-3.0.6.dev8/tools/watchdir.py +0 -37
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/AUTHORS.md +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/COPYING +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/README-LOG.md +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/README-REPO.md +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/README-TESTING.md +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/README.md +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/_librsyncmodule.c +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/__init__.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/adbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/azurebackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/cfbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/gdrivebackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/giobackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/hsibackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/hubicbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/idrivedbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/imapbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/lftpbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/localbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/megabackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/megav2backend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/megav3backend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/multibackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/ncftpbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/par2backend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/pydrivebackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/pyrax_identity/__init__.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/rclonebackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/rsyncbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/slatebackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/ssh_paramiko_backend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/sxbackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/backends/tahoebackend.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/cached_ops.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/dup_tarfile.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/errors.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/filechunkio.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/gpginterface.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/log.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/progress.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/robust.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/tempdir.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity/util.py +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity.egg-info/dependency_links.txt +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity.egg-info/entry_points.txt +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity.egg-info/requires.txt +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/duplicity.egg-info/top_level.txt +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/af_ZA/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/ar_SA/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/ca_ES/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/cs_CZ/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/da_DK/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/de_AT/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/de_DE/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/el_GR/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/en_AU/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/en_GB/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/en_PR/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/en_US/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/es_EM/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/es_ES/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/es_MX/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/es_PR/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/es_US/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/fi_FI/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/fr_FR/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/he_IL/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/hu_HU/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/it_IT/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/ja_JP/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/ko_KR/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/nl_BE/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/nl_NL/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/nl_SR/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/no_NO/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/pl_PL/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/pt_BR/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/pt_PT/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/ro_RO/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/ru_BY/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/ru_MD/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/ru_RU/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/ru_UA/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/sr_SP/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/sv_SE/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/tr_TR/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/uk_UA/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/vi_VN/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/zh_CN/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/zh_HK/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/zh_MO/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/zh_SG/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/po/zh_TW/duplicity.mo +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/requirements.txt +0 -0
- {duplicity-3.0.6.dev8 → duplicity-3.0.6.dev12}/setup.cfg +0 -0
|
@@ -1,6 +1,291 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## (unreleased)
|
|
5
|
+
|
|
6
|
+
### Changes
|
|
7
|
+
|
|
8
|
+
* Misc build tools upgrades. [Kenneth Loafman]
|
|
9
|
+
|
|
10
|
+
* Add error message to raw assert statements. [Kenneth Loafman]
|
|
11
|
+
|
|
12
|
+
### Fix
|
|
13
|
+
|
|
14
|
+
* 'duplicity incremental' attempts to fetch remote manifest which is not
|
|
15
|
+
needed for the current backup. [Kenneth Loafman]
|
|
16
|
+
|
|
17
|
+
Fixes #891
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## rel.3.0.6.dev11 (2025-10-19)
|
|
21
|
+
|
|
22
|
+
### New
|
|
23
|
+
|
|
24
|
+
* Set black>=24.8.0. [Kenneth Loafman]
|
|
25
|
+
|
|
26
|
+
### Changes
|
|
27
|
+
|
|
28
|
+
* Update CHANGELOG.md. [Kenneth Loafman]
|
|
29
|
+
|
|
30
|
+
* Remove may fail py3.14. [Kenneth Loafman]
|
|
31
|
+
|
|
32
|
+
* Use python:314 not -rc. [Kenneth Loafman]
|
|
33
|
+
|
|
34
|
+
* Use python -m build --sdist. [Kenneth Loafman]
|
|
35
|
+
|
|
36
|
+
* Add recent .dev versions to CHANGELOG.md. [Kenneth Loafman]
|
|
37
|
+
|
|
38
|
+
* Add py314 to wheels build. [Kenneth Loafman]
|
|
39
|
+
|
|
40
|
+
* Better assert error message. [Thomas Laubrock]
|
|
41
|
+
|
|
42
|
+
* Fix chdir() in tools/setversion. [Kenneth Loafman]
|
|
43
|
+
|
|
44
|
+
* Move SetVersionCommand to tools/setversion. [Kenneth Loafman]
|
|
45
|
+
|
|
46
|
+
* Don't check versions under pytest. [Kenneth Loafman]
|
|
47
|
+
|
|
48
|
+
* Fix/add TODO's for argparse311. [Kenneth Loafman]
|
|
49
|
+
|
|
50
|
+
* Mark test\_GzipWriteFile as xfail, may fail. [Kenneth Loafman]
|
|
51
|
+
|
|
52
|
+
- xfail because random data may cause Compression Failure
|
|
53
|
+
|
|
54
|
+
* Only run on py39 thru py314. [Kenneth Loafman]
|
|
55
|
+
|
|
56
|
+
* Change version max to 3.13. [Kenneth Loafman]
|
|
57
|
+
|
|
58
|
+
* Updates to wheels build. [Kenneth Loafman]
|
|
59
|
+
|
|
60
|
+
* Upload manylinux wheels to PyPi. [Kenneth Loafman]
|
|
61
|
+
|
|
62
|
+
- supports python 39,310,311,312,313 arches x86_64, aarch64 on Linux
|
|
63
|
+
- supports python 39,310,311,312,313 arches x86_64, arm64 on macOS
|
|
64
|
+
|
|
65
|
+
* More changes for Docker testing. [Kenneth Loafman]
|
|
66
|
+
|
|
67
|
+
* Boto3 1.36+ breaks Duplicity...but there is a workaround. [ede]
|
|
68
|
+
|
|
69
|
+
* Add regression test for #881. [Catalin Patulea]
|
|
70
|
+
|
|
71
|
+
### Fix
|
|
72
|
+
|
|
73
|
+
* If using authentication, send warmup OPTIONS request. [Catalin Patulea]
|
|
74
|
+
|
|
75
|
+
This avoids an edge case with --no-check-remote, HTTP authentication and a cpython bug (https://github.com/python/cpython/issues/70107) which can cause ConnectionResetError -- see details in: https://gitlab.com/duplicity/duplicity/-/merge_requests/320#note_2818250084
|
|
76
|
+
|
|
77
|
+
* 'duplicity incremental' attempts to fetch remote manifest which is not
|
|
78
|
+
needed for the current backup. [Kenneth Loafman]
|
|
79
|
+
|
|
80
|
+
- extended option --no-check-remote
|
|
81
|
+
- faked collection-status out with local metadata
|
|
82
|
+
- neutered the check for missing difftar volumes
|
|
83
|
+
- Fixes #891
|
|
84
|
+
|
|
85
|
+
* Fix removal of signature from latest backup. [Thomas Laubrock]
|
|
86
|
+
|
|
87
|
+
* Fix test\_out\_of\_order\_volume() in concurrency. [Thomas Laubrock]
|
|
88
|
+
|
|
89
|
+
* Black to run on py314. [Kenneth Loafman]
|
|
90
|
+
|
|
91
|
+
* Fix check for optimization. [Kenneth Loafman]
|
|
92
|
+
|
|
93
|
+
* Isolate .pytest\_cache using volumes. [Kenneth Loafman]
|
|
94
|
+
|
|
95
|
+
* Minor s3 clarification. [ede]
|
|
96
|
+
|
|
97
|
+
* Fix check for optimization. [Kenneth Loafman]
|
|
98
|
+
|
|
99
|
+
* Collection-status with a specific file fails with TypeError. [Kenneth Loafman]
|
|
100
|
+
|
|
101
|
+
* Duplicity verify fails with KeyError. [Kenneth Loafman]
|
|
102
|
+
|
|
103
|
+
- Fixes #815
|
|
104
|
+
- Optimizes imports
|
|
105
|
+
- Misc. test/doc fixes
|
|
106
|
+
|
|
107
|
+
* Restore a file to directory fails and empties target directory -
|
|
108
|
+
related to #111. [Kenneth Loafman]
|
|
109
|
+
|
|
110
|
+
* Add gpg to install lists. [Kenneth Loafman]
|
|
111
|
+
|
|
112
|
+
* GPG test fixes from issue815. [Kenneth Loafman]
|
|
113
|
+
|
|
114
|
+
* Make swiftbackend imports global. [Kenneth Loafman]
|
|
115
|
+
|
|
116
|
+
Fixes #886
|
|
117
|
+
|
|
118
|
+
### Other
|
|
119
|
+
|
|
120
|
+
* Chr:usr: remove 'are\_errors\_fatal' mechanism, no longer needed. [Catalin Patulea]
|
|
121
|
+
|
|
122
|
+
Since the recent commit to raise @retry final errors as exceptions,
|
|
123
|
+
are_errors_fatal mechanism is no longer needed, we can use a normal 'except'
|
|
124
|
+
block.
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
## rel.3.0.6.dev10 (2025-10-01)
|
|
128
|
+
|
|
129
|
+
### Changes
|
|
130
|
+
|
|
131
|
+
* Fix chdir() in tools/setversion. [Kenneth Loafman]
|
|
132
|
+
|
|
133
|
+
* Move SetVersionCommand to tools/setversion. [Kenneth Loafman]
|
|
134
|
+
|
|
135
|
+
* Set black>=24.8.0. [Kenneth Loafman]
|
|
136
|
+
|
|
137
|
+
* Don't check versions under pytest. [Kenneth Loafman]
|
|
138
|
+
|
|
139
|
+
* Fix/add TODO's for argparse311. [Kenneth Loafman]
|
|
140
|
+
|
|
141
|
+
* Mark test\_GzipWriteFile as xfail, may fail. [Kenneth Loafman]
|
|
142
|
+
|
|
143
|
+
- xfail because random data may cause Compression Failure
|
|
144
|
+
|
|
145
|
+
* Only run on py39 thru py314. [Kenneth Loafman]
|
|
146
|
+
|
|
147
|
+
### Fix
|
|
148
|
+
|
|
149
|
+
* Fix test\_out\_of\_order\_volume() in concurrency. [Thomas Laubrock]
|
|
150
|
+
|
|
151
|
+
* Black to run on py314. [Kenneth Loafman]
|
|
152
|
+
|
|
153
|
+
* Isolate .pytest\_cache using volumes. [Kenneth Loafman]
|
|
154
|
+
|
|
155
|
+
* Minor s3 clarification. [ede]
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
## rel.3.0.6.dev9 (2025-09-25)
|
|
159
|
+
|
|
160
|
+
### Changes
|
|
161
|
+
|
|
162
|
+
* Change version max to 3.13. [Kenneth Loafman]
|
|
163
|
+
|
|
164
|
+
* Updates to wheels build. [Kenneth Loafman]
|
|
165
|
+
|
|
166
|
+
### Fix
|
|
167
|
+
|
|
168
|
+
* Fix check for optimization. [Kenneth Loafman]
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
## rel.3.0.6.dev8 (2025-09-14)
|
|
172
|
+
|
|
173
|
+
### Fix
|
|
174
|
+
|
|
175
|
+
* Collection-status with a specific file fails with TypeError. [Kenneth Loafman]
|
|
176
|
+
|
|
177
|
+
* Duplicity verify fails with KeyError. [Kenneth Loafman]
|
|
178
|
+
|
|
179
|
+
- Fixes #815
|
|
180
|
+
- Optimizes imports
|
|
181
|
+
- Misc. test/doc fixes
|
|
182
|
+
|
|
183
|
+
* Restore a file to directory fails and empties target directory -
|
|
184
|
+
related to #111. [Kenneth Loafman]
|
|
185
|
+
|
|
186
|
+
* Add gpg to install lists. [Kenneth Loafman]
|
|
187
|
+
|
|
188
|
+
* GPG test fixes from issue815. [Kenneth Loafman]
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
## rel.3.0.6.dev7 (2025-08-02)
|
|
192
|
+
|
|
193
|
+
### Changes
|
|
194
|
+
|
|
195
|
+
* Upload manylinux wheels to PyPi. [Kenneth Loafman]
|
|
196
|
+
|
|
197
|
+
- supports python 39,310,311,312,313 arches x86_64, aarch64 on Linux
|
|
198
|
+
- supports python 39,310,311,312,313 arches x86_64, arm64 on macOS
|
|
199
|
+
|
|
200
|
+
* More changes for Docker testing. [Kenneth Loafman]
|
|
201
|
+
|
|
202
|
+
* Boto3 1.36+ breaks Duplicity...but there is a workaround. [ede]
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
## rel.3.0.6.dev6 (2025-07-24)
|
|
206
|
+
|
|
207
|
+
### Changes
|
|
208
|
+
|
|
209
|
+
* Add regression test for #881. [Catalin Patulea]
|
|
210
|
+
|
|
211
|
+
* Remove 'are\_errors\_fatal' mechanism, no longer needed. [Catalin Patulea]
|
|
212
|
+
|
|
213
|
+
Since the recent commit to raise @retry final errors as exceptions,
|
|
214
|
+
are_errors_fatal mechanism is no longer needed, we can use a normal 'except'
|
|
215
|
+
block.
|
|
216
|
+
|
|
217
|
+
* Docker changes ported from issue815. [Kenneth Loafman]
|
|
218
|
+
|
|
219
|
+
A number of changes to `testing/docker` in issue815 that need to be released separately.
|
|
220
|
+
|
|
221
|
+
### Fix
|
|
222
|
+
|
|
223
|
+
* Make swiftbackend imports global. [Kenneth Loafman]
|
|
224
|
+
|
|
225
|
+
Fixes #886
|
|
226
|
+
|
|
227
|
+
* Multi backend: if we looped around, and any passed, break out. [Catalin Patulea]
|
|
228
|
+
|
|
229
|
+
* Fix:usr: make @retry report fatals as exceptions, not log.FatalError. [Catalin Patulea]
|
|
230
|
+
|
|
231
|
+
Final retry exceptions are now passed up to the handler in __main__.py.
|
|
232
|
+
|
|
233
|
+
This fixes #881 where the outer 'multi' backend actually wants to catch the
|
|
234
|
+
exception (onfail=continue) instead of exiting the process.
|
|
235
|
+
|
|
236
|
+
Based on the preparation in earlier commits, this commit does not affect the
|
|
237
|
+
process exit code, it's still backend_error.
|
|
238
|
+
|
|
239
|
+
Handling of such exceptions in multiprocessing parent/child process is now the
|
|
240
|
+
same and no longer requires a special case.
|
|
241
|
+
|
|
242
|
+
This will enable more cleanups in future commits.
|
|
243
|
+
|
|
244
|
+
* On uncaught BackendException, make the exit code backend\_error (50). [Catalin Patulea]
|
|
245
|
+
|
|
246
|
+
BackendException handler was added in March 2009 (commit 2d37baa3). Not clear if
|
|
247
|
+
exit code user_error was intentional or copy/paste from the 'except UserError'
|
|
248
|
+
block above.
|
|
249
|
+
|
|
250
|
+
This is in preparation to modify @retry to pass fatal exceptions up, instead of
|
|
251
|
+
immediately exiting using log.FatalError, while keeping the same exit code.
|
|
252
|
+
|
|
253
|
+
* Fix typo in collection-status --jsonstat example. [Catalin Patulea]
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
## rel.3.0.6.dev5 (2025-07-05)
|
|
257
|
+
|
|
258
|
+
### Fix
|
|
259
|
+
|
|
260
|
+
* Revert "use pyproject plugin for ppa" [Kenneth Loafman]
|
|
261
|
+
|
|
262
|
+
This reverts commit 4dc57cc0
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
## rel.3.0.6.dev4 (2025-07-05)
|
|
266
|
+
|
|
267
|
+
### Fix
|
|
268
|
+
|
|
269
|
+
* Use pyproject plugin for ppa. [Branch Vincent]
|
|
270
|
+
|
|
271
|
+
Relanding 3683aa4d after fixing the debian package for #877. Before, debian used the legacy `setup.py install` method, meaning none of the metadata in `pyproject.toml` was used (including scripts, hence the need for workarounds like 4636e043308e79bfd693c40f6c8076d5e5680d2d). To fix:
|
|
272
|
+
|
|
273
|
+
* Opt-in to using a PEP 517 build by depending on `pybuild-plugin-pyproject` (following the guidance of pybuild's [manpage](https://manpages.debian.org/testing/dh-python/pybuild.1.en.html#pyproject))
|
|
274
|
+
* Replace other various invocations of `setup.py` with the same [`build`](https://github.com/pypa/build) frontend
|
|
275
|
+
|
|
276
|
+
* Fix TotalDestinationSizeChange with concurrency. [Martin Wilck]
|
|
277
|
+
|
|
278
|
+
With --concurrency n (n \> 1), duplicity always prints TotalDestinationSizeChange 0 (0 bytes).
|
|
279
|
+
|
|
280
|
+
Fix it by returning bytes_written from collect_put_results(). Fixes #880.
|
|
281
|
+
|
|
282
|
+
* Pexpect+sftp: support absolute path in URL. [Martin Wilck]
|
|
283
|
+
|
|
284
|
+
Fix it by stripping only a single `/` from parsed_url.path.
|
|
285
|
+
|
|
286
|
+
Fixes #879.
|
|
287
|
+
|
|
288
|
+
|
|
4
289
|
## rel.3.0.5.1 (2025-06-25)
|
|
5
290
|
|
|
6
291
|
### Changes
|
|
@@ -444,18 +729,8 @@ n+1 volumes, switch to "spawn". [Thomas Laubrock]
|
|
|
444
729
|
|
|
445
730
|
- See https://gitlab.com/duplicity/duplicity/-/merge_requests/233
|
|
446
731
|
|
|
447
|
-
|
|
448
|
-
## rel.2.2.4rc3 (2024-05-19)
|
|
449
|
-
|
|
450
|
-
### Changes
|
|
451
|
-
|
|
452
732
|
* Use pip-compile to build requirements.txt. [Kenneth Loafman]
|
|
453
733
|
|
|
454
|
-
|
|
455
|
-
## rel.2.2.4rc2 (2024-05-18)
|
|
456
|
-
|
|
457
|
-
### Changes
|
|
458
|
-
|
|
459
734
|
* Adjust since twine does not do wildcards. [Kenneth Loafman]
|
|
460
735
|
|
|
461
736
|
* Revert "chg:pkg: Add missing fasteners install dependency" [Kenneth Loafman]
|
|
@@ -474,27 +749,6 @@ n+1 volumes, switch to "spawn". [Thomas Laubrock]
|
|
|
474
749
|
|
|
475
750
|
* Ignore new pylint warning E0606 (possibly-used-before-assignment). [Kenneth Loafman]
|
|
476
751
|
|
|
477
|
-
### Fix
|
|
478
|
-
|
|
479
|
-
* Onedrive: fix "unauthorized" upload error by not passing auth. [Michael Terry]
|
|
480
|
-
|
|
481
|
-
After the initial createUploadSession, apparently OneDrive actively dislikes it if you send Authorization headers on the subsequent PUT calls.
|
|
482
|
-
|
|
483
|
-
See their docs: https://learn.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-1.0#remarks
|
|
484
|
-
|
|
485
|
-
If you do include the Authorization header, you get 401 responses.
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
## rel.2.2.4rc1 (2024-05-15)
|
|
489
|
-
|
|
490
|
-
### Changes
|
|
491
|
-
|
|
492
|
-
* Run po/update-pot. [Kenneth Loafman]
|
|
493
|
-
|
|
494
|
-
* Fix typo in ignore new pylint warning. [Kenneth Loafman]
|
|
495
|
-
|
|
496
|
-
* Ignore new pylint warning E0606 (possibly-used-before-assignment). [Kenneth Loafman]
|
|
497
|
-
|
|
498
752
|
* Upgrade setup process and instructions (2nd try) [Kenneth Loafman]
|
|
499
753
|
|
|
500
754
|
Finally fix #797
|
|
@@ -530,6 +784,14 @@ n+1 volumes, switch to "spawn". [Thomas Laubrock]
|
|
|
530
784
|
|
|
531
785
|
### Fix
|
|
532
786
|
|
|
787
|
+
* Onedrive: fix "unauthorized" upload error by not passing auth. [Michael Terry]
|
|
788
|
+
|
|
789
|
+
After the initial createUploadSession, apparently OneDrive actively dislikes it if you send Authorization headers on the subsequent PUT calls.
|
|
790
|
+
|
|
791
|
+
See their docs: https://learn.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-1.0#remarks
|
|
792
|
+
|
|
793
|
+
If you do include the Authorization header, you get 401 responses.
|
|
794
|
+
|
|
533
795
|
* Don't drop args when restarting with execve. [Michael Terry]
|
|
534
796
|
|
|
535
797
|
* Really fix invalid option error. [Kenneth Loafman]
|
|
@@ -872,330 +1134,96 @@ flow. [Christopher Haglund]
|
|
|
872
1134
|
|
|
873
1135
|
* Adjust paramiko host key format to hex. [Kenneth Loafman]
|
|
874
1136
|
|
|
875
|
-
Fixes #760.
|
|
876
|
-
|
|
877
|
-
* Adjust debian/control and requirements.txt. [Kenneth Loafman]
|
|
878
|
-
|
|
879
|
-
- Change boto to boto3.
|
|
880
|
-
- Remove python3-future.
|
|
881
|
-
- Fixes #761.
|
|
882
|
-
|
|
883
|
-
* Restore s3\_use\_server\_side\_encryption. [Kenneth Loafman]
|
|
884
|
-
|
|
885
|
-
* Issue #759 "--asynchronous-upload is not parsed correctly" [ed]
|
|
886
|
-
|
|
887
|
-
https://gitlab.com/duplicity/duplicity/-/issues/759
|
|
888
|
-
|
|
889
|
-
* Implement \_retry\_cleanup for ssh\_paramiko. [bonswouar]
|
|
890
|
-
|
|
891
|
-
* Fix python version requirement. Fixes #754. [Kenneth Loafman]
|
|
892
|
-
|
|
893
|
-
* Adjust azure import handling. Fixes #756. [Kenneth Loafman]
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
## rel.2.1.1 (2023-09-02)
|
|
897
|
-
|
|
898
|
-
### Changes
|
|
899
|
-
|
|
900
|
-
* Run po/update-pot. [Kenneth Loafman]
|
|
901
|
-
|
|
902
|
-
* Make action command missing error message more helpful. [ede]
|
|
903
|
-
|
|
904
|
-
* Allow duplicity --help and -h. Fixes #749. [Kenneth Loafman]
|
|
905
|
-
|
|
906
|
-
* Do not wrap body of git commit. [Kenneth Loafman]
|
|
907
|
-
|
|
908
|
-
* Change backup abbrev 'b' to 'bu'. [Kenneth Loafman]
|
|
909
|
-
|
|
910
|
-
* Skip some tests on Launchpad. [Kenneth Loafman]
|
|
911
|
-
|
|
912
|
-
### Fix
|
|
913
|
-
|
|
914
|
-
* Pexpect backend fix. [DiegoRenner]
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
## rel.2.1.0 (2023-08-26)
|
|
918
|
-
|
|
919
|
-
### New
|
|
920
|
-
|
|
921
|
-
* Skip inc backup if nothing has changed. [Thomas Laubrock]
|
|
922
|
-
|
|
923
|
-
* Log a warning when using dangerous --asynchronous-upload option. [ed]
|
|
924
|
-
|
|
925
|
-
* Keep stats in files. Fixes #722. [Thomas Laubrock]
|
|
926
|
-
|
|
927
|
-
### Changes
|
|
928
|
-
|
|
929
|
-
* Run po/update-pot. [Kenneth Loafman]
|
|
930
|
-
|
|
931
|
-
### Fix
|
|
932
|
-
|
|
933
|
-
* Implement implied commands via pre parsing. Fixes #733. [Kenneth Loafman]
|
|
934
|
-
|
|
935
|
-
- detect 'backup' or 'restore' by parsing the arguments
|
|
936
|
-
- new action command 'backup'
|
|
937
|
-
- document 'backup' in man page
|
|
938
|
-
- document new action command short aliases in man page
|
|
939
|
-
- streamline url parameter checking
|
|
940
|
-
- add more tests for implied commands
|
|
941
|
-
|
|
942
|
-
* Replace util.fsdecode with os.fsdecode. Fixes #748. [Kenneth Loafman]
|
|
943
|
-
|
|
944
|
-
* Try import of setuptools\_scm. Fixes #746. [Kenneth Loafman]
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
## rel.2.0.2 (2023-08-15)
|
|
948
|
-
|
|
949
|
-
### Fix
|
|
950
|
-
|
|
951
|
-
* Fixes to tools/release-prep. [Kenneth Loafman]
|
|
952
|
-
|
|
953
|
-
* Adjust to new azure module structure. Fixes #731. [Kenneth Loafman]
|
|
954
|
-
|
|
955
|
-
* Handle --encrypt-sign-key. Fixes #736. [Kenneth Loafman]
|
|
956
|
-
|
|
957
|
-
* Fix PEP8 error. [Kenneth Loafman]
|
|
958
|
-
|
|
959
|
-
* Fix *-options commands. Fixes #732. [Kenneth Loafman]
|
|
960
|
-
|
|
961
|
-
* Enable selection options for verify. Fixes #734. [vin01]
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
## rel.2.0.1 (2023-08-08)
|
|
965
|
-
|
|
966
|
-
### Fix
|
|
967
|
-
|
|
968
|
-
* Adjust regex for 2.0.0x. [Kenneth Loafman]
|
|
969
|
-
|
|
970
|
-
* Restore pre-parser. Fixes #727. [Kenneth Loafman]
|
|
971
|
-
|
|
972
|
-
Revert "chg:usr: Remove implied command support for now."
|
|
973
|
-
|
|
974
|
-
This reverts commit afbeb4082a87e2073b5ccdcd624cf5e6f4465608.
|
|
975
|
-
|
|
976
|
-
* Add missing import to cli\_util.py. Fixes #730. [Kenneth Loafman]
|
|
977
|
-
|
|
978
|
-
* Add missing import to b2backend.py. Fixes #729. [Kenneth Loafman]
|
|
979
|
-
|
|
980
|
-
* Adjust version to build under LP. [Kenneth Loafman]
|
|
981
|
-
|
|
982
|
-
* Adjust to build under LP Mantic. [Kenneth Loafman]
|
|
983
|
-
|
|
984
|
-
fix:pkg: Adjust to build under LP Mantic.
|
|
985
|
-
|
|
986
|
-
* Fix PEP8 issue. [Kenneth Loafman]
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
## rel.2.0.0x (2023-08-07)
|
|
990
|
-
|
|
991
|
-
### Changes
|
|
992
|
-
|
|
993
|
-
* Remove boto related doc. some reformatting. [ede]
|
|
994
|
-
|
|
995
|
-
* Add missing user options to manpage. [Kenneth Loafman]
|
|
996
|
-
|
|
997
|
-
* Improve --verbosity help. [Kenneth Loafman]
|
|
998
|
-
|
|
999
|
-
* Remove implied command support for now. [Kenneth Loafman]
|
|
1000
|
-
|
|
1001
|
-
* Remove --s3-european-buckets used by boto. [Kenneth Loafman]
|
|
1002
|
-
|
|
1003
|
-
* Fix short filenames use in new s3 files. [Kenneth Loafman]
|
|
1004
|
-
|
|
1005
|
-
### Fix
|
|
1006
|
-
|
|
1007
|
-
* Cannot run CLI tests on Launchpad. [Kenneth Loafman]
|
|
1008
|
-
|
|
1009
|
-
* S3 backend issues. Fixes #31. [Kenneth Loafman]
|
|
1010
|
-
|
|
1011
|
-
* Fix Exception Type for verbosity level. [Thomas Laubrock]
|
|
1012
|
-
|
|
1013
|
-
* Remove tests for py27 and py35. [Kenneth Loafman]
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
## rel.2.0.0rc2 (2023-07-24)
|
|
1017
|
-
|
|
1018
|
-
### Changes
|
|
1019
|
-
|
|
1020
|
-
* Fix format strings in idrivedbackend.py. [Kenneth Loafman]
|
|
1021
|
-
|
|
1022
|
-
* Add additional CLI checks. [Kenneth Loafman]
|
|
1023
|
-
|
|
1024
|
-
* Fix format strings in idrivedbackend.py. [Kenneth Loafman]
|
|
1025
|
-
|
|
1026
|
-
* Fix format string in statistics.py. [Kenneth Loafman]
|
|
1027
|
-
|
|
1028
|
-
* Remove kerberos from snap builds. [Kenneth Loafman]
|
|
1029
|
-
|
|
1030
|
-
kerberos will not build in snapcraft.
|
|
1031
|
-
|
|
1032
|
-
* Changes to allow building snaps. [Kenneth Loafman]
|
|
1033
|
-
|
|
1034
|
-
Found another bug in snapcraft, see:
|
|
1035
|
-
https://bugs.launchpad.net/snapcraft/+bug/2028303
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
## rel.2.0.0rc1 (2023-07-17)
|
|
1039
|
-
|
|
1040
|
-
### Changes
|
|
1041
|
-
|
|
1042
|
-
* Update CHANGELOG.md. [Kenneth Loafman]
|
|
1043
|
-
|
|
1044
|
-
* Fix implied command handling. [Kenneth Loafman]
|
|
1045
|
-
|
|
1046
|
-
* Create regression test dir from old scripts. [Kenneth Loafman]
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
## rel.2.0.0rc0 (2023-07-10)
|
|
1050
|
-
|
|
1051
|
-
### Changes
|
|
1052
|
-
|
|
1053
|
-
* Update CHANGELOG.md. [Kenneth Loafman]
|
|
1054
|
-
|
|
1055
|
-
### Fix
|
|
1056
|
-
|
|
1057
|
-
* Finish conversions to f-strings. [Kenneth Loafman]
|
|
1058
|
-
|
|
1059
|
-
See https://github.com/ikamensh/flynt/issues/185
|
|
1060
|
-
|
|
1061
|
-
* Convert to f-strings via 'flynt -tc -tj'. [Kenneth Loafman]
|
|
1062
|
-
|
|
1063
|
-
* With py2 gone remove unicode string adornments. [Kenneth Loafman]
|
|
1064
|
-
|
|
1065
|
-
* Fix implied command when target is empty. [Kenneth Loafman]
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
## rel.2.0.0b2 (2023-07-02)
|
|
1069
|
-
|
|
1070
|
-
### Changes
|
|
1071
|
-
|
|
1072
|
-
* Update CHANGELOG.md. [Kenneth Loafman]
|
|
1073
|
-
|
|
1074
|
-
* Fix syntax error in .gitlab-ci.yml. [Kenneth Loafman]
|
|
1075
|
-
|
|
1076
|
-
* Fix website to only run with WEBSITE\_TRIGGER\_TOKEN. [Kenneth Loafman]
|
|
1077
|
-
|
|
1078
|
-
* Fix PEP8 issue. Update CHANGELOG.md. [Kenneth Loafman]
|
|
1079
|
-
|
|
1080
|
-
* Resolve some minor merge issues. [Kenneth Loafman]
|
|
1081
|
-
|
|
1082
|
-
* Whoops, used f-string to fix #716. Fixed. [Kenneth Loafman]
|
|
1083
|
-
|
|
1084
|
-
* Fix #716. Print filename on read error. [Kenneth Loafman]
|
|
1085
|
-
|
|
1086
|
-
* Fix #709. Add docs on passphrase encryption used. [Kenneth Loafman]
|
|
1087
|
-
|
|
1088
|
-
* Fixes for handling snaps again. [Kenneth Loafman]
|
|
1089
|
-
|
|
1090
|
-
Use requirements.txt instead of internal list.
|
|
1091
|
-
|
|
1092
|
-
* Fix #707 for test\_get\_stats\_string. [Kenneth Loafman]
|
|
1093
|
-
|
|
1094
|
-
Move UTC set/unset to testing.__init__.
|
|
1095
|
-
|
|
1096
|
-
* Fix #707 for test\_get\_stats\_string. [Kenneth Loafman]
|
|
1097
|
-
|
|
1098
|
-
Base time on UTC rather than where the test is run.
|
|
1099
|
-
|
|
1100
|
-
* Fix #707 for test\_get\_stats\_string. [Kenneth Loafman]
|
|
1101
|
-
|
|
1102
|
-
Base time on UTC rather than where the test is run.
|
|
1103
|
-
|
|
1104
|
-
* Fix #707 for rclone backend testing. [Kenneth Loafman]
|
|
1105
|
-
|
|
1106
|
-
Create 'duptest' config if needed, then remove after
|
|
1107
|
-
tests are complete.
|
|
1108
|
-
|
|
1109
|
-
Add some more pytest options to tox.ini.
|
|
1110
|
-
|
|
1111
|
-
* Comment out test\_path:test\_compare, flaky. [Kenneth Loafman]
|
|
1112
|
-
|
|
1113
|
-
Fixes #707 - 1.2.3 test failure
|
|
1114
|
-
|
|
1115
|
-
* Force cryptography<3.4 for py2 support. [Kenneth Loafman]
|
|
1137
|
+
Fixes #760.
|
|
1116
1138
|
|
|
1117
|
-
*
|
|
1139
|
+
* Adjust debian/control and requirements.txt. [Kenneth Loafman]
|
|
1118
1140
|
|
|
1119
|
-
|
|
1141
|
+
- Change boto to boto3.
|
|
1142
|
+
- Remove python3-future.
|
|
1143
|
+
- Fixes #761.
|
|
1120
1144
|
|
|
1121
|
-
|
|
1145
|
+
* Restore s3\_use\_server\_side\_encryption. [Kenneth Loafman]
|
|
1122
1146
|
|
|
1123
|
-
*
|
|
1147
|
+
* Issue #759 "--asynchronous-upload is not parsed correctly" [ed]
|
|
1124
1148
|
|
|
1125
|
-
|
|
1149
|
+
https://gitlab.com/duplicity/duplicity/-/issues/759
|
|
1126
1150
|
|
|
1127
|
-
*
|
|
1151
|
+
* Implement \_retry\_cleanup for ssh\_paramiko. [bonswouar]
|
|
1128
1152
|
|
|
1129
|
-
|
|
1153
|
+
* Fix python version requirement. Fixes #754. [Kenneth Loafman]
|
|
1130
1154
|
|
|
1131
|
-
*
|
|
1155
|
+
* Adjust azure import handling. Fixes #756. [Kenneth Loafman]
|
|
1132
1156
|
|
|
1133
1157
|
|
|
1134
|
-
## rel.2.
|
|
1158
|
+
## rel.2.1.1 (2023-09-02)
|
|
1135
1159
|
|
|
1136
1160
|
### Changes
|
|
1137
1161
|
|
|
1138
|
-
*
|
|
1162
|
+
* Run po/update-pot. [Kenneth Loafman]
|
|
1139
1163
|
|
|
1140
|
-
*
|
|
1164
|
+
* Make action command missing error message more helpful. [ede]
|
|
1141
1165
|
|
|
1142
|
-
*
|
|
1166
|
+
* Allow duplicity --help and -h. Fixes #749. [Kenneth Loafman]
|
|
1143
1167
|
|
|
1144
|
-
*
|
|
1168
|
+
* Do not wrap body of git commit. [Kenneth Loafman]
|
|
1145
1169
|
|
|
1170
|
+
* Change backup abbrev 'b' to 'bu'. [Kenneth Loafman]
|
|
1146
1171
|
|
|
1147
|
-
|
|
1172
|
+
* Skip some tests on Launchpad. [Kenneth Loafman]
|
|
1148
1173
|
|
|
1149
|
-
###
|
|
1174
|
+
### Fix
|
|
1150
1175
|
|
|
1151
|
-
*
|
|
1176
|
+
* Pexpect backend fix. [DiegoRenner]
|
|
1152
1177
|
|
|
1153
|
-
* Fix #24. Allow users to tune copy block size. [Kenneth Loafman]
|
|
1154
1178
|
|
|
1155
|
-
|
|
1156
|
-
- Added tests for same and improved other testss.
|
|
1179
|
+
## rel.2.1.0 (2023-08-26)
|
|
1157
1180
|
|
|
1158
|
-
|
|
1181
|
+
### New
|
|
1159
1182
|
|
|
1183
|
+
* Skip inc backup if nothing has changed. [Thomas Laubrock]
|
|
1184
|
+
|
|
1185
|
+
* Log a warning when using dangerous --asynchronous-upload option. [ed]
|
|
1160
1186
|
|
|
1161
|
-
|
|
1187
|
+
* Keep stats in files. Fixes #722. [Thomas Laubrock]
|
|
1162
1188
|
|
|
1163
1189
|
### Changes
|
|
1164
1190
|
|
|
1165
|
-
*
|
|
1191
|
+
* Run po/update-pot. [Kenneth Loafman]
|
|
1166
1192
|
|
|
1193
|
+
### Fix
|
|
1167
1194
|
|
|
1168
|
-
|
|
1195
|
+
* Implement implied commands via pre parsing. Fixes #733. [Kenneth Loafman]
|
|
1169
1196
|
|
|
1170
|
-
|
|
1197
|
+
- detect 'backup' or 'restore' by parsing the arguments
|
|
1198
|
+
- new action command 'backup'
|
|
1199
|
+
- document 'backup' in man page
|
|
1200
|
+
- document new action command short aliases in man page
|
|
1201
|
+
- streamline url parameter checking
|
|
1202
|
+
- add more tests for implied commands
|
|
1171
1203
|
|
|
1172
|
-
*
|
|
1204
|
+
* Replace util.fsdecode with os.fsdecode. Fixes #748. [Kenneth Loafman]
|
|
1173
1205
|
|
|
1174
|
-
|
|
1175
|
-
- Code and testing clean up.
|
|
1176
|
-
- Remove deprecated option handling.
|
|
1206
|
+
* Try import of setuptools\_scm. Fixes #746. [Kenneth Loafman]
|
|
1177
1207
|
|
|
1178
|
-
* Add implied backup/restore back. [Kenneth Loafman]
|
|
1179
1208
|
|
|
1180
|
-
|
|
1209
|
+
## rel.2.0.2 (2023-08-15)
|
|
1181
1210
|
|
|
1182
|
-
|
|
1183
|
-
- Preparse options for config.
|
|
1211
|
+
### Fix
|
|
1184
1212
|
|
|
1185
|
-
*
|
|
1213
|
+
* Fixes to tools/release-prep. [Kenneth Loafman]
|
|
1186
1214
|
|
|
1187
|
-
*
|
|
1215
|
+
* Adjust to new azure module structure. Fixes #731. [Kenneth Loafman]
|
|
1188
1216
|
|
|
1189
|
-
*
|
|
1217
|
+
* Handle --encrypt-sign-key. Fixes #736. [Kenneth Loafman]
|
|
1190
1218
|
|
|
1191
|
-
|
|
1219
|
+
* Fix PEP8 error. [Kenneth Loafman]
|
|
1192
1220
|
|
|
1193
|
-
* Fix
|
|
1221
|
+
* Fix *-options commands. Fixes #732. [Kenneth Loafman]
|
|
1194
1222
|
|
|
1195
|
-
*
|
|
1223
|
+
* Enable selection options for verify. Fixes #734. [vin01]
|
|
1196
1224
|
|
|
1197
1225
|
|
|
1198
|
-
## rel.2.0.
|
|
1226
|
+
## rel.2.0.1 (2023-08-08)
|
|
1199
1227
|
|
|
1200
1228
|
### New
|
|
1201
1229
|
|
|
@@ -1297,6 +1325,91 @@ flow. [Christopher Haglund]
|
|
|
1297
1325
|
|
|
1298
1326
|
### Changes
|
|
1299
1327
|
|
|
1328
|
+
* Remove boto related doc. some reformatting. [ede]
|
|
1329
|
+
|
|
1330
|
+
* Add missing user options to manpage. [Kenneth Loafman]
|
|
1331
|
+
|
|
1332
|
+
* Improve --verbosity help. [Kenneth Loafman]
|
|
1333
|
+
|
|
1334
|
+
* Remove implied command support for now. [Kenneth Loafman]
|
|
1335
|
+
|
|
1336
|
+
* Remove --s3-european-buckets used by boto. [Kenneth Loafman]
|
|
1337
|
+
|
|
1338
|
+
* Fix short filenames use in new s3 files. [Kenneth Loafman]
|
|
1339
|
+
|
|
1340
|
+
* Fix format strings in idrivedbackend.py. [Kenneth Loafman]
|
|
1341
|
+
|
|
1342
|
+
* Add additional CLI checks. [Kenneth Loafman]
|
|
1343
|
+
|
|
1344
|
+
* Fix format strings in idrivedbackend.py. [Kenneth Loafman]
|
|
1345
|
+
|
|
1346
|
+
* Fix format string in statistics.py. [Kenneth Loafman]
|
|
1347
|
+
|
|
1348
|
+
* Remove kerberos from snap builds. [Kenneth Loafman]
|
|
1349
|
+
|
|
1350
|
+
kerberos will not build in snapcraft.
|
|
1351
|
+
|
|
1352
|
+
* Changes to allow building snaps. [Kenneth Loafman]
|
|
1353
|
+
|
|
1354
|
+
Found another bug in snapcraft, see:
|
|
1355
|
+
https://bugs.launchpad.net/snapcraft/+bug/2028303
|
|
1356
|
+
|
|
1357
|
+
* Update CHANGELOG.md. [Kenneth Loafman]
|
|
1358
|
+
|
|
1359
|
+
* Fix implied command handling. [Kenneth Loafman]
|
|
1360
|
+
|
|
1361
|
+
* Create regression test dir from old scripts. [Kenneth Loafman]
|
|
1362
|
+
|
|
1363
|
+
* Update CHANGELOG.md. [Kenneth Loafman]
|
|
1364
|
+
|
|
1365
|
+
* Update CHANGELOG.md. [Kenneth Loafman]
|
|
1366
|
+
|
|
1367
|
+
* Fix syntax error in .gitlab-ci.yml. [Kenneth Loafman]
|
|
1368
|
+
|
|
1369
|
+
* Fix website to only run with WEBSITE\_TRIGGER\_TOKEN. [Kenneth Loafman]
|
|
1370
|
+
|
|
1371
|
+
* Fix PEP8 issue. Update CHANGELOG.md. [Kenneth Loafman]
|
|
1372
|
+
|
|
1373
|
+
* Resolve some minor merge issues. [Kenneth Loafman]
|
|
1374
|
+
|
|
1375
|
+
* Update CHANGELOG.md. [Kenneth Loafman]
|
|
1376
|
+
|
|
1377
|
+
* Some basic PEP8 and code cleanup. [Kenneth Loafman]
|
|
1378
|
+
|
|
1379
|
+
* Set socket default timeout in CLI. [Kenneth Loafman]
|
|
1380
|
+
|
|
1381
|
+
* Fixes for deprecated/changed options. [Kenneth Loafman]
|
|
1382
|
+
|
|
1383
|
+
* Misc changes for compatibility. [Kenneth Loafman]
|
|
1384
|
+
|
|
1385
|
+
* Fix #24. Allow users to tune copy block size. [Kenneth Loafman]
|
|
1386
|
+
|
|
1387
|
+
- Added --copy-blocksize, default 128k to options.
|
|
1388
|
+
- Added tests for same and improved other testss.
|
|
1389
|
+
|
|
1390
|
+
* Fix .gitlab-ci.yml to skip website step if no token. [Kenneth Loafman]
|
|
1391
|
+
|
|
1392
|
+
* Remove pathvalidate from use. Fixes #27. [Kenneth Loafman]
|
|
1393
|
+
|
|
1394
|
+
* More CLI improvements. [Kenneth Loafman]
|
|
1395
|
+
|
|
1396
|
+
- Improve error message for implied commands.
|
|
1397
|
+
- Code and testing clean up.
|
|
1398
|
+
- Remove deprecated option handling.
|
|
1399
|
+
|
|
1400
|
+
* Add implied backup/restore back. [Kenneth Loafman]
|
|
1401
|
+
|
|
1402
|
+
* CLI improvements and cleanup. [Kenneth Loafman]
|
|
1403
|
+
|
|
1404
|
+
- Remove 'backup' command.
|
|
1405
|
+
- Preparse options for config.
|
|
1406
|
+
|
|
1407
|
+
* Minor cleanup, rm dead code. [Kenneth Loafman]
|
|
1408
|
+
|
|
1409
|
+
* RcloneBackendTest now creates its own config. [Kenneth Loafman]
|
|
1410
|
+
|
|
1411
|
+
* "--ignore-errors" gets proper handling in CLI. [Kenneth Loafman]
|
|
1412
|
+
|
|
1300
1413
|
* Fix initial version. [Kenneth Loafman]
|
|
1301
1414
|
|
|
1302
1415
|
* Give up. Let setup mangle as it will. [Kenneth Loafman]
|
|
@@ -2052,8 +2165,87 @@ flow. [Christopher Haglund]
|
|
|
2052
2165
|
|
|
2053
2166
|
* Remove installs common between before\_script: and script: [Kenneth Loafman]
|
|
2054
2167
|
|
|
2168
|
+
* Whoops, used f-string to fix #716. Fixed. [Kenneth Loafman]
|
|
2169
|
+
|
|
2170
|
+
* Fix #716. Print filename on read error. [Kenneth Loafman]
|
|
2171
|
+
|
|
2172
|
+
* Fix #709. Add docs on passphrase encryption used. [Kenneth Loafman]
|
|
2173
|
+
|
|
2174
|
+
* Fixes for handling snaps again. [Kenneth Loafman]
|
|
2175
|
+
|
|
2176
|
+
Use requirements.txt instead of internal list.
|
|
2177
|
+
|
|
2178
|
+
* Fix #707 for test\_get\_stats\_string. [Kenneth Loafman]
|
|
2179
|
+
|
|
2180
|
+
Move UTC set/unset to testing.__init__.
|
|
2181
|
+
|
|
2182
|
+
* Fix #707 for test\_get\_stats\_string. [Kenneth Loafman]
|
|
2183
|
+
|
|
2184
|
+
Base time on UTC rather than where the test is run.
|
|
2185
|
+
|
|
2186
|
+
* Fix #707 for test\_get\_stats\_string. [Kenneth Loafman]
|
|
2187
|
+
|
|
2188
|
+
Base time on UTC rather than where the test is run.
|
|
2189
|
+
|
|
2190
|
+
* Fix #707 for rclone backend testing. [Kenneth Loafman]
|
|
2191
|
+
|
|
2192
|
+
Create 'duptest' config if needed, then remove after
|
|
2193
|
+
tests are complete.
|
|
2194
|
+
|
|
2195
|
+
Add some more pytest options to tox.ini.
|
|
2196
|
+
|
|
2197
|
+
* Comment out test\_path:test\_compare, flaky. [Kenneth Loafman]
|
|
2198
|
+
|
|
2199
|
+
Fixes #707 - 1.2.3 test failure
|
|
2200
|
+
|
|
2201
|
+
* Force cryptography<3.4 for py2 support. [Kenneth Loafman]
|
|
2202
|
+
|
|
2203
|
+
* Test if requirements.txt changes. [Kenneth Loafman]
|
|
2204
|
+
|
|
2205
|
+
* Revert back to tox < 4.0. [Kenneth Loafman]
|
|
2206
|
+
|
|
2055
2207
|
### Fix
|
|
2056
2208
|
|
|
2209
|
+
* Adjust regex for 2.0.0x. [Kenneth Loafman]
|
|
2210
|
+
|
|
2211
|
+
* Restore pre-parser. Fixes #727. [Kenneth Loafman]
|
|
2212
|
+
|
|
2213
|
+
Revert "chg:usr: Remove implied command support for now."
|
|
2214
|
+
|
|
2215
|
+
This reverts commit afbeb4082a87e2073b5ccdcd624cf5e6f4465608.
|
|
2216
|
+
|
|
2217
|
+
* Add missing import to cli\_util.py. Fixes #730. [Kenneth Loafman]
|
|
2218
|
+
|
|
2219
|
+
* Add missing import to b2backend.py. Fixes #729. [Kenneth Loafman]
|
|
2220
|
+
|
|
2221
|
+
* Adjust version to build under LP. [Kenneth Loafman]
|
|
2222
|
+
|
|
2223
|
+
* Adjust to build under LP Mantic. [Kenneth Loafman]
|
|
2224
|
+
|
|
2225
|
+
fix:pkg: Adjust to build under LP Mantic.
|
|
2226
|
+
|
|
2227
|
+
* Fix PEP8 issue. [Kenneth Loafman]
|
|
2228
|
+
|
|
2229
|
+
* Cannot run CLI tests on Launchpad. [Kenneth Loafman]
|
|
2230
|
+
|
|
2231
|
+
* S3 backend issues. Fixes #31. [Kenneth Loafman]
|
|
2232
|
+
|
|
2233
|
+
* Fix Exception Type for verbosity level. [Thomas Laubrock]
|
|
2234
|
+
|
|
2235
|
+
* Finish conversions to f-strings. [Kenneth Loafman]
|
|
2236
|
+
|
|
2237
|
+
See https://github.com/ikamensh/flynt/issues/185
|
|
2238
|
+
|
|
2239
|
+
* Convert to f-strings via 'flynt -tc -tj'. [Kenneth Loafman]
|
|
2240
|
+
|
|
2241
|
+
* With py2 gone remove unicode string adornments. [Kenneth Loafman]
|
|
2242
|
+
|
|
2243
|
+
* Fix implied command when target is empty. [Kenneth Loafman]
|
|
2244
|
+
|
|
2245
|
+
* Fix #22, “--no-compression” doesn't have effect. [Kenneth Loafman]
|
|
2246
|
+
|
|
2247
|
+
* Fix .gitlab-ci.yml file syntax error. [Kenneth Loafman]
|
|
2248
|
+
|
|
2057
2249
|
* Add a missing super() call in path.py. [Kenneth Loafman]
|
|
2058
2250
|
|
|
2059
2251
|
* Add a missing method to some super calls. [Michael Terry]
|
|
@@ -2452,6 +2644,18 @@ flow. [Christopher Haglund]
|
|
|
2452
2644
|
|
|
2453
2645
|
* Fixes #41 - par2+rsync (non-ssh) fails. [Kenneth Loafman]
|
|
2454
2646
|
|
|
2647
|
+
* Remove tests for py27 and py35. [Kenneth Loafman]
|
|
2648
|
+
|
|
2649
|
+
* Fix #710. Missing Content-Type header on webdav. [Kenneth Loafman]
|
|
2650
|
+
|
|
2651
|
+
* S3 filename encoding. [Thomas Laubrock]
|
|
2652
|
+
|
|
2653
|
+
* Fix #712 "if cache lost. `*.sigtar.gpg` files not accessible" [Thomas Laubrock]
|
|
2654
|
+
|
|
2655
|
+
solution, do not add signature files to glacier
|
|
2656
|
+
|
|
2657
|
+
* Handle read-only remote parent folder better in gio backend. [Michael Terry]
|
|
2658
|
+
|
|
2455
2659
|
### Other
|
|
2456
2660
|
|
|
2457
2661
|
* Merge branch 'main' into branch 'duplicity-py3' [Kenneth Loafman]
|