changes.rst 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  1. .. _important_notes:
  2. Important notes
  3. ===============
  4. This section provides information about security and corruption issues.
  5. .. _tam_vuln:
  6. Pre-1.0.9 manifest spoofing vulnerability (CVE-2016-10099)
  7. ----------------------------------------------------------
  8. A flaw in the cryptographic authentication scheme in Borg allowed an attacker
  9. to spoof the manifest. The attack requires an attacker to be able to
  10. 1. insert files (with no additional headers) into backups
  11. 2. gain write access to the repository
  12. This vulnerability does not disclose plaintext to the attacker, nor does it
  13. affect the authenticity of existing archives.
  14. The vulnerability allows an attacker to create a spoofed manifest (the list of archives).
  15. Creating plausible fake archives may be feasible for small archives, but is unlikely
  16. for large archives.
  17. The fix adds a separate authentication tag to the manifest. For compatibility
  18. with prior versions this authentication tag is *not* required by default
  19. for existing repositories. Repositories created with 1.0.9 and later require it.
  20. Steps you should take:
  21. 1. Upgrade all clients to 1.0.9 or later.
  22. 2. Run ``borg upgrade --tam <repository>`` *on every client* for *each* repository.
  23. 3. This will list all archives, including archive IDs, for easy comparison with your logs.
  24. 4. Done.
  25. Prior versions can access and modify repositories with this measure enabled, however,
  26. to 1.0.9 or later their modifications are indiscernible from an attack and will
  27. raise an error until the below procedure is followed. We are aware that this can
  28. be be annoying in some circumstances, but don't see a way to fix the vulnerability
  29. otherwise.
  30. In case a version prior to 1.0.9 is used to modify a repository where above procedure
  31. was completed, and now you get an error message from other clients:
  32. 1. ``borg upgrade --tam --force <repository>`` once with *any* client suffices.
  33. This attack is mitigated by:
  34. - Noting/logging ``borg list``, ``borg info``, or ``borg create --stats``, which
  35. contain the archive IDs.
  36. We are not aware of others having discovered, disclosed or exploited this vulnerability.
  37. Vulnerability time line:
  38. * 2016-11-14: Vulnerability and fix discovered during review of cryptography by Marian Beermann (@enkore)
  39. * 2016-11-20: First patch
  40. * 2016-12-20: Released fixed version 1.0.9
  41. * 2017-01-02: CVE was assigned
  42. * 2017-01-15: Released fixed version 1.1.0b3 (fix was previously only available from source)
  43. .. _attic013_check_corruption:
  44. Pre-1.0.9 potential data loss
  45. -----------------------------
  46. If you have archives in your repository that were made with attic <= 0.13
  47. (and later migrated to borg), running borg check would report errors in these
  48. archives. See issue #1837.
  49. The reason for this is a invalid (and useless) metadata key that was
  50. always added due to a bug in these old attic versions.
  51. If you run borg check --repair, things escalate quickly: all archive items
  52. with invalid metadata will be killed. Due to that attic bug, that means all
  53. items in all archives made with these old attic versions.
  54. Pre-1.0.4 potential repo corruption
  55. -----------------------------------
  56. Some external errors (like network or disk I/O errors) could lead to
  57. corruption of the backup repository due to issue #1138.
  58. A sign that this happened is if "E" status was reported for a file that can
  59. not be explained by problems with the source file. If you still have logs from
  60. "borg create -v --list", you can check for "E" status.
  61. Here is what could cause corruption and what you can do now:
  62. 1) I/O errors (e.g. repo disk errors) while writing data to repo.
  63. This could lead to corrupted segment files.
  64. Fix::
  65. # check for corrupt chunks / segments:
  66. borg check -v --repository-only REPO
  67. # repair the repo:
  68. borg check -v --repository-only --repair REPO
  69. # make sure everything is fixed:
  70. borg check -v --repository-only REPO
  71. 2) Unreliable network / unreliable connection to the repo.
  72. This could lead to archive metadata corruption.
  73. Fix::
  74. # check for corrupt archives:
  75. borg check -v --archives-only REPO
  76. # delete the corrupt archives:
  77. borg delete --force REPO::CORRUPT_ARCHIVE
  78. # make sure everything is fixed:
  79. borg check -v --archives-only REPO
  80. 3) In case you want to do more intensive checking.
  81. The best check that everything is ok is to run a dry-run extraction::
  82. borg extract -v --dry-run REPO::ARCHIVE
  83. .. _changelog:
  84. Changelog
  85. =========
  86. Version 1.1.0rc4 (2017-10-01)
  87. -----------------------------
  88. Compatibility notes:
  89. - A borg server >= 1.1.0rc4 does not support borg clients 1.1.0b3-b5. #3033
  90. - The files cache is now controlled differently and has a new default mode:
  91. - the files cache now uses ctime by default for improved file change
  92. detection safety. You can still use mtime for more speed and less safety.
  93. - --ignore-inode is deprecated (use --files-cache=... without "inode")
  94. - --no-files-cache is deprecated (use --files-cache=disabled)
  95. New features:
  96. - --files-cache - implement files cache mode control, #911
  97. You can now control the files cache mode using this option:
  98. --files-cache={ctime,mtime,size,inode,rechunk,disabled}
  99. (only some combinations are supported). See the docs for details.
  100. Fixes:
  101. - remote progress/logging: deal with partial lines, #2637
  102. - remote progress: flush json mode output
  103. - fix subprocess environments, #3050 (and more)
  104. Other changes:
  105. - remove client_supports_log_v3 flag, #3033
  106. - exclude broken Cython 0.27(.0) in requirements, #3066
  107. - vagrant:
  108. - upgrade to FUSE for macOS 3.7.1
  109. - use Python 3.5.4 to build the binaries
  110. - docs:
  111. - security: change-passphrase only changes the passphrase, #2990
  112. - fixed/improved borg create --compression examples, #3034
  113. - add note about metadata dedup and --no[ac]time, #2518
  114. - twitter account @borgbackup now, better visible, #2948
  115. - simplified rate limiting wrapper in FAQ
  116. Version 1.1.0rc3 (2017-09-10)
  117. -----------------------------
  118. New features:
  119. - delete: support naming multiple archives, #2958
  120. Fixes:
  121. - repo cleanup/write: invalidate cached FDs, #2982
  122. - fix datetime.isoformat() microseconds issues, #2994
  123. - recover_segment: use mmap(), lower memory needs, #2987
  124. Other changes:
  125. - with-lock: close segment file before invoking subprocess
  126. - keymanager: don't depend on optional readline module, #2976
  127. - docs:
  128. - fix macOS keychain integration command
  129. - show/link new screencasts in README, #2936
  130. - document utf-8 locale requirement for json mode, #2273
  131. - vagrant: clean up shell profile init, user name, #2977
  132. - test_detect_attic_repo: don't test mount, #2975
  133. - add debug logging for repository cleanup
  134. Version 1.1.0rc2 (2017-08-28)
  135. -----------------------------
  136. Compatibility notes:
  137. - list: corrected mix-up of "isomtime" and "mtime" formats. Previously,
  138. "isomtime" was the default but produced a verbose human format,
  139. while "mtime" produced a ISO-8601-like format.
  140. The behaviours have been swapped (so "mtime" is human, "isomtime" is ISO-like),
  141. and the default is now "mtime".
  142. "isomtime" is now a real ISO-8601 format ("T" between date and time, not a space).
  143. New features:
  144. - None.
  145. Fixes:
  146. - list: fix weird mixup of mtime/isomtime
  147. - create --timestamp: set start time, #2957
  148. - ignore corrupt files cache, #2939
  149. - migrate locks to child PID when daemonize is used
  150. - fix exitcode of borg serve, #2910
  151. - only compare contents when chunker params match, #2899
  152. - umount: try fusermount, then try umount, #2863
  153. Other changes:
  154. - JSON: use a more standard ISO 8601 datetime format, #2376
  155. - cache: write_archive_index: truncate_and_unlink on error, #2628
  156. - detect non-upgraded Attic repositories, #1933
  157. - delete various nogil and threading related lines
  158. - coala / pylint related improvements
  159. - docs:
  160. - renew asciinema/screencasts, #669
  161. - create: document exclusion through nodump, #2949
  162. - minor formatting fixes
  163. - tar: tarpipe example
  164. - improve "with-lock" and "info" docs, #2869
  165. - detail how to use macOS/GNOME/KDE keyrings for repo passwords, #392
  166. - travis: only short-circuit docs-only changes for pull requests
  167. - vagrant:
  168. - netbsd: bash is already installed
  169. - fix netbsd version in PKG_PATH
  170. - add exe location to PATH when we build an exe
  171. Version 1.1.0rc1 (2017-07-24)
  172. -----------------------------
  173. Compatibility notes:
  174. - delete: removed short option for --cache-only
  175. New features:
  176. - support borg list repo --format {comment} {bcomment} {end}, #2081
  177. - key import: allow reading from stdin, #2760
  178. Fixes:
  179. - with-lock: avoid creating segment files that might be overwritten later, #1867
  180. - prune: fix checkpoints processing with --glob-archives
  181. - FUSE: versions view: keep original file extension at end, #2769
  182. - fix --last, --first: do not accept values <= 0,
  183. fix reversed archive ordering with --last
  184. - include testsuite data (attic.tar.gz) when installing the package
  185. - use limited unpacker for outer key, for manifest (both security precautions),
  186. #2174 #2175
  187. - fix bashism in shell scripts, #2820, #2816
  188. - cleanup endianness detection, create _endian.h,
  189. fixes build on alpine linux, #2809
  190. - fix crash with --no-cache-sync (give known chunk size to chunk_incref), #2853
  191. Other changes:
  192. - FUSE: versions view: linear numbering by archive time
  193. - split up interval parsing from filtering for --keep-within, #2610
  194. - add a basic .editorconfig, #2734
  195. - use archive creation time as mtime for FUSE mount, #2834
  196. - upgrade FUSE for macOS (osxfuse) from 3.5.8 to 3.6.3, #2706
  197. - hashindex: speed up by replacing modulo with "if" to check for wraparound
  198. - coala checker / pylint: fixed requirements and .coafile, more ignores
  199. - borg upgrade: name backup directories as 'before-upgrade', #2811
  200. - add .mailmap
  201. - some minor changes suggested by lgtm.com
  202. - docs:
  203. - better explanation of the --ignore-inode option relevance, #2800
  204. - fix openSUSE command and add openSUSE section
  205. - simplify ssh authorized_keys file using "restrict", add legacy note, #2121
  206. - mount: show usage of archive filters
  207. - mount: add repository example, #2462
  208. - info: update and add examples, #2765
  209. - prune: include example
  210. - improved style / formatting
  211. - improved/fixed segments_per_dir docs
  212. - recreate: fix wrong "remove unwanted files" example
  213. - reference list of status chars in borg recreate --filter description
  214. - update source-install docs about doc build dependencies, #2795
  215. - cleanup installation docs
  216. - file system requirements, update segs per dir
  217. - fix checkpoints/parts reference in FAQ, #2859
  218. - code:
  219. - hashindex: don't pass side effect into macro
  220. - crypto low_level: don't mutate local bytes()
  221. - use dash_open function to open file or "-" for stdin/stdout
  222. - archiver: argparse cleanup / refactoring
  223. - shellpattern: add match_end arg
  224. - tests: added some additional unit tests, some fixes, #2700 #2710
  225. - vagrant: fix setup of cygwin, add Debian 9 "stretch"
  226. - travis: don't perform full travis build on docs-only changes, #2531
  227. Version 1.1.0b6 (2017-06-18)
  228. ----------------------------
  229. Compatibility notes:
  230. - Running "borg init" via a "borg serve --append-only" server will *not* create
  231. an append-only repository anymore. Use "borg init --append-only" to initialize
  232. an append-only repository.
  233. - Repositories in the "repokey" and "repokey-blake2" modes with an empty passphrase
  234. are now treated as unencrypted repositories for security checks (e.g.
  235. BORG_UNKNOWN_UNENCRYPTED_REPO_ACCESS_IS_OK).
  236. Previously there would be no prompts nor messages if an unknown repository
  237. in one of these modes with an empty passphrase was encountered. This would
  238. allow an attacker to swap a repository, if one assumed that the lack of
  239. password prompts was due to a set BORG_PASSPHRASE.
  240. Since the "trick" does not work if BORG_PASSPHRASE is set, this does generally
  241. not affect scripts.
  242. - Repositories in the "authenticated" mode are now treated as the unencrypted
  243. repositories they are.
  244. - The client-side temporary repository cache now holds unencrypted data for better speed.
  245. - borg init: removed the short form of --append-only (-a).
  246. - borg upgrade: removed the short form of --inplace (-i).
  247. New features:
  248. - reimplemented the RepositoryCache, size-limited caching of decrypted repo
  249. contents, integrity checked via xxh64. #2515
  250. - reduced space usage of chunks.archive.d. Existing caches are migrated during
  251. a cache sync. #235 #2638
  252. - integrity checking using xxh64 for important files used by borg, #1101:
  253. - repository: index and hints files
  254. - cache: chunks and files caches, chunks.archive.d
  255. - improve cache sync speed, #1729
  256. - create: new --no-cache-sync option
  257. - add repository mandatory feature flags infrastructure, #1806
  258. - Verify most operations against SecurityManager. Location, manifest timestamp
  259. and key types are now checked for almost all non-debug commands. #2487
  260. - implement storage quotas, #2517
  261. - serve: add --restrict-to-repository, #2589
  262. - BORG_PASSCOMMAND: use external tool providing the key passphrase, #2573
  263. - borg export-tar, #2519
  264. - list: --json-lines instead of --json for archive contents, #2439
  265. - add --debug-profile option (and also "borg debug convert-profile"), #2473
  266. - implement --glob-archives/-a, #2448
  267. - normalize authenticated key modes for better naming consistency:
  268. - rename "authenticated" to "authenticated-blake2" (uses blake2b)
  269. - implement "authenticated" mode (uses hmac-sha256)
  270. Fixes:
  271. - hashindex: read/write indices >2 GiB on 32bit systems, better error
  272. reporting, #2496
  273. - repository URLs: implement IPv6 address support and also more informative
  274. error message when parsing fails.
  275. - mount: check whether llfuse is installed before asking for passphrase, #2540
  276. - mount: do pre-mount checks before opening repository, #2541
  277. - FUSE:
  278. - fix crash if empty (None) xattr is read, #2534
  279. - fix read(2) caching data in metadata cache
  280. - fix negative uid/gid crash (fix crash when mounting archives
  281. of external drives made on cygwin), #2674
  282. - redo ItemCache, on top of object cache
  283. - use decrypted cache
  284. - remove unnecessary normpaths
  285. - serve: ignore --append-only when initializing a repository (borg init), #2501
  286. - serve: fix incorrect type of exception_short for Errors, #2513
  287. - fix --exclude and --exclude-from recursing into directories, #2469
  288. - init: don't allow creating nested repositories, #2563
  289. - --json: fix encryption[mode] not being the cmdline name
  290. - remote: propagate Error.traceback correctly
  291. - fix remote logging and progress, #2241
  292. - implement --debug-topic for remote servers
  293. - remote: restore "Remote:" prefix (as used in 1.0.x)
  294. - rpc negotiate: enable v3 log protocol only for supported clients
  295. - fix --progress and logging in general for remote
  296. - fix parse_version, add tests, #2556
  297. - repository: truncate segments (and also some other files) before unlinking, #2557
  298. - recreate: keep timestamps as in original archive, #2384
  299. - recreate: if single archive is not processed, exit 2
  300. - patterns: don't recurse with ! / --exclude for pf:, #2509
  301. - cache sync: fix n^2 behaviour in lookup_name
  302. - extract: don't write to disk with --stdout (affected non-regular-file items), #2645
  303. - hashindex: implement KeyError, more tests
  304. Other changes:
  305. - remote: show path in PathNotAllowed
  306. - consider repokey w/o passphrase == unencrypted, #2169
  307. - consider authenticated mode == unencrypted, #2503
  308. - restrict key file names, #2560
  309. - document follow_symlinks requirements, check libc, use stat and chown
  310. with follow_symlinks=False, #2507
  311. - support common options on the main command, #2508
  312. - support common options on mid-level commands (e.g. borg *key* export)
  313. - make --progress a common option
  314. - increase DEFAULT_SEGMENTS_PER_DIR to 1000
  315. - chunker: fix invalid use of types (function only used by tests)
  316. - chunker: don't do uint32_t >> 32
  317. - FUSE:
  318. - add instrumentation (--debug and SIGUSR1/SIGINFO)
  319. - reduced memory usage for repository mounts by lazily instantiating archives
  320. - improved archive load times
  321. - info: use CacheSynchronizer & HashIndex.stats_against (better performance)
  322. - docs:
  323. - init: document --encryption as required
  324. - security: OpenSSL usage
  325. - security: used implementations; note python libraries
  326. - security: security track record of OpenSSL and msgpack
  327. - patterns: document denial of service (regex, wildcards)
  328. - init: note possible denial of service with "none" mode
  329. - init: document SHA extension is supported in OpenSSL and thus SHA is
  330. faster on AMD Ryzen than blake2b.
  331. - book: use A4 format, new builder option format.
  332. - book: create appendices
  333. - data structures: explain repository compaction
  334. - data structures: add chunk layout diagram
  335. - data structures: integrity checking
  336. - data structures: demingle cache and repo index
  337. - Attic FAQ: separate section for attic stuff
  338. - FAQ: I get an IntegrityError or similar - what now?
  339. - FAQ: Can I use Borg on SMR hard drives?, #2252
  340. - FAQ: specify "using inline shell scripts"
  341. - add systemd warning regarding placeholders, #2543
  342. - xattr: document API
  343. - add docs/misc/borg-data-flow data flow chart
  344. - debugging facilities
  345. - README: how to help the project, #2550
  346. - README: add bountysource badge, #2558
  347. - fresh new theme + tweaking
  348. - logo: vectorized (PDF and SVG) versions
  349. - frontends: use headlines - you can link to them
  350. - mark --pattern, --patterns-from as experimental
  351. - highlight experimental features in online docs
  352. - remove regex based pattern examples, #2458
  353. - nanorst for "borg help TOPIC" and --help
  354. - split deployment
  355. - deployment: hosting repositories
  356. - deployment: automated backups to a local hard drive
  357. - development: vagrant, windows10 requirements
  358. - development: update docs remarks
  359. - split usage docs, #2627
  360. - usage: avoid bash highlight, [options] instead of <options>
  361. - usage: add benchmark page
  362. - helpers: truncate_and_unlink doc
  363. - don't suggest to leak BORG_PASSPHRASE
  364. - internals: columnize rather long ToC [webkit fixup]
  365. internals: manifest & feature flags
  366. - internals: more HashIndex details
  367. - internals: fix ASCII art equations
  368. - internals: edited obj graph related sections a bit
  369. - internals: layers image + description
  370. - fix way too small figures in pdf
  371. - index: disable syntax highlight (bash)
  372. - improve options formatting, fix accidental block quotes
  373. - testing / checking:
  374. - add support for using coala, #1366
  375. - testsuite: add ArchiverCorruptionTestCase
  376. - do not test logger name, #2504
  377. - call setup_logging after destroying logging config
  378. - testsuite.archiver: normalise pytest.raises vs. assert_raises
  379. - add test for preserved intermediate folder permissions, #2477
  380. - key: add round-trip test
  381. - remove attic dependency of the tests, #2505
  382. - enable remote tests on cygwin
  383. - tests: suppress tar's future timestamp warning
  384. - cache sync: add more refcount tests
  385. - repository: add tests, including corruption tests
  386. - vagrant:
  387. - control VM cpus and pytest workers via env vars VMCPUS and XDISTN
  388. - update cleaning workdir
  389. - fix openbsd shell
  390. - add OpenIndiana
  391. - packaging:
  392. - binaries: don't bundle libssl
  393. - setup.py clean to remove compiled files
  394. - fail in borg package if version metadata is very broken (setuptools_scm)
  395. - repo / code structure:
  396. - create borg.algorithms and borg.crypto packages
  397. - algorithms: rename crc32 to checksums
  398. - move patterns to module, #2469
  399. - gitignore: complete paths for src/ excludes
  400. - cache: extract CacheConfig class
  401. - implement IntegrityCheckedFile + Detached variant, #2502 #1688
  402. - introduce popen_with_error_handling to handle common user errors
  403. Version 1.1.0b5 (2017-04-30)
  404. ----------------------------
  405. Compatibility notes:
  406. - BORG_HOSTNAME_IS_UNIQUE is now on by default.
  407. - removed --compression-from feature
  408. - recreate: add --recompress flag, unify --always-recompress and
  409. --recompress
  410. Fixes:
  411. - catch exception for os.link when hardlinks are not supported, #2405
  412. - borg rename / recreate: expand placeholders, #2386
  413. - generic support for hardlinks (files, devices, FIFOs), #2324
  414. - extract: also create parent dir for device files, if needed, #2358
  415. - extract: if a hardlink master is not in the to-be-extracted subset,
  416. the "x" status was not displayed for it, #2351
  417. - embrace y2038 issue to support 32bit platforms: clamp timestamps to int32,
  418. #2347
  419. - verify_data: fix IntegrityError handling for defect chunks, #2442
  420. - allow excluding parent and including child, #2314
  421. Other changes:
  422. - refactor compression decision stuff
  423. - change global compression default to lz4 as well, to be consistent
  424. with --compression defaults.
  425. - placeholders: deny access to internals and other unspecified stuff
  426. - clearer error message for unrecognized placeholder
  427. - more clear exception if borg check does not help, #2427
  428. - vagrant: upgrade FUSE for macOS to 3.5.8, #2346
  429. - linux binary builds: get rid of glibc 2.13 dependency, #2430
  430. - docs:
  431. - placeholders: document escaping
  432. - serve: env vars in original commands are ignored
  433. - tell what kind of hardlinks we support
  434. - more docs about compression
  435. - LICENSE: use canonical formulation
  436. ("copyright holders and contributors" instead of "author")
  437. - document borg init behaviour via append-only borg serve, #2440
  438. - be clear about what buzhash is used for, #2390
  439. - add hint about chunker params, #2421
  440. - clarify borg upgrade docs, #2436
  441. - FAQ to explain warning when running borg check --repair, #2341
  442. - repository file system requirements, #2080
  443. - pre-install considerations
  444. - misc. formatting / crossref fixes
  445. - tests:
  446. - enhance travis setuptools_scm situation
  447. - add extra test for the hashindex
  448. - fix invalid param issue in benchmarks
  449. These belong to 1.1.0b4 release, but did not make it into changelog by then:
  450. - vagrant: increase memory for parallel testing
  451. - lz4 compress: lower max. buffer size, exception handling
  452. - add docstring to do_benchmark_crud
  453. - patterns help: mention path full-match in intro
  454. Version 1.1.0b4 (2017-03-27)
  455. ----------------------------
  456. Compatibility notes:
  457. - init: the --encryption argument is mandatory now (there are several choices)
  458. - moved "borg migrate-to-repokey" to "borg key migrate-to-repokey".
  459. - "borg change-passphrase" is deprecated, use "borg key change-passphrase"
  460. instead.
  461. - the --exclude-if-present option now supports tagging a folder with any
  462. filesystem object type (file, folder, etc), instead of expecting only files
  463. as tags, #1999
  464. - the --keep-tag-files option has been deprecated in favor of the new
  465. --keep-exclude-tags, to account for the change mentioned above.
  466. - use lz4 compression by default, #2179
  467. New features:
  468. - JSON API to make developing frontends and automation easier
  469. (see :ref:`json_output`)
  470. - add JSON output to commands: `borg create/list/info --json ...`.
  471. - add --log-json option for structured logging output.
  472. - add JSON progress information, JSON support for confirmations (yes()).
  473. - add two new options --pattern and --patterns-from as discussed in #1406
  474. - new path full match pattern style (pf:) for very fast matching, #2334
  475. - add 'debug dump-manifest' and 'debug dump-archive' commands
  476. - add 'borg benchmark crud' command, #1788
  477. - new 'borg delete --force --force' to delete severely corrupted archives, #1975
  478. - info: show utilization of maximum archive size, #1452
  479. - list: add dsize and dcsize keys, #2164
  480. - paperkey.html: Add interactive html template for printing key backups.
  481. - key export: add qr html export mode
  482. - securely erase config file (which might have old encryption key), #2257
  483. - archived file items: add size to metadata, 'borg extract' and 'borg check' do
  484. check the file size for consistency, FUSE uses precomputed size from Item.
  485. Fixes:
  486. - fix remote speed regression introduced in 1.1.0b3, #2185
  487. - fix regression handling timestamps beyond 2262 (revert bigint removal),
  488. introduced in 1.1.0b3, #2321
  489. - clamp (nano)second values to unproblematic range, #2304
  490. - hashindex: rebuild hashtable if we have too little empty buckets
  491. (performance fix), #2246
  492. - Location regex: fix bad parsing of wrong syntax
  493. - ignore posix_fadvise errors in repository.py, #2095
  494. - borg rpc: use limited msgpack.Unpacker (security precaution), #2139
  495. - Manifest: Make sure manifest timestamp is strictly monotonically increasing.
  496. - create: handle BackupOSError on a per-path level in one spot
  497. - create: clarify -x option / meaning of "same filesystem"
  498. - create: don't create hard link refs to failed files
  499. - archive check: detect and fix missing all-zero replacement chunks, #2180
  500. - files cache: update inode number when --ignore-inode is used, #2226
  501. - fix decompression exceptions crashing ``check --verify-data`` and others
  502. instead of reporting integrity error, #2224 #2221
  503. - extract: warning for unextracted big extended attributes, #2258, #2161
  504. - mount: umount on SIGINT/^C when in foreground
  505. - mount: handle invalid hard link refs
  506. - mount: fix huge RAM consumption when mounting a repository (saves number of
  507. archives * 8 MiB), #2308
  508. - hashindex: detect mingw byte order #2073
  509. - hashindex: fix wrong skip_hint on hashindex_set when encountering tombstones,
  510. the regression was introduced in #1748
  511. - fix ChunkIndex.__contains__ assertion for big-endian archs
  512. - fix borg key/debug/benchmark crashing without subcommand, #2240
  513. - Location: accept //servername/share/path
  514. - correct/refactor calculation of unique/non-unique chunks
  515. - extract: fix missing call to ProgressIndicator.finish
  516. - prune: fix error msg, it is --keep-within, not --within
  517. - fix "auto" compression mode bug (not compressing), #2331
  518. - fix symlink item fs size computation, #2344
  519. Other changes:
  520. - remote repository: improved async exception processing, #2255 #2225
  521. - with --compression auto,C, only use C if lz4 achieves at least 3% compression
  522. - PatternMatcher: only normalize path once, #2338
  523. - hashindex: separate endian-dependent defs from endian detection
  524. - migrate-to-repokey: ask using canonical_path() as we do everywhere else.
  525. - SyncFile: fix use of fd object after close
  526. - make LoggedIO.close_segment reentrant
  527. - creating a new segment: use "xb" mode, #2099
  528. - redo key_creator, key_factory, centralise key knowledge, #2272
  529. - add return code functions, #2199
  530. - list: only load cache if needed
  531. - list: files->items, clarifications
  532. - list: add "name" key for consistency with info cmd
  533. - ArchiveFormatter: add "start" key for compatibility with "info"
  534. - RemoteRepository: account rx/tx bytes
  535. - setup.py build_usage/build_man/build_api fixes
  536. - Manifest.in: simplify, exclude .so, .dll and .orig, #2066
  537. - FUSE: get rid of chunk accounting, st_blocks = ceil(size / blocksize).
  538. - tests:
  539. - help python development by testing 3.6-dev
  540. - test for borg delete --force
  541. - vagrant:
  542. - freebsd: some fixes, #2067
  543. - darwin64: use osxfuse 3.5.4 for tests / to build binaries
  544. - darwin64: improve VM settings
  545. - use python 3.5.3 to build binaries, #2078
  546. - upgrade pyinstaller from 3.1.1+ to 3.2.1
  547. - pyinstaller: use fixed AND freshly compiled bootloader, #2002
  548. - pyinstaller: automatically builds bootloader if missing
  549. - docs:
  550. - create really nice man pages
  551. - faq: mention --remote-ratelimit in bandwidth limit question
  552. - fix caskroom link, #2299
  553. - docs/security: reiterate that RPC in Borg does no networking
  554. - docs/security: counter tracking, #2266
  555. - docs/development: update merge remarks
  556. - address SSH batch mode in docs, #2202 #2270
  557. - add warning about running build_usage on Python >3.4, #2123
  558. - one link per distro in the installation page
  559. - improve --exclude-if-present and --keep-exclude-tags, #2268
  560. - improve automated backup script in doc, #2214
  561. - improve remote-path description
  562. - update docs for create -C default change (lz4)
  563. - document relative path usage, #1868
  564. - document snapshot usage, #2178
  565. - corrected some stuff in internals+security
  566. - internals: move toctree to after the introduction text
  567. - clarify metadata kind, manifest ops
  568. - key enc: correct / clarify some stuff, link to internals/security
  569. - datas: enc: 1.1.x mas different MACs
  570. - datas: enc: correct factual error -- no nonce involved there.
  571. - make internals.rst an index page and edit it a bit
  572. - add "Cryptography in Borg" and "Remote RPC protocol security" sections
  573. - document BORG_HOSTNAME_IS_UNIQUE, #2087
  574. - FAQ by categories as proposed by @anarcat in #1802
  575. - FAQ: update Which file types, attributes, etc. are *not* preserved?
  576. - development: new branching model for git repository
  577. - development: define "ours" merge strategy for auto-generated files
  578. - create: move --exclude note to main doc
  579. - create: move item flags to main doc
  580. - fix examples using borg init without -e/--encryption
  581. - list: don't print key listings in fat (html + man)
  582. - remove Python API docs (were very incomplete, build problems on RTFD)
  583. - added FAQ section about backing up root partition
  584. Version 1.0.10 (2017-02-13)
  585. ---------------------------
  586. Bug fixes:
  587. - Manifest timestamps are now monotonically increasing,
  588. this fixes issues when the system clock jumps backwards
  589. or is set inconsistently across computers accessing the same repository, #2115
  590. - Fixed testing regression in 1.0.10rc1 that lead to a hard dependency on
  591. py.test >= 3.0, #2112
  592. New features:
  593. - "key export" can now generate a printable HTML page with both a QR code and
  594. a human-readable "paperkey" representation (and custom text) through the
  595. ``--qr-html`` option.
  596. The same functionality is also available through `paperkey.html <paperkey.html>`_,
  597. which is the same HTML page generated by ``--qr-html``. It works with existing
  598. "key export" files and key files.
  599. Other changes:
  600. - docs:
  601. - language clarification - "borg create --one-file-system" option does not respect
  602. mount points, but considers different file systems instead, #2141
  603. - setup.py: build_api: sort file list for determinism
  604. Version 1.1.0b3 (2017-01-15)
  605. ----------------------------
  606. Compatibility notes:
  607. - borg init: removed the default of "--encryption/-e", #1979
  608. This was done so users do a informed decision about -e mode.
  609. Bug fixes:
  610. - borg recreate: don't rechunkify unless explicitly told so
  611. - borg info: fixed bug when called without arguments, #1914
  612. - borg init: fix free space check crashing if disk is full, #1821
  613. - borg debug delete/get obj: fix wrong reference to exception
  614. - fix processing of remote ~/ and ~user/ paths (regressed since 1.1.0b1), #1759
  615. - posix platform module: only build / import on non-win32 platforms, #2041
  616. New features:
  617. - new CRC32 implementations that are much faster than the zlib one used previously, #1970
  618. - add blake2b key modes (use blake2b as MAC). This links against system libb2,
  619. if possible, otherwise uses bundled code
  620. - automatically remove stale locks - set BORG_HOSTNAME_IS_UNIQUE env var
  621. to enable stale lock killing. If set, stale locks in both cache and
  622. repository are deleted. #562 #1253
  623. - borg info <repo>: print general repo information, #1680
  624. - borg check --first / --last / --sort / --prefix, #1663
  625. - borg mount --first / --last / --sort / --prefix, #1542
  626. - implement "health" item formatter key, #1749
  627. - BORG_SECURITY_DIR to remember security related infos outside the cache.
  628. Key type, location and manifest timestamp checks now survive cache
  629. deletion. This also means that you can now delete your cache and avoid
  630. previous warnings, since Borg can still tell it's safe.
  631. - implement BORG_NEW_PASSPHRASE, #1768
  632. Other changes:
  633. - borg recreate:
  634. - remove special-cased --dry-run
  635. - update --help
  636. - remove bloat: interruption blah, autocommit blah, resuming blah
  637. - re-use existing checkpoint functionality
  638. - archiver tests: add check_cache tool - lints refcounts
  639. - fixed cache sync performance regression from 1.1.0b1 onwards, #1940
  640. - syncing the cache without chunks.archive.d (see :ref:`disable_archive_chunks`)
  641. now avoids any merges and is thus faster, #1940
  642. - borg check --verify-data: faster due to linear on-disk-order scan
  643. - borg debug-xxx commands removed, we use "debug xxx" subcommands now, #1627
  644. - improve metadata handling speed
  645. - shortcut hashindex_set by having hashindex_lookup hint about address
  646. - improve / add progress displays, #1721
  647. - check for index vs. segment files object count mismatch
  648. - make RPC protocol more extensible: use named parameters.
  649. - RemoteRepository: misc. code cleanups / refactors
  650. - clarify cache/repository README file
  651. - docs:
  652. - quickstart: add a comment about other (remote) filesystems
  653. - quickstart: only give one possible ssh url syntax, all others are
  654. documented in usage chapter.
  655. - mention file://
  656. - document repo URLs / archive location
  657. - clarify borg diff help, #980
  658. - deployment: synthesize alternative --restrict-to-path example
  659. - improve cache / index docs, esp. files cache docs, #1825
  660. - document using "git merge 1.0-maint -s recursive -X rename-threshold=20%"
  661. for avoiding troubles when merging the 1.0-maint branch into master.
  662. - tests:
  663. - FUSE tests: catch ENOTSUP on freebsd
  664. - FUSE tests: test troublesome xattrs last
  665. - fix byte range error in test, #1740
  666. - use monkeypatch to set env vars, but only on pytest based tests.
  667. - point XDG_*_HOME to temp dirs for tests, #1714
  668. - remove all BORG_* env vars from the outer environment
  669. Version 1.0.10rc1 (2017-01-29)
  670. ------------------------------
  671. Bug fixes:
  672. - borg serve: fix transmission data loss of pipe writes, #1268
  673. This affects only the cygwin platform (not Linux, BSD, OS X).
  674. - Avoid triggering an ObjectiveFS bug in xattr retrieval, #1992
  675. - When running out of buffer memory when reading xattrs, only skip the
  676. current file, #1993
  677. - Fixed "borg upgrade --tam" crashing with unencrypted repositories. Since
  678. :ref:`the issue <tam_vuln>` is not relevant for unencrypted repositories,
  679. it now does nothing and prints an error, #1981.
  680. - Fixed change-passphrase crashing with unencrypted repositories, #1978
  681. - Fixed "borg check repo::archive" indicating success if "archive" does not exist, #1997
  682. - borg check: print non-exit-code warning if --last or --prefix aren't fulfilled
  683. - fix bad parsing of wrong repo location syntax
  684. - create: don't create hard link refs to failed files,
  685. mount: handle invalid hard link refs, #2092
  686. - detect mingw byte order, #2073
  687. - creating a new segment: use "xb" mode, #2099
  688. - mount: umount on SIGINT/^C when in foreground, #2082
  689. Other changes:
  690. - binary: use fixed AND freshly compiled pyinstaller bootloader, #2002
  691. - xattr: ignore empty names returned by llistxattr(2) et al
  692. - Enable the fault handler: install handlers for the SIGSEGV, SIGFPE, SIGABRT,
  693. SIGBUS and SIGILL signals to dump the Python traceback.
  694. - Also print a traceback on SIGUSR2.
  695. - borg change-passphrase: print key location (simplify making a backup of it)
  696. - officially support Python 3.6 (setup.py: add Python 3.6 qualifier)
  697. - tests:
  698. - vagrant / travis / tox: add Python 3.6 based testing
  699. - vagrant: fix openbsd repo, #2042
  700. - vagrant: fix the freebsd64 machine, #2037 #2067
  701. - vagrant: use python 3.5.3 to build binaries, #2078
  702. - vagrant: use osxfuse 3.5.4 for tests / to build binaries
  703. vagrant: improve darwin64 VM settings
  704. - travis: fix osxfuse install (fixes OS X testing on Travis CI)
  705. - travis: require succeeding OS X tests, #2028
  706. - travis: use latest pythons for OS X based testing
  707. - use pytest-xdist to parallelize testing
  708. - fix xattr test race condition, #2047
  709. - setup.cfg: fix pytest deprecation warning, #2050
  710. - docs:
  711. - language clarification - VM backup FAQ
  712. - borg create: document how to backup stdin, #2013
  713. - borg upgrade: fix incorrect title levels
  714. - add CVE numbers for issues fixed in 1.0.9, #2106
  715. - fix typos (taken from Debian package patch)
  716. - remote: include data hexdump in "unexpected RPC data" error message
  717. - remote: log SSH command line at debug level
  718. - API_VERSION: use numberspaces, #2023
  719. - remove .github from pypi package, #2051
  720. - add pip and setuptools to requirements file, #2030
  721. - SyncFile: fix use of fd object after close (cosmetic)
  722. - Manifest.in: simplify, exclude \*.{so,dll,orig}, #2066
  723. - ignore posix_fadvise errors in repository.py, #2095
  724. (works around issues with docker on ARM)
  725. - make LoggedIO.close_segment reentrant, avoid reentrance
  726. Version 1.0.9 (2016-12-20)
  727. --------------------------
  728. Security fixes:
  729. - A flaw in the cryptographic authentication scheme in Borg allowed an attacker
  730. to spoof the manifest. See :ref:`tam_vuln` above for the steps you should
  731. take.
  732. CVE-2016-10099 was assigned to this vulnerability.
  733. - borg check: When rebuilding the manifest (which should only be needed very rarely)
  734. duplicate archive names would be handled on a "first come first serve" basis, allowing
  735. an attacker to apparently replace archives.
  736. CVE-2016-10100 was assigned to this vulnerability.
  737. Bug fixes:
  738. - borg check:
  739. - rebuild manifest if it's corrupted
  740. - skip corrupted chunks during manifest rebuild
  741. - fix TypeError in integrity error handler, #1903, #1894
  742. - fix location parser for archives with @ char (regression introduced in 1.0.8), #1930
  743. - fix wrong duration/timestamps if system clock jumped during a create
  744. - fix progress display not updating if system clock jumps backwards
  745. - fix checkpoint interval being incorrect if system clock jumps
  746. Other changes:
  747. - docs:
  748. - add python3-devel as a dependency for cygwin-based installation
  749. - clarify extract is relative to current directory
  750. - FAQ: fix link to changelog
  751. - markup fixes
  752. - tests:
  753. - test_get\_(cache|keys)_dir: clean env state, #1897
  754. - get back pytest's pretty assertion failures, #1938
  755. - setup.py build_usage:
  756. - fixed build_usage not processing all commands
  757. - fixed build_usage not generating includes for debug commands
  758. Version 1.0.9rc1 (2016-11-27)
  759. -----------------------------
  760. Bug fixes:
  761. - files cache: fix determination of newest mtime in backup set (which is
  762. used in cache cleanup and led to wrong "A" [added] status for unchanged
  763. files in next backup), #1860.
  764. - borg check:
  765. - fix incorrectly reporting attic 0.13 and earlier archives as corrupt
  766. - handle repo w/o objects gracefully and also bail out early if repo is
  767. *completely* empty, #1815.
  768. - fix tox/pybuild in 1.0-maint
  769. - at xattr module import time, loggers are not initialized yet
  770. New features:
  771. - borg umount <mountpoint>
  772. exposed already existing umount code via the CLI api, so users can use it,
  773. which is more consistent than using borg to mount and fusermount -u (or
  774. umount) to un-mount, #1855.
  775. - implement borg create --noatime --noctime, fixes #1853
  776. Other changes:
  777. - docs:
  778. - display README correctly on PyPI
  779. - improve cache / index docs, esp. files cache docs, fixes #1825
  780. - different pattern matching for --exclude, #1779
  781. - datetime formatting examples for {now} placeholder, #1822
  782. - clarify passphrase mode attic repo upgrade, #1854
  783. - clarify --umask usage, #1859
  784. - clarify how to choose PR target branch
  785. - clarify prune behavior for different archive contents, #1824
  786. - fix PDF issues, add logo, fix authors, headings, TOC
  787. - move security verification to support section
  788. - fix links in standalone README (:ref: tags)
  789. - add link to security contact in README
  790. - add FAQ about security
  791. - move fork differences to FAQ
  792. - add more details about resource usage
  793. - tests: skip remote tests on cygwin, #1268
  794. - travis:
  795. - allow OS X failures until the brew cask osxfuse issue is fixed
  796. - caskroom osxfuse-beta gone, it's osxfuse now (3.5.3)
  797. - vagrant:
  798. - upgrade OSXfuse / FUSE for macOS to 3.5.3
  799. - remove llfuse from tox.ini at a central place
  800. - do not try to install llfuse on centos6
  801. - fix FUSE test for darwin, #1546
  802. - add windows virtual machine with cygwin
  803. - Vagrantfile cleanup / code deduplication
  804. Version 1.1.0b2 (2016-10-01)
  805. ----------------------------
  806. Bug fixes:
  807. - fix incorrect preservation of delete tags, leading to "object count mismatch"
  808. on borg check, #1598. This only occurred with 1.1.0b1 (not with 1.0.x) and is
  809. normally fixed by running another borg create/delete/prune.
  810. - fix broken --progress for double-cell paths (e.g. CJK), #1624
  811. - borg recreate: also catch SIGHUP
  812. - FUSE:
  813. - fix hardlinks in versions view, #1599
  814. - add parameter check to ItemCache.get to make potential failures more clear
  815. New features:
  816. - Archiver, RemoteRepository: add --remote-ratelimit (send data)
  817. - borg help compression, #1582
  818. - borg check: delete chunks with integrity errors, #1575, so they can be
  819. "repaired" immediately and maybe healed later.
  820. - archives filters concept (refactoring/unifying older code)
  821. - covers --first/--last/--prefix/--sort-by options
  822. - currently used for borg list/info/delete
  823. Other changes:
  824. - borg check --verify-data slightly tuned (use get_many())
  825. - change {utcnow} and {now} to ISO-8601 format ("T" date/time separator)
  826. - repo check: log transaction IDs, improve object count mismatch diagnostic
  827. - Vagrantfile: use TW's fresh-bootloader pyinstaller branch
  828. - fix module names in api.rst
  829. - hashindex: bump api_version
  830. Version 1.1.0b1 (2016-08-28)
  831. ----------------------------
  832. New features:
  833. - new commands:
  834. - borg recreate: re-create existing archives, #787 #686 #630 #70, also see
  835. #757, #770.
  836. - selectively remove files/dirs from old archives
  837. - re-compress data
  838. - re-chunkify data, e.g. to have upgraded Attic / Borg 0.xx archives
  839. deduplicate with Borg 1.x archives or to experiment with chunker-params.
  840. - borg diff: show differences between archives
  841. - borg with-lock: execute a command with the repository locked, #990
  842. - borg create:
  843. - Flexible compression with pattern matching on path/filename,
  844. and LZ4 heuristic for deciding compressibility, #810, #1007
  845. - visit files in inode order (better speed, esp. for large directories and rotating disks)
  846. - in-file checkpoints, #1217
  847. - increased default checkpoint interval to 30 minutes (was 5 minutes), #896
  848. - added uuid archive format tag, #1151
  849. - save mountpoint directories with --one-file-system, makes system restore easier, #1033
  850. - Linux: added support for some BSD flags, #1050
  851. - add 'x' status for excluded paths, #814
  852. - also means files excluded via UF_NODUMP, #1080
  853. - borg check:
  854. - will not produce the "Checking segments" output unless new --progress option is passed, #824.
  855. - --verify-data to verify data cryptographically on the client, #975
  856. - borg list, #751, #1179
  857. - removed {formatkeys}, see "borg list --help"
  858. - --list-format is deprecated, use --format instead
  859. - --format now also applies to listing archives, not only archive contents, #1179
  860. - now supports the usual [PATH [PATHS…]] syntax and excludes
  861. - new keys: csize, num_chunks, unique_chunks, NUL
  862. - supports guaranteed_available hashlib hashes
  863. (to avoid varying functionality depending on environment),
  864. which includes the SHA1 and SHA2 family as well as MD5
  865. - borg prune:
  866. - to better visualize the "thinning out", we now list all archives in
  867. reverse time order. rephrase and reorder help text.
  868. - implement --keep-last N via --keep-secondly N, also --keep-minutely.
  869. assuming that there is not more than 1 backup archive made in 1s,
  870. --keep-last N and --keep-secondly N are equivalent, #537
  871. - cleanup checkpoints except the latest, #1008
  872. - borg extract:
  873. - added --progress, #1449
  874. - Linux: limited support for BSD flags, #1050
  875. - borg info:
  876. - output is now more similar to borg create --stats, #977
  877. - borg mount:
  878. - provide "borgfs" wrapper for borg mount, enables usage via fstab, #743
  879. - "versions" mount option - when used with a repository mount, this gives
  880. a merged, versioned view of the files in all archives, #729
  881. - repository:
  882. - added progress information to commit/compaction phase (often takes some time when deleting/pruning), #1519
  883. - automatic recovery for some forms of repository inconsistency, #858
  884. - check free space before going forward with a commit, #1336
  885. - improved write performance (esp. for rotating media), #985
  886. - new IO code for Linux
  887. - raised default segment size to approx 512 MiB
  888. - improved compaction performance, #1041
  889. - reduced client CPU load and improved performance for remote repositories, #940
  890. - options that imply output (--show-rc, --show-version, --list, --stats,
  891. --progress) don't need -v/--info to have that output displayed, #865
  892. - add archive comments (via borg (re)create --comment), #842
  893. - borg list/prune/delete: also output archive id, #731
  894. - --show-version: shows/logs the borg version, #725
  895. - added --debug-topic for granular debug logging, #1447
  896. - use atomic file writing/updating for configuration and key files, #1377
  897. - BORG_KEY_FILE environment variable, #1001
  898. - self-testing module, #970
  899. Bug fixes:
  900. - list: fixed default output being produced if --format is given with empty parameter, #1489
  901. - create: fixed overflowing progress line with CJK and similar characters, #1051
  902. - prune: fixed crash if --prefix resulted in no matches, #1029
  903. - init: clean up partial repo if passphrase input is aborted, #850
  904. - info: quote cmdline arguments that have spaces in them
  905. - fix hardlinks failing in some cases for extracting subtrees, #761
  906. Other changes:
  907. - replace stdlib hmac with OpenSSL, zero-copy decrypt (10-15% increase in
  908. performance of hash-lists and extract).
  909. - improved chunker performance, #1021
  910. - open repository segment files in exclusive mode (fail-safe), #1134
  911. - improved error logging, #1440
  912. - Source:
  913. - pass meta-data around, #765
  914. - move some constants to new constants module
  915. - better readability and less errors with namedtuples, #823
  916. - moved source tree into src/ subdirectory, #1016
  917. - made borg.platform a package, #1113
  918. - removed dead crypto code, #1032
  919. - improved and ported parts of the test suite to py.test, #912
  920. - created data classes instead of passing dictionaries around, #981, #1158, #1161
  921. - cleaned up imports, #1112
  922. - Docs:
  923. - better help texts and sphinx reproduction of usage help:
  924. - Group options
  925. - Nicer list of options in Sphinx
  926. - Deduplicate 'Common options' (including --help)
  927. - chunker: added some insights by "Voltara", #903
  928. - clarify what "deduplicated size" means
  929. - fix / update / add package list entries
  930. - added a SaltStack usage example, #956
  931. - expanded FAQ
  932. - new contributors in AUTHORS!
  933. - Tests:
  934. - vagrant: add ubuntu/xenial 64bit - this box has still some issues
  935. - ChunkBuffer: add test for leaving partial chunk in buffer, fixes #945
  936. Version 1.0.8 (2016-10-29)
  937. --------------------------
  938. Bug fixes:
  939. - RemoteRepository: Fix busy wait in call_many, #940
  940. New features:
  941. - implement borgmajor/borgminor/borgpatch placeholders, #1694
  942. {borgversion} was already there (full version string). With the new
  943. placeholders you can now also get e.g. 1 or 1.0 or 1.0.8.
  944. Other changes:
  945. - avoid previous_location mismatch, #1741
  946. due to the changed canonicalization for relative paths in PR #1711 / #1655
  947. (implement /./ relpath hack), there would be a changed repo location warning
  948. and the user would be asked if this is ok. this would break automation and
  949. require manual intervention, which is unwanted.
  950. thus, we automatically fix the previous_location config entry, if it only
  951. changed in the expected way, but still means the same location.
  952. - docs:
  953. - deployment.rst: do not use bare variables in ansible snippet
  954. - add clarification about append-only mode, #1689
  955. - setup.py: add comment about requiring llfuse, #1726
  956. - update usage.rst / api.rst
  957. - repo url / archive location docs + typo fix
  958. - quickstart: add a comment about other (remote) filesystems
  959. - vagrant / tests:
  960. - no chown when rsyncing (fixes boxes w/o vagrant group)
  961. - fix FUSE permission issues on linux/freebsd, #1544
  962. - skip FUSE test for borg binary + fakeroot
  963. - ignore security.selinux xattrs, fixes tests on centos, #1735
  964. Version 1.0.8rc1 (2016-10-17)
  965. -----------------------------
  966. Bug fixes:
  967. - fix signal handling (SIGINT, SIGTERM, SIGHUP), #1620 #1593
  968. Fixes e.g. leftover lock files for quickly repeated signals (e.g. Ctrl-C
  969. Ctrl-C) or lost connections or systemd sending SIGHUP.
  970. - progress display: adapt formatting to narrow screens, do not crash, #1628
  971. - borg create --read-special - fix crash on broken symlink, #1584.
  972. also correctly processes broken symlinks. before this regressed to a crash
  973. (5b45385) a broken symlink would've been skipped.
  974. - process_symlink: fix missing backup_io()
  975. Fixes a chmod/chown/chgrp/unlink/rename/... crash race between getting
  976. dirents and dispatching to process_symlink.
  977. - yes(): abort on wrong answers, saying so, #1622
  978. - fixed exception borg serve raised when connection was closed before reposiory
  979. was openend. add an error message for this.
  980. - fix read-from-closed-FD issue, #1551
  981. (this seems not to get triggered in 1.0.x, but was discovered in master)
  982. - hashindex: fix iterators (always raise StopIteration when exhausted)
  983. (this seems not to get triggered in 1.0.x, but was discovered in master)
  984. - enable relative paths in ssh:// repo URLs, via /./relpath hack, #1655
  985. - allow repo paths with colons, #1705
  986. - update changed repo location immediately after acceptance, #1524
  987. - fix debug get-obj / delete-obj crash if object not found and remote repo,
  988. #1684
  989. - pyinstaller: use a spec file to build borg.exe binary, exclude osxfuse dylib
  990. on Mac OS X (avoids mismatch lib <-> driver), #1619
  991. New features:
  992. - add "borg key export" / "borg key import" commands, #1555, so users are able
  993. to backup / restore their encryption keys more easily.
  994. Supported formats are the keyfile format used by borg internally and a
  995. special "paper" format with by line checksums for printed backups. For the
  996. paper format, the import is an interactive process which checks each line as
  997. soon as it is input.
  998. - add "borg debug-refcount-obj" to determine a repo objects' referrer counts,
  999. #1352
  1000. Other changes:
  1001. - add "borg debug ..." subcommands
  1002. (borg debug-* still works, but will be removed in borg 1.1)
  1003. - setup.py: Add subcommand support to build_usage.
  1004. - remote: change exception message for unexpected RPC data format to indicate
  1005. dataflow direction.
  1006. - improved messages / error reporting:
  1007. - IntegrityError: add placeholder for message, so that the message we give
  1008. appears not only in the traceback, but also in the (short) error message,
  1009. #1572
  1010. - borg.key: include chunk id in exception msgs, #1571
  1011. - better messages for cache newer than repo, #1700
  1012. - vagrant (testing/build VMs):
  1013. - upgrade OSXfuse / FUSE for macOS to 3.5.2
  1014. - update Debian Wheezy boxes, #1686
  1015. - openbsd / netbsd: use own boxes, fixes misc rsync installation and
  1016. FUSE/llfuse related testing issues, #1695 #1696 #1670 #1671 #1728
  1017. - docs:
  1018. - add docs for "key export" and "key import" commands, #1641
  1019. - fix inconsistency in FAQ (pv-wrapper).
  1020. - fix second block in "Easy to use" section not showing on GitHub, #1576
  1021. - add bestpractices badge
  1022. - link reference docs and faq about BORG_FILES_CACHE_TTL, #1561
  1023. - improve borg info --help, explain size infos, #1532
  1024. - add release signing key / security contact to README, #1560
  1025. - add contribution guidelines for developers
  1026. - development.rst: add sphinx_rtd_theme to the sphinx install command
  1027. - adjust border color in borg.css
  1028. - add debug-info usage help file
  1029. - internals.rst: fix typos
  1030. - setup.py: fix build_usage to always process all commands
  1031. - added docs explaining multiple --restrict-to-path flags, #1602
  1032. - add more specific warning about write-access debug commands, #1587
  1033. - clarify FAQ regarding backup of virtual machines, #1672
  1034. - tests:
  1035. - work around FUSE xattr test issue with recent fakeroot
  1036. - simplify repo/hashindex tests
  1037. - travis: test FUSE-enabled borg, use trusty to have a recent FUSE
  1038. - re-enable FUSE tests for RemoteArchiver (no deadlocks any more)
  1039. - clean env for pytest based tests, #1714
  1040. - fuse_mount contextmanager: accept any options
  1041. Version 1.0.7 (2016-08-19)
  1042. --------------------------
  1043. Security fixes:
  1044. - borg serve: fix security issue with remote repository access, #1428
  1045. If you used e.g. --restrict-to-path /path/client1/ (with or without trailing
  1046. slash does not make a difference), it acted like a path prefix match using
  1047. /path/client1 (note the missing trailing slash) - the code then also allowed
  1048. working in e.g. /path/client13 or /path/client1000.
  1049. As this could accidentally lead to major security/privacy issues depending on
  1050. the paths you use, the behaviour was changed to be a strict directory match.
  1051. That means --restrict-to-path /path/client1 (with or without trailing slash
  1052. does not make a difference) now uses /path/client1/ internally (note the
  1053. trailing slash here!) for matching and allows precisely that path AND any
  1054. path below it. So, /path/client1 is allowed, /path/client1/repo1 is allowed,
  1055. but not /path/client13 or /path/client1000.
  1056. If you willingly used the undocumented (dangerous) previous behaviour, you
  1057. may need to rearrange your --restrict-to-path paths now. We are sorry if
  1058. that causes work for you, but we did not want a potentially dangerous
  1059. behaviour in the software (not even using a for-backwards-compat option).
  1060. Bug fixes:
  1061. - fixed repeated LockTimeout exceptions when borg serve tried to write into
  1062. a already write-locked repo (e.g. by a borg mount), #502 part b)
  1063. This was solved by the fix for #1220 in 1.0.7rc1 already.
  1064. - fix cosmetics + file leftover for "not a valid borg repository", #1490
  1065. - Cache: release lock if cache is invalid, #1501
  1066. - borg extract --strip-components: fix leak of preloaded chunk contents
  1067. - Repository, when a InvalidRepository exception happens:
  1068. - fix spurious, empty lock.roster
  1069. - fix repo not closed cleanly
  1070. New features:
  1071. - implement borg debug-info, fixes #1122
  1072. (just calls already existing code via cli, same output as below tracebacks)
  1073. Other changes:
  1074. - skip the O_NOATIME test on GNU Hurd, fixes #1315
  1075. (this is a very minor issue and the GNU Hurd project knows the bug)
  1076. - document using a clean repo to test / build the release
  1077. Version 1.0.7rc2 (2016-08-13)
  1078. -----------------------------
  1079. Bug fixes:
  1080. - do not write objects to repository that are bigger than the allowed size,
  1081. borg will reject reading them, #1451.
  1082. Important: if you created archives with many millions of files or
  1083. directories, please verify if you can open them successfully,
  1084. e.g. try a "borg list REPO::ARCHIVE".
  1085. - lz4 compression: dynamically enlarge the (de)compression buffer, the static
  1086. buffer was not big enough for archives with extremely many items, #1453
  1087. - larger item metadata stream chunks, raise archive item limit by 8x, #1452
  1088. - fix untracked segments made by moved DELETEs, #1442
  1089. Impact: Previously (metadata) segments could become untracked when deleting data,
  1090. these would never be cleaned up.
  1091. - extended attributes (xattrs) related fixes:
  1092. - fixed a race condition in xattrs querying that led to the entire file not
  1093. being backed up (while logging the error, exit code = 1), #1469
  1094. - fixed a race condition in xattrs querying that led to a crash, #1462
  1095. - raise OSError including the error message derived from errno, deal with
  1096. path being a integer FD
  1097. Other changes:
  1098. - print active env var override by default, #1467
  1099. - xattr module: refactor code, deduplicate, clean up
  1100. - repository: split object size check into too small and too big
  1101. - add a transaction_id assertion, so borg init on a broken (inconsistent)
  1102. filesystem does not look like a coding error in borg, but points to the
  1103. real problem.
  1104. - explain confusing TypeError caused by compat support for old servers, #1456
  1105. - add forgotten usage help file from build_usage
  1106. - refactor/unify buffer code into helpers.Buffer class, add tests
  1107. - docs:
  1108. - document archive limitation, #1452
  1109. - improve prune examples
  1110. Version 1.0.7rc1 (2016-08-05)
  1111. -----------------------------
  1112. Bug fixes:
  1113. - fix repo lock deadlocks (related to lock upgrade), #1220
  1114. - catch unpacker exceptions, resync, #1351
  1115. - fix borg break-lock ignoring BORG_REPO env var, #1324
  1116. - files cache performance fixes (fixes unnecessary re-reading/chunking/
  1117. hashing of unmodified files for some use cases):
  1118. - fix unintended file cache eviction, #1430
  1119. - implement BORG_FILES_CACHE_TTL, update FAQ, raise default TTL from 10
  1120. to 20, #1338
  1121. - FUSE:
  1122. - cache partially read data chunks (performance), #965, #966
  1123. - always create a root dir, #1125
  1124. - use an OrderedDict for helptext, making the build reproducible, #1346
  1125. - RemoteRepository init: always call close on exceptions, #1370 (cosmetic)
  1126. - ignore stdout/stderr broken pipe errors (cosmetic), #1116
  1127. New features:
  1128. - better borg versions management support (useful esp. for borg servers
  1129. wanting to offer multiple borg versions and for clients wanting to choose
  1130. a specific server borg version), #1392:
  1131. - add BORG_VERSION environment variable before executing "borg serve" via ssh
  1132. - add new placeholder {borgversion}
  1133. - substitute placeholders in --remote-path
  1134. - borg init --append-only option (makes using the more secure append-only mode
  1135. more convenient. when used remotely, this requires 1.0.7+ also on the borg
  1136. server), #1291.
  1137. Other changes:
  1138. - Vagrantfile:
  1139. - darwin64: upgrade to FUSE for macOS 3.4.1 (aka osxfuse), #1378
  1140. - xenial64: use user "ubuntu", not "vagrant" (as usual), #1331
  1141. - tests:
  1142. - fix FUSE tests on OS X, #1433
  1143. - docs:
  1144. - FAQ: add backup using stable filesystem names recommendation
  1145. - FAQ about glibc compatibility added, #491, glibc-check improved
  1146. - FAQ: 'A' unchanged file; remove ambiguous entry age sentence.
  1147. - OS X: install pkg-config to build with FUSE support, fixes #1400
  1148. - add notes about shell/sudo pitfalls with env. vars, #1380
  1149. - added platform feature matrix
  1150. - implement borg debug-dump-repo-objs
  1151. Version 1.0.6 (2016-07-12)
  1152. --------------------------
  1153. Bug fixes:
  1154. - Linux: handle multiple LD_PRELOAD entries correctly, #1314, #1111
  1155. - Fix crash with unclear message if the libc is not found, #1314, #1111
  1156. Other changes:
  1157. - tests:
  1158. - Fixed O_NOATIME tests for Solaris and GNU Hurd, #1315
  1159. - Fixed sparse file tests for (file) systems not supporting it, #1310
  1160. - docs:
  1161. - Fixed syntax highlighting, #1313
  1162. - misc docs: added data processing overview picture
  1163. Version 1.0.6rc1 (2016-07-10)
  1164. -----------------------------
  1165. New features:
  1166. - borg check --repair: heal damaged files if missing chunks re-appear (e.g. if
  1167. the previously missing chunk was added again in a later backup archive),
  1168. #148. (*) Also improved logging.
  1169. Bug fixes:
  1170. - sync_dir: silence fsync() failing with EINVAL, #1287
  1171. Some network filesystems (like smbfs) don't support this and we use this in
  1172. repository code.
  1173. - borg mount (FUSE):
  1174. - fix directories being shadowed when contained paths were also specified,
  1175. #1295
  1176. - raise I/O Error (EIO) on damaged files (unless -o allow_damaged_files is
  1177. used), #1302. (*)
  1178. - borg extract: warn if a damaged file is extracted, #1299. (*)
  1179. - Added some missing return code checks (ChunkIndex._add, hashindex_resize).
  1180. - borg check: fix/optimize initial hash table size, avoids resize of the table.
  1181. Other changes:
  1182. - tests:
  1183. - add more FUSE tests, #1284
  1184. - deduplicate FUSE (u)mount code
  1185. - fix borg binary test issues, #862
  1186. - docs:
  1187. - changelog: added release dates to older borg releases
  1188. - fix some sphinx (docs generator) warnings, #881
  1189. Notes:
  1190. (*) Some features depend on information (chunks_healthy list) added to item
  1191. metadata when a file with missing chunks was "repaired" using all-zero
  1192. replacement chunks. The chunks_healthy list is generated since borg 1.0.4,
  1193. thus borg can't recognize such "repaired" (but content-damaged) files if the
  1194. repair was done with an older borg version.
  1195. Version 1.0.5 (2016-07-07)
  1196. --------------------------
  1197. Bug fixes:
  1198. - borg mount: fix FUSE crash in xattr code on Linux introduced in 1.0.4, #1282
  1199. Other changes:
  1200. - backport some FAQ entries from master branch
  1201. - add release helper scripts
  1202. - Vagrantfile:
  1203. - centos6: no FUSE, don't build binary
  1204. - add xz for redhat-like dists
  1205. Version 1.0.4 (2016-07-07)
  1206. --------------------------
  1207. New features:
  1208. - borg serve --append-only, #1168
  1209. This was included because it was a simple change (append-only functionality
  1210. was already present via repository config file) and makes better security now
  1211. practically usable.
  1212. - BORG_REMOTE_PATH environment variable, #1258
  1213. This was included because it was a simple change (--remote-path cli option
  1214. was already present) and makes borg much easier to use if you need it.
  1215. - Repository: cleanup incomplete transaction on "no space left" condition.
  1216. In many cases, this can avoid a 100% full repo filesystem (which is very
  1217. problematic as borg always needs free space - even to delete archives).
  1218. Bug fixes:
  1219. - Fix wrong handling and reporting of OSErrors in borg create, #1138.
  1220. This was a serious issue: in the context of "borg create", errors like
  1221. repository I/O errors (e.g. disk I/O errors, ssh repo connection errors)
  1222. were handled badly and did not lead to a crash (which would be good for this
  1223. case, because the repo transaction would be incomplete and trigger a
  1224. transaction rollback to clean up).
  1225. Now, error handling for source files is cleanly separated from every other
  1226. error handling, so only problematic input files are logged and skipped.
  1227. - Implement fail-safe error handling for borg extract.
  1228. Note that this isn't nearly as critical as the borg create error handling
  1229. bug, since nothing is written to the repo. So this was "merely" misleading
  1230. error reporting.
  1231. - Add missing error handler in directory attr restore loop.
  1232. - repo: make sure write data hits disk before the commit tag (#1236) and also
  1233. sync the containing directory.
  1234. - FUSE: getxattr fail must use errno.ENOATTR, #1126
  1235. (fixes Mac OS X Finder malfunction: "zero bytes" file length, access denied)
  1236. - borg check --repair: do not lose information about the good/original chunks.
  1237. If we do not lose the original chunk IDs list when "repairing" a file
  1238. (replacing missing chunks with all-zero chunks), we have a chance to "heal"
  1239. the file back into its original state later, in case the chunks re-appear
  1240. (e.g. in a fresh backup). Healing is not implemented yet, see #148.
  1241. - fixes for --read-special mode:
  1242. - ignore known files cache, #1241
  1243. - fake regular file mode, #1214
  1244. - improve symlinks handling, #1215
  1245. - remove passphrase from subprocess environment, #1105
  1246. - Ignore empty index file (will trigger index rebuild), #1195
  1247. - add missing placeholder support for --prefix, #1027
  1248. - improve exception handling for placeholder replacement
  1249. - catch and format exceptions in arg parsing
  1250. - helpers: fix "undefined name 'e'" in exception handler
  1251. - better error handling for missing repo manifest, #1043
  1252. - borg delete:
  1253. - make it possible to delete a repo without manifest
  1254. - borg delete --forced allows to delete corrupted archives, #1139
  1255. - borg check:
  1256. - make borg check work for empty repo
  1257. - fix resync and msgpacked item qualifier, #1135
  1258. - rebuild_manifest: fix crash if 'name' or 'time' key were missing.
  1259. - better validation of item metadata dicts, #1130
  1260. - better validation of archive metadata dicts
  1261. - close the repo on exit - even if rollback did not work, #1197.
  1262. This is rather cosmetic, it avoids repo closing in the destructor.
  1263. - tests:
  1264. - fix sparse file test, #1170
  1265. - flake8: ignore new F405, #1185
  1266. - catch "invalid argument" on cygwin, #257
  1267. - fix sparseness assertion in test prep, #1264
  1268. Other changes:
  1269. - make borg build/work on OpenSSL 1.0 and 1.1, #1187
  1270. - docs / help:
  1271. - fix / clarify prune help, #1143
  1272. - fix "patterns" help formatting
  1273. - add missing docs / help about placeholders
  1274. - resources: rename atticmatic to borgmatic
  1275. - document sshd settings, #545
  1276. - more details about checkpoints, add split trick, #1171
  1277. - support docs: add freenode web chat link, #1175
  1278. - add prune visualization / example, #723
  1279. - add note that Fnmatch is default, #1247
  1280. - make clear that lzma levels > 6 are a waste of cpu cycles
  1281. - add a "do not edit" note to auto-generated files, #1250
  1282. - update cygwin installation docs
  1283. - repository interoperability with borg master (1.1dev) branch:
  1284. - borg check: read item metadata keys from manifest, #1147
  1285. - read v2 hints files, #1235
  1286. - fix hints file "unknown version" error handling bug
  1287. - tests: add tests for format_line
  1288. - llfuse: update version requirement for freebsd
  1289. - Vagrantfile:
  1290. - use openbsd 5.9, #716
  1291. - do not install llfuse on netbsd (broken)
  1292. - update OSXfuse to version 3.3.3
  1293. - use Python 3.5.2 to build the binaries
  1294. - glibc compatibility checker: scripts/glibc_check.py
  1295. - add .eggs to .gitignore
  1296. Version 1.0.3 (2016-05-20)
  1297. --------------------------
  1298. Bug fixes:
  1299. - prune: avoid that checkpoints are kept and completed archives are deleted in
  1300. a prune run), #997
  1301. - prune: fix commandline argument validation - some valid command lines were
  1302. considered invalid (annoying, but harmless), #942
  1303. - fix capabilities extraction on Linux (set xattrs last, after chown()), #1069
  1304. - repository: fix commit tags being seen in data
  1305. - when probing key files, do binary reads. avoids crash when non-borg binary
  1306. files are located in borg's key files directory.
  1307. - handle SIGTERM and make a clean exit - avoids orphan lock files.
  1308. - repository cache: don't cache large objects (avoid using lots of temp. disk
  1309. space), #1063
  1310. Other changes:
  1311. - Vagrantfile: OS X: update osxfuse / install lzma package, #933
  1312. - setup.py: add check for platform_darwin.c
  1313. - setup.py: on freebsd, use a llfuse release that builds ok
  1314. - docs / help:
  1315. - update readthedocs URLs, #991
  1316. - add missing docs for "borg break-lock", #992
  1317. - borg create help: add some words to about the archive name
  1318. - borg create help: document format tags, #894
  1319. Version 1.0.2 (2016-04-16)
  1320. --------------------------
  1321. Bug fixes:
  1322. - fix malfunction and potential corruption on (nowadays rather rare) big-endian
  1323. architectures or bi-endian archs in (rare) BE mode. #886, #889
  1324. cache resync / index merge was malfunctioning due to this, potentially
  1325. leading to data loss. borg info had cosmetic issues (displayed wrong values).
  1326. note: all (widespread) little-endian archs (like x86/x64) or bi-endian archs
  1327. in (widespread) LE mode (like ARMEL, MIPSEL, ...) were NOT affected.
  1328. - add overflow and range checks for 1st (special) uint32 of the hashindex
  1329. values, switch from int32 to uint32.
  1330. - fix so that refcount will never overflow, but just stick to max. value after
  1331. a overflow would have occurred.
  1332. - borg delete: fix --cache-only for broken caches, #874
  1333. Makes --cache-only idempotent: it won't fail if the cache is already deleted.
  1334. - fixed borg create --one-file-system erroneously traversing into other
  1335. filesystems (if starting fs device number was 0), #873
  1336. - workround a bug in Linux fadvise FADV_DONTNEED, #907
  1337. Other changes:
  1338. - better test coverage for hashindex, incl. overflow testing, checking correct
  1339. computations so endianness issues would be discovered.
  1340. - reproducible doc for ProgressIndicator*, make the build reproducible.
  1341. - use latest llfuse for vagrant machines
  1342. - docs:
  1343. - use /path/to/repo in examples, fixes #901
  1344. - fix confusing usage of "repo" as archive name (use "arch")
  1345. Version 1.0.1 (2016-04-08)
  1346. --------------------------
  1347. New features:
  1348. Usually there are no new features in a bugfix release, but these were added
  1349. due to their high impact on security/safety/speed or because they are fixes
  1350. also:
  1351. - append-only mode for repositories, #809, #36 (see docs)
  1352. - borg create: add --ignore-inode option to make borg detect unmodified files
  1353. even if your filesystem does not have stable inode numbers (like sshfs and
  1354. possibly CIFS).
  1355. - add options --warning, --error, --critical for missing log levels, #826.
  1356. it's not recommended to suppress warnings or errors, but the user may decide
  1357. this on his own.
  1358. note: --warning is not given to borg serve so a <= 1.0.0 borg will still
  1359. work as server (it is not needed as it is the default).
  1360. do not use --error or --critical when using a <= 1.0.0 borg server.
  1361. Bug fixes:
  1362. - fix silently skipping EIO, #748
  1363. - add context manager for Repository (avoid orphan repository locks), #285
  1364. - do not sleep for >60s while waiting for lock, #773
  1365. - unpack file stats before passing to FUSE
  1366. - fix build on illumos
  1367. - don't try to backup doors or event ports (Solaris and derivates)
  1368. - remove useless/misleading libc version display, #738
  1369. - test suite: reset exit code of persistent archiver, #844
  1370. - RemoteRepository: clean up pipe if remote open() fails
  1371. - Remote: don't print tracebacks for Error exceptions handled downstream, #792
  1372. - if BORG_PASSPHRASE is present but wrong, don't prompt for password, but fail
  1373. instead, #791
  1374. - ArchiveChecker: move "orphaned objects check skipped" to INFO log level, #826
  1375. - fix capitalization, add ellipses, change log level to debug for 2 messages,
  1376. #798
  1377. Other changes:
  1378. - update llfuse requirement, llfuse 1.0 works
  1379. - update OS / dist packages on build machines, #717
  1380. - prefer showing --info over -v in usage help, #859
  1381. - docs:
  1382. - fix cygwin requirements (gcc-g++)
  1383. - document how to debug / file filesystem issues, #664
  1384. - fix reproducible build of api docs
  1385. - RTD theme: CSS !important overwrite, #727
  1386. - Document logo font. Recreate logo png. Remove GIMP logo file.
  1387. Version 1.0.0 (2016-03-05)
  1388. --------------------------
  1389. The major release number change (0.x -> 1.x) indicates bigger incompatible
  1390. changes, please read the compatibility notes, adapt / test your scripts and
  1391. check your backup logs.
  1392. Compatibility notes:
  1393. - drop support for python 3.2 and 3.3, require 3.4 or 3.5, #221 #65 #490
  1394. note: we provide binaries that include python 3.5.1 and everything else
  1395. needed. they are an option in case you are stuck with < 3.4 otherwise.
  1396. - change encryption to be on by default (using "repokey" mode)
  1397. - moved keyfile keys from ~/.borg/keys to ~/.config/borg/keys,
  1398. you can either move them manually or run "borg upgrade <REPO>"
  1399. - remove support for --encryption=passphrase,
  1400. use borg migrate-to-repokey to switch to repokey mode, #97
  1401. - remove deprecated --compression <number>,
  1402. use --compression zlib,<number> instead
  1403. in case of 0, you could also use --compression none
  1404. - remove deprecated --hourly/daily/weekly/monthly/yearly
  1405. use --keep-hourly/daily/weekly/monthly/yearly instead
  1406. - remove deprecated --do-not-cross-mountpoints,
  1407. use --one-file-system instead
  1408. - disambiguate -p option, #563:
  1409. - -p now is same as --progress
  1410. - -P now is same as --prefix
  1411. - remove deprecated "borg verify",
  1412. use "borg extract --dry-run" instead
  1413. - cleanup environment variable semantics, #355
  1414. the environment variables used to be "yes sayers" when set, this was
  1415. conceptually generalized to "automatic answerers" and they just give their
  1416. value as answer (as if you typed in that value when being asked).
  1417. See the "usage" / "Environment Variables" section of the docs for details.
  1418. - change the builtin default for --chunker-params, create 2MiB chunks, #343
  1419. --chunker-params new default: 19,23,21,4095 - old default: 10,23,16,4095
  1420. one of the biggest issues with borg < 1.0 (and also attic) was that it had a
  1421. default target chunk size of 64kiB, thus it created a lot of chunks and thus
  1422. also a huge chunk management overhead (high RAM and disk usage).
  1423. please note that the new default won't change the chunks that you already
  1424. have in your repository. the new big chunks do not deduplicate with the old
  1425. small chunks, so expect your repo to grow at least by the size of every
  1426. changed file and in the worst case (e.g. if your files cache was lost / is
  1427. not used) by the size of every file (minus any compression you might use).
  1428. in case you want to immediately see a much lower resource usage (RAM / disk)
  1429. for chunks management, it might be better to start with a new repo than
  1430. continuing in the existing repo (with an existing repo, you'ld have to wait
  1431. until all archives with small chunks got pruned to see a lower resource
  1432. usage).
  1433. if you used the old --chunker-params default value (or if you did not use
  1434. --chunker-params option at all) and you'ld like to continue using small
  1435. chunks (and you accept the huge resource usage that comes with that), just
  1436. explicitly use borg create --chunker-params=10,23,16,4095.
  1437. - archive timestamps: the 'time' timestamp now refers to archive creation
  1438. start time (was: end time), the new 'time_end' timestamp refers to archive
  1439. creation end time. This might affect prune if your backups take rather long.
  1440. if you give a timestamp via cli this is stored into 'time', therefore it now
  1441. needs to mean archive creation start time.
  1442. New features:
  1443. - implement password roundtrip, #695
  1444. Bug fixes:
  1445. - remote end does not need cache nor keys directories, do not create them, #701
  1446. - added retry counter for passwords, #703
  1447. Other changes:
  1448. - fix compiler warnings, #697
  1449. - docs:
  1450. - update README.rst to new changelog location in docs/changes.rst
  1451. - add Teemu to AUTHORS
  1452. - changes.rst: fix old chunker params, #698
  1453. - FAQ: how to limit bandwidth
  1454. Version 1.0.0rc2 (2016-02-28)
  1455. -----------------------------
  1456. New features:
  1457. - format options for location: user, pid, fqdn, hostname, now, utcnow, user
  1458. - borg list --list-format
  1459. - borg prune -v --list enables the keep/prune list output, #658
  1460. Bug fixes:
  1461. - fix _open_rb noatime handling, #657
  1462. - add a simple archivename validator, #680
  1463. - borg create --stats: show timestamps in localtime, use same labels/formatting
  1464. as borg info, #651
  1465. - llfuse compatibility fixes (now compatible with: 0.40, 0.41, 0.42)
  1466. Other changes:
  1467. - it is now possible to use "pip install borgbackup[fuse]" to automatically
  1468. install the llfuse dependency using the correct version requirement
  1469. for it. you still need to care about having installed the FUSE / build
  1470. related OS package first, though, so that building llfuse can succeed.
  1471. - Vagrant: drop Ubuntu Precise (12.04) - does not have Python >= 3.4
  1472. - Vagrant: use pyinstaller v3.1.1 to build binaries
  1473. - docs:
  1474. - borg upgrade: add to docs that only LOCAL repos are supported
  1475. - borg upgrade also handles borg 0.xx -> 1.0
  1476. - use pip extras or requirements file to install llfuse
  1477. - fix order in release process
  1478. - updated usage docs and other minor / cosmetic fixes
  1479. - verified borg examples in docs, #644
  1480. - freebsd dependency installation and FUSE configuration, #649
  1481. - add example how to restore a raw device, #671
  1482. - add a hint about the dev headers needed when installing from source
  1483. - add examples for delete (and handle delete after list, before prune), #656
  1484. - update example for borg create -v --stats (use iso datetime format), #663
  1485. - added example to BORG_RSH docs
  1486. - "connection closed by remote": add FAQ entry and point to issue #636
  1487. Version 1.0.0rc1 (2016-02-07)
  1488. -----------------------------
  1489. New features:
  1490. - borg migrate-to-repokey ("passphrase" -> "repokey" encryption key mode)
  1491. - implement --short for borg list REPO, #611
  1492. - implement --list for borg extract (consistency with borg create)
  1493. - borg serve: overwrite client's --restrict-to-path with ssh forced command's
  1494. option value (but keep everything else from the client commandline), #544
  1495. - use $XDG_CONFIG_HOME/keys for keyfile keys (~/.config/borg/keys), #515
  1496. - "borg upgrade" moves the keyfile keys to the new location
  1497. - display both archive creation start and end time in "borg info", #627
  1498. Bug fixes:
  1499. - normalize trailing slashes for the repository path, #606
  1500. - Cache: fix exception handling in __init__, release lock, #610
  1501. Other changes:
  1502. - suppress unneeded exception context (PEP 409), simpler tracebacks
  1503. - removed special code needed to deal with imperfections / incompatibilities /
  1504. missing stuff in py 3.2/3.3, simplify code that can be done simpler in 3.4
  1505. - removed some version requirements that were kept on old versions because
  1506. newer did not support py 3.2 any more
  1507. - use some py 3.4+ stdlib code instead of own/openssl/pypi code:
  1508. - use os.urandom instead of own cython openssl RAND_bytes wrapper, #493
  1509. - use hashlib.pbkdf2_hmac from py stdlib instead of own openssl wrapper
  1510. - use hmac.compare_digest instead of == operator (constant time comparison)
  1511. - use stat.filemode instead of homegrown code
  1512. - use "mock" library from stdlib, #145
  1513. - remove borg.support (with non-broken argparse copy), it is ok in 3.4+, #358
  1514. - Vagrant: copy CHANGES.rst as symlink, #592
  1515. - cosmetic code cleanups, add flake8 to tox/travis, #4
  1516. - docs / help:
  1517. - make "borg -h" output prettier, #591
  1518. - slightly rephrase prune help
  1519. - add missing example for --list option of borg create
  1520. - quote exclude line that includes an asterisk to prevent shell expansion
  1521. - fix dead link to license
  1522. - delete Ubuntu Vivid, it is not supported anymore (EOL)
  1523. - OS X binary does not work for older OS X releases, #629
  1524. - borg serve's special support for forced/original ssh commands, #544
  1525. - misc. updates and fixes
  1526. Version 0.30.0 (2016-01-23)
  1527. ---------------------------
  1528. Compatibility notes:
  1529. - you may need to use -v (or --info) more often to actually see output emitted
  1530. at INFO log level (because it is suppressed at the default WARNING log level).
  1531. See the "general" section in the usage docs.
  1532. - for borg create, you need --list (additionally to -v) to see the long file
  1533. list (was needed so you can have e.g. --stats alone without the long list)
  1534. - see below about BORG_DELETE_I_KNOW_WHAT_I_AM_DOING (was:
  1535. BORG_CHECK_I_KNOW_WHAT_I_AM_DOING)
  1536. Bug fixes:
  1537. - fix crash when using borg create --dry-run --keep-tag-files, #570
  1538. - make sure teardown with cleanup happens for Cache and RepositoryCache,
  1539. avoiding leftover locks and TEMP dir contents, #285 (partially), #548
  1540. - fix locking KeyError, partial fix for #502
  1541. - log stats consistently, #526
  1542. - add abbreviated weekday to timestamp format, fixes #496
  1543. - strip whitespace when loading exclusions from file
  1544. - unset LD_LIBRARY_PATH before invoking ssh, fixes strange OpenSSL library
  1545. version warning when using the borg binary, #514
  1546. - add some error handling/fallback for C library loading, #494
  1547. - added BORG_DELETE_I_KNOW_WHAT_I_AM_DOING for check in "borg delete", #503
  1548. - remove unused "repair" rpc method name
  1549. New features:
  1550. - borg create: implement exclusions using regular expression patterns.
  1551. - borg create: implement inclusions using patterns.
  1552. - borg extract: support patterns, #361
  1553. - support different styles for patterns:
  1554. - fnmatch (`fm:` prefix, default when omitted), like borg <= 0.29.
  1555. - shell (`sh:` prefix) with `*` not matching directory separators and
  1556. `**/` matching 0..n directories
  1557. - path prefix (`pp:` prefix, for unifying borg create pp1 pp2 into the
  1558. patterns system), semantics like in borg <= 0.29
  1559. - regular expression (`re:`), new!
  1560. - --progress option for borg upgrade (#291) and borg delete <archive>
  1561. - update progress indication more often (e.g. for borg create within big
  1562. files or for borg check repo), #500
  1563. - finer chunker granularity for items metadata stream, #547, #487
  1564. - borg create --list now used (additionally to -v) to enable the verbose
  1565. file list output
  1566. - display borg version below tracebacks, #532
  1567. Other changes:
  1568. - hashtable size (and thus: RAM and disk consumption) follows a growth policy:
  1569. grows fast while small, grows slower when getting bigger, #527
  1570. - Vagrantfile: use pyinstaller 3.1 to build binaries, freebsd sqlite3 fix,
  1571. fixes #569
  1572. - no separate binaries for centos6 any more because the generic linux binaries
  1573. also work on centos6 (or in general: on systems with a slightly older glibc
  1574. than debian7
  1575. - dev environment: require virtualenv<14.0 so we get a py32 compatible pip
  1576. - docs:
  1577. - add space-saving chunks.archive.d trick to FAQ
  1578. - important: clarify -v and log levels in usage -> general, please read!
  1579. - sphinx configuration: create a simple man page from usage docs
  1580. - add a repo server setup example
  1581. - disable unneeded SSH features in authorized_keys examples for security.
  1582. - borg prune only knows "--keep-within" and not "--within"
  1583. - add gource video to resources docs, #507
  1584. - add netbsd install instructions
  1585. - authors: make it more clear what refers to borg and what to attic
  1586. - document standalone binary requirements, #499
  1587. - rephrase the mailing list section
  1588. - development docs: run build_api and build_usage before tagging release
  1589. - internals docs: hash table max. load factor is 0.75 now
  1590. - markup, typo, grammar, phrasing, clarifications and other fixes.
  1591. - add gcc gcc-c++ to redhat/fedora/corora install docs, fixes #583
  1592. Version 0.29.0 (2015-12-13)
  1593. ---------------------------
  1594. Compatibility notes:
  1595. - when upgrading to 0.29.0 you need to upgrade client as well as server
  1596. installations due to the locking and commandline interface changes otherwise
  1597. you'll get an error msg about a RPC protocol mismatch or a wrong commandline
  1598. option.
  1599. if you run a server that needs to support both old and new clients, it is
  1600. suggested that you have a "borg-0.28.2" and a "borg-0.29.0" command.
  1601. clients then can choose via e.g. "borg --remote-path=borg-0.29.0 ...".
  1602. - the default waiting time for a lock changed from infinity to 1 second for a
  1603. better interactive user experience. if the repo you want to access is
  1604. currently locked, borg will now terminate after 1s with an error message.
  1605. if you have scripts that shall wait for the lock for a longer time, use
  1606. --lock-wait N (with N being the maximum wait time in seconds).
  1607. Bug fixes:
  1608. - hash table tuning (better chosen hashtable load factor 0.75 and prime initial
  1609. size of 1031 gave ~1000x speedup in some scenarios)
  1610. - avoid creation of an orphan lock for one case, #285
  1611. - --keep-tag-files: fix file mode and multiple tag files in one directory, #432
  1612. - fixes for "borg upgrade" (attic repo converter), #466
  1613. - remove --progress isatty magic (and also --no-progress option) again, #476
  1614. - borg init: display proper repo URL
  1615. - fix format of umask in help pages, #463
  1616. New features:
  1617. - implement --lock-wait, support timeout for UpgradableLock, #210
  1618. - implement borg break-lock command, #157
  1619. - include system info below traceback, #324
  1620. - sane remote logging, remote stderr, #461:
  1621. - remote log output: intercept it and log it via local logging system,
  1622. with "Remote: " prefixed to message. log remote tracebacks.
  1623. - remote stderr: output it to local stderr with "Remote: " prefixed.
  1624. - add --debug and --info (same as --verbose) to set the log level of the
  1625. builtin logging configuration (which otherwise defaults to warning), #426
  1626. note: there are few messages emitted at DEBUG level currently.
  1627. - optionally configure logging via env var BORG_LOGGING_CONF
  1628. - add --filter option for status characters: e.g. to show only the added
  1629. or modified files (and also errors), use "borg create -v --filter=AME ...".
  1630. - more progress indicators, #394
  1631. - use ISO-8601 date and time format, #375
  1632. - "borg check --prefix" to restrict archive checking to that name prefix, #206
  1633. Other changes:
  1634. - hashindex_add C implementation (speed up cache re-sync for new archives)
  1635. - increase FUSE read_size to 1024 (speed up metadata operations)
  1636. - check/delete/prune --save-space: free unused segments quickly, #239
  1637. - increase rpc protocol version to 2 (see also Compatibility notes), #458
  1638. - silence borg by default (via default log level WARNING)
  1639. - get rid of C compiler warnings, #391
  1640. - upgrade OS X FUSE to 3.0.9 on the OS X binary build system
  1641. - use python 3.5.1 to build binaries
  1642. - docs:
  1643. - new mailing list borgbackup@python.org, #468
  1644. - readthedocs: color and logo improvements
  1645. - load coverage icons over SSL (avoids mixed content)
  1646. - more precise binary installation steps
  1647. - update release procedure docs about OS X FUSE
  1648. - FAQ entry about unexpected 'A' status for unchanged file(s), #403
  1649. - add docs about 'E' file status
  1650. - add "borg upgrade" docs, #464
  1651. - add developer docs about output and logging
  1652. - clarify encryption, add note about client-side encryption
  1653. - add resources section, with videos, talks, presentations, #149
  1654. - Borg moved to Arch Linux [community]
  1655. - fix wrong installation instructions for archlinux
  1656. Version 0.28.2 (2015-11-15)
  1657. ---------------------------
  1658. New features:
  1659. - borg create --exclude-if-present TAGFILE - exclude directories that have the
  1660. given file from the backup. You can additionally give --keep-tag-files to
  1661. preserve just the directory roots and the tag-files (but not backup other
  1662. directory contents), #395, attic #128, attic #142
  1663. Other changes:
  1664. - do not create docs sources at build time (just have them in the repo),
  1665. completely remove have_cython() hack, do not use the "mock" library at build
  1666. time, #384
  1667. - avoid hidden import, make it easier for PyInstaller, easier fix for #218
  1668. - docs:
  1669. - add description of item flags / status output, fixes #402
  1670. - explain how to regenerate usage and API files (build_api or
  1671. build_usage) and when to commit usage files directly into git, #384
  1672. - minor install docs improvements
  1673. Version 0.28.1 (2015-11-08)
  1674. ---------------------------
  1675. Bug fixes:
  1676. - do not try to build api / usage docs for production install,
  1677. fixes unexpected "mock" build dependency, #384
  1678. Other changes:
  1679. - avoid using msgpack.packb at import time
  1680. - fix formatting issue in changes.rst
  1681. - fix build on readthedocs
  1682. Version 0.28.0 (2015-11-08)
  1683. ---------------------------
  1684. Compatibility notes:
  1685. - changed return codes (exit codes), see docs. in short:
  1686. old: 0 = ok, 1 = error. now: 0 = ok, 1 = warning, 2 = error
  1687. New features:
  1688. - refactor return codes (exit codes), fixes #61
  1689. - add --show-rc option enable "terminating with X status, rc N" output, fixes 58, #351
  1690. - borg create backups atime and ctime additionally to mtime, fixes #317
  1691. - extract: support atime additionally to mtime
  1692. - FUSE: support ctime and atime additionally to mtime
  1693. - support borg --version
  1694. - emit a warning if we have a slow msgpack installed
  1695. - borg list --prefix=thishostname- REPO, fixes #205
  1696. - Debug commands (do not use except if you know what you do: debug-get-obj,
  1697. debug-put-obj, debug-delete-obj, debug-dump-archive-items.
  1698. Bug fixes:
  1699. - setup.py: fix bug related to BORG_LZ4_PREFIX processing
  1700. - fix "check" for repos that have incomplete chunks, fixes #364
  1701. - borg mount: fix unlocking of repository at umount time, fixes #331
  1702. - fix reading files without touching their atime, #334
  1703. - non-ascii ACL fixes for Linux, FreeBSD and OS X, #277
  1704. - fix acl_use_local_uid_gid() and add a test for it, attic #359
  1705. - borg upgrade: do not upgrade repositories in place by default, #299
  1706. - fix cascading failure with the index conversion code, #269
  1707. - borg check: implement 'cmdline' archive metadata value decoding, #311
  1708. - fix RobustUnpacker, it missed some metadata keys (new atime and ctime keys
  1709. were missing, but also bsdflags). add check for unknown metadata keys.
  1710. - create from stdin: also save atime, ctime (cosmetic)
  1711. - use default_notty=False for confirmations, fixes #345
  1712. - vagrant: fix msgpack installation on centos, fixes #342
  1713. - deal with unicode errors for symlinks in same way as for regular files and
  1714. have a helpful warning message about how to fix wrong locale setup, fixes #382
  1715. - add ACL keys the RobustUnpacker must know about
  1716. Other changes:
  1717. - improve file size displays, more flexible size formatters
  1718. - explicitly commit to the units standard, #289
  1719. - archiver: add E status (means that an error occurred when processing this
  1720. (single) item
  1721. - do binary releases via "github releases", closes #214
  1722. - create: use -x and --one-file-system (was: --do-not-cross-mountpoints), #296
  1723. - a lot of changes related to using "logging" module and screen output, #233
  1724. - show progress display if on a tty, output more progress information, #303
  1725. - factor out status output so it is consistent, fix surrogates removal,
  1726. maybe fixes #309
  1727. - move away from RawConfigParser to ConfigParser
  1728. - archive checker: better error logging, give chunk_id and sequence numbers
  1729. (can be used together with borg debug-dump-archive-items).
  1730. - do not mention the deprecated passphrase mode
  1731. - emit a deprecation warning for --compression N (giving a just a number)
  1732. - misc .coverragerc fixes (and coverage measurement improvements), fixes #319
  1733. - refactor confirmation code, reduce code duplication, add tests
  1734. - prettier error messages, fixes #307, #57
  1735. - tests:
  1736. - add a test to find disk-full issues, #327
  1737. - travis: also run tests on Python 3.5
  1738. - travis: use tox -r so it rebuilds the tox environments
  1739. - test the generated pyinstaller-based binary by archiver unit tests, #215
  1740. - vagrant: tests: announce whether fakeroot is used or not
  1741. - vagrant: add vagrant user to fuse group for debianoid systems also
  1742. - vagrant: llfuse install on darwin needs pkgconfig installed
  1743. - vagrant: use pyinstaller from develop branch, fixes #336
  1744. - benchmarks: test create, extract, list, delete, info, check, help, fixes #146
  1745. - benchmarks: test with both the binary and the python code
  1746. - archiver tests: test with both the binary and the python code, fixes #215
  1747. - make basic test more robust
  1748. - docs:
  1749. - moved docs to borgbackup.readthedocs.org, #155
  1750. - a lot of fixes and improvements, use mobile-friendly RTD standard theme
  1751. - use zlib,6 compression in some examples, fixes #275
  1752. - add missing rename usage to docs, closes #279
  1753. - include the help offered by borg help <topic> in the usage docs, fixes #293
  1754. - include a list of major changes compared to attic into README, fixes #224
  1755. - add OS X install instructions, #197
  1756. - more details about the release process, #260
  1757. - fix linux glibc requirement (binaries built on debian7 now)
  1758. - build: move usage and API generation to setup.py
  1759. - update docs about return codes, #61
  1760. - remove api docs (too much breakage on rtd)
  1761. - borgbackup install + basics presentation (asciinema)
  1762. - describe the current style guide in documentation
  1763. - add section about debug commands
  1764. - warn about not running out of space
  1765. - add example for rename
  1766. - improve chunker params docs, fixes #362
  1767. - minor development docs update
  1768. Version 0.27.0 (2015-10-07)
  1769. ---------------------------
  1770. New features:
  1771. - "borg upgrade" command - attic -> borg one time converter / migration, #21
  1772. - temporary hack to avoid using lots of disk space for chunks.archive.d, #235:
  1773. To use it: rm -rf chunks.archive.d ; touch chunks.archive.d
  1774. - respect XDG_CACHE_HOME, attic #181
  1775. - add support for arbitrary SSH commands, attic #99
  1776. - borg delete --cache-only REPO (only delete cache, not REPO), attic #123
  1777. Bug fixes:
  1778. - use Debian 7 (wheezy) to build pyinstaller borgbackup binaries, fixes slow
  1779. down observed when running the Centos6-built binary on Ubuntu, #222
  1780. - do not crash on empty lock.roster, fixes #232
  1781. - fix multiple issues with the cache config version check, #234
  1782. - fix segment entry header size check, attic #352
  1783. plus other error handling improvements / code deduplication there.
  1784. - always give segment and offset in repo IntegrityErrors
  1785. Other changes:
  1786. - stop producing binary wheels, remove docs about it, #147
  1787. - docs:
  1788. - add warning about prune
  1789. - generate usage include files only as needed
  1790. - development docs: add Vagrant section
  1791. - update / improve / reformat FAQ
  1792. - hint to single-file pyinstaller binaries from README
  1793. Version 0.26.1 (2015-09-28)
  1794. ---------------------------
  1795. This is a minor update, just docs and new pyinstaller binaries.
  1796. - docs update about python and binary requirements
  1797. - better docs for --read-special, fix #220
  1798. - re-built the binaries, fix #218 and #213 (glibc version issue)
  1799. - update web site about single-file pyinstaller binaries
  1800. Note: if you did a python-based installation, there is no need to upgrade.
  1801. Version 0.26.0 (2015-09-19)
  1802. ---------------------------
  1803. New features:
  1804. - Faster cache sync (do all in one pass, remove tar/compression stuff), #163
  1805. - BORG_REPO env var to specify the default repo, #168
  1806. - read special files as if they were regular files, #79
  1807. - implement borg create --dry-run, attic issue #267
  1808. - Normalize paths before pattern matching on OS X, #143
  1809. - support OpenBSD and NetBSD (except xattrs/ACLs)
  1810. - support / run tests on Python 3.5
  1811. Bug fixes:
  1812. - borg mount repo: use absolute path, attic #200, attic #137
  1813. - chunker: use off_t to get 64bit on 32bit platform, #178
  1814. - initialize chunker fd to -1, so it's not equal to STDIN_FILENO (0)
  1815. - fix reaction to "no" answer at delete repo prompt, #182
  1816. - setup.py: detect lz4.h header file location
  1817. - to support python < 3.2.4, add less buggy argparse lib from 3.2.6 (#194)
  1818. - fix for obtaining ``char *`` from temporary Python value (old code causes
  1819. a compile error on Mint 17.2)
  1820. - llfuse 0.41 install troubles on some platforms, require < 0.41
  1821. (UnicodeDecodeError exception due to non-ascii llfuse setup.py)
  1822. - cython code: add some int types to get rid of unspecific python add /
  1823. subtract operations (avoid ``undefined symbol FPE_``... error on some platforms)
  1824. - fix verbose mode display of stdin backup
  1825. - extract: warn if a include pattern never matched, fixes #209,
  1826. implement counters for Include/ExcludePatterns
  1827. - archive names with slashes are invalid, attic issue #180
  1828. - chunker: add a check whether the POSIX_FADV_DONTNEED constant is defined -
  1829. fixes building on OpenBSD.
  1830. Other changes:
  1831. - detect inconsistency / corruption / hash collision, #170
  1832. - replace versioneer with setuptools_scm, #106
  1833. - docs:
  1834. - pkg-config is needed for llfuse installation
  1835. - be more clear about pruning, attic issue #132
  1836. - unit tests:
  1837. - xattr: ignore security.selinux attribute showing up
  1838. - ext3 seems to need a bit more space for a sparse file
  1839. - do not test lzma level 9 compression (avoid MemoryError)
  1840. - work around strange mtime granularity issue on netbsd, fixes #204
  1841. - ignore st_rdev if file is not a block/char device, fixes #203
  1842. - stay away from the setgid and sticky mode bits
  1843. - use Vagrant to do easy cross-platform testing (#196), currently:
  1844. - Debian 7 "wheezy" 32bit, Debian 8 "jessie" 64bit
  1845. - Ubuntu 12.04 32bit, Ubuntu 14.04 64bit
  1846. - Centos 7 64bit
  1847. - FreeBSD 10.2 64bit
  1848. - OpenBSD 5.7 64bit
  1849. - NetBSD 6.1.5 64bit
  1850. - Darwin (OS X Yosemite)
  1851. Version 0.25.0 (2015-08-29)
  1852. ---------------------------
  1853. Compatibility notes:
  1854. - lz4 compression library (liblz4) is a new requirement (#156)
  1855. - the new compression code is very compatible: as long as you stay with zlib
  1856. compression, older borg releases will still be able to read data from a
  1857. repo/archive made with the new code (note: this is not the case for the
  1858. default "none" compression, use "zlib,0" if you want a "no compression" mode
  1859. that can be read by older borg). Also the new code is able to read repos and
  1860. archives made with older borg versions (for all zlib levels 0..9).
  1861. Deprecations:
  1862. - --compression N (with N being a number, as in 0.24) is deprecated.
  1863. We keep the --compression 0..9 for now to not break scripts, but it is
  1864. deprecated and will be removed later, so better fix your scripts now:
  1865. --compression 0 (as in 0.24) is the same as --compression zlib,0 (now).
  1866. BUT: if you do not want compression, you rather want --compression none
  1867. (which is the default).
  1868. --compression 1 (in 0.24) is the same as --compression zlib,1 (now)
  1869. --compression 9 (in 0.24) is the same as --compression zlib,9 (now)
  1870. New features:
  1871. - create --compression none (default, means: do not compress, just pass through
  1872. data "as is". this is more efficient than zlib level 0 as used in borg 0.24)
  1873. - create --compression lz4 (super-fast, but not very high compression)
  1874. - create --compression zlib,N (slower, higher compression, default for N is 6)
  1875. - create --compression lzma,N (slowest, highest compression, default N is 6)
  1876. - honor the nodump flag (UF_NODUMP) and do not backup such items
  1877. - list --short just outputs a simple list of the files/directories in an archive
  1878. Bug fixes:
  1879. - fixed --chunker-params parameter order confusion / malfunction, fixes #154
  1880. - close fds of segments we delete (during compaction)
  1881. - close files which fell out the lrucache
  1882. - fadvise DONTNEED now is only called for the byte range actually read, not for
  1883. the whole file, fixes #158.
  1884. - fix issue with negative "all archives" size, fixes #165
  1885. - restore_xattrs: ignore if setxattr fails with EACCES, fixes #162
  1886. Other changes:
  1887. - remove fakeroot requirement for tests, tests run faster without fakeroot
  1888. (test setup does not fail any more without fakeroot, so you can run with or
  1889. without fakeroot), fixes #151 and #91.
  1890. - more tests for archiver
  1891. - recover_segment(): don't assume we have an fd for segment
  1892. - lrucache refactoring / cleanup, add dispose function, py.test tests
  1893. - generalize hashindex code for any key length (less hardcoding)
  1894. - lock roster: catch file not found in remove() method and ignore it
  1895. - travis CI: use requirements file
  1896. - improved docs:
  1897. - replace hack for llfuse with proper solution (install libfuse-dev)
  1898. - update docs about compression
  1899. - update development docs about fakeroot
  1900. - internals: add some words about lock files / locking system
  1901. - support: mention BountySource and for what it can be used
  1902. - theme: use a lighter green
  1903. - add pypi, wheel, dist package based install docs
  1904. - split install docs into system-specific preparations and generic instructions
  1905. Version 0.24.0 (2015-08-09)
  1906. ---------------------------
  1907. Incompatible changes (compared to 0.23):
  1908. - borg now always issues --umask NNN option when invoking another borg via ssh
  1909. on the repository server. By that, it's making sure it uses the same umask
  1910. for remote repos as for local ones. Because of this, you must upgrade both
  1911. server and client(s) to 0.24.
  1912. - the default umask is 077 now (if you do not specify via --umask) which might
  1913. be a different one as you used previously. The default umask avoids that
  1914. you accidentally give access permissions for group and/or others to files
  1915. created by borg (e.g. the repository).
  1916. Deprecations:
  1917. - "--encryption passphrase" mode is deprecated, see #85 and #97.
  1918. See the new "--encryption repokey" mode for a replacement.
  1919. New features:
  1920. - borg create --chunker-params ... to configure the chunker, fixes #16
  1921. (attic #302, attic #300, and somehow also #41).
  1922. This can be used to reduce memory usage caused by chunk management overhead,
  1923. so borg does not create a huge chunks index/repo index and eats all your RAM
  1924. if you back up lots of data in huge files (like VM disk images).
  1925. See docs/misc/create_chunker-params.txt for more information.
  1926. - borg info now reports chunk counts in the chunk index.
  1927. - borg create --compression 0..9 to select zlib compression level, fixes #66
  1928. (attic #295).
  1929. - borg init --encryption repokey (to store the encryption key into the repo),
  1930. fixes #85
  1931. - improve at-end error logging, always log exceptions and set exit_code=1
  1932. - LoggedIO: better error checks / exceptions / exception handling
  1933. - implement --remote-path to allow non-default-path borg locations, #125
  1934. - implement --umask M and use 077 as default umask for better security, #117
  1935. - borg check: give a named single archive to it, fixes #139
  1936. - cache sync: show progress indication
  1937. - cache sync: reimplement the chunk index merging in C
  1938. Bug fixes:
  1939. - fix segfault that happened for unreadable files (chunker: n needs to be a
  1940. signed size_t), #116
  1941. - fix the repair mode, #144
  1942. - repo delete: add destroy to allowed rpc methods, fixes issue #114
  1943. - more compatible repository locking code (based on mkdir), maybe fixes #92
  1944. (attic #317, attic #201).
  1945. - better Exception msg if no Borg is installed on the remote repo server, #56
  1946. - create a RepositoryCache implementation that can cope with >2GiB,
  1947. fixes attic #326.
  1948. - fix Traceback when running check --repair, attic #232
  1949. - clarify help text, fixes #73.
  1950. - add help string for --no-files-cache, fixes #140
  1951. Other changes:
  1952. - improved docs:
  1953. - added docs/misc directory for misc. writeups that won't be included
  1954. "as is" into the html docs.
  1955. - document environment variables and return codes (attic #324, attic #52)
  1956. - web site: add related projects, fix web site url, IRC #borgbackup
  1957. - Fedora/Fedora-based install instructions added to docs
  1958. - Cygwin-based install instructions added to docs
  1959. - updated AUTHORS
  1960. - add FAQ entries about redundancy / integrity
  1961. - clarify that borg extract uses the cwd as extraction target
  1962. - update internals doc about chunker params, memory usage and compression
  1963. - added docs about development
  1964. - add some words about resource usage in general
  1965. - document how to backup a raw disk
  1966. - add note about how to run borg from virtual env
  1967. - add solutions for (ll)fuse installation problems
  1968. - document what borg check does, fixes #138
  1969. - reorganize borgbackup.github.io sidebar, prev/next at top
  1970. - deduplicate and refactor the docs / README.rst
  1971. - use borg-tmp as prefix for temporary files / directories
  1972. - short prune options without "keep-" are deprecated, do not suggest them
  1973. - improved tox configuration
  1974. - remove usage of unittest.mock, always use mock from pypi
  1975. - use entrypoints instead of scripts, for better use of the wheel format and
  1976. modern installs
  1977. - add requirements.d/development.txt and modify tox.ini
  1978. - use travis-ci for testing based on Linux and (new) OS X
  1979. - use coverage.py, pytest-cov and codecov.io for test coverage support
  1980. I forgot to list some stuff already implemented in 0.23.0, here they are:
  1981. New features:
  1982. - efficient archive list from manifest, meaning a big speedup for slow
  1983. repo connections and "list <repo>", "delete <repo>", "prune" (attic #242,
  1984. attic #167)
  1985. - big speedup for chunks cache sync (esp. for slow repo connections), fixes #18
  1986. - hashindex: improve error messages
  1987. Other changes:
  1988. - explicitly specify binary mode to open binary files
  1989. - some easy micro optimizations
  1990. Version 0.23.0 (2015-06-11)
  1991. ---------------------------
  1992. Incompatible changes (compared to attic, fork related):
  1993. - changed sw name and cli command to "borg", updated docs
  1994. - package name (and name in urls) uses "borgbackup" to have less collisions
  1995. - changed repo / cache internal magic strings from ATTIC* to BORG*,
  1996. changed cache location to .cache/borg/ - this means that it currently won't
  1997. accept attic repos (see issue #21 about improving that)
  1998. Bug fixes:
  1999. - avoid defect python-msgpack releases, fixes attic #171, fixes attic #185
  2000. - fix traceback when trying to do unsupported passphrase change, fixes attic #189
  2001. - datetime does not like the year 10.000, fixes attic #139
  2002. - fix "info" all archives stats, fixes attic #183
  2003. - fix parsing with missing microseconds, fixes attic #282
  2004. - fix misleading hint the fuse ImportError handler gave, fixes attic #237
  2005. - check unpacked data from RPC for tuple type and correct length, fixes attic #127
  2006. - fix Repository._active_txn state when lock upgrade fails
  2007. - give specific path to xattr.is_enabled(), disable symlink setattr call that
  2008. always fails
  2009. - fix test setup for 32bit platforms, partial fix for attic #196
  2010. - upgraded versioneer, PEP440 compliance, fixes attic #257
  2011. New features:
  2012. - less memory usage: add global option --no-cache-files
  2013. - check --last N (only check the last N archives)
  2014. - check: sort archives in reverse time order
  2015. - rename repo::oldname newname (rename repository)
  2016. - create -v output more informative
  2017. - create --progress (backup progress indicator)
  2018. - create --timestamp (utc string or reference file/dir)
  2019. - create: if "-" is given as path, read binary from stdin
  2020. - extract: if --stdout is given, write all extracted binary data to stdout
  2021. - extract --sparse (simple sparse file support)
  2022. - extra debug information for 'fread failed'
  2023. - delete <repo> (deletes whole repo + local cache)
  2024. - FUSE: reflect deduplication in allocated blocks
  2025. - only allow whitelisted RPC calls in server mode
  2026. - normalize source/exclude paths before matching
  2027. - use posix_fadvise to not spoil the OS cache, fixes attic #252
  2028. - toplevel error handler: show tracebacks for better error analysis
  2029. - sigusr1 / sigint handler to print current file infos - attic PR #286
  2030. - RPCError: include the exception args we get from remote
  2031. Other changes:
  2032. - source: misc. cleanups, pep8, style
  2033. - docs and faq improvements, fixes, updates
  2034. - cleanup crypto.pyx, make it easier to adapt to other AES modes
  2035. - do os.fsync like recommended in the python docs
  2036. - source: Let chunker optionally work with os-level file descriptor.
  2037. - source: Linux: remove duplicate os.fsencode calls
  2038. - source: refactor _open_rb code a bit, so it is more consistent / regular
  2039. - source: refactor indicator (status) and item processing
  2040. - source: use py.test for better testing, flake8 for code style checks
  2041. - source: fix tox >=2.0 compatibility (test runner)
  2042. - pypi package: add python version classifiers, add FreeBSD to platforms
  2043. Attic Changelog
  2044. ---------------
  2045. Here you can see the full list of changes between each Attic release until Borg
  2046. forked from Attic:
  2047. Version 0.17
  2048. ~~~~~~~~~~~~
  2049. (bugfix release, released on X)
  2050. - Fix hashindex ARM memory alignment issue (#309)
  2051. - Improve hashindex error messages (#298)
  2052. Version 0.16
  2053. ~~~~~~~~~~~~
  2054. (bugfix release, released on May 16, 2015)
  2055. - Fix typo preventing the security confirmation prompt from working (#303)
  2056. - Improve handling of systems with improperly configured file system encoding (#289)
  2057. - Fix "All archives" output for attic info. (#183)
  2058. - More user friendly error message when repository key file is not found (#236)
  2059. - Fix parsing of iso 8601 timestamps with zero microseconds (#282)
  2060. Version 0.15
  2061. ~~~~~~~~~~~~
  2062. (bugfix release, released on Apr 15, 2015)
  2063. - xattr: Be less strict about unknown/unsupported platforms (#239)
  2064. - Reduce repository listing memory usage (#163).
  2065. - Fix BrokenPipeError for remote repositories (#233)
  2066. - Fix incorrect behavior with two character directory names (#265, #268)
  2067. - Require approval before accessing relocated/moved repository (#271)
  2068. - Require approval before accessing previously unknown unencrypted repositories (#271)
  2069. - Fix issue with hash index files larger than 2GB.
  2070. - Fix Python 3.2 compatibility issue with noatime open() (#164)
  2071. - Include missing pyx files in dist files (#168)
  2072. Version 0.14
  2073. ~~~~~~~~~~~~
  2074. (feature release, released on Dec 17, 2014)
  2075. - Added support for stripping leading path segments (#95)
  2076. "attic extract --strip-segments X"
  2077. - Add workaround for old Linux systems without acl_extended_file_no_follow (#96)
  2078. - Add MacPorts' path to the default openssl search path (#101)
  2079. - HashIndex improvements, eliminates unnecessary IO on low memory systems.
  2080. - Fix "Number of files" output for attic info. (#124)
  2081. - limit create file permissions so files aren't read while restoring
  2082. - Fix issue with empty xattr values (#106)
  2083. Version 0.13
  2084. ~~~~~~~~~~~~
  2085. (feature release, released on Jun 29, 2014)
  2086. - Fix sporadic "Resource temporarily unavailable" when using remote repositories
  2087. - Reduce file cache memory usage (#90)
  2088. - Faster AES encryption (utilizing AES-NI when available)
  2089. - Experimental Linux, OS X and FreeBSD ACL support (#66)
  2090. - Added support for backup and restore of BSDFlags (OSX, FreeBSD) (#56)
  2091. - Fix bug where xattrs on symlinks were not correctly restored
  2092. - Added cachedir support. CACHEDIR.TAG compatible cache directories
  2093. can now be excluded using ``--exclude-caches`` (#74)
  2094. - Fix crash on extreme mtime timestamps (year 2400+) (#81)
  2095. - Fix Python 3.2 specific lockf issue (EDEADLK)
  2096. Version 0.12
  2097. ~~~~~~~~~~~~
  2098. (feature release, released on April 7, 2014)
  2099. - Python 3.4 support (#62)
  2100. - Various documentation improvements a new style
  2101. - ``attic mount`` now supports mounting an entire repository not only
  2102. individual archives (#59)
  2103. - Added option to restrict remote repository access to specific path(s):
  2104. ``attic serve --restrict-to-path X`` (#51)
  2105. - Include "all archives" size information in "--stats" output. (#54)
  2106. - Added ``--stats`` option to ``attic delete`` and ``attic prune``
  2107. - Fixed bug where ``attic prune`` used UTC instead of the local time zone
  2108. when determining which archives to keep.
  2109. - Switch to SI units (Power of 1000 instead 1024) when printing file sizes
  2110. Version 0.11
  2111. ~~~~~~~~~~~~
  2112. (feature release, released on March 7, 2014)
  2113. - New "check" command for repository consistency checking (#24)
  2114. - Documentation improvements
  2115. - Fix exception during "attic create" with repeated files (#39)
  2116. - New "--exclude-from" option for attic create/extract/verify.
  2117. - Improved archive metadata deduplication.
  2118. - "attic verify" has been deprecated. Use "attic extract --dry-run" instead.
  2119. - "attic prune --hourly|daily|..." has been deprecated.
  2120. Use "attic prune --keep-hourly|daily|..." instead.
  2121. - Ignore xattr errors during "extract" if not supported by the filesystem. (#46)
  2122. Version 0.10
  2123. ~~~~~~~~~~~~
  2124. (bugfix release, released on Jan 30, 2014)
  2125. - Fix deadlock when extracting 0 sized files from remote repositories
  2126. - "--exclude" wildcard patterns are now properly applied to the full path
  2127. not just the file name part (#5).
  2128. - Make source code endianness agnostic (#1)
  2129. Version 0.9
  2130. ~~~~~~~~~~~
  2131. (feature release, released on Jan 23, 2014)
  2132. - Remote repository speed and reliability improvements.
  2133. - Fix sorting of segment names to ignore NFS left over files. (#17)
  2134. - Fix incorrect display of time (#13)
  2135. - Improved error handling / reporting. (#12)
  2136. - Use fcntl() instead of flock() when locking repository/cache. (#15)
  2137. - Let ssh figure out port/user if not specified so we don't override .ssh/config (#9)
  2138. - Improved libcrypto path detection (#23).
  2139. Version 0.8.1
  2140. ~~~~~~~~~~~~~
  2141. (bugfix release, released on Oct 4, 2013)
  2142. - Fix segmentation fault issue.
  2143. Version 0.8
  2144. ~~~~~~~~~~~
  2145. (feature release, released on Oct 3, 2013)
  2146. - Fix xattr issue when backing up sshfs filesystems (#4)
  2147. - Fix issue with excessive index file size (#6)
  2148. - Support access of read only repositories.
  2149. - New syntax to enable repository encryption:
  2150. attic init --encryption="none|passphrase|keyfile".
  2151. - Detect and abort if repository is older than the cache.
  2152. Version 0.7
  2153. ~~~~~~~~~~~
  2154. (feature release, released on Aug 5, 2013)
  2155. - Ported to FreeBSD
  2156. - Improved documentation
  2157. - Experimental: Archives mountable as FUSE filesystems.
  2158. - The "user." prefix is no longer stripped from xattrs on Linux
  2159. Version 0.6.1
  2160. ~~~~~~~~~~~~~
  2161. (bugfix release, released on July 19, 2013)
  2162. - Fixed an issue where mtime was not always correctly restored.
  2163. Version 0.6
  2164. ~~~~~~~~~~~
  2165. First public release on July 9, 2013