CHANGES 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. Borg Changelog
  2. ==============
  3. Version <TBD>
  4. -------------
  5. - changed sw name and cli command to "borg", updated docs
  6. - package name and name in urls uses "borgbackup" to have less collisions
  7. - changed repo / cache internal magic strings from ATTIC* to BORG*,
  8. changed cache location to .cache/borg/
  9. - give specific path to xattr.is_enabled(), disable symlink setattr call that
  10. always fails
  11. - fix misleading hint the fuse ImportError handler gave, fixes attic #237
  12. - source: misc. cleanups, pep8, style
  13. - implement check --last N
  14. - check: sort archives in reverse time order
  15. - avoid defect python-msgpack releases, fixes attic #171, fixes attic #185
  16. - check unpacked data from RPC for tuple type and correct length, fixes attic #127
  17. - less memory usage: add global option --no-cache-files
  18. - fix traceback when trying to do unsupported passphrase change, fixes attic #189
  19. - datetime does not like the year 10.000, fixes attic #139
  20. - docs improvements, fixes, updates
  21. - cleanup crypto.pyx, make it easier to adapt to other modes
  22. - extract: if --stdout is given, write all extracted binary data to stdout
  23. - create: if "-" is given as path, read binary from stdin
  24. - do os.fsync like recommended in the python docs
  25. - extra debug information for 'fread failed'
  26. - FUSE: reflect deduplication in allocated blocks
  27. - only allow whitelisted RPC calls in server mode
  28. - normalize source/exclude paths before matching
  29. - fix "info" all archives stats, fixes attic #183
  30. - implement create --timestamp, utc string or reference file/dir
  31. - simple sparse file support (extract --sparse)
  32. - fix parsing with missing microseconds, fixes attic #282
  33. - use posix_fadvise to not spoil the OS cache, fixes attic #252
  34. - source: Let chunker optionally work with os-level file descriptor.
  35. - source: Linux: remove duplicate os.fsencode calls
  36. - fix test setup for 32bit platforms, partial fix for attic #196
  37. - source: refactor _open_rb code a bit, so it is more consistent / regular
  38. - implement rename repo::oldname newname
  39. - implement create --progress
  40. - source: refactor indicator (status) and item processing
  41. - implement delete <repository> (also deletes local cache)
  42. - better create -v output
  43. - upgraded versioneer, fixes attic #257
  44. Attic Changelog
  45. ===============
  46. Here you can see the full list of changes between each Attic release until Borg
  47. forked from Attic:
  48. Version 0.16
  49. ------------
  50. (bugfix release, released on X)
  51. - Fix typo preventing the security confirmation prompt from working (#303)
  52. - Improve handling of systems with improperly configured file system encoding (#289)
  53. - Fix "All archives" output for attic info. (#183)
  54. - More user friendly error message when repository key file is not found (#236)
  55. - Fix parsing of iso 8601 timestamps with zero microseconds (#282)
  56. Version 0.15
  57. ------------
  58. (bugfix release, released on Apr 15, 2015)
  59. - xattr: Be less strict about unknown/unsupported platforms (#239)
  60. - Reduce repository listing memory usage (#163).
  61. - Fix BrokenPipeError for remote repositories (#233)
  62. - Fix incorrect behavior with two character directory names (#265, #268)
  63. - Require approval before accessing relocated/moved repository (#271)
  64. - Require approval before accessing previously unknown unencrypted repositories (#271)
  65. - Fix issue with hash index files larger than 2GB.
  66. - Fix Python 3.2 compatibility issue with noatime open() (#164)
  67. - Include missing pyx files in dist files (#168)
  68. Version 0.14
  69. ------------
  70. (feature release, released on Dec 17, 2014)
  71. - Added support for stripping leading path segments (#95)
  72. "attic extract --strip-segments X"
  73. - Add workaround for old Linux systems without acl_extended_file_no_follow (#96)
  74. - Add MacPorts' path to the default openssl search path (#101)
  75. - HashIndex improvements, eliminates unnecessary IO on low memory systems.
  76. - Fix "Number of files" output for attic info. (#124)
  77. - limit create file permissions so files aren't read while restoring
  78. - Fix issue with empty xattr values (#106)
  79. Version 0.13
  80. ------------
  81. (feature release, released on Jun 29, 2014)
  82. - Fix sporadic "Resource temporarily unavailable" when using remote repositories
  83. - Reduce file cache memory usage (#90)
  84. - Faster AES encryption (utilizing AES-NI when available)
  85. - Experimental Linux, OS X and FreeBSD ACL support (#66)
  86. - Added support for backup and restore of BSDFlags (OSX, FreeBSD) (#56)
  87. - Fix bug where xattrs on symlinks were not correctly restored
  88. - Added cachedir support. CACHEDIR.TAG compatible cache directories
  89. can now be excluded using ``--exclude-caches`` (#74)
  90. - Fix crash on extreme mtime timestamps (year 2400+) (#81)
  91. - Fix Python 3.2 specific lockf issue (EDEADLK)
  92. Version 0.12
  93. ------------
  94. (feature release, released on April 7, 2014)
  95. - Python 3.4 support (#62)
  96. - Various documentation improvements a new style
  97. - ``attic mount`` now supports mounting an entire repository not only
  98. individual archives (#59)
  99. - Added option to restrict remote repository access to specific path(s):
  100. ``attic serve --restrict-to-path X`` (#51)
  101. - Include "all archives" size information in "--stats" output. (#54)
  102. - Added ``--stats`` option to ``attic delete`` and ``attic prune``
  103. - Fixed bug where ``attic prune`` used UTC instead of the local time zone
  104. when determining which archives to keep.
  105. - Switch to SI units (Power of 1000 instead 1024) when printing file sizes
  106. Version 0.11
  107. ------------
  108. (feature release, released on March 7, 2014)
  109. - New "check" command for repository consistency checking (#24)
  110. - Documentation improvements
  111. - Fix exception during "attic create" with repeated files (#39)
  112. - New "--exclude-from" option for attic create/extract/verify.
  113. - Improved archive metadata deduplication.
  114. - "attic verify" has been deprecated. Use "attic extract --dry-run" instead.
  115. - "attic prune --hourly|daily|..." has been deprecated.
  116. Use "attic prune --keep-hourly|daily|..." instead.
  117. - Ignore xattr errors during "extract" if not supported by the filesystem. (#46)
  118. Version 0.10
  119. ------------
  120. (bugfix release, released on Jan 30, 2014)
  121. - Fix deadlock when extracting 0 sized files from remote repositories
  122. - "--exclude" wildcard patterns are now properly applied to the full path
  123. not just the file name part (#5).
  124. - Make source code endianness agnostic (#1)
  125. Version 0.9
  126. -----------
  127. (feature release, released on Jan 23, 2014)
  128. - Remote repository speed and reliability improvements.
  129. - Fix sorting of segment names to ignore NFS left over files. (#17)
  130. - Fix incorrect display of time (#13)
  131. - Improved error handling / reporting. (#12)
  132. - Use fcntl() instead of flock() when locking repository/cache. (#15)
  133. - Let ssh figure out port/user if not specified so we don't override .ssh/config (#9)
  134. - Improved libcrypto path detection (#23).
  135. Version 0.8.1
  136. -------------
  137. (bugfix release, released on Oct 4, 2013)
  138. - Fix segmentation fault issue.
  139. Version 0.8
  140. -----------
  141. (feature release, released on Oct 3, 2013)
  142. - Fix xattr issue when backing up sshfs filesystems (#4)
  143. - Fix issue with excessive index file size (#6)
  144. - Support access of read only repositories.
  145. - New syntax to enable repository encryption:
  146. attic init --encryption="none|passphrase|keyfile".
  147. - Detect and abort if repository is older than the cache.
  148. Version 0.7
  149. -----------
  150. (feature release, released on Aug 5, 2013)
  151. - Ported to FreeBSD
  152. - Improved documentation
  153. - Experimental: Archives mountable as fuse filesystems.
  154. - The "user." prefix is no longer stripped from xattrs on Linux
  155. Version 0.6.1
  156. -------------
  157. (bugfix release, released on July 19, 2013)
  158. - Fixed an issue where mtime was not always correctly restored.
  159. Version 0.6
  160. -----------
  161. First public release on July 9, 2013