NEWS 4.0 KB

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