dar-backup 0.6.17__py3-none-any.whl → 0.6.18__py3-none-any.whl

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.
@@ -0,0 +1,217 @@
1
+ <!-- markdownlint-disable MD024 -->
2
+ # dar-backup Changelog
3
+
4
+ ## v2-beta-0.6.18 - 2025-04-05
5
+
6
+ Github link: [v2-beta-0.6.18](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.18/v2)
7
+
8
+ ### Added
9
+
10
+ - setup of package signing using key: `dar-backup@pm.me` added.
11
+ -- key created
12
+ -- docs updated
13
+ -- release script created
14
+ -- key added top OpenPGP.org key server
15
+ -- pypi setup modified and set to use the new Signing subkey
16
+ - README.md and Changelog.md now included in the wheel and installed on `pip install dar-backup`
17
+ - new options to make it easy to find docs (--readme, --readme-pretty, --changelog, --changelog-pretty)
18
+ - Generate systemd user units, and optionally install them
19
+ - Progress bar and status line showing current directory being backed up (thanks to `rich`)
20
+ - Pytest coverage now computed and displayed on Github
21
+ - 2 code improvements and multiple cleanup tests added
22
+ - Many test cases added, manager now in good pytest shape
23
+
24
+ ## v2-beta-0.6.17 - 2025-03-29
25
+
26
+ Github link: [v2-beta-0.6.17](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.17/v2)
27
+
28
+ ### Added
29
+
30
+ - prereq and postreq logging now using debug level.
31
+ - documentation: updates, links and fixes. Test coverage result included.
32
+ - multiple .info() modified to debug() to keep the log file easily readable.
33
+ - FIX: test case found an error in config_setting init
34
+ - more testcases to expand coverage
35
+ - code reorganization. util.run_command() replaced with CommandRunner class.
36
+
37
+ ## v2-beta-0.6.16- 2025-03-22
38
+
39
+ Github link: [v2-beta-0.6.16](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.16/v2)
40
+
41
+ ### Added
42
+
43
+ - The generated filtered darrc file from `-suppress-dar-msg` now removed at program exit. Test case modified to check for removal
44
+ - README.md updated to reflect recent changes
45
+ - `cleanup` now requires a confirmation to delete a _FULL_ archive (using the option: --cleanup-specific-archives)
46
+ - Module `inputimeout` used and installed into the venv, when `dar-backup` is installed
47
+ - Much more clean log file in default config, use `--verbose` for more information, `--log-level debug` for even more
48
+ - Added option --test-mode to `cleanup` to run tests verifying that FULL archives are deleted only if the user answers "yes"
49
+
50
+ ## v2-beta-0.6.15- 2025-03-16
51
+
52
+ Github link: [v2-beta-0.6.15](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.15/v2)
53
+
54
+ ### Added
55
+
56
+ - Restore test details now logged only if args.verbose is set (less clutter in log file)
57
+ - `--log-stdout` now does not show run_command() output from program being run
58
+ - Report error and exit code `1` if manager did not add an archive to it's database
59
+
60
+ ## v2-beta-0.6.14 - 2025-03-02
61
+
62
+ Github link: [v2-beta-0.6.14](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.14/v2)
63
+
64
+ ### Added
65
+
66
+ - `dar` catalog in xml now parsed correctly, test case added
67
+ - error handling improved, --verbose print terse list of errors on exit, test case added
68
+ - test cases simulating disk corruption being worked on, not yet in test suite
69
+ - postreq test case improved
70
+ - manager is not given "-ai" when adding catalogs (might give an issue on cloud backups, investigate....)
71
+
72
+ ## v2-beta-0.6.13.1 - 2025-02-25
73
+
74
+ Github link: [v2-beta-0.6.13.1](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.13.1/v2)
75
+
76
+ ### FIX
77
+
78
+ - remove a leftover print() in run_command()
79
+
80
+ ## v2-beta-0.6.13 - 2025-02-25
81
+
82
+ Github link: [v2-beta-0.6.13](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.13/v2)
83
+
84
+ ### Added
85
+
86
+ - README.md now good MarkDown, fixed reference section
87
+ - Changelog.md now good MarkDown
88
+ - --suppress-dar-msg option added (one way to cancel the verbosity options in .darrc)
89
+ - separate log file for command outputs. This keeps the core dar-backup.log more readable
90
+
91
+ ## v2-beta-0.6.12 - 2025-02-23
92
+
93
+ Github link: [v2-beta-0.6.12](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.12/v2)
94
+
95
+ ### Added
96
+
97
+ - support environment variables in paths, both on command line and in config files
98
+ - test case for env vars in dar-backup.conf added
99
+ - test case for ~ in dar-backup.conf added
100
+ - dar-backup.py does not import sys, use from/import of specific functions
101
+ - fix handling of missing config file
102
+ - if config file, .darrc or backup definition not found, return 127
103
+ - installer added to demo dar-back, installs demo config and backup definition
104
+
105
+ ## v2-beta-0.6.11 - 2025-02-23
106
+
107
+ Github link: [v2-beta-0.6.11](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.11/v2)
108
+
109
+ ### Added
110
+
111
+ - run_command() fixed to handle missing command. Test case added.
112
+ - refactoring xml parsing of dar list output. From recursive to iterating the xml document.
113
+ - a bit more input verification to ensure the given config file actually exists.
114
+ - README.md updated with useful information from v1 + some tweaks
115
+
116
+ ## v2-beta-0.6.10 - 2025-02-22
117
+
118
+ Github link: [v2-beta-0.6.10](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.10/v2)
119
+
120
+ ### Added
121
+
122
+ - unit test verifying no compression of many compressed file formats
123
+ - README.md lint fixes + a TOC
124
+
125
+ ## v2-beta-0.6.9 - 2025-02-21
126
+
127
+ Github link: [v2-beta-0.6.9](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.9/v2)
128
+
129
+ ### Added
130
+
131
+ - clean-log script added (can remove much of `dar's` output that might be put in the dar-backup log file)
132
+ - ChatGPT generated pytest cases
133
+
134
+ ## v2-beta-0.6.8 - 2025-02-13
135
+
136
+ Github link: [v2-beta-0.6.8](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.8/v2)
137
+
138
+ ### Added
139
+
140
+ - switching from alpha --> beta status
141
+ - manager --list-archive-contents added
142
+
143
+ ## v2-alpha-0.6.7 - 2025-02-11
144
+
145
+ Github link: [v2-alpha-0.6.7](https://github.com/per2jensen/dar-backup/tree/v2-alpha-0.6.7/v2)
146
+
147
+ ### Added
148
+
149
+ - Cleanups now remove catalogs from the catalog databases
150
+
151
+ ## v2-alpha-0.6.6 - 2025-02-02
152
+
153
+ Github link: [v2-alpha-0.6.6](https://github.com/per2jensen/dar-backup/tree/v2-alpha-0.6.6/v2)
154
+
155
+ ### Added
156
+
157
+ - Archive catalogs now added to database(s) after a backup has been performed
158
+
159
+ ## v2-alpha-0.6.5 - 2025-01-24
160
+
161
+ Github link: [v2-alpha-0.6.5](https://github.com/per2jensen/dar-backup/tree/v2-alpha-0.6.5/v2)
162
+
163
+ ### Added
164
+
165
+ - Changelog.md added
166
+ - LICENSE added to the dar-backup wheel package
167
+ - Link to Changelog added to PyPi page
168
+
169
+ ## v2-alpha-0.6.4 - 2025-01-23
170
+
171
+ Github link: [v2-alpha-0.6.4](https://github.com/per2jensen/dar-backup/tree/v2-alpha-0.6.4/v2)
172
+
173
+ ### Added
174
+
175
+ - Stdout & stderr from called programs are streamed to logfile in real time. This makes it easier to see if a very long running process is still active.
176
+ - .darrc: -vd & -vf options enabled, so `dar` emits information when entering a directory and print some stats when leaving it
177
+ - manager --remove-specific-archive option added
178
+ - manager --list-catalog option added
179
+ - improved tests for manager
180
+ - manager --add-dir option added
181
+ - verify slices are par2 processed by increasing slice number
182
+ - reorg unit test,
183
+ - added test for --restore-dir
184
+
185
+ ## v2-alpha-0.6.2 - 2025-01-12
186
+
187
+ Github link: [v2-alpha-0.6.2](https://github.com/per2jensen/dar-backup/tree/v2-alpha-0.6.2/v2)
188
+
189
+ ### Added
190
+
191
+ - refactor backup functions
192
+ - minor doc fixes
193
+ - par2: process slices by increasing #
194
+ - dar-backup --verbose option: print info on par2 generation
195
+
196
+ ## v2-alpha-0.6.1 - 2025-01-05
197
+
198
+ Github link: [v2-alpha-0.6.1](https://github.com/per2jensen/dar-backup/tree/v2-alpha-0.6.1/v2)
199
+
200
+ ### Added
201
+
202
+ - FIX timeout error on run_command(). Set a long timeout on "heavy" operations. Default is 30 seconds.
203
+ - Log the __str__ of CommandResult on return from run_command()
204
+
205
+ ## v2-alpha-0.6.0 - 2025-01-05
206
+
207
+ Github link: [v2-alpha-0.6.0](https://github.com/per2jensen/dar-backup/tree/v2-alpha-0.6.0/v2)
208
+
209
+ ### Added
210
+
211
+ - pytest session logger now used
212
+ - if a prereq fails, dar-backup must fail
213
+ - document 0.6.0 breaking change
214
+ - FIX: ensure run_command() works correctly when a command writes a lot of data to stdout
215
+ - updated README with details on --restore-dir option
216
+
217
+ <!-- markdownlint-enable MD024 -->