duplicity 3.0.6.dev7__tar.gz → 3.0.6.dev11__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.
Files changed (144) hide show
  1. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/CHANGELOG.md +497 -311
  2. {duplicity-3.0.6.dev7/duplicity.egg-info → duplicity-3.0.6.dev11}/PKG-INFO +4 -4
  3. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/__init__.py +2 -2
  4. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/__main__.py +16 -6
  5. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/argparse311.py +4 -4
  6. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backend.py +1 -1
  7. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backend_pool.py +0 -36
  8. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/_cf_cloudfiles.py +1 -1
  9. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/_cf_pyrax.py +1 -1
  10. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/_testbackend.py +1 -5
  11. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/b2backend.py +8 -6
  12. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/boxbackend.py +1 -1
  13. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/jottacloudbackend.py +1 -3
  14. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/mediafirebackend.py +1 -1
  15. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/onedrivebackend.py +1 -1
  16. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/pcabackend.py +3 -3
  17. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/pyrax_identity/hubic.py +3 -3
  18. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/s3_boto3_backend.py +1 -1
  19. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/ssh_pexpect_backend.py +3 -4
  20. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/swiftbackend.py +3 -3
  21. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/webdavbackend.py +9 -1
  22. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/cli_data.py +14 -7
  23. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/cli_main.py +28 -7
  24. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/cli_util.py +4 -8
  25. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/config.py +2 -14
  26. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/dup_collections.py +205 -51
  27. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/dup_main.py +83 -57
  28. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/dup_time.py +3 -3
  29. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/gpg.py +2 -10
  30. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/lazy.py +1 -1
  31. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/log.py +3 -122
  32. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/manifest.py +3 -2
  33. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/path.py +3 -3
  34. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/progress.py +97 -10
  35. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/selection.py +2 -2
  36. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/tempdir.py +4 -6
  37. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/util.py +6 -6
  38. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11/duplicity.egg-info}/PKG-INFO +4 -4
  39. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity.egg-info/SOURCES.txt +0 -1
  40. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity.egg-info/requires.txt +1 -1
  41. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/man/duplicity.1 +17 -23
  42. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/pyproject.toml +40 -29
  43. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/requirements.txt +1 -1
  44. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/setup.py +8 -114
  45. duplicity-3.0.6.dev7/requirements.dev +0 -17
  46. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/AUTHORS.md +0 -0
  47. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/COPYING +0 -0
  48. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/README-LOG.md +0 -0
  49. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/README-REPO.md +0 -0
  50. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/README-TESTING.md +0 -0
  51. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/README.md +0 -0
  52. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/_librsyncmodule.c +0 -0
  53. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/__init__.py +0 -0
  54. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/adbackend.py +0 -0
  55. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/azurebackend.py +0 -0
  56. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/cfbackend.py +0 -0
  57. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/dpbxbackend.py +0 -0
  58. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/gdocsbackend.py +0 -0
  59. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/gdrivebackend.py +0 -0
  60. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/giobackend.py +0 -0
  61. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/hsibackend.py +0 -0
  62. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/hubicbackend.py +0 -0
  63. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/idrivedbackend.py +0 -0
  64. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/imapbackend.py +0 -0
  65. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/lftpbackend.py +0 -0
  66. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/localbackend.py +0 -0
  67. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/megabackend.py +0 -0
  68. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/megav2backend.py +0 -0
  69. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/megav3backend.py +0 -0
  70. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/multibackend.py +0 -0
  71. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/ncftpbackend.py +0 -0
  72. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/par2backend.py +0 -0
  73. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/pydrivebackend.py +0 -0
  74. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/pyrax_identity/__init__.py +0 -0
  75. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/rclonebackend.py +0 -0
  76. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/rsyncbackend.py +0 -0
  77. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/slatebackend.py +0 -0
  78. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/ssh_paramiko_backend.py +0 -0
  79. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/sxbackend.py +0 -0
  80. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/tahoebackend.py +0 -0
  81. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/backends/xorrisobackend.py +0 -0
  82. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/cached_ops.py +0 -0
  83. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/diffdir.py +0 -0
  84. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/dup_tarfile.py +0 -0
  85. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/dup_temp.py +0 -0
  86. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/errors.py +0 -0
  87. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/file_naming.py +0 -0
  88. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/filechunkio.py +0 -0
  89. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/globmatch.py +0 -0
  90. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/gpginterface.py +0 -0
  91. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/librsync.py +0 -0
  92. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/patchdir.py +0 -0
  93. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/robust.py +0 -0
  94. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity/statistics.py +0 -0
  95. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity.egg-info/dependency_links.txt +0 -0
  96. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity.egg-info/entry_points.txt +0 -0
  97. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/duplicity.egg-info/top_level.txt +0 -0
  98. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/af_ZA/duplicity.mo +0 -0
  99. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/ar_SA/duplicity.mo +0 -0
  100. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/ca_ES/duplicity.mo +0 -0
  101. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/cs_CZ/duplicity.mo +0 -0
  102. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/da_DK/duplicity.mo +0 -0
  103. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/de_AT/duplicity.mo +0 -0
  104. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/de_DE/duplicity.mo +0 -0
  105. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/el_GR/duplicity.mo +0 -0
  106. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/en_AU/duplicity.mo +0 -0
  107. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/en_GB/duplicity.mo +0 -0
  108. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/en_PR/duplicity.mo +0 -0
  109. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/en_US/duplicity.mo +0 -0
  110. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/es_EM/duplicity.mo +0 -0
  111. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/es_ES/duplicity.mo +0 -0
  112. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/es_MX/duplicity.mo +0 -0
  113. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/es_PR/duplicity.mo +0 -0
  114. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/es_US/duplicity.mo +0 -0
  115. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/fi_FI/duplicity.mo +0 -0
  116. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/fr_FR/duplicity.mo +0 -0
  117. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/he_IL/duplicity.mo +0 -0
  118. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/hu_HU/duplicity.mo +0 -0
  119. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/it_IT/duplicity.mo +0 -0
  120. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/ja_JP/duplicity.mo +0 -0
  121. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/ko_KR/duplicity.mo +0 -0
  122. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/nl_BE/duplicity.mo +0 -0
  123. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/nl_NL/duplicity.mo +0 -0
  124. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/nl_SR/duplicity.mo +0 -0
  125. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/no_NO/duplicity.mo +0 -0
  126. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/pl_PL/duplicity.mo +0 -0
  127. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/pt_BR/duplicity.mo +0 -0
  128. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/pt_PT/duplicity.mo +0 -0
  129. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/ro_RO/duplicity.mo +0 -0
  130. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/ru_BY/duplicity.mo +0 -0
  131. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/ru_MD/duplicity.mo +0 -0
  132. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/ru_RU/duplicity.mo +0 -0
  133. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/ru_UA/duplicity.mo +0 -0
  134. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/sr_SP/duplicity.mo +0 -0
  135. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/sv_SE/duplicity.mo +0 -0
  136. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/tr_TR/duplicity.mo +0 -0
  137. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/uk_UA/duplicity.mo +0 -0
  138. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/vi_VN/duplicity.mo +0 -0
  139. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/zh_CN/duplicity.mo +0 -0
  140. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/zh_HK/duplicity.mo +0 -0
  141. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/zh_MO/duplicity.mo +0 -0
  142. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/zh_SG/duplicity.mo +0 -0
  143. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/po/zh_TW/duplicity.mo +0 -0
  144. {duplicity-3.0.6.dev7 → duplicity-3.0.6.dev11}/setup.cfg +0 -0
