NEWS 3.5 KB

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