NEWS 4.2 KB

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