NEWS 3.4 KB

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