changes.rst 39 KB

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