NEWS 7.4 KB

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