NEWS 2.8 KB

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