@@ -1,6 +1,273 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+ ## rel.3.0.6.dev11 (2025-10-16)
5
+
6
+ ### New
7
+
8
+ * Set black>=24.8.0. [Kenneth Loafman]
9
+
10
+ ### Changes
11
+
12
+ * Remove may fail py3.14. [Kenneth Loafman]
13
+
14
+ * Use python:314 not -rc. [Kenneth Loafman]
15
+
16
+ * Use python -m build --sdist. [Kenneth Loafman]
17
+
18
+ * Add recent .dev versions to CHANGELOG.md. [Kenneth Loafman]
19
+
20
+ * Add py314 to wheels build. [Kenneth Loafman]
21
+
22
+ * Better assert error message. [Thomas Laubrock]
23
+
24
+ * Fix chdir() in tools/setversion. [Kenneth Loafman]
25
+
26
+ * Move SetVersionCommand to tools/setversion. [Kenneth Loafman]
27
+
28
+ * Don't check versions under pytest. [Kenneth Loafman]
29
+
30
+ * Fix/add TODO's for argparse311. [Kenneth Loafman]
31
+
32
+ * Mark test\_GzipWriteFile as xfail, may fail. [Kenneth Loafman]
33
+
34
+ - xfail because random data may cause Compression Failure
35
+
36
+ * Only run on py39 thru py314. [Kenneth Loafman]
37
+
38
+ * Change version max to 3.13. [Kenneth Loafman]
39
+
40
+ * Updates to wheels build. [Kenneth Loafman]
41
+
42
+ * Upload manylinux wheels to PyPi. [Kenneth Loafman]
43
+
44
+ - supports python 39,310,311,312,313 arches x86_64, aarch64 on Linux
45
+ - supports python 39,310,311,312,313 arches x86_64, arm64 on macOS
46
+
47
+ * More changes for Docker testing. [Kenneth Loafman]
48
+
49
+ * Boto3 1.36+ breaks Duplicity...but there is a workaround. [ede]
50
+
51
+ * Add regression test for #881. [Catalin Patulea]
52
+
53
+ ### Fix
54
+
55
+ * If using authentication, send warmup OPTIONS request. [Catalin Patulea]
56
+
57
+ 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
58
+
59
+ * 'duplicity incremental' attempts to fetch remote manifest which is not
60
+ needed for the current backup. [Kenneth Loafman]
61
+
62
+ - extended option --no-check-remote
63
+ - faked collection-status out with local metadata
64
+ - neutered the check for missing difftar volumes
65
+ - Fixes #891
66
+
67
+ * Fix removal of signature from latest backup. [Thomas Laubrock]
68
+
69
+ * Fix test\_out\_of\_order\_volume() in concurrency. [Thomas Laubrock]
70
+
71
+ * Black to run on py314. [Kenneth Loafman]
72
+
73
+ * Fix check for optimization. [Kenneth Loafman]
74
+
75
+ * Isolate .pytest\_cache using volumes. [Kenneth Loafman]
76
+
77
+ * Minor s3 clarification. [ede]
78
+
79
+ * Fix check for optimization. [Kenneth Loafman]
80
+
81
+ * Collection-status with a specific file fails with TypeError. [Kenneth Loafman]
82
+
83
+ * Duplicity verify fails with KeyError. [Kenneth Loafman]
84
+
85
+ - Fixes #815
86
+ - Optimizes imports
87
+ - Misc. test/doc fixes
88
+
89
+ * Restore a file to directory fails and empties target directory -
90
+ related to #111. [Kenneth Loafman]
91
+
92
+ * Add gpg to install lists. [Kenneth Loafman]
93
+
94
+ * GPG test fixes from issue815. [Kenneth Loafman]
95
+
96
+ * Make swiftbackend imports global. [Kenneth Loafman]
97
+
98
+ Fixes #886
99
+
100
+ ### Other
101
+
102
+ * Chr:usr: remove 'are\_errors\_fatal' mechanism, no longer needed. [Catalin Patulea]
103
+
104
+ Since the recent commit to raise @retry final errors as exceptions,
105
+ are_errors_fatal mechanism is no longer needed, we can use a normal 'except'
106
+ block.
107
+
108
+
109
+ ## rel.3.0.6.dev10 (2025-10-01)
110
+
111
+ ### Changes
112
+
113
+ * Fix chdir() in tools/setversion. [Kenneth Loafman]
114
+
115
+ * Move SetVersionCommand to tools/setversion. [Kenneth Loafman]
116
+
117
+ * Set black>=24.8.0. [Kenneth Loafman]
118
+
119
+ * Don't check versions under pytest. [Kenneth Loafman]
120
+
121
+ * Fix/add TODO's for argparse311. [Kenneth Loafman]
122
+
123
+ * Mark test\_GzipWriteFile as xfail, may fail. [Kenneth Loafman]
124
+
125
+ - xfail because random data may cause Compression Failure
126
+
127
+ * Only run on py39 thru py314. [Kenneth Loafman]
128
+
129
+ ### Fix
130
+
131
+ * Fix test\_out\_of\_order\_volume() in concurrency. [Thomas Laubrock]
132
+
133
+ * Black to run on py314. [Kenneth Loafman]
134
+
135
+ * Isolate .pytest\_cache using volumes. [Kenneth Loafman]
136
+
137
+ * Minor s3 clarification. [ede]
138
+
139
+
140
+ ## rel.3.0.6.dev9 (2025-09-25)
141
+
142
+ ### Changes
143
+
144
+ * Change version max to 3.13. [Kenneth Loafman]
145
+
146
+ * Updates to wheels build. [Kenneth Loafman]
147
+
148
+ ### Fix
149
+
150
+ * Fix check for optimization. [Kenneth Loafman]
151
+
152
+
153
+ ## rel.3.0.6.dev8 (2025-09-14)
154
+
155
+ ### Fix
156
+
157
+ * Collection-status with a specific file fails with TypeError. [Kenneth Loafman]
158
+
159
+ * Duplicity verify fails with KeyError. [Kenneth Loafman]
160
+
161
+ - Fixes #815
162
+ - Optimizes imports
163
+ - Misc. test/doc fixes
164
+
165
+ * Restore a file to directory fails and empties target directory -
166
+ related to #111. [Kenneth Loafman]
167
+
168
+ * Add gpg to install lists. [Kenneth Loafman]
169
+
170
+ * GPG test fixes from issue815. [Kenneth Loafman]
171
+
172
+
173
+ ## rel.3.0.6.dev7 (2025-08-02)
174
+
175
+ ### Changes
176
+
177
+ * Upload manylinux wheels to PyPi. [Kenneth Loafman]
178
+
179
+ - supports python 39,310,311,312,313 arches x86_64, aarch64 on Linux
180
+ - supports python 39,310,311,312,313 arches x86_64, arm64 on macOS
181
+
182
+ * More changes for Docker testing. [Kenneth Loafman]
183
+
184
+ * Boto3 1.36+ breaks Duplicity...but there is a workaround. [ede]
185
+
186
+
187
+ ## rel.3.0.6.dev6 (2025-07-24)
188
+
189
+ ### Changes
190
+
191
+ * Add regression test for #881. [Catalin Patulea]
192
+
193
+ * Remove 'are\_errors\_fatal' mechanism, no longer needed. [Catalin Patulea]
194
+
195
+ Since the recent commit to raise @retry final errors as exceptions,
196
+ are_errors_fatal mechanism is no longer needed, we can use a normal 'except'
197
+ block.
198
+
199
+ * Docker changes ported from issue815. [Kenneth Loafman]
200
+
201
+ A number of changes to `testing/docker` in issue815 that need to be released separately.
202
+
203
+ ### Fix
204
+
205
+ * Make swiftbackend imports global. [Kenneth Loafman]
206
+
207
+ Fixes #886
208
+
209
+ * Multi backend: if we looped around, and any passed, break out. [Catalin Patulea]
210
+
211
+ * Fix:usr: make @retry report fatals as exceptions, not log.FatalError. [Catalin Patulea]
212
+
213
+ Final retry exceptions are now passed up to the handler in __main__.py.
214
+
215
+ This fixes #881 where the outer 'multi' backend actually wants to catch the
216
+ exception (onfail=continue) instead of exiting the process.
217
+
218
+ Based on the preparation in earlier commits, this commit does not affect the
219
+ process exit code, it's still backend_error.
220
+
221
+ Handling of such exceptions in multiprocessing parent/child process is now the
222
+ same and no longer requires a special case.
223
+
224
+ This will enable more cleanups in future commits.
225
+
226
+ * On uncaught BackendException, make the exit code backend\_error (50). [Catalin Patulea]
227
+
228
+ BackendException handler was added in March 2009 (commit 2d37baa3). Not clear if
229
+ exit code user_error was intentional or copy/paste from the 'except UserError'
230
+ block above.
231
+
232
+ This is in preparation to modify @retry to pass fatal exceptions up, instead of
233
+ immediately exiting using log.FatalError, while keeping the same exit code.
234
+
235
+ * Fix typo in collection-status --jsonstat example. [Catalin Patulea]
236
+
237
+
238
+ ## rel.3.0.6.dev5 (2025-07-05)
239
+
240
+ ### Fix
241
+
242
+ * Revert "use pyproject plugin for ppa" [Kenneth Loafman]
243
+
244
+ This reverts commit 4dc57cc0
245
+
246
+
247
+ ## rel.3.0.6.dev4 (2025-07-05)
248
+
249
+ ### Fix
250
+
251
+ * Use pyproject plugin for ppa. [Branch Vincent]
252
+
253
+ 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:
254
+
255
+ * 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))
256
+ * Replace other various invocations of `setup.py` with the same [`build`](https://github.com/pypa/build) frontend
257
+
258
+ * Fix TotalDestinationSizeChange with concurrency. [Martin Wilck]
259
+
260
+ With --concurrency n (n \> 1), duplicity always prints TotalDestinationSizeChange 0 (0 bytes).
261
+
262
+ Fix it by returning bytes_written from collect_put_results(). Fixes #880.
263
+
264
+ * Pexpect+sftp: support absolute path in URL. [Martin Wilck]
265
+
266
+ Fix it by stripping only a single `/` from parsed_url.path.
267
+
268
+ Fixes #879.
269
+
270
+
4
271
  ## rel.3.0.5.1 (2025-06-25)
5
272
 
6
273
  ### Changes
@@ -444,18 +711,8 @@ n+1 volumes, switch to "spawn". [Thomas Laubrock]
444
711
 
445
712
  - See https://gitlab.com/duplicity/duplicity/-/merge_requests/233
446
713
 
447
-
448
- ## rel.2.2.4rc3 (2024-05-19)
449
-
450
- ### Changes
451
-
452
714
  * Use pip-compile to build requirements.txt. [Kenneth Loafman]
453
715
 
454
-
455
- ## rel.2.2.4rc2 (2024-05-18)
456
-
457
- ### Changes
458
-
459
716
  * Adjust since twine does not do wildcards. [Kenneth Loafman]
460
717
 
461
718
  * Revert "chg:pkg: Add missing fasteners install dependency" [Kenneth Loafman]
@@ -474,27 +731,6 @@ n+1 volumes, switch to "spawn". [Thomas Laubrock]
474
731
 
475
732
  * Ignore new pylint warning E0606 (possibly-used-before-assignment). [Kenneth Loafman]
476
733
 
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
734
  * Upgrade setup process and instructions (2nd try) [Kenneth Loafman]
499
735
 
500
736
  Finally fix #797
@@ -530,6 +766,14 @@ n+1 volumes, switch to "spawn". [Thomas Laubrock]
530
766
 
531
767
  ### Fix
532
768
 
769
+ * Onedrive: fix "unauthorized" upload error by not passing auth. [Michael Terry]
770
+
771
+ After the initial createUploadSession, apparently OneDrive actively dislikes it if you send Authorization headers on the subsequent PUT calls.
772
+
773
+ See their docs: https://learn.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-1.0#remarks
774
+
775
+ If you do include the Authorization header, you get 401 responses.
776
+
533
777
  * Don't drop args when restarting with execve. [Michael Terry]
534
778
 
535
779
  * Really fix invalid option error. [Kenneth Loafman]
@@ -872,330 +1116,96 @@ flow. [Christopher Haglund]
872
1116
 
873
1117
  * Adjust paramiko host key format to hex. [Kenneth Loafman]
874
1118
 
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]
1119
+ Fixes #760.
1116
1120
 
