changes.rst 50 KB

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