NEWS 9.1 KB

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