NEWS 2.9 KB

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