You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
### Fixed
12
12
### Docs
13
13
14
+
## [1.1.0] - 2024-09-10
15
+
16
+
### Added
17
+
- feat: implement --dry-run
18
+
19
+
### Changed
20
+
- build: remove travis config by @d-Rickyy-b in https://github.com/d-Rickyy-b/backmeup/pull/26
21
+
- ci: update node version to 16 and go to 1.19 in https://github.com/d-Rickyy-b/backmeup/pull/27
22
+
- ci: update action versions in https://github.com/d-Rickyy-b/backmeup/pull/28
23
+
- Reorganize project structure in https://github.com/d-Rickyy-b/backmeup/pull/29
24
+
- Update dependencies and ci configs in https://github.com/d-Rickyy-b/backmeup/pull/30
25
+
14
26
## [1.0.1] - 2021-08-23
15
27
A few fixes for the archive creation.
16
28
17
29
### Changed
18
30
- Better error logging in writeTar and writeZip ([90a8af0](https://github.com/d-Rickyy-b/backmeup/commit/90a8af04bba813e8828aa9f7687c89c37a885567))
31
+
-
19
32
### Fixed
20
33
- Wrong error message for inaccessible destination directory ([e134712](https://github.com/d-Rickyy-b/backmeup/commit/e134712236e7eb65785597d5005a8283e74acb3a))
21
34
- Use panicf to have defer file.Close() run eventually ([7b352ff](https://github.com/d-Rickyy-b/backmeup/commit/7b352ff956287df03c9005b60ecc87eed7847ada))
@@ -26,52 +39,62 @@ New major version because of the switch to Go 1.16! The features are not backwar
26
39
27
40
### Added
28
41
- Support for single files as sources ([620fd62](https://github.com/d-Rickyy-b/backmeup/commit/620fd620d13a3687015d61f1bf7f3d89cbedf3a5))
42
+
29
43
### Changed
30
44
- Improved speed by using WalkDir instead of Walk ([9604540](https://github.com/d-Rickyy-b/backmeup/commit/96045409b099ca77f24cf43c442762aeb87ea62d))
31
45
- Updated Go version to 1.16 ([52b9b34](https://github.com/d-Rickyy-b/backmeup/commit/52b9b34767166f910466799e69d8499fbfa8db16))
32
46
33
47
## [0.1.4] - 2021-02-11
48
+
34
49
### Added
35
50
- Symlink support for tar files ([5d75752](https://github.com/d-Rickyy-b/backmeup/commit/5d757525bbde26429e90a30ea5fba8d721db6f72))
36
51
- Following symlinks (aka replacing a symlink to a file with the actual file) ([a98fe65](https://github.com/d-Rickyy-b/backmeup/commit/a98fe65d8188cd8f5abac2d766cffa594c032757))
37
52
- Ability to only run backups of certain units via `-u`/`--unit` CLI parameter ([92db794](https://github.com/d-Rickyy-b/backmeup/commit/92db794365448c67379f20ff3e2d6bfb998f1f57))
38
53
- Check if archive already exists ([fd88626](https://github.com/d-Rickyy-b/backmeup/commit/fd886263038d6c97cb0f481e9ff0140187d5283e))
39
54
- Add `-t`/`--test-path` CLI parameter for checking exclusion for given paths ([1b13e44](https://github.com/d-Rickyy-b/backmeup/commit/1b13e44a38faa0e472ecaea4b8864cfffc2ab147))
40
55
- Add `-v`/`--version` CLI parameter to just print the tool's version ([2c51b05](https://github.com/d-Rickyy-b/backmeup/commit/2c51b058723e1eb3e46ba2e8ee0b2260ad39b362))
56
+
41
57
### Changed
42
58
- Move archive code to archiver package ([d8666cb](https://github.com/d-Rickyy-b/backmeup/commit/d8666cb5d3acc25a77f3d84f92c52301687dd6ae))
43
59
- Move config code to config package ([0a03807](https://github.com/d-Rickyy-b/backmeup/commit/0a038077a21c88781abf77b85a6a9da7b60df9f6))
60
+
44
61
### Fixed
45
62
- Add compression for zip files ([52733bc](https://github.com/d-Rickyy-b/backmeup/commit/52733bc0dc4e1378e02467c3712ffe05b6cb3fd2))
46
63
- Replace Fatalln with Println ([721f6b2](https://github.com/d-Rickyy-b/backmeup/commit/721f6b27d1501b403d94f1273639a7a1a92b8b76))
47
64
- Correctly assign 'verbose' and 'debug' variables ([cd11006](https://github.com/d-Rickyy-b/backmeup/commit/cd110062d8f619ead0f63b4a663c3a46aedbd228))
48
65
- Only store regular files in tar archives ([d9b26fc](https://github.com/d-Rickyy-b/backmeup/commit/d9b26fc5d0b465bebec05454fecbe4b5b14538b9))
49
66
50
67
## [0.1.3] - 2020-12-22
68
+
51
69
### Added
52
70
- Ability to generate an archive with relative paths ([#13](https://github.com/d-Rickyy-b/backmeup/pull/13))
71
+
53
72
### Fixed
54
73
- Add check for duplicate source paths([#14](https://github.com/d-Rickyy-b/backmeup/pull/14))
55
74
56
75
## [0.1.2] - 2020-12-10
76
+
57
77
### Added
58
78
- Implement -d/--debug switch to enable debug logging for printing exclude matches ([21a201a](https://github.com/d-Rickyy-b/backmeup/commit/21a201a7fa7013aee2159cd18d4672ada65442b0))
79
+
59
80
### Fixed
60
81
- Don't return error in filepath.Walk() for excluded files ([94fba5c](https://github.com/d-Rickyy-b/backmeup/commit/94fba5cab11d3dc07b2ef613e81455b2c1c215bc))
61
82
62
83
## [0.1.1] - 2020-12-10
84
+
63
85
### Fixed
64
86
- Use 24h format for backup file names ([#8](https://github.com/d-Rickyy-b/backmeup/pull/8))
65
87
- Use proper file globbing for matching excludes ([0b25309](https://github.com/d-Rickyy-b/backmeup/commit/0b2530989232f7082f14e79f1036cb8f7ee6053c))
88
+
66
89
### Docs
67
90
- Document limitations in README ([9f33d9a](https://github.com/d-Rickyy-b/backmeup/commit/9f33d9adaa81c90ddd5b9b166ac61cee46317175), [8bac46a](https://github.com/d-Rickyy-b/backmeup/commit/8bac46ac6272f29e2b8b3555fcbae36619732d5c))
68
91
- Several fixes in README ([01951dc](https://github.com/d-Rickyy-b/backmeup/commit/01951dc4273ab968d616d839d7b66fdee6d69371), [0cbf045](https://github.com/d-Rickyy-b/backmeup/commit/0cbf045898889e808d462dfd0452b6a9d2715579))
69
92
70
-
71
93
## [0.1.0] - 2020-11-17
72
94
Initial release! First usable version of backmeup is published as v0.1.0
0 commit comments