1117
- * Test if requirements.txt changes. [Kenneth Loafman]
1121
+ * Adjust debian/control and requirements.txt. [Kenneth Loafman]
1118
1122
 
1119
- * Revert back to tox < 4.0. [Kenneth Loafman]
1123
+ - Change boto to boto3.
1124
+ - Remove python3-future.
1125
+ - Fixes #761.
1120
1126
 
1121
- ### Fix
1127
+ * Restore s3\_use\_server\_side\_encryption. [Kenneth Loafman]
1122
1128
 
1123
- * Fix #710. Missing Content-Type header on webdav. [Kenneth Loafman]
1129
+ * Issue #759 "--asynchronous-upload is not parsed correctly" [ed]
1124
1130
 
1125
- * S3 filename encoding. [Thomas Laubrock]
1131
+ https://gitlab.com/duplicity/duplicity/-/issues/759
1126
1132
 
1127
- * Fix #712 "if cache lost. `*.sigtar.gpg` files not accessible" [Thomas Laubrock]
1133
+ * Implement \_retry\_cleanup for ssh\_paramiko. [bonswouar]
1128
1134
 
1129
- solution, do not add signature files to glacier
1135
+ * Fix python version requirement. Fixes #754. [Kenneth Loafman]
1130
1136
 
1131
- * Handle read-only remote parent folder better in gio backend. [Michael Terry]
1137
+ * Adjust azure import handling. Fixes #756. [Kenneth Loafman]
1132
1138
 
