NEWS 5.6 KB

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