NEWS 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. 1.1.10.dev0
  2. * Pass several Unix signals through to child processes like Borg. This means that Borg now properly
  3. shuts down if borgmatic is terminated (e.g. due to a system suspend).
  4. * #29: Support for using tilde in repository paths to reference home directory.
  5. * #42: Support for Borg --files-cache option for setting the files cache operation mode.
  6. 1.1.9
  7. * #16, #38: Support for user-defined hooks before/after backup, or on error.
  8. * #33: Improve clarity of logging spew at high verbosity levels.
  9. * #29: Support for using tilde in source directory path to reference home directory.
  10. * Require "prefix" in retention section when "archive_name_format" is set. This is to avoid
  11. accidental pruning of archives with a different archive name format. For similar reasons, default
  12. "prefix" to "{hostname}-" if not specified.
  13. * Convert main source repository from Mercurial to Git.
  14. * Update dead links to Borg documentation.
  15. 1.1.8
  16. * #39: Fix to make /etc/borgmatic/config.yaml optional rather than required when using the default
  17. config paths.
  18. 1.1.7
  19. * #28: Add "archive_name_format" to configuration for customizing archive names.
  20. * Fix for traceback when "exclude_from" value is empty in configuration file.
  21. * When pruning, make highest verbosity level list archives kept and pruned.
  22. * Clarification of Python 3 pip usage in documentation.
  23. 1.1.6
  24. * #12, #35: Support for Borg --exclude-from, --exclude-caches, and --exclude-if-present options.
  25. 1.1.5
  26. * #34: New "extract" consistency check that performs a dry-run extraction of the most recent
  27. archive.
  28. 1.1.4
  29. * #17: Added command-line flags for performing a borgmatic run with only pruning, creating, or
  30. checking enabled. This supports use cases like running consistency checks from a different cron
  31. job with a different frequency, or running pruning with a different verbosity level.
  32. 1.1.3
  33. * #14: Support for running multiple config files in /etc/borgmatic.d/ from a single borgmatic run.
  34. * Fix for generate-borgmatic-config writing config with invalid one_file_system value.
  35. 1.1.2
  36. * #32: Fix for passing check_last as integer to subprocess when calling Borg.
  37. 1.1.1
  38. * Part of #32: Fix for upgrade-borgmatic-config converting check_last option as a string instead of
  39. an integer.
  40. * Fix for upgrade-borgmatic-config erroring when consistency checks option is not present.
  41. 1.1.0
  42. * Switched config file format to YAML. Run upgrade-borgmatic-config to upgrade.
  43. * Added generate-borgmatic-config command for initial config creation.
  44. * Dropped Python 2 support. Now Python 3 only.
  45. * #18: Fix for README mention of sample files not included in package.
  46. * #22: Sample files for triggering borgmatic from a systemd timer.
  47. * Support for backing up to multiple repositories.
  48. * To free up space, now pruning backups prior to creating a new backup.
  49. * Enabled test coverage output during tox runs.
  50. * Added logo.
  51. 1.0.3
  52. * #21: Fix for verbosity flag not actually causing verbose output.
  53. 1.0.2
  54. * #20: Fix for traceback when remote_path option is missing.
  55. 1.0.1
  56. * #19: Support for Borg's --remote-path option to use an alternate Borg
  57. executable. See sample/config.
  58. 1.0.0
  59. * Attic is no longer supported, as there hasn't been any recent development on
  60. it. Dropping Attic support will allow faster iteration on Borg-specific
  61. features. If you're still using Attic, this is a good time to switch to Borg!
  62. * Project renamed from atticmatic to borgmatic. See the borgmatic README for
  63. information on upgrading.
  64. 0.1.8
  65. * Fix for handling of spaces in source_directories which resulted in backup up everything.
  66. * Fix for broken links to Borg documentation.
  67. * At verbosity zero, suppressing Borg check stderr spew about "Checking segments".
  68. * Support for Borg --one-file-system.
  69. * Support for Borg create --umask.
  70. * Support for file globs in source_directories.
  71. 0.1.7
  72. * #11: Fixed parsing of punctuation in configuration file.
  73. * Better error message when configuration file is missing.
  74. 0.1.6
  75. * #9: New configuration option for the encryption passphrase.
  76. * #10: Support for Borg's new archive compression feature.
  77. 0.1.5
  78. * Changes to support release on PyPI. Now pip installable by name!
  79. 0.1.4
  80. * Adding test that setup.py version matches release version.
  81. 0.1.3
  82. * #1: Add support for "borg check --last N" to Borg backend.
  83. 0.1.2
  84. * As a convenience to new users, allow a missing default excludes file.
  85. * New issue tracker, linked from documentation.
  86. 0.1.1
  87. * Adding borgmatic cron example, and updating documentation to refer to it.
  88. 0.1.0
  89. * New "borgmatic" command to support Borg backup software, a fork of Attic.
  90. 0.0.7
  91. * Flag for multiple levels of verbosity: some, and lots.
  92. * Improved mocking of Python builtins in unit tests.
  93. 0.0.6
  94. * New configuration section for customizing which Attic consistency checks run, if any.
  95. 0.0.5
  96. * Fixed regression with --verbose output being buffered. This means dropping the helpful error
  97. message introduced in 0.0.4.
  98. 0.0.4
  99. * Now using tox to run tests against multiple versions of Python in one go.
  100. * Helpful error message about how to create a repository if one is missing.
  101. * Troubleshooting section with steps to deal with broken pipes.
  102. * Nosetests config file (setup.cfg) with defaults.
  103. 0.0.3
  104. * After pruning, run attic's consistency checks on all archives.
  105. * Integration tests for argument parsing.
  106. * Documentation updates about repository encryption.
  107. 0.0.2
  108. * Configuration support for additional attic prune flags: keep_within, keep_hourly, keep_yearly,
  109. and prefix.
  110. 0.0.1
  111. * Initial release.