1133
1139
 
1134
- ## rel.2.0.0b1 (2023-06-30)
1140
+ ## rel.2.1.1 (2023-09-02)
1135
1141
 
1136
1142
  ### Changes
1137
1143
 
1138
- * Update CHANGELOG.md. [Kenneth Loafman]
1144
+ * Run po/update-pot. [Kenneth Loafman]
1139
1145
 
1140
- * Some basic PEP8 and code cleanup. [Kenneth Loafman]
1146
+ * Make action command missing error message more helpful. [ede]
1141
1147
 
1142
- * Set socket default timeout in CLI. [Kenneth Loafman]
1148
+ * Allow duplicity --help and -h. Fixes #749. [Kenneth Loafman]
1143
1149
 
1144
- * Fixes for deprecated/changed options. [Kenneth Loafman]
1150
+ * Do not wrap body of git commit. [Kenneth Loafman]
1145
1151
 
1152
+ * Change backup abbrev 'b' to 'bu'. [Kenneth Loafman]
1146
1153
 
1147
- ## rel.2.0.0b0 (2023-06-24)
1154
+ * Skip some tests on Launchpad. [Kenneth Loafman]
1148
1155
 
1149
- ### Changes
1156
+ ### Fix
1150
1157
 
1151
- * Misc changes for compatibility. [Kenneth Loafman]
1158
+ * Pexpect backend fix. [DiegoRenner]
1152
1159
 
