changes.rst 47 KB

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