NEWS 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. 1.1.9.dev0
  2. * #29: Support for using tilde in source directory path to reference home directory.
  3. 1.1.8
  4. * #39: Fix to make /etc/borgmatic/config.yaml optional rather than required when using the default
  5. config paths.
  6. 1.1.7
  7. * #28: Add "archive_name_format" to configuration for customizing archive names.
  8. * Fix for traceback when "exclude_from" value is empty in configuration file.
  9. * When pruning, make highest verbosity level list archives kept and pruned.
  10. * Clarification of Python 3 pip usage in documentation.
  11. 1.1.6
  12. * #12, #35: Support for Borg --exclude-from, --exclude-caches, and --exclude-if-present options.
  13. 1.1.5
  14. * #34: New "extract" consistency check that performs a dry-run extraction of the most recent
  15. archive.
  16. 1.1.4
  17. * #17: Added command-line flags for performing a borgmatic run with only pruning, creating, or
  18. checking enabled. This supports use cases like running consistency checks from a different cron
  19. job with a different frequency, or running pruning with a different verbosity level.
  20. 1.1.3
  21. * #14: Support for running multiple config files in /etc/borgmatic.d/ from a single borgmatic run.
  22. * Fix for generate-borgmatic-config writing config with invalid one_file_system value.
  23. 1.1.2
  24. * #32: Fix for passing check_last as integer to subprocess when calling Borg.
  25. 1.1.1
  26. * Part of #32: Fix for upgrade-borgmatic-config converting check_last option as a string instead of
  27. an integer.
  28. * Fix for upgrade-borgmatic-config erroring when consistency checks option is not present.
  29. 1.1.0
  30. * Switched config file format to YAML. Run upgrade-borgmatic-config to upgrade.
  31. * Added generate-borgmatic-config command for initial config creation.
  32. * Dropped Python 2 support. Now Python 3 only.
  33. * #18: Fix for README mention of sample files not included in package.
  34. * #22: Sample files for triggering borgmatic from a systemd timer.
  35. * Support for backing up to multiple repositories.
  36. * To free up space, now pruning backups prior to creating a new backup.
  37. * Enabled test coverage output during tox runs.
  38. * Added logo.
  39. 1.0.3
  40. * #21: Fix for verbosity flag not actually causing verbose output.
  41. 1.0.2
  42. * #20: Fix for traceback when remote_path option is missing.
  43. 1.0.1
  44. * #19: Support for Borg's --remote-path option to use an alternate Borg
  45. executable. See sample/config.
  46. 1.0.0
  47. * Attic is no longer supported, as there hasn't been any recent development on
  48. it. Dropping Attic support will allow faster iteration on Borg-specific
  49. features. If you're still using Attic, this is a good time to switch to Borg!
  50. * Project renamed from atticmatic to borgmatic. See the borgmatic README for
  51. information on upgrading.
  52. 0.1.8
  53. * Fix for handling of spaces in source_directories which resulted in backup up everything.
  54. * Fix for broken links to Borg documentation.
  55. * At verbosity zero, suppressing Borg check stderr spew about "Checking segments".
  56. * Support for Borg --one-file-system.
  57. * Support for Borg create --umask.
  58. * Support for file globs in source_directories.
  59. 0.1.7
  60. * #11: Fixed parsing of punctuation in configuration file.
  61. * Better error message when configuration file is missing.
  62. 0.1.6
  63. * #9: New configuration option for the encryption passphrase.
  64. * #10: Support for Borg's new archive compression feature.
  65. 0.1.5
  66. * Changes to support release on PyPI. Now pip installable by name!
  67. 0.1.4
  68. * Adding test that setup.py version matches release version.
  69. 0.1.3
  70. * #1: Add support for "borg check --last N" to Borg backend.
  71. 0.1.2
  72. * As a convenience to new users, allow a missing default excludes file.
  73. * New issue tracker, linked from documentation.
  74. 0.1.1
  75. * Adding borgmatic cron example, and updating documentation to refer to it.
  76. 0.1.0
  77. * New "borgmatic" command to support Borg backup software, a fork of Attic.
  78. 0.0.7
  79. * Flag for multiple levels of verbosity: some, and lots.
  80. * Improved mocking of Python builtins in unit tests.
  81. 0.0.6
  82. * New configuration section for customizing which Attic consistency checks run, if any.
  83. 0.0.5
  84. * Fixed regression with --verbose output being buffered. This means dropping the helpful error
  85. message introduced in 0.0.4.
  86. 0.0.4
  87. * Now using tox to run tests against multiple versions of Python in one go.
  88. * Helpful error message about how to create a repository if one is missing.
  89. * Troubleshooting section with steps to deal with broken pipes.
  90. * Nosetests config file (setup.cfg) with defaults.
  91. 0.0.3
  92. * After pruning, run attic's consistency checks on all archives.
  93. * Integration tests for argument parsing.
  94. * Documentation updates about repository encryption.
  95. 0.0.2
  96. * Configuration support for additional attic prune flags: keep_within, keep_hourly, keep_yearly,
  97. and prefix.
  98. 0.0.1
  99. * Initial release.