1153
- * Fix #24. Allow users to tune copy block size. [Kenneth Loafman]
1154
1160
 
1155
- - Added --copy-blocksize, default 128k to options.
1156
- - Added tests for same and improved other testss.
1161
+ ## rel.2.1.0 (2023-08-26)
1157
1162
 
1158
- * Fix .gitlab-ci.yml to skip website step if no token. [Kenneth Loafman]
1163
+ ### New
1159
1164
 
1165
+ * Skip inc backup if nothing has changed. [Thomas Laubrock]
1166
+
1167
+ * Log a warning when using dangerous --asynchronous-upload option. [ed]
1160
1168
 
1161
- ## rel.2.0.0a2 (2023-06-14)
1169
+ * Keep stats in files. Fixes #722. [Thomas Laubrock]
1162
1170
 
1163
1171
  ### Changes
1164
1172
 
1165
- * Remove pathvalidate from use. Fixes #27. [Kenneth Loafman]
1173
+ * Run po/update-pot. [Kenneth Loafman]
1166
1174
 
1175
+ ### Fix
1167
1176
 
1168
- ## rel.2.0.0a1 (2023-06-14)
1177
+ * Implement implied commands via pre parsing. Fixes #733. [Kenneth Loafman]
1169
1178
 
1170
- ### Changes
1179
+ - detect 'backup' or 'restore' by parsing the arguments
1180
+ - new action command 'backup'
1181
+ - document 'backup' in man page
1182
+ - document new action command short aliases in man page
1183
+ - streamline url parameter checking
1184
+ - add more tests for implied commands
1171
1185
 
