NEWS 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. 1.2.8.dev0
  2. * Include link to issue tracker within various command output.
  3. * Run continuous integration tests on a matrix of Python and Borg versions.
  4. 1.2.7
  5. * #98: Support for Borg --keep-secondly prune option.
  6. * Use Black code formatter and Flake8 code checker as part of running automated tests.
  7. * Add an end-to-end automated test that actually integrates with Borg.
  8. * Set up continuous integration for borgmatic automated tests on projects.evoworx.org.
  9. 1.2.6
  10. * Fix generated configuration to also include a "keep_daily" value so pruning works out of the
  11. box.
  12. 1.2.5
  13. * #57: When generating sample configuration with generate-borgmatic-config, comment out all
  14. optional configuration so as to streamline the initial configuration process.
  15. 1.2.4
  16. * Fix for archive checking traceback due to parameter mismatch.
  17. 1.2.3
  18. * #64, #90, #92: Rewrite of logging system. Now verbosity flags passed to Borg are derived from
  19. borgmatic's log level. Note that the output of borgmatic might slightly change.
  20. * Part of #80: Support for Borg create --read-special via "read_special" option in borgmatic's
  21. location configuration.
  22. * #87: Support for Borg create --checkpoint-interval via "checkpoint_interval" option in
  23. borgmatic's storage configuration.
  24. * #88: Fix declared pykwalify compatibility version range in setup.py to prevent use of ancient
  25. versions of pykwalify with large version numbers.
  26. * #89: Pass --show-rc option to Borg when at highest verbosity level.
  27. * #94: Support for Borg --json option via borgmatic command-line to --create archives.
  28. 1.2.2
  29. * #85: Fix compatibility issue between pykwalify and ruamel.yaml 0.15.52, which manifested in
  30. borgmatic as a pykwalify RuleError.
  31. 1.2.1
  32. * Skip before/after backup hooks when only doing --prune, --check, --list, and/or --info.
  33. * #71: Support for XDG_CONFIG_HOME environment variable for specifying alternate user ~/.config/
  34. path.
  35. * #74, #83: Support for Borg --json option via borgmatic command-line to --list archives or show
  36. archive --info in JSON format, ideal for programmatic consumption.
  37. * #38, #76: Upgrade ruamel.yaml compatibility version range and fix support for Python 3.7.
  38. * #77: Skip non-"*.yaml" config filenames in /etc/borgmatic.d/ so as not to parse backup files,
  39. editor swap files, etc.
  40. * #81: Document user-defined hooks run before/after backup, or on error.
  41. * Add code style guidelines to the documention.
  42. 1.2.0
  43. * #61: Support for Borg --list option via borgmatic command-line to list all archives.
  44. * #61: Support for Borg --info option via borgmatic command-line to display summary information.
  45. * #62: Update README to mention other ways of installing borgmatic.
  46. * Support for Borg --prefix option for consistency checks via "prefix" option in borgmatic's
  47. consistency configuration.
  48. * Add introductory screencast link to documentation.
  49. * #59: Ignore "check_last" and consistency "prefix" when "archives" not in consistency checks.
  50. * #60: Add "Persistent" flag to systemd timer example.
  51. * #63: Support for Borg --nobsdflags option to skip recording bsdflags (e.g. NODUMP, IMMUTABLE) in
  52. archive.
  53. * #69: Support for Borg prune --umask option using value of existing "umask" option in borgmatic's
  54. storage configuration.
  55. * Update tox.ini to only assume Python 3.x instead of Python 3.4 specifically.
  56. * Add ~/.config/borgmatic/config.yaml to default configuration path probing.
  57. * Document how to develop on and contribute to borgmatic.
  58. 1.1.15
  59. * Support for Borg BORG_PASSCOMMAND environment variable to read a password from an external file.
  60. * Fix for Borg create error when using borgmatic's --dry-run and --verbosity options together.
  61. Work-around for behavior introduced in Borg 1.1.3: https://github.com/borgbackup/borg/issues/3298
  62. * #55: Fix for missing tags/releases on Gitea and GitHub project hosting.
  63. * #56: Support for Borg --lock-wait option for the maximum wait for a repository/cache lock.
  64. * #58: Support for using tilde in exclude_patterns to reference home directory.
  65. 1.1.14
  66. * #49: Fix for typo in --patterns-from option.
  67. * #47: Support for Borg --dry-run option via borgmatic command-line.
  68. 1.1.13
  69. * #54: Fix for incorrect consistency check flags passed to Borg when all three checks ("repository",
  70. "archives", and "extract") are specified in borgmatic configuration.
  71. * #48: Add "local_path" to configuration for specifying an alternative Borg executable path.
  72. * #49: Support for Borg experimental --patterns-from and --patterns options for specifying mixed
  73. includes/excludes.
  74. * Moved issue tracker from Taiga to integrated Gitea tracker at
  75. https://projects.torsion.org/witten/borgmatic/issues
  76. 1.1.12
  77. * #46: Declare dependency on pykwalify 1.6 or above, as older versions yield "Unknown key: version"
  78. rule errors.
  79. * Support for Borg --keep-minutely prune option.
  80. 1.1.11
  81. * #26: Add "ssh_command" to configuration for specifying a custom SSH command or options.
  82. * Fix for incorrect /etc/borgmatic.d/ configuration path probing on macOS. This problem manifested
  83. as an error on startup: "[Errno 2] No such file or directory: '/etc/borgmatic.d'".
  84. 1.1.10
  85. * Pass several Unix signals through to child processes like Borg. This means that Borg now properly
  86. shuts down if borgmatic is terminated (e.g. due to a system suspend).
  87. * #30: Support for using tilde in repository paths to reference home directory.
  88. * #43: Support for Borg --files-cache option for setting the files cache operation mode.
  89. * #45: Support for Borg --remote-ratelimit option for limiting upload rate.
  90. * Log invoked Borg commands when at highest verbosity level.
  91. 1.1.9
  92. * #17, #39: Support for user-defined hooks before/after backup, or on error.
  93. * #34: Improve clarity of logging spew at high verbosity levels.
  94. * #30: Support for using tilde in source directory path to reference home directory.
  95. * Require "prefix" in retention section when "archive_name_format" is set. This is to avoid
  96. accidental pruning of archives with a different archive name format. For similar reasons, default
  97. "prefix" to "{hostname}-" if not specified.
  98. * Convert main source repository from Mercurial to Git.
  99. * Update dead links to Borg documentation.
  100. 1.1.8
  101. * #40: Fix to make /etc/borgmatic/config.yaml optional rather than required when using the default
  102. config paths.
  103. 1.1.7
  104. * #29: Add "archive_name_format" to configuration for customizing archive names.
  105. * Fix for traceback when "exclude_from" value is empty in configuration file.
  106. * When pruning, make highest verbosity level list archives kept and pruned.
  107. * Clarification of Python 3 pip usage in documentation.
  108. 1.1.6
  109. * #13, #36: Support for Borg --exclude-from, --exclude-caches, and --exclude-if-present options.
  110. 1.1.5
  111. * #35: New "extract" consistency check that performs a dry-run extraction of the most recent
  112. archive.
  113. 1.1.4
  114. * #18: Added command-line flags for performing a borgmatic run with only pruning, creating, or
  115. checking enabled. This supports use cases like running consistency checks from a different cron
  116. job with a different frequency, or running pruning with a different verbosity level.
  117. 1.1.3
  118. * #15: Support for running multiple config files in /etc/borgmatic.d/ from a single borgmatic run.
  119. * Fix for generate-borgmatic-config writing config with invalid one_file_system value.
  120. 1.1.2
  121. * #33: Fix for passing check_last as integer to subprocess when calling Borg.
  122. 1.1.1
  123. * Part of #33: Fix for upgrade-borgmatic-config converting check_last option as a string instead of
  124. an integer.
  125. * Fix for upgrade-borgmatic-config erroring when consistency checks option is not present.
  126. 1.1.0
  127. * Switched config file format to YAML. Run upgrade-borgmatic-config to upgrade.
  128. * Added generate-borgmatic-config command for initial config creation.
  129. * Dropped Python 2 support. Now Python 3 only.
  130. * #19: Fix for README mention of sample files not included in package.
  131. * #23: Sample files for triggering borgmatic from a systemd timer.
  132. * Support for backing up to multiple repositories.
  133. * To free up space, now pruning backups prior to creating a new backup.
  134. * Enabled test coverage output during tox runs.
  135. * Added logo.
  136. 1.0.3
  137. * #22: Fix for verbosity flag not actually causing verbose output.
  138. 1.0.2
  139. * #21: Fix for traceback when remote_path option is missing.
  140. 1.0.1
  141. * #20: Support for Borg's --remote-path option to use an alternate Borg
  142. executable. See sample/config.
  143. 1.0.0
  144. * Attic is no longer supported, as there hasn't been any recent development on
  145. it. Dropping Attic support will allow faster iteration on Borg-specific
  146. features. If you're still using Attic, this is a good time to switch to Borg!
  147. * Project renamed from atticmatic to borgmatic. See the borgmatic README for
  148. information on upgrading.
  149. 0.1.8
  150. * Fix for handling of spaces in source_directories which resulted in backup up everything.
  151. * Fix for broken links to Borg documentation.
  152. * At verbosity zero, suppressing Borg check stderr spew about "Checking segments".
  153. * Support for Borg --one-file-system.
  154. * Support for Borg create --umask.
  155. * Support for file globs in source_directories.
  156. 0.1.7
  157. * #12: Fixed parsing of punctuation in configuration file.
  158. * Better error message when configuration file is missing.
  159. 0.1.6
  160. * #10: New configuration option for the encryption passphrase.
  161. * #11: Support for Borg's new archive compression feature.
  162. 0.1.5
  163. * Changes to support release on PyPI. Now pip installable by name!
  164. 0.1.4
  165. * Adding test that setup.py version matches release version.
  166. 0.1.3
  167. * #2: Add support for "borg check --last N" to Borg backend.
  168. 0.1.2
  169. * As a convenience to new users, allow a missing default excludes file.
  170. * New issue tracker, linked from documentation.
  171. 0.1.1
  172. * Adding borgmatic cron example, and updating documentation to refer to it.
  173. 0.1.0
  174. * New "borgmatic" command to support Borg backup software, a fork of Attic.
  175. 0.0.7
  176. * Flag for multiple levels of verbosity: some, and lots.
  177. * Improved mocking of Python builtins in unit tests.
  178. 0.0.6
  179. * New configuration section for customizing which Attic consistency checks run, if any.
  180. 0.0.5
  181. * Fixed regression with --verbose output being buffered. This means dropping the helpful error
  182. message introduced in 0.0.4.
  183. 0.0.4
  184. * Now using tox to run tests against multiple versions of Python in one go.
  185. * Helpful error message about how to create a repository if one is missing.
  186. * Troubleshooting section with steps to deal with broken pipes.
  187. * Nosetests config file (setup.cfg) with defaults.
  188. 0.0.3
  189. * After pruning, run attic's consistency checks on all archives.
  190. * Integration tests for argument parsing.
  191. * Documentation updates about repository encryption.
  192. 0.0.2
  193. * Configuration support for additional attic prune flags: keep_within, keep_hourly, keep_yearly,
  194. and prefix.
  195. 0.0.1
  196. * Initial release.