@datatruck/cli 0.32.0 → 0.32.2

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 (189) hide show
  1. package/config.schema.json +1224 -1271
  2. package/{Action → lib/Action}/BackupAction.d.ts +14 -13
  3. package/{Action → lib/Action}/BackupAction.js +64 -10
  4. package/{Action → lib/Action}/ConfigAction.d.ts +9 -9
  5. package/{Action → lib/Action}/ConfigAction.js +4 -2
  6. package/{Action → lib/Action}/CopyAction.d.ts +5 -5
  7. package/{Action → lib/Action}/InitAction.d.ts +3 -3
  8. package/{Action → lib/Action}/PruneAction.d.ts +5 -5
  9. package/{Action → lib/Action}/RestoreAction.d.ts +5 -5
  10. package/{Action → lib/Action}/SnapshotsAction.d.ts +5 -5
  11. package/{Command → lib/Command}/BackupCommand.d.ts +2 -2
  12. package/{Command → lib/Command}/CommandAbstract.d.ts +4 -4
  13. package/{Command → lib/Command}/ConfigCommand.d.ts +2 -2
  14. package/{Command → lib/Command}/InitCommand.d.ts +2 -2
  15. package/{Command → lib/Command}/PruneCommand.d.ts +2 -2
  16. package/{Command → lib/Command}/RestoreCommand.d.ts +2 -2
  17. package/{Command → lib/Command}/SnapshotsCommand.d.ts +2 -2
  18. package/{Command → lib/Command}/StartServerCommand.js +2 -0
  19. package/lib/Config/Config.d.ts +28 -0
  20. package/lib/Config/PackageConfig.d.ts +24 -0
  21. package/lib/Config/PackageConfig.js +2 -0
  22. package/lib/Config/PackageRepositoryConfig.d.ts +15 -0
  23. package/lib/Config/PackageRepositoryConfig.js +2 -0
  24. package/lib/Config/PrunePolicyConfig.d.ts +2 -0
  25. package/lib/Config/PrunePolicyConfig.js +2 -0
  26. package/lib/Config/RepositoryConfig.d.ts +27 -0
  27. package/lib/Config/RepositoryConfig.js +2 -0
  28. package/lib/Config/TaskConfig.d.ts +31 -0
  29. package/lib/Config/TaskConfig.js +2 -0
  30. package/{Factory → lib/Factory}/CommandFactory.d.ts +5 -5
  31. package/lib/Factory/RepositoryFactory.d.ts +3 -0
  32. package/lib/Factory/TaskFactory.d.ts +3 -0
  33. package/{Repository → lib/Repository}/DatatruckRepository.d.ts +9 -12
  34. package/{Repository → lib/Repository}/DatatruckRepository.js +1 -38
  35. package/lib/Repository/GitRepository.d.ts +28 -0
  36. package/{Repository → lib/Repository}/GitRepository.js +1 -15
  37. package/{Repository → lib/Repository}/RepositoryAbstract.d.ts +8 -8
  38. package/{Repository → lib/Repository}/ResticRepository.d.ts +11 -14
  39. package/{Repository → lib/Repository}/ResticRepository.js +1 -63
  40. package/{Task → lib/Task}/GitTask.d.ts +2 -4
  41. package/{Task → lib/Task}/GitTask.js +1 -42
  42. package/{Task → lib/Task}/MariadbTask.d.ts +2 -4
  43. package/{Task → lib/Task}/MariadbTask.js +1 -54
  44. package/{Task → lib/Task}/MssqlTask.d.ts +2 -4
  45. package/{Task → lib/Task}/MssqlTask.js +1 -14
  46. package/{Task → lib/Task}/MysqlDumpTask.d.ts +4 -5
  47. package/{Task → lib/Task}/MysqlDumpTask.js +1 -11
  48. package/{Task → lib/Task}/PostgresqlDumpTask.d.ts +5 -7
  49. package/{Task → lib/Task}/PostgresqlDumpTask.js +1 -5
  50. package/lib/Task/ScriptTask.d.ts +30 -0
  51. package/lib/Task/ScriptTask.js +55 -0
  52. package/{Task → lib/Task}/SqlDumpTaskAbstract.d.ts +5 -7
  53. package/{Task → lib/Task}/SqlDumpTaskAbstract.js +1 -43
  54. package/{Task → lib/Task}/TaskAbstract.d.ts +2 -2
  55. package/lib/cli.d.ts +4 -0
  56. package/lib/config.schema.d.ts +2 -0
  57. package/lib/config.schema.js +10 -0
  58. package/lib/index.d.ts +24 -0
  59. package/lib/index.js +21 -0
  60. package/{utils → lib/utils}/DataFormat.d.ts +4 -4
  61. package/{utils → lib/utils}/Git.d.ts +6 -6
  62. package/{utils → lib/utils}/Restic.d.ts +14 -14
  63. package/{utils → lib/utils}/datatruck/config.d.ts +20 -20
  64. package/lib/utils/datatruck/paths.d.ts +17 -0
  65. package/{utils → lib/utils}/datatruck/paths.js +3 -3
  66. package/{utils → lib/utils}/datatruck/repository-server.d.ts +1 -1
  67. package/{utils → lib/utils}/datatruck/snapshot.d.ts +2 -2
  68. package/{utils → lib/utils}/date.d.ts +3 -3
  69. package/{utils → lib/utils}/exit.d.ts +3 -3
  70. package/{utils → lib/utils}/mysql.d.ts +5 -4
  71. package/{utils → lib/utils}/mysql.js +2 -2
  72. package/{utils → lib/utils}/process.d.ts +8 -5
  73. package/lib/utils/reportSteps.d.ts +26 -0
  74. package/lib/utils/reportSteps.js +41 -0
  75. package/lib/utils/spawnSteps.d.ts +36 -0
  76. package/lib/utils/spawnSteps.js +74 -0
  77. package/{utils → lib/utils}/string.d.ts +3 -3
  78. package/{utils → lib/utils}/string.js +3 -3
  79. package/{utils → lib/utils}/tar.d.ts +0 -8
  80. package/{utils → lib/utils}/tar.js +1 -18
  81. package/package.json +39 -25
  82. package/CHANGELOG.md +0 -563
  83. package/Config/Config.d.ts +0 -28
  84. package/Config/Config.js +0 -140
  85. package/Config/PackageConfig.d.ts +0 -23
  86. package/Config/PackageConfig.js +0 -51
  87. package/Config/PackageRepositoryConfig.d.ts +0 -17
  88. package/Config/PackageRepositoryConfig.js +0 -37
  89. package/Config/PrunePolicyConfig.d.ts +0 -4
  90. package/Config/PrunePolicyConfig.js +0 -28
  91. package/Config/RepositoryConfig.d.ts +0 -24
  92. package/Config/RepositoryConfig.js +0 -62
  93. package/Config/TaskConfig.d.ts +0 -27
  94. package/Config/TaskConfig.js +0 -41
  95. package/Factory/RepositoryFactory.d.ts +0 -3
  96. package/Factory/TaskFactory.d.ts +0 -3
  97. package/JsonSchema/DefinitionEnum.d.ts +0 -26
  98. package/JsonSchema/DefinitionEnum.js +0 -33
  99. package/JsonSchema/JsonSchema.d.ts +0 -4
  100. package/JsonSchema/JsonSchema.js +0 -65
  101. package/JsonSchema/backup-def.d.ts +0 -30
  102. package/JsonSchema/backup-def.js +0 -18
  103. package/JsonSchema/copy-def.d.ts +0 -24
  104. package/JsonSchema/copy-def.js +0 -15
  105. package/Repository/GitRepository.d.ts +0 -31
  106. package/Task/ScriptTask.d.ts +0 -38
  107. package/Task/ScriptTask.js +0 -163
  108. package/cli.d.ts +0 -4
  109. package/index.d.ts +0 -1
  110. package/utils/datatruck/paths.d.ts +0 -17
  111. package/utils/path.d.ts +0 -1
  112. package/utils/path.js +0 -8
  113. package/utils/schema.d.ts +0 -34
  114. package/utils/schema.js +0 -36
  115. package/utils/steps.d.ts +0 -43
  116. package/utils/steps.js +0 -97
  117. /package/{Action → lib/Action}/CleanCacheAction.d.ts +0 -0
  118. /package/{Action → lib/Action}/CleanCacheAction.js +0 -0
  119. /package/{Action → lib/Action}/CopyAction.js +0 -0
  120. /package/{Action → lib/Action}/InitAction.js +0 -0
  121. /package/{Action → lib/Action}/PruneAction.js +0 -0
  122. /package/{Action → lib/Action}/RestoreAction.js +0 -0
  123. /package/{Action → lib/Action}/SnapshotsAction.js +0 -0
  124. /package/{Command → lib/Command}/BackupCommand.js +0 -0
  125. /package/{Command → lib/Command}/CleanCacheCommand.d.ts +0 -0
  126. /package/{Command → lib/Command}/CleanCacheCommand.js +0 -0
  127. /package/{Command → lib/Command}/CommandAbstract.js +0 -0
  128. /package/{Command → lib/Command}/ConfigCommand.js +0 -0
  129. /package/{Command → lib/Command}/CopyCommand.d.ts +0 -0
  130. /package/{Command → lib/Command}/CopyCommand.js +0 -0
  131. /package/{Command → lib/Command}/InitCommand.js +0 -0
  132. /package/{Command → lib/Command}/PruneCommand.js +0 -0
  133. /package/{Command → lib/Command}/RestoreCommand.js +0 -0
  134. /package/{Command → lib/Command}/SnapshotsCommand.js +0 -0
  135. /package/{Command → lib/Command}/StartServerCommand.d.ts +0 -0
  136. /package/{index.js → lib/Config/Config.js} +0 -0
  137. /package/{Error → lib/Error}/AppError.d.ts +0 -0
  138. /package/{Error → lib/Error}/AppError.js +0 -0
  139. /package/{Factory → lib/Factory}/CommandFactory.js +0 -0
  140. /package/{Factory → lib/Factory}/RepositoryFactory.js +0 -0
  141. /package/{Factory → lib/Factory}/TaskFactory.js +0 -0
  142. /package/{Repository → lib/Repository}/RepositoryAbstract.js +0 -0
  143. /package/{Task → lib/Task}/TaskAbstract.js +0 -0
  144. /package/{bin.d.ts → lib/bin.d.ts} +0 -0
  145. /package/{bin.js → lib/bin.js} +0 -0
  146. /package/{cli.js → lib/cli.js} +0 -0
  147. /package/{globalData.d.ts → lib/globalData.d.ts} +0 -0
  148. /package/{globalData.js → lib/globalData.js} +0 -0
  149. /package/{pkg.d.ts → lib/pkg.d.ts} +0 -0
  150. /package/{pkg.js → lib/pkg.js} +0 -0
  151. /package/{utils → lib/utils}/DataFormat.js +0 -0
  152. /package/{utils → lib/utils}/Git.js +0 -0
  153. /package/{utils → lib/utils}/Restic.js +0 -0
  154. /package/{utils → lib/utils}/async.d.ts +0 -0
  155. /package/{utils → lib/utils}/async.js +0 -0
  156. /package/{utils → lib/utils}/bytes.d.ts +0 -0
  157. /package/{utils → lib/utils}/bytes.js +0 -0
  158. /package/{utils → lib/utils}/cli.d.ts +0 -0
  159. /package/{utils → lib/utils}/cli.js +0 -0
  160. /package/{utils → lib/utils}/crypto.d.ts +0 -0
  161. /package/{utils → lib/utils}/crypto.js +0 -0
  162. /package/{utils → lib/utils}/datatruck/client.d.ts +0 -0
  163. /package/{utils → lib/utils}/datatruck/client.js +0 -0
  164. /package/{utils → lib/utils}/datatruck/config.js +0 -0
  165. /package/{utils → lib/utils}/datatruck/cron-server.d.ts +0 -0
  166. /package/{utils → lib/utils}/datatruck/cron-server.js +0 -0
  167. /package/{utils → lib/utils}/datatruck/repository-server.js +0 -0
  168. /package/{utils → lib/utils}/datatruck/snapshot.js +0 -0
  169. /package/{utils → lib/utils}/date.js +0 -0
  170. /package/{utils → lib/utils}/exit.js +0 -0
  171. /package/{utils → lib/utils}/fs.d.ts +0 -0
  172. /package/{utils → lib/utils}/fs.js +0 -0
  173. /package/{utils → lib/utils}/http.d.ts +0 -0
  174. /package/{utils → lib/utils}/http.js +0 -0
  175. /package/{utils → lib/utils}/list.d.ts +0 -0
  176. /package/{utils → lib/utils}/list.js +0 -0
  177. /package/{utils → lib/utils}/math.d.ts +0 -0
  178. /package/{utils → lib/utils}/math.js +0 -0
  179. /package/{utils → lib/utils}/object.d.ts +0 -0
  180. /package/{utils → lib/utils}/object.js +0 -0
  181. /package/{utils → lib/utils}/process.js +0 -0
  182. /package/{utils → lib/utils}/progress.d.ts +0 -0
  183. /package/{utils → lib/utils}/progress.js +0 -0
  184. /package/{utils → lib/utils}/stream.d.ts +0 -0
  185. /package/{utils → lib/utils}/stream.js +0 -0
  186. /package/{utils → lib/utils}/temp.d.ts +0 -0
  187. /package/{utils → lib/utils}/temp.js +0 -0
  188. /package/{utils → lib/utils}/virtual-fs.d.ts +0 -0
  189. /package/{utils → lib/utils}/virtual-fs.js +0 -0