1172
- * More CLI improvements. [Kenneth Loafman]
1186
+ * Replace util.fsdecode with os.fsdecode. Fixes #748. [Kenneth Loafman]
1173
1187
 
1174
- - Improve error message for implied commands.
1175
- - Code and testing clean up.
1176
- - Remove deprecated option handling.
1188
+ * Try import of setuptools\_scm. Fixes #746. [Kenneth Loafman]
1177
1189
 
1178
- * Add implied backup/restore back. [Kenneth Loafman]
1179
1190
 
1180
- * CLI improvements and cleanup. [Kenneth Loafman]
1191
+ ## rel.2.0.2 (2023-08-15)
1181
1192
 
1182
- - Remove 'backup' command.
1183
- - Preparse options for config.
1193
+ ### Fix
1184
1194
 
1185
- * Minor cleanup, rm dead code. [Kenneth Loafman]
1195
+ * Fixes to tools/release-prep. [Kenneth Loafman]
1186
1196
 
1187
- * RcloneBackendTest now creates its own config. [Kenneth Loafman]
1197
+ * Adjust to new azure module structure. Fixes #731. [Kenneth Loafman]
1188
1198
 
1189
- * "--ignore-errors" gets proper handling in CLI. [Kenneth Loafman]
1199
+ * Handle --encrypt-sign-key. Fixes #736. [Kenneth Loafman]
1190
1200
 
1191
- ### Fix
1201
+ * Fix PEP8 error. [Kenneth Loafman]
1192
1202
 
1193
- * Fix #22, “--no-compression” doesn't have effect. [Kenneth Loafman]
1203
+ * Fix *-options commands. Fixes #732. [Kenneth Loafman]
1194
1204
 
1195
- * Fix .gitlab-ci.yml file syntax error. [Kenneth Loafman]
1205
+ * Enable selection options for verify. Fixes #734. [vin01]
1196
1206
 
1197
1207
 
1198
- ## rel.2.0.0a0 (2023-06-01)
1208
+ ## rel.2.0.1 (2023-08-08)
1199
1209
 
1200
1210
  ### New
1201
1211
 
@@ -1297,6 +1307,91 @@ flow. [Christopher Haglund]
1297
1307
 
1298
1308
  ### Changes
1299
1309
 
