NEWS 3.6 KB

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