package/CHANGELOG.md DELETED
@@ -1,563 +0,0 @@
1
- # @datatruck/cli
2
-
3
- ## 0.32.0
4
-
5
- ### Minor Changes
6
-
7
- - [`7d755ba`](https://github.com/swordev/datatruck/commit/7d755bac0edf7aea719446f6bfcee5bea0fe9a90) Thanks [@juanrgm](https://github.com/juanrgm)! - Reload repository server config
8
-
9
- - [`9dba106`](https://github.com/swordev/datatruck/commit/9dba106865da2d4327282d65deecee5a03e49b49) Thanks [@juanrgm](https://github.com/juanrgm)! - Update to Node.js 20
10
-
11
- - [`113ee82`](https://github.com/swordev/datatruck/commit/113ee8258951028d54b798eaaa813982222c20e8) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `ntfy` step
12
-
13
- ### Patch Changes
14
-
15
- - [`c24eea2`](https://github.com/swordev/datatruck/commit/c24eea21b41d78451d5eabd65923daa26dcad78a) Thanks [@juanrgm](https://github.com/juanrgm)! - Simplify step configs
16
-
17
- ## 0.31.0
18
-
19
- ### Minor Changes
20
-
21
- - [`c98324e`](https://github.com/swordev/datatruck/commit/c98324ebbb5b43113f1bb6d9a07bd905b5883729) Thanks [@juanrgm](https://github.com/juanrgm)! - Add cron server
22
-
23
- - [`9b40aad`](https://github.com/swordev/datatruck/commit/9b40aadc3ba57db15f14ae08c342b7170d61aa5d) Thanks [@juanrgm](https://github.com/juanrgm)! - Add multiple backends to the datatruck repository
24
-
25
- ## 0.30.1
26
-
27
- ### Patch Changes
28
-
29
- - [`68e991b`](https://github.com/swordev/datatruck/commit/68e991b862ee3793e6b31d1fd5d6cebdf59524a4) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix allowlist in datatruck server
30
-
31
- - [`16f982c`](https://github.com/swordev/datatruck/commit/16f982c7da0d44cbbb691d5552da77fb27366f82) Thanks [@juanrgm](https://github.com/juanrgm)! - Reduce progress interval to 300 ms in auto progress mode
32
-
33
- ## 0.30.0
34
-
35
- ### Minor Changes
36
-
37
- - [`e28b12d`](https://github.com/swordev/datatruck/commit/e28b12d08c36844317e506552443825ab3333139) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `allowlist` option to the datatruck server
38
-
39
- ### Patch Changes
40
-
41
- - [`2f63e67`](https://github.com/swordev/datatruck/commit/2f63e67ee532892fda3a9d06e46336a42834e5ed) Thanks [@juanrgm](https://github.com/juanrgm)! - Add download progress in datatruck repository
42
-
43
- - [`258e933`](https://github.com/swordev/datatruck/commit/258e93385d9b6f93a435a28a2b26e53ea1763755) Thanks [@juanrgm](https://github.com/juanrgm)! - Copy backups safely
44
-
45
- - [`82b4c67`](https://github.com/swordev/datatruck/commit/82b4c67c55eee4f40753b48eb91345e6d6789f72) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix exit event
46
-
47
- ## 0.29.1
48
-
49
- ### Patch Changes
50
-
51
- - [`34900c5`](https://github.com/swordev/datatruck/commit/34900c5ba9f323d491f2f6865c566386a4812c08) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix texts
52
-
53
- ## 0.29.0
54
-
55
- ### Minor Changes
56
-
57
- - [`363fc0d`](https://github.com/swordev/datatruck/commit/363fc0d8158aba6ae6a171769ef01dcd0fd2de08) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `--prune` option to the backup command
58
-
59
- - [`e47ed46`](https://github.com/swordev/datatruck/commit/e47ed46c47fc93d7d5f3b76935d425c6b42ae9a5) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `--last` option to the copy command
60
-
61
- - [`0a760a2`](https://github.com/swordev/datatruck/commit/0a760a2038ff77966936b3a9a0a8e865f4dae4c4) Thanks [@juanrgm](https://github.com/juanrgm)! - Add global prune policy to the config
62
-
63
- ### Patch Changes
64
-
65
- - [`1c5084d`](https://github.com/swordev/datatruck/commit/1c5084dab2058ab9699f1a908f2581cd03da0468) Thanks [@juanrgm](https://github.com/juanrgm)! - Rename `--no-restore-path` to `--initial`
66
-
67
- - [`5fe3e91`](https://github.com/swordev/datatruck/commit/5fe3e91e994238cf901e570c9b9ef8254d79afa1) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix prune policy
68
-
69
- - [`bd4d42e`](https://github.com/swordev/datatruck/commit/bd4d42e0261f79bdb69dd55abc30ef8bb0bfdcd7) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix reports
70
-
71
- ## 0.28.0
72
-
73
- ### Minor Changes
74
-
75
- - [`b50b10b`](https://github.com/swordev/datatruck/commit/b50b10bb29a15db0b4dadd3de499b9cd6738d706) Thanks [@juanrgm](https://github.com/juanrgm)! - Replace cli interface and global refactoring
76
-
77
- - [`89b0856`](https://github.com/swordev/datatruck/commit/89b0856b2a5bfc42458a9bcb271a04f2dce26098) Thanks [@juanrgm](https://github.com/juanrgm)! - Add telegram report config
78
-
79
- - [`1745715`](https://github.com/swordev/datatruck/commit/17457154930f15865858e89b7f3932c617dfddf4) Thanks [@juanrgm](https://github.com/juanrgm)! - Enhance output table formatting
80
-
81
- - [`8fa2fe0`](https://github.com/swordev/datatruck/commit/8fa2fe0a1213cf9614bb8c5bbe999d0d8e7130e8) Thanks [@juanrgm](https://github.com/juanrgm)! - Add copy command
82
-
83
- - [`e3d54c3`](https://github.com/swordev/datatruck/commit/e3d54c34df8ba42e77040d183d993808c8a7cdbb) Thanks [@juanrgm](https://github.com/juanrgm)! - Add json/table format to all commands
84
-
85
- - [`d59d435`](https://github.com/swordev/datatruck/commit/d59d435fc1a244da944ad0c36bf1dcf7735ba289) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `compress` option to `mysql-dump` task
86
-
87
- - [`802d6a5`](https://github.com/swordev/datatruck/commit/802d6a577f46bfccc1c1a5b8c4431976cd6d7820) Thanks [@juanrgm](https://github.com/juanrgm)! - Show backup summary
88
-
89
- ### Patch Changes
90
-
91
- - [`93e8e83`](https://github.com/swordev/datatruck/commit/93e8e830792f7d8957e89787c981e6a45ae4d02d) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `minFreeDiskSpace` config
92
-
93
- - [`1ad7fd9`](https://github.com/swordev/datatruck/commit/1ad7fd99f6e8f6d8128ea35e7c680cc3618d6ac4) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix id filter in prune action
94
-
95
- - [`5d1ece0`](https://github.com/swordev/datatruck/commit/5d1ece0760c317c71175250812e43fc866bcfc5a) Thanks [@juanrgm](https://github.com/juanrgm)! - Verify mysql dump files
96
-
97
- - [`8c00e9c`](https://github.com/swordev/datatruck/commit/8c00e9c78a656807d09d147c9b1017c2a1b8d127) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix bsdtar execution
98
-
99
- ## 0.27.0
100
-
101
- ### Minor Changes
102
-
103
- - [`e6485ad`](https://github.com/swordev/datatruck/commit/e6485ad80258d3b1c30f3efb1a2549a5c2760878) Thanks [@juanrgm](https://github.com/juanrgm)! - Add datatruck server
104
-
105
- ## 0.26.2
106
-
107
- ### Patch Changes
108
-
109
- - [`627adbd`](https://github.com/swordev/datatruck/commit/627adbd8114510371f451b674b007dc2093fee96) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix `--no-restore-path` option
110
-
111
- ## 0.26.1
112
-
113
- ### Patch Changes
114
-
115
- - [`2ca1421`](https://github.com/swordev/datatruck/commit/2ca142106ddca9e0ca53ef906f4412acd3a5bfae) Thanks [@juanrgm](https://github.com/juanrgm)! - Add meta property to the package config
116
-
117
- ## 0.26.0
118
-
119
- ### Minor Changes
120
-
121
- - [`ff54d83`](https://github.com/swordev/datatruck/commit/ff54d835a4ea5c54c47c75e735549b1f49d66e5e) Thanks [@juanrgm](https://github.com/juanrgm)! - Add option to disable restore paths
122
-
123
- ## 0.25.0
124
-
125
- ### Minor Changes
126
-
127
- - [`7a1adf0`](https://github.com/swordev/datatruck/commit/7a1adf0624d4306f40bfd1943105cbfaa64a566c) Thanks [@juanrgm](https://github.com/juanrgm)! - Add node steps to `include`/`exclude` package options
128
-
129
- ## 0.24.0
130
-
131
- ### Minor Changes
132
-
133
- - [`f1615b2`](https://github.com/swordev/datatruck/commit/f1615b216cf635bd2c08d68bad818d50855f314b) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix and enhance `script` task
134
-
135
- ## 0.23.3
136
-
137
- ### Patch Changes
138
-
139
- - [`ea3cbc9`](https://github.com/swordev/datatruck/commit/ea3cbc98aee49151bd1b9422a2c7dadb29479751) Thanks [@juanrgm](https://github.com/juanrgm)! - Apply permissions to the root path in `datatruck` repository
140
-
141
- ## 0.23.2
142
-
143
- ### Patch Changes
144
-
145
- - [`61d0221`](https://github.com/swordev/datatruck/commit/61d022187463ea16e9a34d0b995808b687414a61) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix `mysql-dump` task
146
-
147
- - [`3f80194`](https://github.com/swordev/datatruck/commit/3f8019448b3b529cb9b70e1e5bbe7ec99aec95a4) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix folder permissions in `datatruck` repository
148
-
149
- ## 0.23.1
150
-
151
- ### Patch Changes
152
-
153
- - [`899aa7a`](https://github.com/swordev/datatruck/commit/899aa7af5204b13010643a900279456e737a154d) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix `mysql-dump` progress
154
-
155
- ## 0.23.0
156
-
157
- ### Minor Changes
158
-
159
- - [`fa5d44d`](https://github.com/swordev/datatruck/commit/fa5d44dff24b26d976bed385bd20981fa767e089) Thanks [@juanrgm](https://github.com/juanrgm)! - Add concurrency config to `mysql-dump` task
160
-
161
- ## 0.22.2
162
-
163
- ### Patch Changes
164
-
165
- - [`80eeded`](https://github.com/swordev/datatruck/commit/80eeded073aae970385e1efb04acc4ec222efa25) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix cross-device link
166
-
167
- ## 0.22.1
168
-
169
- ### Patch Changes
170
-
171
- - [`e21ad9f`](https://github.com/swordev/datatruck/commit/e21ad9f33bd6cd28cc4c47485643905dd92dcb57) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix folder permissions in `mysql-dump` task
172
-
173
- - [`5e5ebf5`](https://github.com/swordev/datatruck/commit/5e5ebf53b0cb87160e7887e2a6372617e19d38b1) Thanks [@juanrgm](https://github.com/juanrgm)! - Hide MySQL credentials
174
-
175
- ## 0.22.0
176
-
177
- ### Minor Changes
178
-
179
- - [`d0649f1`](https://github.com/swordev/datatruck/commit/d0649f1f7d4a7d891bea19793cfcb24d752a0d5c) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `csv` backup/restore format to `mysql-dump` task
180
-
181
- ### Patch Changes
182
-
183
- - [`2e76917`](https://github.com/swordev/datatruck/commit/2e7691753b0a74c1f0653960882d13fbcf7d0567) Thanks [@juanrgm](https://github.com/juanrgm)! - Improve import performance in the `mysql-dump` task
184
-
185
- ## 0.21.1
186
-
187
- ### Patch Changes
188
-
189
- - [`0d863e8`](https://github.com/swordev/datatruck/commit/0d863e86d6deb30b79a45171f01d7cf4604250dd) Thanks [@juanrgm](https://github.com/juanrgm)! - Avoid listing tar twice
190
-
191
- - [`5045457`](https://github.com/swordev/datatruck/commit/5045457f3cd9512b27d29049fc37ba418ed95e0a) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix tar extracting
192
-
193
- - [`8f0bd77`](https://github.com/swordev/datatruck/commit/8f0bd77267a92da7eee05adc3bb85dee0ba97391) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix `sql-dump` tasks
194
-
195
- ## 0.21.0
196
-
197
- ### Minor Changes
198
-
199
- - [`211c914`](https://github.com/swordev/datatruck/commit/211c914e42b97213e81163511778b84b1ae2e9af) Thanks [@juanrgm](https://github.com/juanrgm)! - Use multi core for tar
200
-
201
- ## 0.20.0
202
-
203
- ### Minor Changes
204
-
205
- - [`13f9331`](https://github.com/swordev/datatruck/commit/13f933191f56f93e2eee0467e272998520b36195) Thanks [@juanrgm](https://github.com/juanrgm)! - Replace node-tar by tar
206
-
207
- ## 0.19.0
208
-
209
- ### Minor Changes
210
-
211
- - [`452a878`](https://github.com/swordev/datatruck/commit/452a878b04bf6dcf4632423f1455648e9e196697) Thanks [@juanrgm](https://github.com/juanrgm)! - Replace 7zip by tar
212
-
213
- ## 0.18.0
214
-
215
- ### Minor Changes
216
-
217
- - [`dba2162`](https://github.com/swordev/datatruck/commit/dba21624fa916e39824b9f998b58f9f9c3c2b1eb) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `compress` and `parallel` options to MariaDB task config
218
-
219
- ### Patch Changes
220
-
221
- - [`0b783ee`](https://github.com/swordev/datatruck/commit/0b783ee4c8d112e516ba5923ebf5d792050d14cc) Thanks [@juanrgm](https://github.com/juanrgm)! - Update dependencies
222
-
223
- - [`305dc49`](https://github.com/swordev/datatruck/commit/305dc49c3bc0ebc562cb478e705dfc6a9da6658f) Thanks [@juanrgm](https://github.com/juanrgm)! - Throw error if mkdir fails
224
-
225
- ## 0.17.2
226
-
227
- ### Patch Changes
228
-
229
- - [`27b7260`](https://github.com/swordev/datatruck/commit/27b726075a0e81769b841c4ce4c8b508f55f0bde) Thanks [@juanrgm](https://github.com/juanrgm)! - Ignore uncompleted snapshots
230
-
231
- ## 0.17.1
232
-
233
- ### Patch Changes
234
-
235
- - [`d6ff955`](https://github.com/swordev/datatruck/commit/d6ff955618527e8bad99f05a779c1f9e08fc863e) Thanks [@juanrgm](https://github.com/juanrgm)! - Wait for stdout pipe to close
236
-
237
- - [`c3cb5b9`](https://github.com/swordev/datatruck/commit/c3cb5b9d25af164dbbd58d1d7623f56c55fc7dbb) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix pretty-json format
238
-
239
- ## 0.17.0
240
-
241
- ### Minor Changes
242
-
243
- - [`821096f`](https://github.com/swordev/datatruck/commit/821096f67cd3bcce310b8e42fc7ccda109b42672) Thanks [@juanrgm](https://github.com/juanrgm)! - Add grouping by id in `snapshots` command
244
-
245
- ### Patch Changes
246
-
247
- - [`5a5e9c6`](https://github.com/swordev/datatruck/commit/5a5e9c62f3b6afded36d949c3149d475da17751b) Thanks [@juanrgm](https://github.com/juanrgm)! - Update dependencies
248
-
249
- - [`b9fbbc9`](https://github.com/swordev/datatruck/commit/b9fbbc98ca147ae9a88b214586ef722a9212116b) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix filter by repository
250
-
251
- ## 0.16.2
252
-
253
- ### Patch Changes
254
-
255
- - [`14865df`](https://github.com/swordev/datatruck/commit/14865df18b784d756aa1b4896f59ca6310eaeca4) Thanks [@juanrgm](https://github.com/juanrgm)! - Update dependencies
256
-
257
- - [`d91e6f8`](https://github.com/swordev/datatruck/commit/d91e6f8a024b14a15f9b9b97d5adc9b21c821a76) Thanks [@juanrgm](https://github.com/juanrgm)! - Delete temporary directories
258
-
259
- ## 0.16.1
260
-
261
- ### Patch Changes
262
-
263
- - [`62ce7c4`](https://github.com/swordev/datatruck/commit/62ce7c4d4ee6edc0375f3c1ad1e7bfe8912a2f3c) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix unzip progress
264
-
265
- * [`3fd4258`](https://github.com/swordev/datatruck/commit/3fd42588011353d744be2f964ab24cf0bdd690bf) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix restore progress in datatruck repository
266
-
267
- ## 0.16.0
268
-
269
- ### Minor Changes
270
-
271
- - [`e25867a`](https://github.com/swordev/datatruck/commit/e25867a49217e682c0fee7e1822a12daa583b168) Thanks [@juanrgm](https://github.com/juanrgm)! - New backup structure in datatruck repository
272
-
273
- * [`b65f080`](https://github.com/swordev/datatruck/commit/b65f080d7eca5588bce533e988067bd432da3c50) Thanks [@juanrgm](https://github.com/juanrgm)! - Show all progress steps
274
-
275
- - [`e603aee`](https://github.com/swordev/datatruck/commit/e603aee22febd7cc23056caeeb9f9304957199d6) Thanks [@juanrgm](https://github.com/juanrgm)! - Add progress stats in the `sql-dump` tasks
276
-
277
- ### Patch Changes
278
-
279
- - [`dae957b`](https://github.com/swordev/datatruck/commit/dae957b20f519d1bc0f6b046074ae2ad02a071dc) Thanks [@juanrgm](https://github.com/juanrgm)! - Show zip progress
280
-
281
- * [`7ba3dd3`](https://github.com/swordev/datatruck/commit/7ba3dd3521fc10140adc178810cc2b6153f0f5df) Thanks [@juanrgm](https://github.com/juanrgm)! - Enable multithread in 7zip
282
-
283
- - [`1024225`](https://github.com/swordev/datatruck/commit/102422501f629f50164db439e69a456725579cbe) Thanks [@juanrgm](https://github.com/juanrgm)! - Show full error stack when the error is not controlled
284
-
285
- * [`09db164`](https://github.com/swordev/datatruck/commit/09db164db462077289b66931e82f162a92558720) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix backup action in datatruck repository
286
-
287
- - [`2b9b2bb`](https://github.com/swordev/datatruck/commit/2b9b2bbb407b0b84a4b7fe3cd8773d6326983e8a) Thanks [@juanrgm](https://github.com/juanrgm)! - Unify progress bars
288
-
289
- ## 0.15.0
290
-
291
- ### Minor Changes
292
-
293
- - [`c73ceec`](https://github.com/swordev/datatruck/commit/c73ceec5ccb6a824fe6a6fceee56700705191fba) Thanks [@juanrgm](https://github.com/juanrgm)! - Detail the progress in all actions
294
-
295
- ## 0.14.0
296
-
297
- ### Minor Changes
298
-
299
- - [`91fe442`](https://github.com/swordev/datatruck/commit/91fe44257fa58400d7ce6a4678747e034e94228a) Thanks [@juanrgm](https://github.com/juanrgm)! - Show progress and apply permissions in datatruck repository
300
-
301
- ## 0.13.1
302
-
303
- ### Patch Changes
304
-
305
- - [`bfd61c7`](https://github.com/swordev/datatruck/commit/bfd61c7c5cdec7aea4f66193094786797231b1d6) Thanks [@juanrgm](https://github.com/juanrgm)! - Enhance 7zip performance
306
-
307
- * [`a208200`](https://github.com/swordev/datatruck/commit/a20820044fe8dac007bbc70de840b27735c689ef) Thanks [@juanrgm](https://github.com/juanrgm)! - Skip not found file errors during backups
308
-
309
- - [`442bd3d`](https://github.com/swordev/datatruck/commit/442bd3d7376e6c546cfcba69a80048e90e11a488) Thanks [@juanrgm](https://github.com/juanrgm)! - Deny additional properties in SQL dump task config
310
-
311
- ## 0.13.0
312
-
313
- ### Minor Changes
314
-
315
- - [`64cbb10`](https://github.com/swordev/datatruck/commit/64cbb10ea2526612e9f1183c878f146dbe4cea13) Thanks [@juanrgm](https://github.com/juanrgm)! - Save and show snapshot size
316
-
317
- * [`297d120`](https://github.com/swordev/datatruck/commit/297d1202c49a3a6b4a5eafc3871359c1af637d52) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `progress` and `progress-interval` global options
318
-
319
- - [`cb0ea35`](https://github.com/swordev/datatruck/commit/cb0ea35161ce8f67c40c6c77d1169d648ac0dfcd) Thanks [@juanrgm](https://github.com/juanrgm)! - Show restic restore progress
320
-
321
- * [`357b995`](https://github.com/swordev/datatruck/commit/357b995c041f3167290a5ce9ae4f9a8d122f2a10) Thanks [@juanrgm](https://github.com/juanrgm)! - Rename local repository to datatruck
322
-
323
- ### Patch Changes
324
-
325
- - [`aca9634`](https://github.com/swordev/datatruck/commit/aca9634313d562065a3e09efde8adf31b9939f89) Thanks [@juanrgm](https://github.com/juanrgm)! - Use local cache in the restic repositories
326
-
327
- * [`25f0cbb`](https://github.com/swordev/datatruck/commit/25f0cbb2754ca1b082a51e929c373f88825bc18d) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix undefined progress of restic
328
-
329
- ## 0.12.1
330
-
331
- ### Patch Changes
332
-
333
- - [`23bab2a`](https://github.com/swordev/datatruck/commit/23bab2ad73801398c799759cc275be2b17350545) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix package config option
334
-
335
- ## 0.12.0
336
-
337
- ### Minor Changes
338
-
339
- - [`0effb38`](https://github.com/swordev/datatruck/commit/0effb38d1cc0b50ba43cd2948c7ff98d2b17325d) Thanks [@juanrgm](https://github.com/juanrgm)! - Add package config filter
340
-
341
- ### Patch Changes
342
-
343
- - [`31446fb`](https://github.com/swordev/datatruck/commit/31446fb69273ac1619cdf2f8965f8b702da5882f) Thanks [@juanrgm](https://github.com/juanrgm)! - Throw controlled error when package config not found
344
-
345
- ## 0.11.7
346
-
347
- ### Patch Changes
348
-
349
- - [`303dbf6`](https://github.com/swordev/datatruck/commit/303dbf63127c2bafd8a24c5733fa8b33d311f3ff) Thanks [@juanrgm](https://github.com/juanrgm)! - Allow non file password in restic repository url
350
-
351
- ## 0.11.6
352
-
353
- ### Patch Changes
354
-
355
- - [`3a3c54d`](https://github.com/swordev/datatruck/commit/3a3c54db7075882604a3fc0fd8827271ab04ba29) Thanks [@juanrgm](https://github.com/juanrgm)! - Exlude files in restic repository
356
-
357
- ## 0.11.5
358
-
359
- ### Patch Changes
360
-
361
- - [`cee6fee`](https://github.com/swordev/datatruck/commit/cee6fee924a8ae637a8f3bfece03890d6ad34ddf) Thanks [@juanrgm](https://github.com/juanrgm)! - Avoid scan all excluded files
362
-
363
- ## 0.11.4
364
-
365
- ### Patch Changes
366
-
367
- - [`6328aec`](https://github.com/swordev/datatruck/commit/6328aece04027d76d2092bd916671d49c91cdc6d) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix task name filter
368
-
369
- ## 0.11.3
370
-
371
- ### Patch Changes
372
-
373
- - [`6aeac04`](https://github.com/swordev/datatruck/commit/6aeac04803c18a3f91d87f215857b250e1e7defd) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix `packageTaskNames` filter
374
-
375
- ## 0.11.2
376
-
377
- ### Patch Changes
378
-
379
- - [`9432df5`](https://github.com/swordev/datatruck/commit/9432df56f6c6444a59d98e79cf4b7db9f4d35854) Thanks [@juanrgm](https://github.com/juanrgm)! - Show zip progress
380
-
381
- * [`c16daa2`](https://github.com/swordev/datatruck/commit/c16daa22d922bd610a161f37911fdb6f52666d38) Thanks [@juanrgm](https://github.com/juanrgm)! - Sort table names in the SQL dump tasks
382
-
383
- ## 0.11.1
384
-
385
- ### Patch Changes
386
-
387
- - [`c65035c`](https://github.com/swordev/datatruck/commit/c65035cb6e9b8f5082f7b6d2ad59078ea1bd6abb) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix WSL system patch
388
-
389
- ## 0.11.0
390
-
391
- ### Minor Changes
392
-
393
- - [`8aa3c1a`](https://github.com/swordev/datatruck/commit/8aa3c1a1334870cc11b610b3b0a9bf10b0a97126) Thanks [@juanrgm](https://github.com/juanrgm)! - Add predefined output templates
394
-
395
- ### Patch Changes
396
-
397
- - [`763a724`](https://github.com/swordev/datatruck/commit/763a72473505232884e1b3871f2f4d1c55bb74d6) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix file copy in WSL system
398
-
399
- ## 0.10.0
400
-
401
- ### Minor Changes
402
-
403
- - [`bc9a0dd`](https://github.com/swordev/datatruck/commit/bc9a0ddf2bfb9353545c28d9cbd12e592328024e) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `mirrorRepoNames` config option
404
-
405
- ### Patch Changes
406
-
407
- - [`795936c`](https://github.com/swordev/datatruck/commit/795936c1d2add7819ff5f40679313e1e594aeb7e) Thanks [@juanrgm](https://github.com/juanrgm)! - Show error stack trace if directory does not exist
408
-
409
- * [`d0d77b6`](https://github.com/swordev/datatruck/commit/d0d77b6c3d4eb0461c176981b165e20b49826082) Thanks [@juanrgm](https://github.com/juanrgm)! - Update dependencies
410
-
411
- ## 0.9.0
412
-
413
- ### Minor Changes
414
-
415
- - [`05de947`](https://github.com/swordev/datatruck/commit/05de947264727cddb79293eca6cb0b43382eab6b) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `storedPrograms` config option in `mysql-dump` task
416
-
417
- ### Patch Changes
418
-
419
- - [`ef99bdf`](https://github.com/swordev/datatruck/commit/ef99bdf0301b5bbdf965c1fa1d00e78edce1c931) Thanks [@juanrgm](https://github.com/juanrgm)! - Update dependencies
420
-
421
- ## 0.8.0
422
-
423
- ### Minor Changes
424
-
425
- - [`8c421ab`](https://github.com/swordev/datatruck/commit/8c421ab0adb6f2d5bc81e91fa387c5daa848f411) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `--package-task` option to snapshot command
426
-
427
- ## 0.7.0
428
-
429
- ### Minor Changes
430
-
431
- - [`3b8d6da`](https://github.com/swordev/datatruck/commit/3b8d6da01495799aceb848a63b35b8c46a7d1b0e) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `--package-task` cli option
432
-
433
- * [`69b34a0`](https://github.com/swordev/datatruck/commit/69b34a02b9cade48df2b071a92a8f79d5cfec23e) Thanks [@juanrgm](https://github.com/juanrgm)! - Allow restore multiple backups over the same database
434
-
435
- - [`69caf26`](https://github.com/swordev/datatruck/commit/69caf26881272331bd4c8d7d345b3b85d33e33ac) Thanks [@juanrgm](https://github.com/juanrgm)! - Add cli short option to `--tag`
436
-
437
- * [`377f0de`](https://github.com/swordev/datatruck/commit/377f0de345c9c8f45c772ac47e4ded81e91725d7) Thanks [@juanrgm](https://github.com/juanrgm)! - Rename cli short option to `-rt`
438
-
439
- ### Patch Changes
440
-
441
- - [`c03200a`](https://github.com/swordev/datatruck/commit/c03200a6347d1e9f9fdad86dcb22df30bbefcab4) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix `sql-dump` tasks
442
-
443
- * [`f56a4bc`](https://github.com/swordev/datatruck/commit/f56a4bcb429a674c13f32de73985cd67eb1acc23) Thanks [@juanrgm](https://github.com/juanrgm)! - Show full error message
444
-
445
- - [`4324422`](https://github.com/swordev/datatruck/commit/4324422550474619811a8d455af55bc6e3b08aeb) Thanks [@juanrgm](https://github.com/juanrgm)! - Use connection port in `mysql-dump` task
446
-
447
- ## 0.6.1
448
-
449
- ### Patch Changes
450
-
451
- - [`0ba6229`](https://github.com/swordev/datatruck/commit/0ba6229348c109a59783e72242ab7c0e61f25e36) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix progress bar in restic repository
452
-
453
- ## 0.6.0
454
-
455
- ### Minor Changes
456
-
457
- - [`0c6877d`](https://github.com/swordev/datatruck/commit/0c6877d189761e75dd434b0a8d72b71621d024de) Thanks [@juanrgm](https://github.com/juanrgm)! - Show more progress stats
458
-
459
- * [`751e1f6`](https://github.com/swordev/datatruck/commit/751e1f6d6b33d3fa96eb40d998fdd140ce0e3875) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `fileCopyConcurrency` option
460
-
461
- - [`05487e6`](https://github.com/swordev/datatruck/commit/05487e6a33f875a3afb7ff0815b16da6f2a41301) Thanks [@juanrgm](https://github.com/juanrgm)! - Parse InnoDB error in `MariadbTask` to avoid infinite wait
462
-
463
- ### Patch Changes
464
-
465
- - [`b62a6f8`](https://github.com/swordev/datatruck/commit/b62a6f8a82409339afd65d4f96476eb57bbfb5a2) Thanks [@juanrgm](https://github.com/juanrgm)! - Resolve target/restore path in local repository
466
-
467
- ## 0.5.0
468
-
469
- ### Minor Changes
470
-
471
- - [`5aeb2af`](https://github.com/swordev/datatruck/commit/5aeb2afb96692e00bdba501b58df9cc0e02dceaa) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `enabled` option to repository config
472
-
473
- * [`75de836`](https://github.com/swordev/datatruck/commit/75de8369356cf02ed3fd5c58b1f9bea66432cda8) Thanks [@juanrgm](https://github.com/juanrgm)! - Allow restic password without file
474
-
475
- ## 0.4.0
476
-
477
- ### Minor Changes
478
-
479
- - [`eeb00a6`](https://github.com/swordev/datatruck/commit/eeb00a69d75c91da40711ae79475612b1d5193b6) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `tempDir` config option
480
-
481
- ## 0.3.2
482
-
483
- ### Patch Changes
484
-
485
- - [`8957c3b`](https://github.com/swordev/datatruck/commit/8957c3b5846606db8b825fef357445210f2a3ac3) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix restic progress parser
486
-
487
- * [`2989718`](https://github.com/swordev/datatruck/commit/29897185e3d6659359d51ab2212351005137f86c) Thanks [@juanrgm](https://github.com/juanrgm)! - Show closing reason
488
-
489
- - [`b9e0843`](https://github.com/swordev/datatruck/commit/b9e0843c7970944cfd30a7d2a543f515adfa60e4) Thanks [@juanrgm](https://github.com/juanrgm)! - Show restic progress in megabytes
490
-
491
- ## 0.3.1
492
-
493
- ### Patch Changes
494
-
495
- - [`c3bb4c6`](https://github.com/swordev/datatruck/commit/c3bb4c609887c5525cf35487ea237750addb6e75) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix restic stdout parser
496
-
497
- ## 0.3.0
498
-
499
- ### Minor Changes
500
-
501
- - [`d63fd25`](https://github.com/swordev/datatruck/commit/d63fd25ffa8d2e539d2125dfd6a3f55020086804) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `snapshotDate` param
502
-
503
- * [`486ef4a`](https://github.com/swordev/datatruck/commit/486ef4add27ae1dbfd166b16c257522f43537ecd) Thanks [@juanrgm](https://github.com/juanrgm)! - Resolve params in `include` and `exclude`
504
-
505
- - [`617dae2`](https://github.com/swordev/datatruck/commit/617dae2c8ed90e6e65e8109f03cfad0e64bd7c02) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `script` task
506
-
507
- ### Patch Changes
508
-
509
- - [`d1b3ea9`](https://github.com/swordev/datatruck/commit/d1b3ea9c9540d30898c00490963523a4fbc68193) Thanks [@juanrgm](https://github.com/juanrgm)! - Avoid use gitignore if is not necessary in restic repository
510
-
511
- ## 0.2.0
512
-
513
- ### Minor Changes
514
-
515
- - [`120460c`](https://github.com/swordev/datatruck/commit/120460c8824cef4184e43f571a4cc0798b899b66) Thanks [@juanrgm](https://github.com/juanrgm)! - Enable `include` option in restic repository
516
-
517
- ### Patch Changes
518
-
519
- - [`e30ede3`](https://github.com/swordev/datatruck/commit/e30ede371bc7ab3fc1cd47758fdac7a28e8e2705) Thanks [@juanrgm](https://github.com/juanrgm)! - Resolve `RESTIC_PASSWORD_FILE` path
520
-
521
- * [`8539d28`](https://github.com/swordev/datatruck/commit/8539d285b2c51d700aa811cd772d573fa0d613eb) Thanks [@juanrgm](https://github.com/juanrgm)! - Allow empty backup in restic repository
522
-
523
- ## 0.1.0
524
-
525
- ### Minor Changes
526
-
527
- - [`88d46cd`](https://github.com/swordev/datatruck/commit/88d46cd56293df4c6fc21a9ad61d6236ac91f325) Thanks [@juanrgm](https://github.com/juanrgm)! - Add `custom` output format
528
-
529
- ### Patch Changes
530
-
531
- - [`24a1e5e`](https://github.com/swordev/datatruck/commit/24a1e5e86336e7a92556287e49548dc542f0e579) Thanks [@juanrgm](https://github.com/juanrgm)! - Update dependencies
532
-
533
- ## 0.0.6
534
-
535
- ### Patch Changes
536
-
537
- - [`8de6e6c`](https://github.com/swordev/datatruck/commit/8de6e6ceddb59635cb4634d884e7690eeaf59bac) Thanks [@juanrgm](https://github.com/juanrgm)! - Publish migrations
538
-
539
- ## 0.0.5
540
-
541
- ### Patch Changes
542
-
543
- - [`78cb0c1`](https://github.com/swordev/datatruck/commit/78cb0c17558543841cd7080dc4c672e6cbfd5634) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix docker image
544
-
545
- ## 0.0.4
546
-
547
- ### Patch Changes
548
-
549
- - [`d9e534b`](https://github.com/swordev/datatruck/commit/d9e534bd968acf9cd1c93f20e6152c004cb1f23b) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix package file read
550
-
551
- * [`b882c58`](https://github.com/swordev/datatruck/commit/b882c58183e9a75abc876645e18d7b67186dd662) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix read of migrations
552
-
553
- ## 0.0.3
554
-
555
- ### Patch Changes
556
-
557
- - [`051a7da`](https://github.com/swordev/datatruck/commit/051a7da225fcfea1c30a4fbfa8aea1b8f5538367) Thanks [@juanrgm](https://github.com/juanrgm)! - Fix dist files
558
-
559
- ## 0.0.2
560
-
561
- ### Patch Changes
562
-
563
- - [`0911351`](https://github.com/swordev/datatruck/commit/09113517e1a77f2d2a1e19e4c3d9af7da1e28415) Thanks [@juanrgm](https://github.com/juanrgm)! - Publish docker image
@@ -1,28 +0,0 @@
1
- import { FormatType } from "../utils/DataFormat";
2
- import { DatatruckCronServerOptions } from "../utils/datatruck/cron-server";
3
- import { DatatruckRepositoryServerOptions } from "../utils/datatruck/repository-server";
4
- import { Step } from "../utils/steps";
5
- import { PackageConfigType } from "./PackageConfig";
6
- import { PrunePolicyConfigType } from "./PrunePolicyConfig";
7
- import { RepositoryConfigType } from "./RepositoryConfig";
8
- import type { JSONSchema7 } from "json-schema";
9
- export type ConfigType = {
10
- tempDir?: string;
11
- minFreeDiskSpace?: string | number;
12
- repositories: RepositoryConfigType[];
13
- packages: PackageConfigType[];
14
- server?: DatatruckServerOptions;
15
- reports?: ReportConfig[];
16
- prunePolicy?: PrunePolicyConfigType;
17
- };
18
- export type DatatruckServerOptions = {
19
- log?: boolean;
20
- repository?: DatatruckRepositoryServerOptions;
21
- cron?: DatatruckCronServerOptions;
22
- };
23
- export type ReportConfig = {
24
- when?: "success" | "error";
25
- format?: Exclude<FormatType, "custom" | "tpl">;
26
- run: Step;
27
- };
28
- export declare const configDefinition: JSONSchema7;