1310
+ * Remove boto related doc. some reformatting. [ede]
1311
+
1312
+ * Add missing user options to manpage. [Kenneth Loafman]
1313
+
1314
+ * Improve --verbosity help. [Kenneth Loafman]
1315
+
1316
+ * Remove implied command support for now. [Kenneth Loafman]
1317
+
1318
+ * Remove --s3-european-buckets used by boto. [Kenneth Loafman]
1319
+
1320
+ * Fix short filenames use in new s3 files. [Kenneth Loafman]
1321
+
1322
+ * Fix format strings in idrivedbackend.py. [Kenneth Loafman]
1323
+
1324
+ * Add additional CLI checks. [Kenneth Loafman]
1325
+
1326
+ * Fix format strings in idrivedbackend.py. [Kenneth Loafman]
1327
+
1328
+ * Fix format string in statistics.py. [Kenneth Loafman]
1329
+
1330
+ * Remove kerberos from snap builds. [Kenneth Loafman]
1331
+
1332
+ kerberos will not build in snapcraft.
1333
+
1334
+ * Changes to allow building snaps. [Kenneth Loafman]
1335
+
1336
+ Found another bug in snapcraft, see:
1337
+ https://bugs.launchpad.net/snapcraft/+bug/2028303
1338
+
1339
+ * Update CHANGELOG.md. [Kenneth Loafman]
1340
+
1341
+ * Fix implied command handling. [Kenneth Loafman]
1342
+
1343
+ * Create regression test dir from old scripts. [Kenneth Loafman]
1344
+
1345
+ * Update CHANGELOG.md. [Kenneth Loafman]
1346
+
1347
+ * Update CHANGELOG.md. [Kenneth Loafman]
1348
+
1349
+ * Fix syntax error in .gitlab-ci.yml. [Kenneth Loafman]
1350
+
1351
+ * Fix website to only run with WEBSITE\_TRIGGER\_TOKEN. [Kenneth Loafman]
1352
+
1353
+ * Fix PEP8 issue. Update CHANGELOG.md. [Kenneth Loafman]
1354
+
1355
+ * Resolve some minor merge issues. [Kenneth Loafman]
1356
+
1357
+ * Update CHANGELOG.md. [Kenneth Loafman]
1358
+
1359
+ * Some basic PEP8 and code cleanup. [Kenneth Loafman]
1360
+
1361
+ * Set socket default timeout in CLI. [Kenneth Loafman]
1362
+
1363
+ * Fixes for deprecated/changed options. [Kenneth Loafman]
1364
+
1365
+ * Misc changes for compatibility. [Kenneth Loafman]
1366
+
1367
+ * Fix #24. Allow users to tune copy block size. [Kenneth Loafman]
1368
+
1369
+ - Added --copy-blocksize, default 128k to options.
1370
+ - Added tests for same and improved other testss.
1371
+
1372
+ * Fix .gitlab-ci.yml to skip website step if no token. [Kenneth Loafman]
1373
+
1374
+ * Remove pathvalidate from use. Fixes #27. [Kenneth Loafman]
1375
+
1376
+ * More CLI improvements. [Kenneth Loafman]
1377
+
1378
+ - Improve error message for implied commands.
1379
+ - Code and testing clean up.
1380
+ - Remove deprecated option handling.
1381
+
1382
+ * Add implied backup/restore back. [Kenneth Loafman]
1383
+
1384
+ * CLI improvements and cleanup. [Kenneth Loafman]
1385
+
1386
+ - Remove 'backup' command.
1387
+ - Preparse options for config.
1388
+
1389
+ * Minor cleanup, rm dead code. [Kenneth Loafman]
1390
+
1391
+ * RcloneBackendTest now creates its own config. [Kenneth Loafman]
1392
+
1393
+ * "--ignore-errors" gets proper handling in CLI. [Kenneth Loafman]
1394
+
1300
1395
  * Fix initial version. [Kenneth Loafman]
1301
1396
 
1302
1397
  * Give up. Let setup mangle as it will. [Kenneth Loafman]
@@ -2052,8 +2147,87 @@ flow. [Christopher Haglund]
2052
2147
 
2053
2148
  * Remove installs common between before\_script: and script: [Kenneth Loafman]
2054
2149
 
