NEWS 6.7 KB

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