changes.rst 56 KB

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