2150
+ * Whoops, used f-string to fix #716. Fixed. [Kenneth Loafman]
2151
+
2152
+ * Fix #716. Print filename on read error. [Kenneth Loafman]
2153
+
2154
+ * Fix #709. Add docs on passphrase encryption used. [Kenneth Loafman]
2155
+
2156
+ * Fixes for handling snaps again. [Kenneth Loafman]
2157
+
2158
+ Use requirements.txt instead of internal list.
2159
+
2160
+ * Fix #707 for test\_get\_stats\_string. [Kenneth Loafman]
2161
+
2162
+ Move UTC set/unset to testing.__init__.
2163
+
2164
+ * Fix #707 for test\_get\_stats\_string. [Kenneth Loafman]
2165
+
2166
+ Base time on UTC rather than where the test is run.
2167
+
2168
+ * Fix #707 for test\_get\_stats\_string. [Kenneth Loafman]
2169
+
2170
+ Base time on UTC rather than where the test is run.
2171
+
2172
+ * Fix #707 for rclone backend testing. [Kenneth Loafman]
2173
+
2174
+ Create 'duptest' config if needed, then remove after
2175
+ tests are complete.
2176
+
2177
+ Add some more pytest options to tox.ini.
2178
+
2179
+ * Comment out test\_path:test\_compare, flaky. [Kenneth Loafman]
2180
+
2181
+ Fixes #707 - 1.2.3 test failure
2182
+
2183
+ * Force cryptography<3.4 for py2 support. [Kenneth Loafman]
2184
+
2185
+ * Test if requirements.txt changes. [Kenneth Loafman]
2186
+
2187
+ * Revert back to tox < 4.0. [Kenneth Loafman]
2188
+
2055
2189
  ### Fix
2056
2190
 
2191
+ * Adjust regex for 2.0.0x. [Kenneth Loafman]
2192
+
2193
+ * Restore pre-parser. Fixes #727. [Kenneth Loafman]
2194
+
2195
+ Revert "chg:usr: Remove implied command support for now."
2196
+
2197
+ This reverts commit afbeb4082a87e2073b5ccdcd624cf5e6f4465608.
2198
+
2199
+ * Add missing import to cli\_util.py. Fixes #730. [Kenneth Loafman]
2200
+
2201
+ * Add missing import to b2backend.py. Fixes #729. [Kenneth Loafman]
2202
+
2203
+ * Adjust version to build under LP. [Kenneth Loafman]
2204
+
2205
+ * Adjust to build under LP Mantic. [Kenneth Loafman]
2206
+
2207
+ fix:pkg: Adjust to build under LP Mantic.
2208
+
2209
+ * Fix PEP8 issue. [Kenneth Loafman]
2210
+
2211
+ * Cannot run CLI tests on Launchpad. [Kenneth Loafman]
2212
+
2213
+ * S3 backend issues. Fixes #31. [Kenneth Loafman]
2214
+
2215
+ * Fix Exception Type for verbosity level. [Thomas Laubrock]
2216
+
2217
+ * Finish conversions to f-strings. [Kenneth Loafman]
2218
+
2219
+ See https://github.com/ikamensh/flynt/issues/185
2220
+
2221
+ * Convert to f-strings via 'flynt -tc -tj'. [Kenneth Loafman]
2222
+
2223
+ * With py2 gone remove unicode string adornments. [Kenneth Loafman]
2224
+
2225
+ * Fix implied command when target is empty. [Kenneth Loafman]
2226
+
2227
+ * Fix #22, “--no-compression” doesn't have effect. [Kenneth Loafman]
2228
+
2229
+ * Fix .gitlab-ci.yml file syntax error. [Kenneth Loafman]
2230
+
2057
2231
  * Add a missing super() call in path.py. [Kenneth Loafman]
2058
2232
 
2059
2233
  * Add a missing method to some super calls. [Michael Terry]
@@ -2452,6 +2626,18 @@ flow. [Christopher Haglund]
2452
2626
 
2453
2627
  * Fixes #41 - par2+rsync (non-ssh) fails. [Kenneth Loafman]
2454
2628
 
2629
+ * Remove tests for py27 and py35. [Kenneth Loafman]
2630
+
2631
+ * Fix #710. Missing Content-Type header on webdav. [Kenneth Loafman]
2632
+
2633
+ * S3 filename encoding. [Thomas Laubrock]
2634
+
2635
+ * Fix #712 "if cache lost. `*.sigtar.gpg` files not accessible" [Thomas Laubrock]
2636
+
2637
+ solution, do not add signature files to glacier
2638
+
2639
+ * Handle read-only remote parent folder better in gio backend. [Michael Terry]
2640
+
2455
2641
  ### Other
2456
2642
 
2457
2643
  * Merge branch 'main' into branch 'duplicity-py3' [Kenneth Loafman]