changes.rst 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647
  1. Changelog
  2. =========
  3. Important note about pre-1.0.4 potential repo corruption
  4. --------------------------------------------------------
  5. Some external errors (like network or disk I/O errors) could lead to
  6. corruption of the backup repository due to issue #1138.
  7. A sign that this happened is if "E" status was reported for a file that can
  8. not be explained by problems with the source file. If you still have logs from
  9. "borg create -v --list", you can check for "E" status.
  10. Here is what could cause corruption and what you can do now:
  11. 1) I/O errors (e.g. repo disk errors) while writing data to repo.
  12. This could lead to corrupted segment files.
  13. Fix::
  14. # check for corrupt chunks / segments:
  15. borg check -v --repository-only REPO
  16. # repair the repo:
  17. borg check -v --repository-only --repair REPO
  18. # make sure everything is fixed:
  19. borg check -v --repository-only REPO
  20. 2) Unreliable network / unreliable connection to the repo.
  21. This could lead to archive metadata corruption.
  22. Fix::
  23. # check for corrupt archives:
  24. borg check -v --archives-only REPO
  25. # delete the corrupt archives:
  26. borg delete --force REPO::CORRUPT_ARCHIVE
  27. # make sure everything is fixed:
  28. borg check -v --archives-only REPO
  29. 3) In case you want to do more intensive checking.
  30. The best check that everything is ok is to run a dry-run extraction::
  31. borg extract -v --dry-run REPO::ARCHIVE
  32. Version 1.1.0b2 (not released yet)
  33. ----------------------------------
  34. Bug fixes:
  35. - fix incorrect preservation of delete tags, leading to "object count mismatch"
  36. on borg check, #1598. This only occurred with 1.1.0b1 (not with 1.0.x) and is
  37. normally fixed by running another borg create/delete/prune.
  38. - fix broken --progress for double-cell paths (e.g. CJK), #1624
  39. - borg recreate: also catch SIGHUP
  40. - FUSE:
  41. - fix hardlinks in versions view, #1599
  42. - add parameter check to ItemCache.get to make potential failures more clear
  43. New features:
  44. - Archiver, RemoteRepository: add --remote-ratelimit (send data)
  45. - borg help compression, #1582
  46. - borg check: delete chunks with integrity errors, #1575, so they can be
  47. "repaired" immediately and maybe healed later.
  48. Other changes:
  49. - borg check --verify-data slightly tuned (use get_many())
  50. - Change {utcnow} and {now} to ISO-8601 format ("T" date/time separator)
  51. - repo check: log transaction IDs, improve object count mismatch diagnostic
  52. - Vagrantfile: use TW's fresh-bootloader pyinstaller branch
  53. Version 1.1.0b1 (2016-08-28)
  54. ----------------------------
  55. New features:
  56. - new commands:
  57. - borg recreate: re-create existing archives, #787 #686 #630 #70, also see
  58. #757, #770.
  59. - selectively remove files/dirs from old archives
  60. - re-compress data
  61. - re-chunkify data, e.g. to have upgraded Attic / Borg 0.xx archives
  62. deduplicate with Borg 1.x archives or to experiment with chunker-params.
  63. - borg diff: show differences between archives
  64. - borg with-lock: execute a command with the repository locked, #990
  65. - borg create:
  66. - Flexible compression with pattern matching on path/filename,
  67. and LZ4 heuristic for deciding compressibility, #810, #1007
  68. - visit files in inode order (better speed, esp. for large directories and rotating disks)
  69. - in-file checkpoints, #1217
  70. - increased default checkpoint interval to 30 minutes (was 5 minutes), #896
  71. - added uuid archive format tag, #1151
  72. - save mountpoint directories with --one-file-system, makes system restore easier, #1033
  73. - Linux: added support for some BSD flags, #1050
  74. - add 'x' status for excluded paths, #814
  75. - also means files excluded via UF_NODUMP, #1080
  76. - borg check:
  77. - will not produce the "Checking segments" output unless new --progress option is passed, #824.
  78. - --verify-data to verify data cryptographically on the client, #975
  79. - borg list, #751, #1179
  80. - removed {formatkeys}, see "borg list --help"
  81. - --list-format is deprecated, use --format instead
  82. - --format now also applies to listing archives, not only archive contents, #1179
  83. - now supports the usual [PATH [PATHS…]] syntax and excludes
  84. - new keys: csize, num_chunks, unique_chunks, NUL
  85. - supports guaranteed_available hashlib hashes
  86. (to avoid varying functionality depending on environment),
  87. which includes the SHA1 and SHA2 family as well as MD5
  88. - borg prune:
  89. - to better visualize the "thinning out", we now list all archives in
  90. reverse time order. rephrase and reorder help text.
  91. - implement --keep-last N via --keep-secondly N, also --keep-minutely.
  92. assuming that there is not more than 1 backup archive made in 1s,
  93. --keep-last N and --keep-secondly N are equivalent, #537
  94. - cleanup checkpoints except the latest, #1008
  95. - borg extract:
  96. - added --progress, #1449
  97. - Linux: limited support for BSD flags, #1050
  98. - borg info:
  99. - output is now more similar to borg create --stats, #977
  100. - borg mount:
  101. - provide "borgfs" wrapper for borg mount, enables usage via fstab, #743
  102. - "versions" mount option - when used with a repository mount, this gives
  103. a merged, versioned view of the files in all archives, #729
  104. - repository:
  105. - added progress information to commit/compaction phase (often takes some time when deleting/pruning), #1519
  106. - automatic recovery for some forms of repository inconsistency, #858
  107. - check free space before going forward with a commit, #1336
  108. - improved write performance (esp. for rotating media), #985
  109. - new IO code for Linux
  110. - raised default segment size to approx 512 MiB
  111. - improved compaction performance, #1041
  112. - reduced client CPU load and improved performance for remote repositories, #940
  113. - options that imply output (--show-rc, --show-version, --list, --stats,
  114. --progress) don't need -v/--info to have that output displayed, #865
  115. - add archive comments (via borg (re)create --comment), #842
  116. - borg list/prune/delete: also output archive id, #731
  117. - --show-version: shows/logs the borg version, #725
  118. - added --debug-topic for granular debug logging, #1447
  119. - use atomic file writing/updating for configuration and key files, #1377
  120. - BORG_KEY_FILE environment variable, #1001
  121. - self-testing module, #970
  122. Bug fixes:
  123. - list: fixed default output being produced if --format is given with empty parameter, #1489
  124. - create: fixed overflowing progress line with CJK and similar characters, #1051
  125. - prune: fixed crash if --prefix resulted in no matches, #1029
  126. - init: clean up partial repo if passphrase input is aborted, #850
  127. - info: quote cmdline arguments that have spaces in them
  128. - fix hardlinks failing in some cases for extracting subtrees, #761
  129. Other changes:
  130. - replace stdlib hmac with OpenSSL, zero-copy decrypt (10-15% increase in
  131. performance of hash-lists and extract).
  132. - improved chunker performance, #1021
  133. - open repository segment files in exclusive mode (fail-safe), #1134
  134. - improved error logging, #1440
  135. - Source:
  136. - pass meta-data around, #765
  137. - move some constants to new constants module
  138. - better readability and less errors with namedtuples, #823
  139. - moved source tree into src/ subdirectory, #1016
  140. - made borg.platform a package, #1113
  141. - removed dead crypto code, #1032
  142. - improved and ported parts of the test suite to py.test, #912
  143. - created data classes instead of passing dictionaries around, #981, #1158, #1161
  144. - cleaned up imports, #1112
  145. - Docs:
  146. - better help texts and sphinx reproduction of usage help:
  147. - Group options
  148. - Nicer list of options in Sphinx
  149. - Deduplicate 'Common options' (including --help)
  150. - chunker: added some insights by "Voltara", #903
  151. - clarify what "deduplicated size" means
  152. - fix / update / add package list entries
  153. - added a SaltStack usage example, #956
  154. - expanded FAQ
  155. - new contributors in AUTHORS!
  156. - Tests:
  157. - vagrant: add ubuntu/xenial 64bit - this box has still some issues
  158. - ChunkBuffer: add test for leaving partial chunk in buffer, fixes #945
  159. Version 1.0.7 (2016-08-19)
  160. --------------------------
  161. Security fixes:
  162. - borg serve: fix security issue with remote repository access, #1428
  163. If you used e.g. --restrict-to-path /path/client1/ (with or without trailing
  164. slash does not make a difference), it acted like a path prefix match using
  165. /path/client1 (note the missing trailing slash) - the code then also allowed
  166. working in e.g. /path/client13 or /path/client1000.
  167. As this could accidentally lead to major security/privacy issues depending on
  168. the pathes you use, the behaviour was changed to be a strict directory match.
  169. That means --restrict-to-path /path/client1 (with or without trailing slash
  170. does not make a difference) now uses /path/client1/ internally (note the
  171. trailing slash here!) for matching and allows precisely that path AND any
  172. path below it. So, /path/client1 is allowed, /path/client1/repo1 is allowed,
  173. but not /path/client13 or /path/client1000.
  174. If you willingly used the undocumented (dangerous) previous behaviour, you
  175. may need to rearrange your --restrict-to-path pathes now. We are sorry if
  176. that causes work for you, but we did not want a potentially dangerous
  177. behaviour in the software (not even using a for-backwards-compat option).
  178. Bug fixes:
  179. - fixed repeated LockTimeout exceptions when borg serve tried to write into
  180. a already write-locked repo (e.g. by a borg mount), #502 part b)
  181. This was solved by the fix for #1220 in 1.0.7rc1 already.
  182. - fix cosmetics + file leftover for "not a valid borg repository", #1490
  183. - Cache: release lock if cache is invalid, #1501
  184. - borg extract --strip-components: fix leak of preloaded chunk contents
  185. - Repository, when a InvalidRepository exception happens:
  186. - fix spurious, empty lock.roster
  187. - fix repo not closed cleanly
  188. New features:
  189. - implement borg debug-info, fixes #1122
  190. (just calls already existing code via cli, same output as below tracebacks)
  191. Other changes:
  192. - skip the O_NOATIME test on GNU Hurd, fixes #1315
  193. (this is a very minor issue and the GNU Hurd project knows the bug)
  194. - document using a clean repo to test / build the release
  195. Version 1.0.7rc2 (2016-08-13)
  196. -----------------------------
  197. Bug fixes:
  198. - do not write objects to repository that are bigger than the allowed size,
  199. borg will reject reading them, #1451.
  200. Important: if you created archives with many millions of files or
  201. directories, please verify if you can open them successfully,
  202. e.g. try a "borg list REPO::ARCHIVE".
  203. - lz4 compression: dynamically enlarge the (de)compression buffer, the static
  204. buffer was not big enough for archives with extremely many items, #1453
  205. - larger item metadata stream chunks, raise archive item limit by 8x, #1452
  206. - fix untracked segments made by moved DELETEs, #1442
  207. Impact: Previously (metadata) segments could become untracked when deleting data,
  208. these would never be cleaned up.
  209. - extended attributes (xattrs) related fixes:
  210. - fixed a race condition in xattrs querying that led to the entire file not
  211. being backed up (while logging the error, exit code = 1), #1469
  212. - fixed a race condition in xattrs querying that led to a crash, #1462
  213. - raise OSError including the error message derived from errno, deal with
  214. path being a integer FD
  215. Other changes:
  216. - print active env var override by default, #1467
  217. - xattr module: refactor code, deduplicate, clean up
  218. - repository: split object size check into too small and too big
  219. - add a transaction_id assertion, so borg init on a broken (inconsistent)
  220. filesystem does not look like a coding error in borg, but points to the
  221. real problem.
  222. - explain confusing TypeError caused by compat support for old servers, #1456
  223. - add forgotten usage help file from build_usage
  224. - refactor/unify buffer code into helpers.Buffer class, add tests
  225. - docs:
  226. - document archive limitation, #1452
  227. - improve prune examples
  228. Version 1.0.7rc1 (2016-08-05)
  229. -----------------------------
  230. Bug fixes:
  231. - fix repo lock deadlocks (related to lock upgrade), #1220
  232. - catch unpacker exceptions, resync, #1351
  233. - fix borg break-lock ignoring BORG_REPO env var, #1324
  234. - files cache performance fixes (fixes unneccessary re-reading/chunking/
  235. hashing of unmodified files for some use cases):
  236. - fix unintended file cache eviction, #1430
  237. - implement BORG_FILES_CACHE_TTL, update FAQ, raise default TTL from 10
  238. to 20, #1338
  239. - FUSE:
  240. - cache partially read data chunks (performance), #965, #966
  241. - always create a root dir, #1125
  242. - use an OrderedDict for helptext, making the build reproducible, #1346
  243. - RemoteRepository init: always call close on exceptions, #1370 (cosmetic)
  244. - ignore stdout/stderr broken pipe errors (cosmetic), #1116
  245. New features:
  246. - better borg versions management support (useful esp. for borg servers
  247. wanting to offer multiple borg versions and for clients wanting to choose
  248. a specific server borg version), #1392:
  249. - add BORG_VERSION environment variable before executing "borg serve" via ssh
  250. - add new placeholder {borgversion}
  251. - substitute placeholders in --remote-path
  252. - borg init --append-only option (makes using the more secure append-only mode
  253. more convenient. when used remotely, this requires 1.0.7+ also on the borg
  254. server), #1291.
  255. Other changes:
  256. - Vagrantfile:
  257. - darwin64: upgrade to FUSE for macOS 3.4.1 (aka osxfuse), #1378
  258. - xenial64: use user "ubuntu", not "vagrant" (as usual), #1331
  259. - tests:
  260. - fix fuse tests on OS X, #1433
  261. - docs:
  262. - FAQ: add backup using stable filesystem names recommendation
  263. - FAQ about glibc compatibility added, #491, glibc-check improved
  264. - FAQ: 'A' unchanged file; remove ambiguous entry age sentence.
  265. - OS X: install pkg-config to build with FUSE support, fixes #1400
  266. - add notes about shell/sudo pitfalls with env. vars, #1380
  267. - added platform feature matrix
  268. - implement borg debug-dump-repo-objs
  269. Version 1.0.6 (2016-07-12)
  270. --------------------------
  271. Bug fixes:
  272. - Linux: handle multiple LD_PRELOAD entries correctly, #1314, #1111
  273. - Fix crash with unclear message if the libc is not found, #1314, #1111
  274. Other changes:
  275. - tests:
  276. - Fixed O_NOATIME tests for Solaris and GNU Hurd, #1315
  277. - Fixed sparse file tests for (file) systems not supporting it, #1310
  278. - docs:
  279. - Fixed syntax highlighting, #1313
  280. - misc docs: added data processing overview picture
  281. Version 1.0.6rc1 (2016-07-10)
  282. -----------------------------
  283. New features:
  284. - borg check --repair: heal damaged files if missing chunks re-appear (e.g. if
  285. the previously missing chunk was added again in a later backup archive),
  286. #148. (*) Also improved logging.
  287. Bug fixes:
  288. - sync_dir: silence fsync() failing with EINVAL, #1287
  289. Some network filesystems (like smbfs) don't support this and we use this in
  290. repository code.
  291. - borg mount (FUSE):
  292. - fix directories being shadowed when contained paths were also specified,
  293. #1295
  294. - raise I/O Error (EIO) on damaged files (unless -o allow_damaged_files is
  295. used), #1302. (*)
  296. - borg extract: warn if a damaged file is extracted, #1299. (*)
  297. - Added some missing return code checks (ChunkIndex._add, hashindex_resize).
  298. - borg check: fix/optimize initial hash table size, avoids resize of the table.
  299. Other changes:
  300. - tests:
  301. - add more FUSE tests, #1284
  302. - deduplicate fuse (u)mount code
  303. - fix borg binary test issues, #862
  304. - docs:
  305. - changelog: added release dates to older borg releases
  306. - fix some sphinx (docs generator) warnings, #881
  307. Notes:
  308. (*) Some features depend on information (chunks_healthy list) added to item
  309. metadata when a file with missing chunks was "repaired" using all-zero
  310. replacement chunks. The chunks_healthy list is generated since borg 1.0.4,
  311. thus borg can't recognize such "repaired" (but content-damaged) files if the
  312. repair was done with an older borg version.
  313. Version 1.0.5 (2016-07-07)
  314. --------------------------
  315. Bug fixes:
  316. - borg mount: fix FUSE crash in xattr code on Linux introduced in 1.0.4, #1282
  317. Other changes:
  318. - backport some FAQ entries from master branch
  319. - add release helper scripts
  320. - Vagrantfile:
  321. - centos6: no FUSE, don't build binary
  322. - add xz for redhat-like dists
  323. Version 1.0.4 (2016-07-07)
  324. --------------------------
  325. New features:
  326. - borg serve --append-only, #1168
  327. This was included because it was a simple change (append-only functionality
  328. was already present via repository config file) and makes better security now
  329. practically usable.
  330. - BORG_REMOTE_PATH environment variable, #1258
  331. This was included because it was a simple change (--remote-path cli option
  332. was already present) and makes borg much easier to use if you need it.
  333. - Repository: cleanup incomplete transaction on "no space left" condition.
  334. In many cases, this can avoid a 100% full repo filesystem (which is very
  335. problematic as borg always needs free space - even to delete archives).
  336. Bug fixes:
  337. - Fix wrong handling and reporting of OSErrors in borg create, #1138.
  338. This was a serious issue: in the context of "borg create", errors like
  339. repository I/O errors (e.g. disk I/O errors, ssh repo connection errors)
  340. were handled badly and did not lead to a crash (which would be good for this
  341. case, because the repo transaction would be incomplete and trigger a
  342. transaction rollback to clean up).
  343. Now, error handling for source files is cleanly separated from every other
  344. error handling, so only problematic input files are logged and skipped.
  345. - Implement fail-safe error handling for borg extract.
  346. Note that this isn't nearly as critical as the borg create error handling
  347. bug, since nothing is written to the repo. So this was "merely" misleading
  348. error reporting.
  349. - Add missing error handler in directory attr restore loop.
  350. - repo: make sure write data hits disk before the commit tag (#1236) and also
  351. sync the containing directory.
  352. - FUSE: getxattr fail must use errno.ENOATTR, #1126
  353. (fixes Mac OS X Finder malfunction: "zero bytes" file length, access denied)
  354. - borg check --repair: do not lose information about the good/original chunks.
  355. If we do not lose the original chunk IDs list when "repairing" a file
  356. (replacing missing chunks with all-zero chunks), we have a chance to "heal"
  357. the file back into its original state later, in case the chunks re-appear
  358. (e.g. in a fresh backup). Healing is not implemented yet, see #148.
  359. - fixes for --read-special mode:
  360. - ignore known files cache, #1241
  361. - fake regular file mode, #1214
  362. - improve symlinks handling, #1215
  363. - remove passphrase from subprocess environment, #1105
  364. - Ignore empty index file (will trigger index rebuild), #1195
  365. - add missing placeholder support for --prefix, #1027
  366. - improve exception handling for placeholder replacement
  367. - catch and format exceptions in arg parsing
  368. - helpers: fix "undefined name 'e'" in exception handler
  369. - better error handling for missing repo manifest, #1043
  370. - borg delete:
  371. - make it possible to delete a repo without manifest
  372. - borg delete --forced allows to delete corrupted archives, #1139
  373. - borg check:
  374. - make borg check work for empty repo
  375. - fix resync and msgpacked item qualifier, #1135
  376. - rebuild_manifest: fix crash if 'name' or 'time' key were missing.
  377. - better validation of item metadata dicts, #1130
  378. - better validation of archive metadata dicts
  379. - close the repo on exit - even if rollback did not work, #1197.
  380. This is rather cosmetic, it avoids repo closing in the destructor.
  381. - tests:
  382. - fix sparse file test, #1170
  383. - flake8: ignore new F405, #1185
  384. - catch "invalid argument" on cygwin, #257
  385. - fix sparseness assertion in test prep, #1264
  386. Other changes:
  387. - make borg build/work on OpenSSL 1.0 and 1.1, #1187
  388. - docs / help:
  389. - fix / clarify prune help, #1143
  390. - fix "patterns" help formatting
  391. - add missing docs / help about placeholders
  392. - resources: rename atticmatic to borgmatic
  393. - document sshd settings, #545
  394. - more details about checkpoints, add split trick, #1171
  395. - support docs: add freenode web chat link, #1175
  396. - add prune visualization / example, #723
  397. - add note that Fnmatch is default, #1247
  398. - make clear that lzma levels > 6 are a waste of cpu cycles
  399. - add a "do not edit" note to auto-generated files, #1250
  400. - update cygwin installation docs
  401. - repository interoperability with borg master (1.1dev) branch:
  402. - borg check: read item metadata keys from manifest, #1147
  403. - read v2 hints files, #1235
  404. - fix hints file "unknown version" error handling bug
  405. - tests: add tests for format_line
  406. - llfuse: update version requirement for freebsd
  407. - Vagrantfile:
  408. - use openbsd 5.9, #716
  409. - do not install llfuse on netbsd (broken)
  410. - update OSXfuse to version 3.3.3
  411. - use Python 3.5.2 to build the binaries
  412. - glibc compatibility checker: scripts/glibc_check.py
  413. - add .eggs to .gitignore
  414. Version 1.0.3 (2016-05-20)
  415. --------------------------
  416. Bug fixes:
  417. - prune: avoid that checkpoints are kept and completed archives are deleted in
  418. a prune run), #997
  419. - prune: fix commandline argument validation - some valid command lines were
  420. considered invalid (annoying, but harmless), #942
  421. - fix capabilities extraction on Linux (set xattrs last, after chown()), #1069
  422. - repository: fix commit tags being seen in data
  423. - when probing key files, do binary reads. avoids crash when non-borg binary
  424. files are located in borg's key files directory.
  425. - handle SIGTERM and make a clean exit - avoids orphan lock files.
  426. - repository cache: don't cache large objects (avoid using lots of temp. disk
  427. space), #1063
  428. Other changes:
  429. - Vagrantfile: OS X: update osxfuse / install lzma package, #933
  430. - setup.py: add check for platform_darwin.c
  431. - setup.py: on freebsd, use a llfuse release that builds ok
  432. - docs / help:
  433. - update readthedocs URLs, #991
  434. - add missing docs for "borg break-lock", #992
  435. - borg create help: add some words to about the archive name
  436. - borg create help: document format tags, #894
  437. Version 1.0.2 (2016-04-16)
  438. --------------------------
  439. Bug fixes:
  440. - fix malfunction and potential corruption on (nowadays rather rare) big-endian
  441. architectures or bi-endian archs in (rare) BE mode. #886, #889
  442. cache resync / index merge was malfunctioning due to this, potentially
  443. leading to data loss. borg info had cosmetic issues (displayed wrong values).
  444. note: all (widespread) little-endian archs (like x86/x64) or bi-endian archs
  445. in (widespread) LE mode (like ARMEL, MIPSEL, ...) were NOT affected.
  446. - add overflow and range checks for 1st (special) uint32 of the hashindex
  447. values, switch from int32 to uint32.
  448. - fix so that refcount will never overflow, but just stick to max. value after
  449. a overflow would have occured.
  450. - borg delete: fix --cache-only for broken caches, #874
  451. Makes --cache-only idempotent: it won't fail if the cache is already deleted.
  452. - fixed borg create --one-file-system erroneously traversing into other
  453. filesystems (if starting fs device number was 0), #873
  454. - workround a bug in Linux fadvise FADV_DONTNEED, #907
  455. Other changes:
  456. - better test coverage for hashindex, incl. overflow testing, checking correct
  457. computations so endianness issues would be discovered.
  458. - reproducible doc for ProgressIndicator*, make the build reproducible.
  459. - use latest llfuse for vagrant machines
  460. - docs:
  461. - use /path/to/repo in examples, fixes #901
  462. - fix confusing usage of "repo" as archive name (use "arch")
  463. Version 1.0.1 (2016-04-08)
  464. --------------------------
  465. New features:
  466. Usually there are no new features in a bugfix release, but these were added
  467. due to their high impact on security/safety/speed or because they are fixes
  468. also:
  469. - append-only mode for repositories, #809, #36 (see docs)
  470. - borg create: add --ignore-inode option to make borg detect unmodified files
  471. even if your filesystem does not have stable inode numbers (like sshfs and
  472. possibly CIFS).
  473. - add options --warning, --error, --critical for missing log levels, #826.
  474. it's not recommended to suppress warnings or errors, but the user may decide
  475. this on his own.
  476. note: --warning is not given to borg serve so a <= 1.0.0 borg will still
  477. work as server (it is not needed as it is the default).
  478. do not use --error or --critical when using a <= 1.0.0 borg server.
  479. Bug fixes:
  480. - fix silently skipping EIO, #748
  481. - add context manager for Repository (avoid orphan repository locks), #285
  482. - do not sleep for >60s while waiting for lock, #773
  483. - unpack file stats before passing to FUSE
  484. - fix build on illumos
  485. - don't try to backup doors or event ports (Solaris and derivates)
  486. - remove useless/misleading libc version display, #738
  487. - test suite: reset exit code of persistent archiver, #844
  488. - RemoteRepository: clean up pipe if remote open() fails
  489. - Remote: don't print tracebacks for Error exceptions handled downstream, #792
  490. - if BORG_PASSPHRASE is present but wrong, don't prompt for password, but fail
  491. instead, #791
  492. - ArchiveChecker: move "orphaned objects check skipped" to INFO log level, #826
  493. - fix capitalization, add ellipses, change log level to debug for 2 messages,
  494. #798
  495. Other changes:
  496. - update llfuse requirement, llfuse 1.0 works
  497. - update OS / dist packages on build machines, #717
  498. - prefer showing --info over -v in usage help, #859
  499. - docs:
  500. - fix cygwin requirements (gcc-g++)
  501. - document how to debug / file filesystem issues, #664
  502. - fix reproducible build of api docs
  503. - RTD theme: CSS !important overwrite, #727
  504. - Document logo font. Recreate logo png. Remove GIMP logo file.
  505. Version 1.0.0 (2016-03-05)
  506. --------------------------
  507. The major release number change (0.x -> 1.x) indicates bigger incompatible
  508. changes, please read the compatibility notes, adapt / test your scripts and
  509. check your backup logs.
  510. Compatibility notes:
  511. - drop support for python 3.2 and 3.3, require 3.4 or 3.5, #221 #65 #490
  512. note: we provide binaries that include python 3.5.1 and everything else
  513. needed. they are an option in case you are stuck with < 3.4 otherwise.
  514. - change encryption to be on by default (using "repokey" mode)
  515. - moved keyfile keys from ~/.borg/keys to ~/.config/borg/keys,
  516. you can either move them manually or run "borg upgrade <REPO>"
  517. - remove support for --encryption=passphrase,
  518. use borg migrate-to-repokey to switch to repokey mode, #97
  519. - remove deprecated --compression <number>,
  520. use --compression zlib,<number> instead
  521. in case of 0, you could also use --compression none
  522. - remove deprecated --hourly/daily/weekly/monthly/yearly
  523. use --keep-hourly/daily/weekly/monthly/yearly instead
  524. - remove deprecated --do-not-cross-mountpoints,
  525. use --one-file-system instead
  526. - disambiguate -p option, #563:
  527. - -p now is same as --progress
  528. - -P now is same as --prefix
  529. - remove deprecated "borg verify",
  530. use "borg extract --dry-run" instead
  531. - cleanup environment variable semantics, #355
  532. the environment variables used to be "yes sayers" when set, this was
  533. conceptually generalized to "automatic answerers" and they just give their
  534. value as answer (as if you typed in that value when being asked).
  535. See the "usage" / "Environment Variables" section of the docs for details.
  536. - change the builtin default for --chunker-params, create 2MiB chunks, #343
  537. --chunker-params new default: 19,23,21,4095 - old default: 10,23,16,4095
  538. one of the biggest issues with borg < 1.0 (and also attic) was that it had a
  539. default target chunk size of 64kiB, thus it created a lot of chunks and thus
  540. also a huge chunk management overhead (high RAM and disk usage).
  541. please note that the new default won't change the chunks that you already
  542. have in your repository. the new big chunks do not deduplicate with the old
  543. small chunks, so expect your repo to grow at least by the size of every
  544. changed file and in the worst case (e.g. if your files cache was lost / is
  545. not used) by the size of every file (minus any compression you might use).
  546. in case you want to immediately see a much lower resource usage (RAM / disk)
  547. for chunks management, it might be better to start with a new repo than
  548. continuing in the existing repo (with an existing repo, you'ld have to wait
  549. until all archives with small chunks got pruned to see a lower resource
  550. usage).
  551. if you used the old --chunker-params default value (or if you did not use
  552. --chunker-params option at all) and you'ld like to continue using small
  553. chunks (and you accept the huge resource usage that comes with that), just
  554. explicitly use borg create --chunker-params=10,23,16,4095.
  555. - archive timestamps: the 'time' timestamp now refers to archive creation
  556. start time (was: end time), the new 'time_end' timestamp refers to archive
  557. creation end time. This might affect prune if your backups take rather long.
  558. if you give a timestamp via cli this is stored into 'time', therefore it now
  559. needs to mean archive creation start time.
  560. New features:
  561. - implement password roundtrip, #695
  562. Bug fixes:
  563. - remote end does not need cache nor keys directories, do not create them, #701
  564. - added retry counter for passwords, #703
  565. Other changes:
  566. - fix compiler warnings, #697
  567. - docs:
  568. - update README.rst to new changelog location in docs/changes.rst
  569. - add Teemu to AUTHORS
  570. - changes.rst: fix old chunker params, #698
  571. - FAQ: how to limit bandwidth
  572. Version 1.0.0rc2 (2016-02-28)
  573. -----------------------------
  574. New features:
  575. - format options for location: user, pid, fqdn, hostname, now, utcnow, user
  576. - borg list --list-format
  577. - borg prune -v --list enables the keep/prune list output, #658
  578. Bug fixes:
  579. - fix _open_rb noatime handling, #657
  580. - add a simple archivename validator, #680
  581. - borg create --stats: show timestamps in localtime, use same labels/formatting
  582. as borg info, #651
  583. - llfuse compatibility fixes (now compatible with: 0.40, 0.41, 0.42)
  584. Other changes:
  585. - it is now possible to use "pip install borgbackup[fuse]" to automatically
  586. install the llfuse dependency using the correct version requirement
  587. for it. you still need to care about having installed the FUSE / build
  588. related OS package first, though, so that building llfuse can succeed.
  589. - Vagrant: drop Ubuntu Precise (12.04) - does not have Python >= 3.4
  590. - Vagrant: use pyinstaller v3.1.1 to build binaries
  591. - docs:
  592. - borg upgrade: add to docs that only LOCAL repos are supported
  593. - borg upgrade also handles borg 0.xx -> 1.0
  594. - use pip extras or requirements file to install llfuse
  595. - fix order in release process
  596. - updated usage docs and other minor / cosmetic fixes
  597. - verified borg examples in docs, #644
  598. - freebsd dependency installation and fuse configuration, #649
  599. - add example how to restore a raw device, #671
  600. - add a hint about the dev headers needed when installing from source
  601. - add examples for delete (and handle delete after list, before prune), #656
  602. - update example for borg create -v --stats (use iso datetime format), #663
  603. - added example to BORG_RSH docs
  604. - "connection closed by remote": add FAQ entry and point to issue #636
  605. Version 1.0.0rc1 (2016-02-07)
  606. -----------------------------
  607. New features:
  608. - borg migrate-to-repokey ("passphrase" -> "repokey" encryption key mode)
  609. - implement --short for borg list REPO, #611
  610. - implement --list for borg extract (consistency with borg create)
  611. - borg serve: overwrite client's --restrict-to-path with ssh forced command's
  612. option value (but keep everything else from the client commandline), #544
  613. - use $XDG_CONFIG_HOME/keys for keyfile keys (~/.config/borg/keys), #515
  614. - "borg upgrade" moves the keyfile keys to the new location
  615. - display both archive creation start and end time in "borg info", #627
  616. Bug fixes:
  617. - normalize trailing slashes for the repository path, #606
  618. - Cache: fix exception handling in __init__, release lock, #610
  619. Other changes:
  620. - suppress unneeded exception context (PEP 409), simpler tracebacks
  621. - removed special code needed to deal with imperfections / incompatibilities /
  622. missing stuff in py 3.2/3.3, simplify code that can be done simpler in 3.4
  623. - removed some version requirements that were kept on old versions because
  624. newer did not support py 3.2 any more
  625. - use some py 3.4+ stdlib code instead of own/openssl/pypi code:
  626. - use os.urandom instead of own cython openssl RAND_bytes wrapper, #493
  627. - use hashlib.pbkdf2_hmac from py stdlib instead of own openssl wrapper
  628. - use hmac.compare_digest instead of == operator (constant time comparison)
  629. - use stat.filemode instead of homegrown code
  630. - use "mock" library from stdlib, #145
  631. - remove borg.support (with non-broken argparse copy), it is ok in 3.4+, #358
  632. - Vagrant: copy CHANGES.rst as symlink, #592
  633. - cosmetic code cleanups, add flake8 to tox/travis, #4
  634. - docs / help:
  635. - make "borg -h" output prettier, #591
  636. - slightly rephrase prune help
  637. - add missing example for --list option of borg create
  638. - quote exclude line that includes an asterisk to prevent shell expansion
  639. - fix dead link to license
  640. - delete Ubuntu Vivid, it is not supported anymore (EOL)
  641. - OS X binary does not work for older OS X releases, #629
  642. - borg serve's special support for forced/original ssh commands, #544
  643. - misc. updates and fixes
  644. Version 0.30.0 (2016-01-23)
  645. ---------------------------
  646. Compatibility notes:
  647. - you may need to use -v (or --info) more often to actually see output emitted
  648. at INFO log level (because it is suppressed at the default WARNING log level).
  649. See the "general" section in the usage docs.
  650. - for borg create, you need --list (additionally to -v) to see the long file
  651. list (was needed so you can have e.g. --stats alone without the long list)
  652. - see below about BORG_DELETE_I_KNOW_WHAT_I_AM_DOING (was:
  653. BORG_CHECK_I_KNOW_WHAT_I_AM_DOING)
  654. Bug fixes:
  655. - fix crash when using borg create --dry-run --keep-tag-files, #570
  656. - make sure teardown with cleanup happens for Cache and RepositoryCache,
  657. avoiding leftover locks and TEMP dir contents, #285 (partially), #548
  658. - fix locking KeyError, partial fix for #502
  659. - log stats consistently, #526
  660. - add abbreviated weekday to timestamp format, fixes #496
  661. - strip whitespace when loading exclusions from file
  662. - unset LD_LIBRARY_PATH before invoking ssh, fixes strange OpenSSL library
  663. version warning when using the borg binary, #514
  664. - add some error handling/fallback for C library loading, #494
  665. - added BORG_DELETE_I_KNOW_WHAT_I_AM_DOING for check in "borg delete", #503
  666. - remove unused "repair" rpc method name
  667. New features:
  668. - borg create: implement exclusions using regular expression patterns.
  669. - borg create: implement inclusions using patterns.
  670. - borg extract: support patterns, #361
  671. - support different styles for patterns:
  672. - fnmatch (`fm:` prefix, default when omitted), like borg <= 0.29.
  673. - shell (`sh:` prefix) with `*` not matching directory separators and
  674. `**/` matching 0..n directories
  675. - path prefix (`pp:` prefix, for unifying borg create pp1 pp2 into the
  676. patterns system), semantics like in borg <= 0.29
  677. - regular expression (`re:`), new!
  678. - --progress option for borg upgrade (#291) and borg delete <archive>
  679. - update progress indication more often (e.g. for borg create within big
  680. files or for borg check repo), #500
  681. - finer chunker granularity for items metadata stream, #547, #487
  682. - borg create --list now used (additionally to -v) to enable the verbose
  683. file list output
  684. - display borg version below tracebacks, #532
  685. Other changes:
  686. - hashtable size (and thus: RAM and disk consumption) follows a growth policy:
  687. grows fast while small, grows slower when getting bigger, #527
  688. - Vagrantfile: use pyinstaller 3.1 to build binaries, freebsd sqlite3 fix,
  689. fixes #569
  690. - no separate binaries for centos6 any more because the generic linux binaries
  691. also work on centos6 (or in general: on systems with a slightly older glibc
  692. than debian7
  693. - dev environment: require virtualenv<14.0 so we get a py32 compatible pip
  694. - docs:
  695. - add space-saving chunks.archive.d trick to FAQ
  696. - important: clarify -v and log levels in usage -> general, please read!
  697. - sphinx configuration: create a simple man page from usage docs
  698. - add a repo server setup example
  699. - disable unneeded SSH features in authorized_keys examples for security.
  700. - borg prune only knows "--keep-within" and not "--within"
  701. - add gource video to resources docs, #507
  702. - add netbsd install instructions
  703. - authors: make it more clear what refers to borg and what to attic
  704. - document standalone binary requirements, #499
  705. - rephrase the mailing list section
  706. - development docs: run build_api and build_usage before tagging release
  707. - internals docs: hash table max. load factor is 0.75 now
  708. - markup, typo, grammar, phrasing, clarifications and other fixes.
  709. - add gcc gcc-c++ to redhat/fedora/corora install docs, fixes #583
  710. Version 0.29.0 (2015-12-13)
  711. ---------------------------
  712. Compatibility notes:
  713. - when upgrading to 0.29.0 you need to upgrade client as well as server
  714. installations due to the locking and commandline interface changes otherwise
  715. you'll get an error msg about a RPC protocol mismatch or a wrong commandline
  716. option.
  717. if you run a server that needs to support both old and new clients, it is
  718. suggested that you have a "borg-0.28.2" and a "borg-0.29.0" command.
  719. clients then can choose via e.g. "borg --remote-path=borg-0.29.0 ...".
  720. - the default waiting time for a lock changed from infinity to 1 second for a
  721. better interactive user experience. if the repo you want to access is
  722. currently locked, borg will now terminate after 1s with an error message.
  723. if you have scripts that shall wait for the lock for a longer time, use
  724. --lock-wait N (with N being the maximum wait time in seconds).
  725. Bug fixes:
  726. - hash table tuning (better chosen hashtable load factor 0.75 and prime initial
  727. size of 1031 gave ~1000x speedup in some scenarios)
  728. - avoid creation of an orphan lock for one case, #285
  729. - --keep-tag-files: fix file mode and multiple tag files in one directory, #432
  730. - fixes for "borg upgrade" (attic repo converter), #466
  731. - remove --progress isatty magic (and also --no-progress option) again, #476
  732. - borg init: display proper repo URL
  733. - fix format of umask in help pages, #463
  734. New features:
  735. - implement --lock-wait, support timeout for UpgradableLock, #210
  736. - implement borg break-lock command, #157
  737. - include system info below traceback, #324
  738. - sane remote logging, remote stderr, #461:
  739. - remote log output: intercept it and log it via local logging system,
  740. with "Remote: " prefixed to message. log remote tracebacks.
  741. - remote stderr: output it to local stderr with "Remote: " prefixed.
  742. - add --debug and --info (same as --verbose) to set the log level of the
  743. builtin logging configuration (which otherwise defaults to warning), #426
  744. note: there are few messages emitted at DEBUG level currently.
  745. - optionally configure logging via env var BORG_LOGGING_CONF
  746. - add --filter option for status characters: e.g. to show only the added
  747. or modified files (and also errors), use "borg create -v --filter=AME ...".
  748. - more progress indicators, #394
  749. - use ISO-8601 date and time format, #375
  750. - "borg check --prefix" to restrict archive checking to that name prefix, #206
  751. Other changes:
  752. - hashindex_add C implementation (speed up cache re-sync for new archives)
  753. - increase FUSE read_size to 1024 (speed up metadata operations)
  754. - check/delete/prune --save-space: free unused segments quickly, #239
  755. - increase rpc protocol version to 2 (see also Compatibility notes), #458
  756. - silence borg by default (via default log level WARNING)
  757. - get rid of C compiler warnings, #391
  758. - upgrade OS X FUSE to 3.0.9 on the OS X binary build system
  759. - use python 3.5.1 to build binaries
  760. - docs:
  761. - new mailing list borgbackup@python.org, #468
  762. - readthedocs: color and logo improvements
  763. - load coverage icons over SSL (avoids mixed content)
  764. - more precise binary installation steps
  765. - update release procedure docs about OS X FUSE
  766. - FAQ entry about unexpected 'A' status for unchanged file(s), #403
  767. - add docs about 'E' file status
  768. - add "borg upgrade" docs, #464
  769. - add developer docs about output and logging
  770. - clarify encryption, add note about client-side encryption
  771. - add resources section, with videos, talks, presentations, #149
  772. - Borg moved to Arch Linux [community]
  773. - fix wrong installation instructions for archlinux
  774. Version 0.28.2 (2015-11-15)
  775. ---------------------------
  776. New features:
  777. - borg create --exclude-if-present TAGFILE - exclude directories that have the
  778. given file from the backup. You can additionally give --keep-tag-files to
  779. preserve just the directory roots and the tag-files (but not backup other
  780. directory contents), #395, attic #128, attic #142
  781. Other changes:
  782. - do not create docs sources at build time (just have them in the repo),
  783. completely remove have_cython() hack, do not use the "mock" library at build
  784. time, #384
  785. - avoid hidden import, make it easier for PyInstaller, easier fix for #218
  786. - docs:
  787. - add description of item flags / status output, fixes #402
  788. - explain how to regenerate usage and API files (build_api or
  789. build_usage) and when to commit usage files directly into git, #384
  790. - minor install docs improvements
  791. Version 0.28.1 (2015-11-08)
  792. ---------------------------
  793. Bug fixes:
  794. - do not try to build api / usage docs for production install,
  795. fixes unexpected "mock" build dependency, #384
  796. Other changes:
  797. - avoid using msgpack.packb at import time
  798. - fix formatting issue in changes.rst
  799. - fix build on readthedocs
  800. Version 0.28.0 (2015-11-08)
  801. ---------------------------
  802. Compatibility notes:
  803. - changed return codes (exit codes), see docs. in short:
  804. old: 0 = ok, 1 = error. now: 0 = ok, 1 = warning, 2 = error
  805. New features:
  806. - refactor return codes (exit codes), fixes #61
  807. - add --show-rc option enable "terminating with X status, rc N" output, fixes 58, #351
  808. - borg create backups atime and ctime additionally to mtime, fixes #317
  809. - extract: support atime additionally to mtime
  810. - FUSE: support ctime and atime additionally to mtime
  811. - support borg --version
  812. - emit a warning if we have a slow msgpack installed
  813. - borg list --prefix=thishostname- REPO, fixes #205
  814. - Debug commands (do not use except if you know what you do: debug-get-obj,
  815. debug-put-obj, debug-delete-obj, debug-dump-archive-items.
  816. Bug fixes:
  817. - setup.py: fix bug related to BORG_LZ4_PREFIX processing
  818. - fix "check" for repos that have incomplete chunks, fixes #364
  819. - borg mount: fix unlocking of repository at umount time, fixes #331
  820. - fix reading files without touching their atime, #334
  821. - non-ascii ACL fixes for Linux, FreeBSD and OS X, #277
  822. - fix acl_use_local_uid_gid() and add a test for it, attic #359
  823. - borg upgrade: do not upgrade repositories in place by default, #299
  824. - fix cascading failure with the index conversion code, #269
  825. - borg check: implement 'cmdline' archive metadata value decoding, #311
  826. - fix RobustUnpacker, it missed some metadata keys (new atime and ctime keys
  827. were missing, but also bsdflags). add check for unknown metadata keys.
  828. - create from stdin: also save atime, ctime (cosmetic)
  829. - use default_notty=False for confirmations, fixes #345
  830. - vagrant: fix msgpack installation on centos, fixes #342
  831. - deal with unicode errors for symlinks in same way as for regular files and
  832. have a helpful warning message about how to fix wrong locale setup, fixes #382
  833. - add ACL keys the RobustUnpacker must know about
  834. Other changes:
  835. - improve file size displays, more flexible size formatters
  836. - explicitly commit to the units standard, #289
  837. - archiver: add E status (means that an error occurred when processing this
  838. (single) item
  839. - do binary releases via "github releases", closes #214
  840. - create: use -x and --one-file-system (was: --do-not-cross-mountpoints), #296
  841. - a lot of changes related to using "logging" module and screen output, #233
  842. - show progress display if on a tty, output more progress information, #303
  843. - factor out status output so it is consistent, fix surrogates removal,
  844. maybe fixes #309
  845. - move away from RawConfigParser to ConfigParser
  846. - archive checker: better error logging, give chunk_id and sequence numbers
  847. (can be used together with borg debug-dump-archive-items).
  848. - do not mention the deprecated passphrase mode
  849. - emit a deprecation warning for --compression N (giving a just a number)
  850. - misc .coverragerc fixes (and coverage measurement improvements), fixes #319
  851. - refactor confirmation code, reduce code duplication, add tests
  852. - prettier error messages, fixes #307, #57
  853. - tests:
  854. - add a test to find disk-full issues, #327
  855. - travis: also run tests on Python 3.5
  856. - travis: use tox -r so it rebuilds the tox environments
  857. - test the generated pyinstaller-based binary by archiver unit tests, #215
  858. - vagrant: tests: announce whether fakeroot is used or not
  859. - vagrant: add vagrant user to fuse group for debianoid systems also
  860. - vagrant: llfuse install on darwin needs pkgconfig installed
  861. - vagrant: use pyinstaller from develop branch, fixes #336
  862. - benchmarks: test create, extract, list, delete, info, check, help, fixes #146
  863. - benchmarks: test with both the binary and the python code
  864. - archiver tests: test with both the binary and the python code, fixes #215
  865. - make basic test more robust
  866. - docs:
  867. - moved docs to borgbackup.readthedocs.org, #155
  868. - a lot of fixes and improvements, use mobile-friendly RTD standard theme
  869. - use zlib,6 compression in some examples, fixes #275
  870. - add missing rename usage to docs, closes #279
  871. - include the help offered by borg help <topic> in the usage docs, fixes #293
  872. - include a list of major changes compared to attic into README, fixes #224
  873. - add OS X install instructions, #197
  874. - more details about the release process, #260
  875. - fix linux glibc requirement (binaries built on debian7 now)
  876. - build: move usage and API generation to setup.py
  877. - update docs about return codes, #61
  878. - remove api docs (too much breakage on rtd)
  879. - borgbackup install + basics presentation (asciinema)
  880. - describe the current style guide in documentation
  881. - add section about debug commands
  882. - warn about not running out of space
  883. - add example for rename
  884. - improve chunker params docs, fixes #362
  885. - minor development docs update
  886. Version 0.27.0 (2015-10-07)
  887. ---------------------------
  888. New features:
  889. - "borg upgrade" command - attic -> borg one time converter / migration, #21
  890. - temporary hack to avoid using lots of disk space for chunks.archive.d, #235:
  891. To use it: rm -rf chunks.archive.d ; touch chunks.archive.d
  892. - respect XDG_CACHE_HOME, attic #181
  893. - add support for arbitrary SSH commands, attic #99
  894. - borg delete --cache-only REPO (only delete cache, not REPO), attic #123
  895. Bug fixes:
  896. - use Debian 7 (wheezy) to build pyinstaller borgbackup binaries, fixes slow
  897. down observed when running the Centos6-built binary on Ubuntu, #222
  898. - do not crash on empty lock.roster, fixes #232
  899. - fix multiple issues with the cache config version check, #234
  900. - fix segment entry header size check, attic #352
  901. plus other error handling improvements / code deduplication there.
  902. - always give segment and offset in repo IntegrityErrors
  903. Other changes:
  904. - stop producing binary wheels, remove docs about it, #147
  905. - docs:
  906. - add warning about prune
  907. - generate usage include files only as needed
  908. - development docs: add Vagrant section
  909. - update / improve / reformat FAQ
  910. - hint to single-file pyinstaller binaries from README
  911. Version 0.26.1 (2015-09-28)
  912. ---------------------------
  913. This is a minor update, just docs and new pyinstaller binaries.
  914. - docs update about python and binary requirements
  915. - better docs for --read-special, fix #220
  916. - re-built the binaries, fix #218 and #213 (glibc version issue)
  917. - update web site about single-file pyinstaller binaries
  918. Note: if you did a python-based installation, there is no need to upgrade.
  919. Version 0.26.0 (2015-09-19)
  920. ---------------------------
  921. New features:
  922. - Faster cache sync (do all in one pass, remove tar/compression stuff), #163
  923. - BORG_REPO env var to specify the default repo, #168
  924. - read special files as if they were regular files, #79
  925. - implement borg create --dry-run, attic issue #267
  926. - Normalize paths before pattern matching on OS X, #143
  927. - support OpenBSD and NetBSD (except xattrs/ACLs)
  928. - support / run tests on Python 3.5
  929. Bug fixes:
  930. - borg mount repo: use absolute path, attic #200, attic #137
  931. - chunker: use off_t to get 64bit on 32bit platform, #178
  932. - initialize chunker fd to -1, so it's not equal to STDIN_FILENO (0)
  933. - fix reaction to "no" answer at delete repo prompt, #182
  934. - setup.py: detect lz4.h header file location
  935. - to support python < 3.2.4, add less buggy argparse lib from 3.2.6 (#194)
  936. - fix for obtaining ``char *`` from temporary Python value (old code causes
  937. a compile error on Mint 17.2)
  938. - llfuse 0.41 install troubles on some platforms, require < 0.41
  939. (UnicodeDecodeError exception due to non-ascii llfuse setup.py)
  940. - cython code: add some int types to get rid of unspecific python add /
  941. subtract operations (avoid ``undefined symbol FPE_``... error on some platforms)
  942. - fix verbose mode display of stdin backup
  943. - extract: warn if a include pattern never matched, fixes #209,
  944. implement counters for Include/ExcludePatterns
  945. - archive names with slashes are invalid, attic issue #180
  946. - chunker: add a check whether the POSIX_FADV_DONTNEED constant is defined -
  947. fixes building on OpenBSD.
  948. Other changes:
  949. - detect inconsistency / corruption / hash collision, #170
  950. - replace versioneer with setuptools_scm, #106
  951. - docs:
  952. - pkg-config is needed for llfuse installation
  953. - be more clear about pruning, attic issue #132
  954. - unit tests:
  955. - xattr: ignore security.selinux attribute showing up
  956. - ext3 seems to need a bit more space for a sparse file
  957. - do not test lzma level 9 compression (avoid MemoryError)
  958. - work around strange mtime granularity issue on netbsd, fixes #204
  959. - ignore st_rdev if file is not a block/char device, fixes #203
  960. - stay away from the setgid and sticky mode bits
  961. - use Vagrant to do easy cross-platform testing (#196), currently:
  962. - Debian 7 "wheezy" 32bit, Debian 8 "jessie" 64bit
  963. - Ubuntu 12.04 32bit, Ubuntu 14.04 64bit
  964. - Centos 7 64bit
  965. - FreeBSD 10.2 64bit
  966. - OpenBSD 5.7 64bit
  967. - NetBSD 6.1.5 64bit
  968. - Darwin (OS X Yosemite)
  969. Version 0.25.0 (2015-08-29)
  970. ---------------------------
  971. Compatibility notes:
  972. - lz4 compression library (liblz4) is a new requirement (#156)
  973. - the new compression code is very compatible: as long as you stay with zlib
  974. compression, older borg releases will still be able to read data from a
  975. repo/archive made with the new code (note: this is not the case for the
  976. default "none" compression, use "zlib,0" if you want a "no compression" mode
  977. that can be read by older borg). Also the new code is able to read repos and
  978. archives made with older borg versions (for all zlib levels 0..9).
  979. Deprecations:
  980. - --compression N (with N being a number, as in 0.24) is deprecated.
  981. We keep the --compression 0..9 for now to not break scripts, but it is
  982. deprecated and will be removed later, so better fix your scripts now:
  983. --compression 0 (as in 0.24) is the same as --compression zlib,0 (now).
  984. BUT: if you do not want compression, you rather want --compression none
  985. (which is the default).
  986. --compression 1 (in 0.24) is the same as --compression zlib,1 (now)
  987. --compression 9 (in 0.24) is the same as --compression zlib,9 (now)
  988. New features:
  989. - create --compression none (default, means: do not compress, just pass through
  990. data "as is". this is more efficient than zlib level 0 as used in borg 0.24)
  991. - create --compression lz4 (super-fast, but not very high compression)
  992. - create --compression zlib,N (slower, higher compression, default for N is 6)
  993. - create --compression lzma,N (slowest, highest compression, default N is 6)
  994. - honor the nodump flag (UF_NODUMP) and do not backup such items
  995. - list --short just outputs a simple list of the files/directories in an archive
  996. Bug fixes:
  997. - fixed --chunker-params parameter order confusion / malfunction, fixes #154
  998. - close fds of segments we delete (during compaction)
  999. - close files which fell out the lrucache
  1000. - fadvise DONTNEED now is only called for the byte range actually read, not for
  1001. the whole file, fixes #158.
  1002. - fix issue with negative "all archives" size, fixes #165
  1003. - restore_xattrs: ignore if setxattr fails with EACCES, fixes #162
  1004. Other changes:
  1005. - remove fakeroot requirement for tests, tests run faster without fakeroot
  1006. (test setup does not fail any more without fakeroot, so you can run with or
  1007. without fakeroot), fixes #151 and #91.
  1008. - more tests for archiver
  1009. - recover_segment(): don't assume we have an fd for segment
  1010. - lrucache refactoring / cleanup, add dispose function, py.test tests
  1011. - generalize hashindex code for any key length (less hardcoding)
  1012. - lock roster: catch file not found in remove() method and ignore it
  1013. - travis CI: use requirements file
  1014. - improved docs:
  1015. - replace hack for llfuse with proper solution (install libfuse-dev)
  1016. - update docs about compression
  1017. - update development docs about fakeroot
  1018. - internals: add some words about lock files / locking system
  1019. - support: mention BountySource and for what it can be used
  1020. - theme: use a lighter green
  1021. - add pypi, wheel, dist package based install docs
  1022. - split install docs into system-specific preparations and generic instructions
  1023. Version 0.24.0 (2015-08-09)
  1024. ---------------------------
  1025. Incompatible changes (compared to 0.23):
  1026. - borg now always issues --umask NNN option when invoking another borg via ssh
  1027. on the repository server. By that, it's making sure it uses the same umask
  1028. for remote repos as for local ones. Because of this, you must upgrade both
  1029. server and client(s) to 0.24.
  1030. - the default umask is 077 now (if you do not specify via --umask) which might
  1031. be a different one as you used previously. The default umask avoids that
  1032. you accidentally give access permissions for group and/or others to files
  1033. created by borg (e.g. the repository).
  1034. Deprecations:
  1035. - "--encryption passphrase" mode is deprecated, see #85 and #97.
  1036. See the new "--encryption repokey" mode for a replacement.
  1037. New features:
  1038. - borg create --chunker-params ... to configure the chunker, fixes #16
  1039. (attic #302, attic #300, and somehow also #41).
  1040. This can be used to reduce memory usage caused by chunk management overhead,
  1041. so borg does not create a huge chunks index/repo index and eats all your RAM
  1042. if you back up lots of data in huge files (like VM disk images).
  1043. See docs/misc/create_chunker-params.txt for more information.
  1044. - borg info now reports chunk counts in the chunk index.
  1045. - borg create --compression 0..9 to select zlib compression level, fixes #66
  1046. (attic #295).
  1047. - borg init --encryption repokey (to store the encryption key into the repo),
  1048. fixes #85
  1049. - improve at-end error logging, always log exceptions and set exit_code=1
  1050. - LoggedIO: better error checks / exceptions / exception handling
  1051. - implement --remote-path to allow non-default-path borg locations, #125
  1052. - implement --umask M and use 077 as default umask for better security, #117
  1053. - borg check: give a named single archive to it, fixes #139
  1054. - cache sync: show progress indication
  1055. - cache sync: reimplement the chunk index merging in C
  1056. Bug fixes:
  1057. - fix segfault that happened for unreadable files (chunker: n needs to be a
  1058. signed size_t), #116
  1059. - fix the repair mode, #144
  1060. - repo delete: add destroy to allowed rpc methods, fixes issue #114
  1061. - more compatible repository locking code (based on mkdir), maybe fixes #92
  1062. (attic #317, attic #201).
  1063. - better Exception msg if no Borg is installed on the remote repo server, #56
  1064. - create a RepositoryCache implementation that can cope with >2GiB,
  1065. fixes attic #326.
  1066. - fix Traceback when running check --repair, attic #232
  1067. - clarify help text, fixes #73.
  1068. - add help string for --no-files-cache, fixes #140
  1069. Other changes:
  1070. - improved docs:
  1071. - added docs/misc directory for misc. writeups that won't be included
  1072. "as is" into the html docs.
  1073. - document environment variables and return codes (attic #324, attic #52)
  1074. - web site: add related projects, fix web site url, IRC #borgbackup
  1075. - Fedora/Fedora-based install instructions added to docs
  1076. - Cygwin-based install instructions added to docs
  1077. - updated AUTHORS
  1078. - add FAQ entries about redundancy / integrity
  1079. - clarify that borg extract uses the cwd as extraction target
  1080. - update internals doc about chunker params, memory usage and compression
  1081. - added docs about development
  1082. - add some words about resource usage in general
  1083. - document how to backup a raw disk
  1084. - add note about how to run borg from virtual env
  1085. - add solutions for (ll)fuse installation problems
  1086. - document what borg check does, fixes #138
  1087. - reorganize borgbackup.github.io sidebar, prev/next at top
  1088. - deduplicate and refactor the docs / README.rst
  1089. - use borg-tmp as prefix for temporary files / directories
  1090. - short prune options without "keep-" are deprecated, do not suggest them
  1091. - improved tox configuration
  1092. - remove usage of unittest.mock, always use mock from pypi
  1093. - use entrypoints instead of scripts, for better use of the wheel format and
  1094. modern installs
  1095. - add requirements.d/development.txt and modify tox.ini
  1096. - use travis-ci for testing based on Linux and (new) OS X
  1097. - use coverage.py, pytest-cov and codecov.io for test coverage support
  1098. I forgot to list some stuff already implemented in 0.23.0, here they are:
  1099. New features:
  1100. - efficient archive list from manifest, meaning a big speedup for slow
  1101. repo connections and "list <repo>", "delete <repo>", "prune" (attic #242,
  1102. attic #167)
  1103. - big speedup for chunks cache sync (esp. for slow repo connections), fixes #18
  1104. - hashindex: improve error messages
  1105. Other changes:
  1106. - explicitly specify binary mode to open binary files
  1107. - some easy micro optimizations
  1108. Version 0.23.0 (2015-06-11)
  1109. ---------------------------
  1110. Incompatible changes (compared to attic, fork related):
  1111. - changed sw name and cli command to "borg", updated docs
  1112. - package name (and name in urls) uses "borgbackup" to have less collisions
  1113. - changed repo / cache internal magic strings from ATTIC* to BORG*,
  1114. changed cache location to .cache/borg/ - this means that it currently won't
  1115. accept attic repos (see issue #21 about improving that)
  1116. Bug fixes:
  1117. - avoid defect python-msgpack releases, fixes attic #171, fixes attic #185
  1118. - fix traceback when trying to do unsupported passphrase change, fixes attic #189
  1119. - datetime does not like the year 10.000, fixes attic #139
  1120. - fix "info" all archives stats, fixes attic #183
  1121. - fix parsing with missing microseconds, fixes attic #282
  1122. - fix misleading hint the fuse ImportError handler gave, fixes attic #237
  1123. - check unpacked data from RPC for tuple type and correct length, fixes attic #127
  1124. - fix Repository._active_txn state when lock upgrade fails
  1125. - give specific path to xattr.is_enabled(), disable symlink setattr call that
  1126. always fails
  1127. - fix test setup for 32bit platforms, partial fix for attic #196
  1128. - upgraded versioneer, PEP440 compliance, fixes attic #257
  1129. New features:
  1130. - less memory usage: add global option --no-cache-files
  1131. - check --last N (only check the last N archives)
  1132. - check: sort archives in reverse time order
  1133. - rename repo::oldname newname (rename repository)
  1134. - create -v output more informative
  1135. - create --progress (backup progress indicator)
  1136. - create --timestamp (utc string or reference file/dir)
  1137. - create: if "-" is given as path, read binary from stdin
  1138. - extract: if --stdout is given, write all extracted binary data to stdout
  1139. - extract --sparse (simple sparse file support)
  1140. - extra debug information for 'fread failed'
  1141. - delete <repo> (deletes whole repo + local cache)
  1142. - FUSE: reflect deduplication in allocated blocks
  1143. - only allow whitelisted RPC calls in server mode
  1144. - normalize source/exclude paths before matching
  1145. - use posix_fadvise to not spoil the OS cache, fixes attic #252
  1146. - toplevel error handler: show tracebacks for better error analysis
  1147. - sigusr1 / sigint handler to print current file infos - attic PR #286
  1148. - RPCError: include the exception args we get from remote
  1149. Other changes:
  1150. - source: misc. cleanups, pep8, style
  1151. - docs and faq improvements, fixes, updates
  1152. - cleanup crypto.pyx, make it easier to adapt to other AES modes
  1153. - do os.fsync like recommended in the python docs
  1154. - source: Let chunker optionally work with os-level file descriptor.
  1155. - source: Linux: remove duplicate os.fsencode calls
  1156. - source: refactor _open_rb code a bit, so it is more consistent / regular
  1157. - source: refactor indicator (status) and item processing
  1158. - source: use py.test for better testing, flake8 for code style checks
  1159. - source: fix tox >=2.0 compatibility (test runner)
  1160. - pypi package: add python version classifiers, add FreeBSD to platforms
  1161. Attic Changelog
  1162. ---------------
  1163. Here you can see the full list of changes between each Attic release until Borg
  1164. forked from Attic:
  1165. Version 0.17
  1166. ~~~~~~~~~~~~
  1167. (bugfix release, released on X)
  1168. - Fix hashindex ARM memory alignment issue (#309)
  1169. - Improve hashindex error messages (#298)
  1170. Version 0.16
  1171. ~~~~~~~~~~~~
  1172. (bugfix release, released on May 16, 2015)
  1173. - Fix typo preventing the security confirmation prompt from working (#303)
  1174. - Improve handling of systems with improperly configured file system encoding (#289)
  1175. - Fix "All archives" output for attic info. (#183)
  1176. - More user friendly error message when repository key file is not found (#236)
  1177. - Fix parsing of iso 8601 timestamps with zero microseconds (#282)
  1178. Version 0.15
  1179. ~~~~~~~~~~~~
  1180. (bugfix release, released on Apr 15, 2015)
  1181. - xattr: Be less strict about unknown/unsupported platforms (#239)
  1182. - Reduce repository listing memory usage (#163).
  1183. - Fix BrokenPipeError for remote repositories (#233)
  1184. - Fix incorrect behavior with two character directory names (#265, #268)
  1185. - Require approval before accessing relocated/moved repository (#271)
  1186. - Require approval before accessing previously unknown unencrypted repositories (#271)
  1187. - Fix issue with hash index files larger than 2GB.
  1188. - Fix Python 3.2 compatibility issue with noatime open() (#164)
  1189. - Include missing pyx files in dist files (#168)
  1190. Version 0.14
  1191. ~~~~~~~~~~~~
  1192. (feature release, released on Dec 17, 2014)
  1193. - Added support for stripping leading path segments (#95)
  1194. "attic extract --strip-segments X"
  1195. - Add workaround for old Linux systems without acl_extended_file_no_follow (#96)
  1196. - Add MacPorts' path to the default openssl search path (#101)
  1197. - HashIndex improvements, eliminates unnecessary IO on low memory systems.
  1198. - Fix "Number of files" output for attic info. (#124)
  1199. - limit create file permissions so files aren't read while restoring
  1200. - Fix issue with empty xattr values (#106)
  1201. Version 0.13
  1202. ~~~~~~~~~~~~
  1203. (feature release, released on Jun 29, 2014)
  1204. - Fix sporadic "Resource temporarily unavailable" when using remote repositories
  1205. - Reduce file cache memory usage (#90)
  1206. - Faster AES encryption (utilizing AES-NI when available)
  1207. - Experimental Linux, OS X and FreeBSD ACL support (#66)
  1208. - Added support for backup and restore of BSDFlags (OSX, FreeBSD) (#56)
  1209. - Fix bug where xattrs on symlinks were not correctly restored
  1210. - Added cachedir support. CACHEDIR.TAG compatible cache directories
  1211. can now be excluded using ``--exclude-caches`` (#74)
  1212. - Fix crash on extreme mtime timestamps (year 2400+) (#81)
  1213. - Fix Python 3.2 specific lockf issue (EDEADLK)
  1214. Version 0.12
  1215. ~~~~~~~~~~~~
  1216. (feature release, released on April 7, 2014)
  1217. - Python 3.4 support (#62)
  1218. - Various documentation improvements a new style
  1219. - ``attic mount`` now supports mounting an entire repository not only
  1220. individual archives (#59)
  1221. - Added option to restrict remote repository access to specific path(s):
  1222. ``attic serve --restrict-to-path X`` (#51)
  1223. - Include "all archives" size information in "--stats" output. (#54)
  1224. - Added ``--stats`` option to ``attic delete`` and ``attic prune``
  1225. - Fixed bug where ``attic prune`` used UTC instead of the local time zone
  1226. when determining which archives to keep.
  1227. - Switch to SI units (Power of 1000 instead 1024) when printing file sizes
  1228. Version 0.11
  1229. ~~~~~~~~~~~~
  1230. (feature release, released on March 7, 2014)
  1231. - New "check" command for repository consistency checking (#24)
  1232. - Documentation improvements
  1233. - Fix exception during "attic create" with repeated files (#39)
  1234. - New "--exclude-from" option for attic create/extract/verify.
  1235. - Improved archive metadata deduplication.
  1236. - "attic verify" has been deprecated. Use "attic extract --dry-run" instead.
  1237. - "attic prune --hourly|daily|..." has been deprecated.
  1238. Use "attic prune --keep-hourly|daily|..." instead.
  1239. - Ignore xattr errors during "extract" if not supported by the filesystem. (#46)
  1240. Version 0.10
  1241. ~~~~~~~~~~~~
  1242. (bugfix release, released on Jan 30, 2014)
  1243. - Fix deadlock when extracting 0 sized files from remote repositories
  1244. - "--exclude" wildcard patterns are now properly applied to the full path
  1245. not just the file name part (#5).
  1246. - Make source code endianness agnostic (#1)
  1247. Version 0.9
  1248. ~~~~~~~~~~~
  1249. (feature release, released on Jan 23, 2014)
  1250. - Remote repository speed and reliability improvements.
  1251. - Fix sorting of segment names to ignore NFS left over files. (#17)
  1252. - Fix incorrect display of time (#13)
  1253. - Improved error handling / reporting. (#12)
  1254. - Use fcntl() instead of flock() when locking repository/cache. (#15)
  1255. - Let ssh figure out port/user if not specified so we don't override .ssh/config (#9)
  1256. - Improved libcrypto path detection (#23).
  1257. Version 0.8.1
  1258. ~~~~~~~~~~~~~
  1259. (bugfix release, released on Oct 4, 2013)
  1260. - Fix segmentation fault issue.
  1261. Version 0.8
  1262. ~~~~~~~~~~~
  1263. (feature release, released on Oct 3, 2013)
  1264. - Fix xattr issue when backing up sshfs filesystems (#4)
  1265. - Fix issue with excessive index file size (#6)
  1266. - Support access of read only repositories.
  1267. - New syntax to enable repository encryption:
  1268. attic init --encryption="none|passphrase|keyfile".
  1269. - Detect and abort if repository is older than the cache.
  1270. Version 0.7
  1271. ~~~~~~~~~~~
  1272. (feature release, released on Aug 5, 2013)
  1273. - Ported to FreeBSD
  1274. - Improved documentation
  1275. - Experimental: Archives mountable as fuse filesystems.
  1276. - The "user." prefix is no longer stripped from xattrs on Linux
  1277. Version 0.6.1
  1278. ~~~~~~~~~~~~~
  1279. (bugfix release, released on July 19, 2013)
  1280. - Fixed an issue where mtime was not always correctly restored.
  1281. Version 0.6
  1282. ~~~~~~~~~~~
  1283. First public release on July 9, 2013