2
0

changes.rst 219 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482
  1. .. _important_notes:
  2. Important notes
  3. ===============
  4. This section provides information about security and corruption issues.
  5. .. _archives_tam_vuln:
  6. Pre-1.2.5 archives spoofing vulnerability (CVE-2023-36811)
  7. ----------------------------------------------------------
  8. A flaw in the cryptographic authentication scheme in Borg allowed an attacker to
  9. fake archives and potentially indirectly cause backup data loss in the repository.
  10. The attack requires an attacker to be able to
  11. 1. insert files (with no additional headers) into backups
  12. 2. gain write access to the repository
  13. This vulnerability does not disclose plaintext to the attacker, nor does it
  14. affect the authenticity of existing archives.
  15. Creating plausible fake archives may be feasible for empty or small archives,
  16. but is unlikely for large archives.
  17. The fix enforces checking the TAM authentication tag of archives at critical
  18. places. Borg now considers archives without TAM as garbage or an attack.
  19. We are not aware of others having discovered, disclosed or exploited this vulnerability.
  20. Below, if we speak of borg 1.2.5, we mean a borg version >= 1.2.5 **or** a
  21. borg version that has the relevant security patches for this vulnerability applied
  22. (could be also an older version in that case).
  23. Steps you must take to upgrade a repository:
  24. 1. Upgrade all clients using this repository to borg 1.2.5.
  25. Note: it is not required to upgrade a server, except if the server-side borg
  26. is also used as a client (and not just for "borg serve").
  27. Do **not** run ``borg check`` with borg 1.2.5 before completing the upgrade steps.
  28. 2. Run ``borg info --debug <repository> 2>&1 | grep TAM | grep -i manifest``.
  29. a) If you get "TAM-verified manifest", continue with 3.
  30. b) If you get "Manifest TAM not found and not required", run
  31. ``borg upgrade --tam --force <repository>`` *on every client*.
  32. 3. Run ``borg list --format='{name} {time} tam:{tam}{NL}' <repository>``.
  33. "tam:verified" means that the archive has a valid TAM authentication.
  34. "tam:none" is expected as output for archives created by borg <1.0.9.
  35. "tam:none" could also come from archives created by an attacker.
  36. You should verify that "tam:none" archives are authentic and not malicious
  37. (== have good content, have correct timestamp, can be extracted successfully).
  38. In case you find crappy/malicious archives, you must delete them before proceeding.
  39. In low-risk, trusted environments, you may decide on your own risk to skip step 3
  40. and just trust in everything being OK.
  41. 4. If there are no tam:non archives left at this point, you can skip this step.
  42. Run ``borg upgrade --archives-tam <repository>``.
  43. This will make sure all archives are TAM authenticated (an archive TAM will be added
  44. for all archives still missing one).
  45. ``borg check`` would consider TAM-less archives as garbage or a potential attack.
  46. Optionally run the same command as in step 3 to see that all archives now are "tam:verified".
  47. Vulnerability time line:
  48. * 2023-06-13: Vulnerability discovered during code review by Thomas Waldmann
  49. * 2023-06-13...: Work on fixing the issue, upgrade procedure, docs.
  50. * 2023-06-30: CVE was assigned via Github CNA
  51. * 2023-07-xx: Released fixed version 1.2.5
  52. .. _hashindex_set_bug:
  53. Pre-1.1.11 potential index corruption / data loss issue
  54. -------------------------------------------------------
  55. A bug was discovered in our hashtable code, see issue #4829.
  56. The code is used for the client-side chunks cache and the server-side repo index.
  57. Although borg uses the hashtables very heavily, the index corruption did not
  58. happen too frequently, because it needed specific conditions to happen.
  59. Data loss required even more specific conditions, so it should be rare (and
  60. also detectable via borg check).
  61. You might be affected if borg crashed with / complained about:
  62. - AssertionError: Corrupted segment reference count - corrupted index or hints
  63. - ObjectNotFound: Object with key ... not found in repository ...
  64. - Index mismatch for key b'...'. (..., ...) != (-1, -1)
  65. - ValueError: stats_against: key contained in self but not in master_index.
  66. Advised procedure to fix any related issue in your indexes/caches:
  67. - install fixed borg code (on client AND server)
  68. - for all of your clients and repos remove the cache by:
  69. borg delete --cache-only YOURREPO
  70. (later, the cache will be re-built automatically)
  71. - for all your repos, rebuild the repo index by:
  72. borg check --repair YOURREPO
  73. This will also check all archives and detect if there is any data-loss issue.
  74. Affected branches / releases:
  75. - fd06497 introduced the bug into 1.1-maint branch - it affects all borg 1.1.x since 1.1.0b4.
  76. - fd06497 introduced the bug into master branch - it affects all borg 1.2.0 alpha releases.
  77. - c5cd882 introduced the bug into 1.0-maint branch - it affects all borg 1.0.x since 1.0.11rc1.
  78. The bug was fixed by:
  79. - 701159a fixes the bug in 1.1-maint branch - will be released with borg 1.1.11.
  80. - fa63150 fixes the bug in master branch - will be released with borg 1.2.0a8.
  81. - 7bb90b6 fixes the bug in 1.0-maint branch. Branch is EOL, no new release is planned as of now.
  82. .. _broken_validator:
  83. Pre-1.1.4 potential data corruption issue
  84. -----------------------------------------
  85. A data corruption bug was discovered in borg check --repair, see issue #3444.
  86. This is a 1.1.x regression, releases < 1.1 (e.g. 1.0.x) are not affected.
  87. To avoid data loss, you must not run borg check --repair using an unfixed version
  88. of borg 1.1.x. The first official release that has the fix is 1.1.4.
  89. Package maintainers may have applied the fix to updated packages of 1.1.x (x<4)
  90. though, see the package maintainer's package changelog to make sure.
  91. If you never had missing item metadata chunks, the bug has not affected you
  92. even if you did run borg check --repair with an unfixed version.
  93. When borg check --repair tried to repair corrupt archives that miss item metadata
  94. chunks, the resync to valid metadata in still present item metadata chunks
  95. malfunctioned. This was due to a broken validator that considered all (even valid)
  96. item metadata as invalid. As they were considered invalid, borg discarded them.
  97. Practically, that means the affected files, directories or other fs objects were
  98. discarded from the archive.
  99. Due to the malfunction, the process was extremely slow, but if you let it
  100. complete, borg would have created a "repaired" archive that has lost a lot of items.
  101. If you interrupted borg check --repair because it was so strangely slow (killing
  102. borg somehow, e.g. Ctrl-C) the transaction was rolled back and no corruption occurred.
  103. The log message indicating the precondition for the bug triggering looks like:
  104. item metadata chunk missing [chunk: 001056_bdee87d...a3e50d]
  105. If you never had that in your borg check --repair runs, you're not affected.
  106. But if you're unsure or you actually have seen that, better check your archives.
  107. By just using "borg list repo::archive" you can see if all expected filesystem
  108. items are listed.
  109. .. _tam_vuln:
  110. Pre-1.0.9 manifest spoofing vulnerability (CVE-2016-10099)
  111. ----------------------------------------------------------
  112. A flaw in the cryptographic authentication scheme in Borg allowed an attacker
  113. to spoof the manifest. The attack requires an attacker to be able to
  114. 1. insert files (with no additional headers) into backups
  115. 2. gain write access to the repository
  116. This vulnerability does not disclose plaintext to the attacker, nor does it
  117. affect the authenticity of existing archives.
  118. The vulnerability allows an attacker to create a spoofed manifest (the list of archives).
  119. Creating plausible fake archives may be feasible for small archives, but is unlikely
  120. for large archives.
  121. The fix adds a separate authentication tag to the manifest. For compatibility
  122. with prior versions this authentication tag is *not* required by default
  123. for existing repositories. Repositories created with 1.0.9 and later require it.
  124. Steps you should take:
  125. 1. Upgrade all clients to 1.0.9 or later.
  126. 2. Run ``borg upgrade --tam <repository>`` *on every client* for *each* repository.
  127. 3. This will list all archives, including archive IDs, for easy comparison with your logs.
  128. 4. Done.
  129. Prior versions can access and modify repositories with this measure enabled, however,
  130. to 1.0.9 or later their modifications are indiscernible from an attack and will
  131. raise an error until the below procedure is followed. We are aware that this can
  132. be annoying in some circumstances, but don't see a way to fix the vulnerability
  133. otherwise.
  134. In case a version prior to 1.0.9 is used to modify a repository where above procedure
  135. was completed, and now you get an error message from other clients:
  136. 1. ``borg upgrade --tam --force <repository>`` once with *any* client suffices.
  137. This attack is mitigated by:
  138. - Noting/logging ``borg list``, ``borg info``, or ``borg create --stats``, which
  139. contain the archive IDs.
  140. We are not aware of others having discovered, disclosed or exploited this vulnerability.
  141. Vulnerability time line:
  142. * 2016-11-14: Vulnerability and fix discovered during review of cryptography by Marian Beermann (@enkore)
  143. * 2016-11-20: First patch
  144. * 2016-12-20: Released fixed version 1.0.9
  145. * 2017-01-02: CVE was assigned
  146. * 2017-01-15: Released fixed version 1.1.0b3 (fix was previously only available from source)
  147. .. _attic013_check_corruption:
  148. Pre-1.0.9 potential data loss
  149. -----------------------------
  150. If you have archives in your repository that were made with attic <= 0.13
  151. (and later migrated to borg), running borg check would report errors in these
  152. archives. See issue #1837.
  153. The reason for this is a invalid (and useless) metadata key that was
  154. always added due to a bug in these old attic versions.
  155. If you run borg check --repair, things escalate quickly: all archive items
  156. with invalid metadata will be killed. Due to that attic bug, that means all
  157. items in all archives made with these old attic versions.
  158. Pre-1.0.4 potential repo corruption
  159. -----------------------------------
  160. Some external errors (like network or disk I/O errors) could lead to
  161. corruption of the backup repository due to issue #1138.
  162. A sign that this happened is if "E" status was reported for a file that can
  163. not be explained by problems with the source file. If you still have logs from
  164. "borg create -v --list", you can check for "E" status.
  165. Here is what could cause corruption and what you can do now:
  166. 1) I/O errors (e.g. repo disk errors) while writing data to repo.
  167. This could lead to corrupted segment files.
  168. Fix::
  169. # check for corrupt chunks / segments:
  170. borg check -v --repository-only REPO
  171. # repair the repo:
  172. borg check -v --repository-only --repair REPO
  173. # make sure everything is fixed:
  174. borg check -v --repository-only REPO
  175. 2) Unreliable network / unreliable connection to the repo.
  176. This could lead to archive metadata corruption.
  177. Fix::
  178. # check for corrupt archives:
  179. borg check -v --archives-only REPO
  180. # delete the corrupt archives:
  181. borg delete --force REPO::CORRUPT_ARCHIVE
  182. # make sure everything is fixed:
  183. borg check -v --archives-only REPO
  184. 3) In case you want to do more intensive checking.
  185. The best check that everything is ok is to run a dry-run extraction::
  186. borg extract -v --dry-run REPO::ARCHIVE
  187. .. _upgradenotes:
  188. Upgrade Notes
  189. =============
  190. borg 1.1.x to 1.2.x
  191. -------------------
  192. Some things can be recommended for the upgrade process from borg 1.1.x
  193. (please also read the important compatibility notes below):
  194. - first upgrade to a recent 1.1.x release - especially if you run some older
  195. 1.1.* or even 1.0.* borg release.
  196. - using that, run at least one `borg create` (your normal backup), `prune`
  197. and especially a `check` to see everything is in a good state.
  198. - check the output of `borg check` - if there is anything special, consider
  199. a `borg check --repair` followed by another `borg check`.
  200. - if everything is fine so far (borg check reports no issues), you can consider
  201. upgrading to 1.2.x. if not, please first fix any already existing issue.
  202. - if you want to play safer, first **create a backup of your borg repository**.
  203. - upgrade to latest borg 1.2.x release (you could use the fat binary from
  204. github releases page)
  205. - run `borg compact --cleanup-commits` to clean up a ton of 17 bytes long files
  206. in your repo caused by a borg 1.1 bug
  207. - run `borg check` again (now with borg 1.2.x) and check if there is anything
  208. special.
  209. - run `borg info` (with borg 1.2.x) to build the local pre12-meta cache (can
  210. take significant time, but after that it will be fast) - for more details
  211. see below.
  212. - check the compatibility notes (see below) and adapt your scripts, if needed.
  213. - borg 1.2.5 has a security fix for the pre-1.2.5 archives spoofing vulnerability
  214. (CVE-2023-36811), see details and necessary upgrade procedure described above.
  215. - if you run into any issues, please check the github issue tracker before
  216. posting new issues there or elsewhere.
  217. If you follow this procedure, you can help avoiding that we get a lot of
  218. "borg 1.2" issue reports that are not really 1.2 issues, but existed before
  219. and maybe just were not noticed.
  220. Compatibility notes:
  221. - matching of path patterns has been aligned with borg storing relative paths.
  222. Borg archives file paths without leading slashes. Previously, include/exclude
  223. patterns could contain leading slashes. You should check your patterns and
  224. remove leading slashes.
  225. - dropped support / testing for older Pythons, minimum requirement is 3.8.
  226. In case your OS does not provide Python >= 3.8, consider using our binary,
  227. which does not need an external Python interpreter. Or continue using
  228. borg 1.1.x, which is still supported.
  229. - freeing repository space only happens when "borg compact" is invoked.
  230. - mount: the default for --numeric-ids is False now (same as borg extract)
  231. - borg create --noatime is deprecated. Not storing atime is the default behaviour
  232. now (use --atime if you want to store the atime).
  233. - --prefix is deprecated, use -a / --glob-archives, see #6806
  234. - list: corrected mix-up of "isomtime" and "mtime" formats.
  235. Previously, "isomtime" was the default but produced a verbose human format,
  236. while "mtime" produced a ISO-8601-like format.
  237. The behaviours have been swapped (so "mtime" is human, "isomtime" is ISO-like),
  238. and the default is now "mtime".
  239. "isomtime" is now a real ISO-8601 format ("T" between date and time, not a space).
  240. - create/recreate --list: file status for all files used to get announced *AFTER*
  241. the file (with borg < 1.2). Now, file status is announced *BEFORE* the file
  242. contents are processed. If the file status changes later (e.g. due to an error
  243. or a content change), the updated/final file status will be printed again.
  244. - removed deprecated-since-long stuff (deprecated since):
  245. - command "borg change-passphrase" (2017-02), use "borg key ..."
  246. - option "--keep-tag-files" (2017-01), use "--keep-exclude-tags"
  247. - option "--list-format" (2017-10), use "--format"
  248. - option "--ignore-inode" (2017-09), use "--files-cache" w/o "inode"
  249. - option "--no-files-cache" (2017-09), use "--files-cache=disabled"
  250. - removed BORG_HOSTNAME_IS_UNIQUE env var.
  251. to use borg you must implement one of these 2 scenarios:
  252. - 1) the combination of FQDN and result of uuid.getnode() must be unique
  253. and stable (this should be the case for almost everybody, except when
  254. having duplicate FQDN *and* MAC address or all-zero MAC address)
  255. - 2) if you are aware that 1) is not the case for you, you must set
  256. BORG_HOST_ID env var to something unique.
  257. - exit with 128 + signal number, #5161.
  258. if you have scripts expecting rc == 2 for a signal exit, you need to update
  259. them to check for >= 128.
  260. .. _changelog:
  261. Change Log
  262. ==========
  263. Version 1.2.5 (2023-08-30)
  264. --------------------------
  265. For upgrade and compatibility hints, please also read the section "Upgrade Notes"
  266. above.
  267. Fixes:
  268. - Security: fix pre-1.2.5 archives spoofing vulnerability (CVE-2023-36811),
  269. see details and necessary upgrade procedure described above.
  270. - create: do not try to read parent dir of recursion root, #7746
  271. - extract: fix false warning about pattern never matching, #4110
  272. - diff: remove surrogates before output, #7535
  273. - compact: clear empty directories at end of compact process, #6823
  274. - create --files-cache=size: fix crash, #7658
  275. - keyfiles: improve key sanity check, #7561
  276. - only warn about "invalid" chunker params, #7590
  277. - ProgressIndicatorPercent: fix space computation for wide chars, #3027
  278. - improve argparse validator error messages
  279. New features:
  280. - mount: make up volname if not given (macOS), #7690.
  281. macFUSE supports a volname mount option to give what finder displays on the
  282. desktop / in the directory view. if the user did not specify it, we make
  283. something up, because otherwise it would be "macFUSE Volume 0 (Python)" and
  284. hide the mountpoint directory name.
  285. - BORG_WORKAROUNDS=authenticated_no_key to extract from authenticated repos
  286. without key, #7700
  287. Other changes:
  288. - add `utcnow()` helper function to avoid deprecated `datetime.utcnow()`
  289. - stay on latest Cython 0.29 (0.29.36) for borg 1.2.x (do not use Cython 3.0 yet)
  290. - docs:
  291. - move upgrade notes to own section, see #7546
  292. - mount -olocal: how to show mount in finder's sidebar, #5321
  293. - list: fix --pattern examples, #7611
  294. - improve patterns help
  295. - incl./excl. options, path-from-stdin exclusiveness
  296. - obfuscation docs: markup fix, note about MAX_DATA_SIZE
  297. - --one-file-system: add macOS apfs notes, #4876
  298. - improve --one-file-system help string, #5618
  299. - rewrite borg check docs
  300. - improve the docs for --keep-within, #7687
  301. - fix borg init command in environment.rst.inc
  302. - 1.1.x upgrade notes: more precise borg upgrade instructions, #3396
  303. - tests:
  304. - fix repo reopen
  305. - avoid long ids in pytest output
  306. - check buzhash chunksize distribution, see #7586
  307. Version 1.2.4 (2023-03-24)
  308. --------------------------
  309. New features:
  310. - import-tar: add --ignore-zeros to process concatenated tars, #7432.
  311. - debug id-hash: computes file/chunk content id-hash, #7406
  312. - diff: --content-only does not show mode/ctime/mtime changes, #7248
  313. - diff: JSON strings in diff output are now sorted alphabetically
  314. Bug fixes:
  315. - xattrs: fix namespace processing on FreeBSD, #6997
  316. - diff: fix path related bug seen when addressing deferred items.
  317. - debug get-obj/put-obj: always give chunkid as cli param, see #7290
  318. (this is an incompatible change, see also borg debug id-hash)
  319. - extract: fix mtime when ResourceFork xattr is set (macOS specific), #7234
  320. - recreate: without --chunker-params, do not re-chunk, #7337
  321. - recreate: when --target is given, do not detect "nothing to do".
  322. use case: borg recreate -a src --target dst can be used to make a copy
  323. of an archive inside the same repository, #7254.
  324. - set .hardlink_master for ALL hardlinkable items, #7175
  325. - locking: fix host, pid, tid order.
  326. tid (thread id) must be parsed as hex from lock file name.
  327. - update development.lock.txt, including a setuptools security fix, #7227
  328. Other changes:
  329. - requirements: allow msgpack 1.0.5 also
  330. - upgrade Cython to 0.29.33
  331. - hashindex minor fixes, refactor, tweaks, tests
  332. - use os.replace not os.rename
  333. - remove BORG_LIBB2_PREFIX (not used any more)
  334. - docs:
  335. - BORG_KEY_FILE: clarify docs, #7444
  336. - update FAQ about locale/unicode issues, #6999
  337. - improve mount options rendering, #7359
  338. - make timestamps in manual pages reproducible
  339. - installation: update Fedora in distribution list, #7357
  340. - tests:
  341. - fix test_size_on_disk_accurate for large st_blksize, #7250
  342. - add same_ts_ns function and use it for relaxed timestamp comparisons
  343. - "auto" compressor tests: don't assume a specific size,
  344. do not assume zlib is better than lz4, #7363
  345. - add test for extracted directory mtime
  346. - vagrant:
  347. - upgrade local freebsd 12.1 box -> generic/freebsd13 box (13.1)
  348. - use pythons > 3.8 which work on freebsd 13.1
  349. - pyenv: also install python 3.11.1 for testing
  350. - pyenv: use python 3.10.1, 3.10.0 build is broken on freebsd
  351. Version 1.2.3 (2022-12-24)
  352. --------------------------
  353. Fixes:
  354. - create: fix --list --dry-run output for directories, #7209
  355. - diff/recreate: normalize chunker params before comparing them, #7079
  356. - check: fix uninitialised variable if repo is completely empty, #7034
  357. - xattrs: improve error handling, #6988
  358. - fix args.paths related argparsing, #6994
  359. - archive.save(): always use metadata from stats (e.g. nfiles, size, ...), #7072
  360. - tar_filter: recognize .tar.zst as zstd, #7093
  361. - get_chunker: fix missing sparse=False argument, #7056
  362. - file_integrity.py: make sure file_fd is always closed on exit
  363. - repository: cleanup(): close segment before unlinking
  364. - repository: use os.replace instead of os.rename
  365. Other changes:
  366. - remove python < 3.7 compatibility code
  367. - do not use version_tuple placeholder in setuptools_scm template
  368. - CI: fix tox4 passenv issue, #7199
  369. - vagrant: update to python 3.9.16, use the openbsd 7.1 box
  370. - misc. test suite and docs fixes / improvements
  371. - remove deprecated --prefix from docs, #7109
  372. - Windows: use MSYS2 for Github CI, remove Appveyor CI
  373. Version 1.2.2 (2022-08-20)
  374. --------------------------
  375. New features:
  376. - prune/delete --checkpoint-interval=1800 and ctrl-c/SIGINT support, #6284
  377. Fixes:
  378. - SaveFile: use a custom mkstemp with mode support, #6933, #6400, #6786.
  379. This fixes umask/mode/ACL issues (and also "chmod not supported" exceptions
  380. seen in 1.2.1) of files updated using SaveFile, e.g. the repo config.
  381. - hashindex_compact: fix eval order (check idx before use), #5899
  382. - create --paths-from-(stdin|command): normalize paths, #6778
  383. - secure_erase: avoid collateral damage, #6768.
  384. If a hardlink copy of a repo was made and a new repo config shall be saved,
  385. do NOT fill in random garbage before deleting the previous repo config,
  386. because that would damage the hardlink copy.
  387. - list: fix {flags:<WIDTH>} formatting, #6081
  388. - check: try harder to create the key, #5719
  389. - misc commands: ctrl-c must not kill other subprocesses, #6912
  390. - borg create with a remote repo via ssh
  391. - borg create --content-from-command
  392. - borg create --paths-from-command
  393. - (de)compression filter process of import-tar / export-tar
  394. Other changes:
  395. - deprecate --prefix, use -a / --glob-archives, see #6806
  396. - make setuptools happy ("package would be ignored"), #6874
  397. - fix pyproject.toml to create a fixed _version.py file, compatible with both
  398. old and new setuptools_scm version, #6875
  399. - automate asciinema screencasts
  400. - CI: test on macOS 12 without fuse / fuse tests
  401. (too troublesome on github CI due to kernel extensions needed by macFUSE)
  402. - tests: fix test_obfuscate byte accounting
  403. - repository: add debug logging for issue #6687
  404. - _chunker.c: fix warnings on macOS
  405. - requirements.lock.txt: use the latest cython 0.29.32
  406. - docs:
  407. - add info on man page installation, #6894
  408. - update archive_progress json description about "finished", #6570
  409. - json progress_percent: some values are optional, #4074
  410. - FAQ: full quota / full disk, #5960
  411. - correct shell syntax for installation using git
  412. Version 1.2.1 (2022-06-06)
  413. --------------------------
  414. Fixes:
  415. - create: skip with warning if opening the parent dir of recursion root fails, #6374
  416. - create: fix crash. metadata stream can produce all-zero chunks, #6587
  417. - fix crash when computing stats, escape % chars in archive name, #6500
  418. - fix transaction rollback: use files cache filename as found in txn.active/, #6353
  419. - import-tar: kill filter process in case of borg exceptions, #6401 #6681
  420. - import-tar: fix mtime type bug
  421. - ensure_dir: respect umask for created directory modes, #6400
  422. - SaveFile: respect umask for final file mode, #6400
  423. - check archive: improve error handling for corrupt archive metadata block, make
  424. robust_iterator more robust, #4777
  425. - pre12-meta cache: do not use the cache if want_unique is True, #6612
  426. - fix scp-style repo url parsing for ip v6 address, #6526
  427. - mount -o versions: give clear error msg instead of crashing.
  428. it does not make sense to request versions view if you only look at 1 archive,
  429. but the code shall not crash in that case as it did, but give a clear error msg.
  430. - show_progress: add finished=true/false to archive_progress json, #6570
  431. - delete/prune: fix --iec mode output (decimal vs. binary units), #6606
  432. - info: fix authenticated mode repo to show "Encrypted: No", #6462
  433. - diff: support presence change for blkdev, chrdev and fifo items, #6615
  434. New features:
  435. - delete: add repository id and location to prompt, #6453
  436. - borg debug dump-repo-objs --ghost: new --segment=S --offset=O options
  437. Other changes:
  438. - support python 3.11
  439. - allow msgpack 1.0.4, #6716
  440. - load_key: no key is same as empty key, #6441
  441. - give a more helpful error msg for unsupported key formats, #6561
  442. - better error msg for defect or unsupported repo configs, #6566
  443. - docs:
  444. - document borg 1.2 pattern matching behavior change, #6407
  445. Make clear that absolute paths always go into the matcher as if they are
  446. relative (without leading slash). Adapt all examples accordingly.
  447. - authentication primitives: improved security and performance infos
  448. - mention BORG_FILES_CACHE_SUFFIX as alternative to BORG_FILES_CACHE_TTL, #5602
  449. - FAQ: add a hint about --debug-topic=files_cache
  450. - improve borg check --max-duration description
  451. - fix values of TAG bytes, #6515
  452. - borg compact --cleanup-commits also runs a normal compaction, #6324
  453. - virtualization speed tips
  454. - recommend umask for passphrase file perms
  455. - borg 1.2 is security supported
  456. - update link to ubuntu packages, #6485
  457. - use --numeric-ids in pull mode docs
  458. - remove blake2 docs, blake2 code not bundled any more, #6371
  459. - clarify on-disk order and size of segment file log entry fields, #6357
  460. - docs building: do not transform --/--- to unicode dashes
  461. - tests:
  462. - check that borg does not require pytest for normal usage, fixes #6563
  463. - fix OpenBSD symlink mode test failure, #2055
  464. - vagrant:
  465. - darwin64: remove fakeroot, #6314
  466. - update development.lock.txt
  467. - use pyinstaller 4.10 and python 3.9.13 for binary build
  468. - upgrade VMCPUS and xdistn from 4 to 16, maybe this speeds up the tests
  469. - crypto:
  470. - use hmac.compare_digest instead of ==, #6470
  471. - hmac_sha256: replace own cython wrapper code by hmac.digest python stdlib (since py38)
  472. - hmac and blake2b minor optimizations and cleanups
  473. - removed some unused crypto related code, #6472
  474. - avoid losing the key (potential use-after-free). this never could happen in
  475. 1.2 due to the way we use the code. The issue was discovered in master after
  476. other changes, so we also "fixed" it here before it bites us.
  477. - setup / build:
  478. - add pyproject.toml, fix sys.path, #6466
  479. - setuptools_scm: also require it via pyproject.toml
  480. - allow extra compiler flags for every extension build
  481. - fix misc. C / Cython compiler warnings, deprecation warnings
  482. - fix zstd.h include for bundled zstd, #6369
  483. - source using python 3.8 features: ``pyupgrade --py38-plus ./**/*.py``
  484. Version 1.2.0 (2022-02-22 22:02:22 :-)
  485. --------------------------------------
  486. Fixes:
  487. - diff: reduce memory consumption, fix is_hardlink_master, #6295
  488. - compact: fix / improve freeable / freed space log output
  489. - derive really freed space from quota use before/after, #5679
  490. - do not say "freeable", but "maybe freeable" (based on hint, unsure)
  491. - fix race conditions in internal SaveFile function, #6306 #6028
  492. - implement internal safe_unlink (was: truncate_and_unlink) function more safely:
  493. usually it does not truncate any more, only under "disk full" circumstances
  494. and only if there is only one hardlink.
  495. see: https://github.com/borgbackup/borg/discussions/6286
  496. Other changes:
  497. - info: use a pre12-meta cache to accelerate stats for borg < 1.2 archives.
  498. the first time borg info is invoked on a borg 1.1 repo, it can take a
  499. rather long time computing and caching some stats values for 1.1 archives,
  500. which borg 1.2 archives have in their archive metadata structure.
  501. be patient, esp. if you have lots of old archives.
  502. following invocations are much faster due to the cache.
  503. related change: add archive name to calc_stats progress display.
  504. - docs:
  505. - add borg 1.2 upgrade notes, #6217
  506. - link to borg placeholders and borg patterns help
  507. - init: explain the encryption modes better
  508. - clarify usage of patternfile roots
  509. - put import-tar docs into same file as export-tar docs
  510. - explain the difference between a path that ends with or without a slash,
  511. #6297
  512. Version 1.2.0rc1 (2022-02-05)
  513. -----------------------------
  514. Fixes:
  515. - repo::archive location placeholder expansion fixes, #5826, #5998
  516. - repository: fix intermediate commits, shall be at end of current segment
  517. - delete: don't commit if nothing was deleted, avoid cache sync, #6060
  518. - argument parsing: accept some options only once, #6026
  519. - disallow overwriting of existing keyfiles on init, #6036
  520. - if ensure_dir() fails, give more informative error message, #5952
  521. New features:
  522. - delete --force: do not ask when deleting a repo, #5941
  523. Other changes:
  524. - requirements: exclude broken or incompatible-with-pyinstaller setuptools
  525. - add a requirements.d/development.lock.txt and use it for vagrant
  526. - tests:
  527. - added nonce-related tests
  528. - refactor: remove assert_true
  529. - vagrant: macos box tuning, netbsd box fixes, #5370, #5922
  530. - docs:
  531. - update install docs / requirements docs, #6180
  532. - borg mount / FUSE "versions" view is not experimental any more
  533. - --pattern* is not experimental any more, #6134
  534. - impact of deleting path/to/repo/nonce, #5858
  535. - key export: add examples, #6204
  536. - ~/.config/borg/keys is not used for repokey keys, #6107
  537. - excluded parent dir's metadata can't restore
  538. Version 1.2.0b4 (2022-01-23)
  539. ----------------------------
  540. Fixes:
  541. - create: fix passing device nodes and symlinks to --paths-from-stdin, #6009
  542. - create --dry-run: fix display of kept tagfile, #5834
  543. - check --repair: fix missing parameter in "did not consistently fail" msg, #5822
  544. - fix hardlinkable file type check, #6037
  545. - list: remove placeholders for shake_* hashes, #6082
  546. - prune: handle case of calling prune_split when there are no archives, #6015
  547. - benchmark crud: make sure cleanup of borg-test-data files/dir happens, #5630
  548. - do not show archive name in repository-related error msgs, #6014
  549. - prettier error msg (no stacktrace) if exclude file is missing, #5734
  550. - do not require BORG_CONFIG_DIR if BORG_{SECURITY,KEYS}_DIR are set, #5979
  551. - fix pyinstaller detection for dir-mode, #5897
  552. - atomically create the CACHE_TAG file, #6028
  553. - deal with the SaveFile/SyncFile race, docs, see #6056 708a5853
  554. - avoid expanding path into LHS of formatting operation + tests, #6064 #6063
  555. - repository: quota / compactable computation fixes
  556. - info: emit repo info even if repo has 0 archives + test, #6120
  557. New features:
  558. - check --repair: significantly speed up search for next valid object in segment, #6022
  559. - check: add progress indicator for archive check, #5809
  560. - create: add retry_erofs workaround for O_NOATIME issue on volume shadow copies in WSL1, #6024
  561. - create: allow --files-cache=size (this is potentially dangerous, use on your own risk), #5686
  562. - import-tar: implement import-tar to complement export-tar, #2233
  563. - implement BORG_SELFTEST env variable (can be carefully used to speedup borg hosting), #5871
  564. - key export: print key if path is '-' or not given, #6092
  565. - list --format: Add command_line to format keys
  566. Other changes:
  567. - pypi metadata: alpha -> beta
  568. - require python 3.8+, #5975
  569. - use pyinstaller 4.7
  570. - allow msgpack 1.0.3
  571. - upgrade to bundled xxhash to 0.8.1
  572. - import-tar / export-tar: tar file related changes:
  573. - check for short tarfile extensions
  574. - add .lz4 and .zstd
  575. - fix docs about extensions and decompression commands
  576. - add github codeql analysis, #6148
  577. - vagrant:
  578. - box updates / add new boxes / remove outdated and broken boxes
  579. - use Python 3.9.10 (incl. binary builds) and 3.10.0
  580. - fix pyenv initialisation, #5798
  581. - fix vagrant scp on macOS, #5921
  582. - use macfuse instead of osxfuse
  583. - shell completions:
  584. - update shell completions to 1.1.17, #5923
  585. - remove BORG_LIBC completion, since 9914968 borg no longer uses find_library().
  586. - docs:
  587. - fixed readme.rst irc webchat link (we use libera chat now, not freenode)
  588. - fix exceptions thrown by `setup.py build_man`
  589. - check --repair: recommend checking hw before check --repair, #5855
  590. - check --verify-data: clarify and document conflict with --repository-only, #5808
  591. - serve: improve ssh forced commands docs, #6083
  592. - list: improve docs for `borg list` --format, #6061
  593. - list: remove --list-format from borg list
  594. - FAQ: fix manifest-timestamp path (inside security dir)
  595. - fix the broken link to .nix file
  596. - document behavior for filesystems with inconsistent inodes, #5770
  597. - clarify user_id vs uid for fuse, #5723
  598. - clarify pattern usage with commands, #5176
  599. - clarify pp vs. pf pattern type, #5300
  600. - update referenced freebsd/macOS versions used for binary build, #5942
  601. - pull mode: add some warnings, #5827
  602. - clarify "you will need key and passphrase" borg init warning, #4622
  603. - add missing leading slashes in help patterns, #5857
  604. - add info on renaming repositories, #5240
  605. - check: add notice about defective hardware, #5753
  606. - mention tar --compare (compare archive to fs files), #5880
  607. - add note about grandfather-father-son backup retention policy / rotation scheme, #6006
  608. - permissions note rewritten to make it less confusing
  609. - create github security policy
  610. - remove leftovers of BORG_HOSTNAME_IS_UNIQUE
  611. - excluded parent dir's metadata can't restore. (#6062)
  612. - if parent dir is not extracted, we do not have its metadata
  613. - clarify who starts the remote agent
  614. Version 1.2.0b3 (2021-05-12)
  615. ----------------------------
  616. Fixes:
  617. - create: fix --progress --log-json, #4360#issuecomment-774580052
  618. - do not load files cache for commands not using it, #5673
  619. - fix repeated cache tag file writing bug
  620. New features:
  621. - create/recreate: print preliminary file status early, #5417
  622. - create/extract: add --noxattrs and --noacls options, #3955
  623. - create: verbose files cache logging via --debug-topic=files_cache, #5659
  624. - mount: implement --numeric-ids (default: False!), #2377
  625. - diff: add --json-lines option
  626. - info / create --stats: add --iec option to print sizes in powers of 1024.
  627. Other changes:
  628. - create: add --upload-(ratelimit|buffer), deprecate --remote-* options, #5611
  629. - create/extract/mount: add --numeric-ids, deprecate --numeric-owner option, #5724
  630. - config: accept non-int value for max_segment_size / storage_quota
  631. - use PyInstaller v4.3, #5671
  632. - vagrant: use Python 3.9.5 to build binaries
  633. - tox.ini: modernize and enable execution without preinstalling deps
  634. - cleanup code style checks
  635. - get rid of distutils, use setuptools+packaging
  636. - github CI: test on Python 3.10-dev
  637. - check: missing / healed chunks: always tell chunk ID, #5704
  638. - docs:
  639. - remove bad /var/cache exclusion in example commands, #5625
  640. - misc. fixes and improvements, esp. for macOS
  641. - add unsafe workaround to use an old repo copy, #5722
  642. Version 1.2.0b2 (2021-02-06)
  643. ----------------------------
  644. Fixes:
  645. - create: do not recurse into duplicate roots, #5603
  646. - create: only print stats if not ctrl-c'ed, fixes traceback, #5668
  647. - extract:
  648. improve exception handling when setting xattrs, #5092.
  649. emit a warning message giving the path, xattr key and error message.
  650. continue trying to restore other xattrs and bsdflags of the same file
  651. after an exception with xattr-setting happened.
  652. - export-tar:
  653. fix memory leak with ssh: remote repository, #5568.
  654. fix potential memory leak with ssh: remote repository with partial extraction.
  655. - remove empty shadowed_segments lists, #5275
  656. - fix bad default: manifest.archives.list(consider_checkpoints=False),
  657. fixes tracebacks / KeyErros for missing objects in ChunkIndex, #5668
  658. New features:
  659. - create: improve sparse file support
  660. - create --sparse (detect sparse file holes) and file map support,
  661. only for the "fixed" chunker, #14
  662. - detect all-zero chunks in read data in "buzhash" and "fixed" chunkers
  663. - cached_hash: use a small LRU cache to accelerate all-zero chunks hashing
  664. - use cached_hash also to generate all-zero replacement chunks
  665. - create --remote-buffer, add a upload buffer for remote repos, #5574
  666. - prune: keep oldest archive when retention target not met
  667. Other changes:
  668. - use blake2 from python 3.6+ hashlib
  669. (this removes the requirement for libb2 and the bundled blake2 code)
  670. - also accept msgpack up to 1.0.2.
  671. exclude 1.0.1 though, which had some issues (not sure they affect borg).
  672. - create: add repository location to --stats output, #5491
  673. - check: debug log the segment filename
  674. - delete: add a --list switch to borg delete, #5116
  675. - borg debug dump-hints - implemented to e.g. to look at shadow_index
  676. - Tab completion support for additional archives for 'borg delete'
  677. - refactor: have one borg.constants.zero all-zero bytes object
  678. - refactor shadow_index updating repo.put/delete, #5661, #5636.
  679. - docs:
  680. - add another case of attempted hardlink usage
  681. - fix description of borg upgrade hardlink usage, #5518
  682. - use HTTPS everywhere
  683. - add examples for --paths-from-stdin, --paths-from-command, --paths-separator, #5644
  684. - fix typos/grammar
  685. - update docs for dev environment installation instructions
  686. - recommend running tests only on installed versions for setup
  687. - add badge with current status of package
  688. - vagrant:
  689. - use brew install --cask ..., #5557
  690. - use Python 3.9.1 and PyInstaller 4.1 to build the borg binary
  691. Version 1.2.0b1 (2020-12-06)
  692. ----------------------------
  693. Fixes:
  694. - BORG_CACHE_DIR crashing borg if empty, atomic handling of
  695. recursive directory creation, #5216
  696. - fix --dry-run and --stats coexistence, #5415
  697. - allow EIO with warning when trying to hardlink, #4336
  698. - export-tar: set tar format to GNU_FORMAT explicitly, #5274
  699. - use --timestamp for {utcnow} and {now} if given, #5189
  700. - make timestamp helper timezone-aware
  701. New features:
  702. - create: implement --paths-from-stdin and --paths-from-command, see #5492.
  703. These switches read paths to archive from stdin. Delimiter can specified
  704. by --paths-delimiter=DELIM. Paths read will be added honoring every
  705. option but exclusion options and --one-file-system. borg won't recurse
  706. into directories.
  707. - 'obfuscate' pseudo compressor obfuscates compressed chunk size in repo
  708. - add pyfuse3 (successor of llfuse) as an alternative lowlevel fuse
  709. implementation to llfuse (deprecated), #5407.
  710. FUSE implementation can be switched via env var BORG_FUSE_IMPL.
  711. - allow appending to the files cache filename with BORG_FILES_CACHE_SUFFIX
  712. - create: implement --stdin-mode, --stdin-user and --stdin-group, #5333
  713. Other changes:
  714. - split recursive directory walking/processing into directory walking and
  715. item processing.
  716. - fix warning by importing setuptools before distutils.
  717. - debug info: include infos about FUSE implementation, #5546
  718. - testing:
  719. - add a test for the hashindex corruption bug, #5531 #4829
  720. - move away from travis-ci, use github actions, #5528 #5467
  721. - test both on fuse2 and fuse3
  722. - upload coverage reports to codecov
  723. - fix spurious failure in test_cache_files, #5438
  724. - add tests for Location.with_timestamp
  725. - tox: add a non-fuse env to the envlist
  726. - vagrant:
  727. - use python 3.7.latest and pyinstaller 4.0 for binary creation
  728. - pyinstaller: compute basepath from spec file location
  729. - vagrant: updates/fixes for archlinux box, #5543
  730. - docs:
  731. - "filename with spaces" example added to exclude file, #5236
  732. - add a hint about sleeping computer, #5301
  733. - how to adjust macOS >= Catalina security settings, #5303
  734. - process/policy for adding new compression algorithms
  735. - updated docs about hacked backup client, #5480
  736. - improve ansible deployment docs, make it more generic
  737. - how to approach borg speed issues, give speed example, #5371
  738. - fix mathematical inaccuracy about chunk size, #5336
  739. - add example for excluding content using --pattern cli option
  740. - clarify borg create's '--one-file-system' option, #4009
  741. - improve docs/FAQ about append-only remote repos, #5497
  742. - fix reST markup issues, labels
  743. - add infos about contributor retirement status
  744. Version 1.2.0a9 (2020-10-05)
  745. ----------------------------
  746. Fixes:
  747. - fix memory leak related to preloading, #5202
  748. - check --repair: fix potential data loss, #5325
  749. - persist shadow_index in between borg runs, #4830
  750. - fix hardlinked CACHEDIR.TAG processing, #4911
  751. - --read-special: .part files also should be regular files, #5217
  752. - allow server side enforcing of umask, --umask is for the local borg
  753. process only (see docs), #4947
  754. - exit with 128 + signal number, #5161
  755. - borg config --list does not show last_segment_checked, #5159
  756. - locking:
  757. - fix ExclusiveLock race condition bug, #4923
  758. - fix race condition in lock migration, #4953
  759. - fix locking on openindiana, #5271
  760. New features:
  761. - --content-from-command: create archive using stdout of given command, #5174
  762. - allow key-import + BORG_KEY_FILE to create key files
  763. - build directory-based binary for macOS to avoid Gatekeeper delays
  764. Other changes:
  765. - upgrade bundled zstd to 1.4.5
  766. - upgrade bundled xxhash to 0.8.0, #5362
  767. - if self test fails, also point to OS and hardware, #5334
  768. - misc. shell completions fixes/updates, rewrite zsh completion
  769. - prettier error message when archive gets too big, #5307
  770. - stop relying on `false` exiting with status code 1
  771. - rephrase some warnings, #5164
  772. - parseformat: unnecessary calls removed, #5169
  773. - testing:
  774. - enable Python3.9 env for test suite and VMs, #5373
  775. - drop python 3.5, #5344
  776. - misc. vagrant fixes/updates
  777. - misc. testing fixes, #5196
  778. - docs:
  779. - add ssh-agent pull backup method to doc, #5288
  780. - mention double --force in prune docs
  781. - update Homebrew install instructions, #5185
  782. - better description of how cache and rebuilds of it work
  783. and how the workaround applies to that
  784. - point to borg create --list item flags in recreate usage, #5165
  785. - add a note to create from stdin regarding files cache, #5180
  786. - add security faq explaining AES-CTR crypto issues, #5254
  787. - clarify --exclude-if-present in recreate, #5193
  788. - add socat pull mode, #5150, #900
  789. - move content of resources doc page to community project, #2088
  790. - explain hash collision, #4884
  791. - clarify --recompress option, #5154
  792. Version 1.2.0a8 (2020-04-22)
  793. ----------------------------
  794. Fixes:
  795. - fixed potential index corruption / data loss issue due to bug in hashindex_set, #4829.
  796. Please read and follow the more detailed notes close to the top of this document.
  797. - fix crash when upgrading erroneous hints file, #4922
  798. - commit-time free space calc: ignore bad compact map entries, #4796
  799. - info: if the archive doesn't exist, print a pretty message, #4793
  800. - --prefix / -P: fix processing, avoid argparse issue, #4769
  801. - ignore EACCES (errno 13) when hardlinking, #4730
  802. - add a try catch when formatting the info string, #4818
  803. - check: do not stumble over invalid item key, #4845
  804. - update prevalence of env vars to set config and cache paths
  805. - mount: fix FUSE low linear read speed on large files, #5032
  806. - extract: fix confusing output of borg extract --list --strip-components, #4934
  807. - recreate: support --timestamp option, #4745
  808. - fix ProgressIndicator msgids (JSON output), #4935
  809. - fuse: set f_namemax in statfs result, #2684
  810. - accept absolute paths on windows
  811. - pyinstaller: work around issue with setuptools > 44
  812. New features:
  813. - chunker speedup (plus regression test)
  814. - added --consider-checkpoints and related test, #4788
  815. - added --noflags option, deprecate --nobsdflags option, #4489
  816. - compact: add --threshold option, #4674
  817. - mount: add birthtime to FUSE entries
  818. - support platforms with no os.link, #4901 - if we don't have os.link,
  819. we just extract another copy instead of making a hardlink.
  820. - move sync_file_range to its own extension for better platform compatibility.
  821. - new --bypass-lock option to bypass locking, e.g. for read-only repos
  822. - accept absolute paths by removing leading slashes in patterns of all
  823. sorts but re: style, #4029
  824. - delete: new --keep-security-info option
  825. Other changes:
  826. - support msgpack 0.6.2 and 1.0.0, #5065
  827. - upgrade bundled zstd to 1.4.4
  828. - upgrade bundled lz4 to 1.9.2
  829. - upgrade xxhash to 0.7.3
  830. - require recent enough llfuse for birthtime support, #5064
  831. - only store compressed data if the result actually is smaller, #4516
  832. - check: improve error output for matching index size, see #4829
  833. - ignore --stats when given with --dry-run, but continue, #4373
  834. - replaced usage of os.statvfs with shutil.disk_usage (better cross-platform support).
  835. - fuse: remove unneeded version check and compat code, micro opts
  836. - docs:
  837. - improve description of path variables
  838. - document how to completely delete data, #2929
  839. - add FAQ about Borg config dir, #4941
  840. - add docs about errors not printed as JSON, #4073
  841. - update usage_general.rst.inc
  842. - added "Will move with BORG_CONFIG_DIR variable unless specified." to BORG_SECURITY_DIR info.
  843. - put BORG_SECURITY_DIR immediately below BORG_CONFIG_DIR (and moved BORG_CACHE_DIR up before them).
  844. - add paragraph regarding cache security assumptions, #4900
  845. - tell about borg cache security precautions
  846. - add FAQ describing difference between a local repo vs. repo on a server.
  847. - document how to test exclusion patterns without performing an actual backup
  848. - create: tell that "Calculating size" time and space needs are caused by --progress
  849. - fix/improve documentation for @api decorator, #4674
  850. - add a pull backup / push restore how-to, #1552
  851. - fix man pages creation, #4752
  852. - more general FAQ for backup and retain original paths, #4532
  853. - explain difference between --exclude and --pattern, #4118
  854. - add FAQ for preventing SSH timeout in extract, #3866
  855. - improve password FAQ (decrease pw length, add -w 0 option to base64 to prevent line wrap), #4591
  856. - add note about patterns and stored paths, #4160
  857. - add upgrade of tools to pip installation how-to, #5090
  858. - document one cause of orphaned chunks in check command, #2295
  859. - clean up the whole check usage paragraph
  860. - FAQ: linked recommended restrictions to ssh public keys on borg servers, #4946
  861. - fixed "doc downplays severity of Nonce reuse issue", #4883
  862. - borg repo restore instructions needed, #3428
  863. - new FAQ: A repo is corrupt and must be replaced with an older repo.
  864. - clarify borg init's encryption modes
  865. - native windows port:
  866. - update README_WINDOWS.rst
  867. - updated pyinstaller spec file to support windows builds
  868. - testing / CI:
  869. - improved travis config / install script, improved macOS builds
  870. - allow osx builds to fail, #4955
  871. - Windows 10 build on Appveyor CI
  872. - vagrant:
  873. - upgrade pyinstaller to v3.5 + patch
  874. - use py369 for binary build, add py380 for tests
  875. - fix issue in stretch VM hanging at grub installation
  876. - add a debian buster and a ubuntu focal VM
  877. - update darwin box to 10.12
  878. - upgrade FreeBSD box to 12.1
  879. - fix debianoid virtualenv packages
  880. - use pyenv in freebsd64 VM
  881. - remove the flake8 test
  882. - darwin: avoid error if pkg is already installed
  883. - debianoid: don't interactively ask questions
  884. Version 1.2.0a7 (2019-09-07)
  885. ----------------------------
  886. Fixes:
  887. - slave hardlinks extraction issue, see #4350
  888. - extract: fix KeyError for "partial" extraction, #4607
  889. - preload chunks for hardlink slaves w/o preloaded master, #4350
  890. - fix preloading for old remote servers, #4652
  891. - fix partial extract for hardlinked contentless file types, #4725
  892. - Repository.open: use stat() to check for repo dir, #4695
  893. - Repository.check_can_create_repository: use stat() to check, ~ #4695.
  894. - SecurityManager.known(): check all files, #4614
  895. - after double-force delete, warn about necessary repair, #4704
  896. - cope with ANY error when importing pytest into borg.testsuite, #4652
  897. - fix invalid archive error message
  898. - setup.py: fix detection of missing Cython
  899. - filter out selinux xattrs, #4574
  900. - location arg - should it be optional? #4541
  901. - enable placeholder usage in --comment, #4559
  902. - use whitelist approach for borg serve, #4097
  903. New features:
  904. - minimal native Windows support, see windows readme (work in progress)
  905. - create: first ctrl-c (SIGINT) triggers checkpoint and abort, #4606
  906. - new BORG_WORKAROUNDS mechanism, basesyncfile, #4710
  907. - remove WSL autodetection. if WSL still has this problem, you need to
  908. set BORG_WORKAROUNDS=basesyncfile in the borg process environment to
  909. work around it.
  910. - support xxh64 checksum in addition to the hashlib hashes in borg list
  911. - enable placeholder usage in all extra archive arguments
  912. - enable placeholder usage in --comment, #4559
  913. - enable placeholder usage in --glob-archives, #4495
  914. - ability to use a system-provided version of "xxhash"
  915. - create:
  916. - changed the default behaviour to not store the atime of fs items. atime is
  917. often rather not interesting and fragile - it easily changes even if nothing
  918. else has changed and, if stored into the archive, spoils deduplication of
  919. the archive metadata stream.
  920. - if you give the --noatime option, borg will output a deprecation warning
  921. because it is currently ignored / does nothing.
  922. Please remove the --noatime option when using borg 1.2.
  923. - added a --atime option for storing files' atime into an archive
  924. Other changes:
  925. - argparser: always use REPOSITORY in metavar
  926. - do not check python/libc for borg serve, #4483
  927. - small borg compact improvements, #4522
  928. - compact: log freed space at INFO level
  929. - tests:
  930. - tox / travis: add testing on py38-dev
  931. - fix broken test that relied on improper zlib assumptions
  932. - pure-py msgpack warning shall not make a lot of tests fail, #4558
  933. - rename test_mount_hardlinks to test_fuse_mount_hardlinks (master)
  934. - vagrant: add up-to-date openindiana box (py35, openssl10)
  935. - get rid of confusing coverage warning, #2069
  936. - docs:
  937. - reiterate that 'file cache names are absolute' in FAQ,
  938. mention bind mount solution, #4738
  939. - add restore docs, #4670
  940. - updated docs to cover use of temp directory on remote, #4545
  941. - add a push-style example to borg-create(1), #4613
  942. - timestamps in the files cache are now usually ctime, #4583
  943. - benchmark crud: clarify that space is used until compact
  944. - update documentation of borg create,
  945. corrects a mention of borg 1.1 as a future version.
  946. - fix osxfuse github link in installation docs
  947. - how to supply a passphrase, use crypto devices, #4549
  948. - extract: document limitation "needs empty destination", #4598
  949. - update macOS Brew link
  950. - add note about software for automating backup
  951. - compact: improve docs,
  952. - README: new URL for funding options
  953. Version 1.2.0a6 (2019-04-22)
  954. ----------------------------
  955. Fixes:
  956. - delete / prune: consider part files correctly for stats, #4507
  957. - fix "all archives" stats considering part files, #4329
  958. - create: only run stat_simple_attrs() once
  959. - create: --stats does not work with --dry-run, exit with error msg, #4373
  960. - give "invalid repo" error msg if repo config not found, #4411
  961. New features:
  962. - display msgpack version as part of sysinfo (e.g. in tracebacks)
  963. Other changes:
  964. - docs:
  965. - sdd "SSH Configuration" section, #4493, #3988, #636, #4485
  966. - better document borg check --max-duration, #4473
  967. - sorted commands help in multiple steps, #4471
  968. - testing:
  969. - travis: use py 3.5.3 and 3.6.7 on macOS to get a pyenv-based python
  970. build with openssl 1.1
  971. - vagrant: use py 3.5.3 and 3.6.8 on darwin64 VM to build python and
  972. borg with openssl 1.1
  973. - pytest: -v and default XDISTN to 1, #4481
  974. Version 1.2.0a5 (2019-03-21)
  975. ----------------------------
  976. Fixes:
  977. - warn if a file has changed while being backed up, #1750
  978. - lrucache: regularly remove old FDs, #4427
  979. - borg command shall terminate with rc 2 for ImportErrors, #4424
  980. - make freebsd xattr platform code api compatible with linux, #3952
  981. Other changes:
  982. - major setup code refactoring (especially how libraries like openssl, liblz4,
  983. libzstd, libb2 are discovered and how it falls back to code bundled with
  984. borg), new: uses pkg-config now (and needs python "pkgconfig" package
  985. installed), #1925
  986. if you are a borg package maintainer, please try packaging this
  987. (see comments in setup.py).
  988. - Vagrantfile: add zstd, reorder, build env vars, #4444
  989. - travis: install script improvements
  990. - update shell completions
  991. - docs:
  992. - add a sample logging.conf in docs/misc, #4380
  993. - fix spelling errors
  994. - update requirements / install docs, #4374
  995. Version 1.2.0a4 (2019-03-11)
  996. ----------------------------
  997. Fixes:
  998. - do not use O_NONBLOCK for special files, like FIFOs, block and char devices
  999. when using --read-special. fixes backing up FIFOs. fixes to test. #4394
  1000. - more LibreSSL build fixes: LibreSSL has HMAC_CTX_free and HMAC_CTX_new
  1001. New features:
  1002. - check: incremental repo check (only checks crc32 for segment entries), #1657
  1003. borg check --repository-only --max-duration SECONDS ...
  1004. - delete: timestamp for borg delete --info added, #4359
  1005. Other changes:
  1006. - redo stale lock handling, #3986
  1007. drop BORG_HOSTNAME_IS_UNIQUE (please use BORG_HOST_ID if needed).
  1008. borg now always assumes it has a unique host id - either automatically
  1009. from fqdn plus uuid.getnode() or overridden via BORG_HOST_ID.
  1010. - docs:
  1011. - added Alpine Linux to distribution list
  1012. - elaborate on append-only mode docs
  1013. - vagrant:
  1014. - darwin: new 10.12 box
  1015. - freebsd: new 12.0 box
  1016. - openbsd: new 6.4 box
  1017. - misc. updates / fixes
  1018. Version 1.2.0a3 (2019-02-26)
  1019. ----------------------------
  1020. Fixes:
  1021. - LibreSSL build fixes, #4403
  1022. - dummy ACL/xattr code fixes (used by OpenBSD and others), #4403
  1023. - create: fix openat/statat issues for root directory, #4405
  1024. Version 1.2.0a2 and earlier (2019-02-24)
  1025. ----------------------------------------
  1026. New features:
  1027. - compact: "borg compact" needs to be used to free repository space by
  1028. compacting the segments (reading sparse segments, rewriting still needed
  1029. data to new segments, deleting the sparse segments).
  1030. Borg < 1.2 invoked compaction automatically at the end of each repository
  1031. writing command.
  1032. Borg >= 1.2 does not do that any more to give better speed, more control,
  1033. more segment file stability (== less stuff moving to newer segments) and
  1034. more robustness.
  1035. See the docs about "borg compact" for more details.
  1036. - "borg compact --cleanup-commits" is to cleanup the tons of 17byte long
  1037. commit-only segment files caused by borg 1.1.x issue #2850.
  1038. Invoke this once after upgrading (the server side) borg to 1.2.
  1039. Compaction now automatically removes unneeded commit-only segment files.
  1040. - prune: Show which rule was applied to keep archive, #2886
  1041. - add fixed blocksize chunker (see --chunker-params docs), #1086
  1042. Fixes:
  1043. - avoid stale filehandle issues, #3265
  1044. - use more FDs, avoid race conditions on active fs, #906, #908, #1038
  1045. - add O_NOFOLLOW to base flags, #908
  1046. - compact:
  1047. - require >10% freeable space in a segment, #2985
  1048. - repository compaction now automatically removes unneeded 17byte
  1049. commit-only segments, #2850
  1050. - make swidth available on all posix platforms, #2667
  1051. Other changes:
  1052. - repository: better speed and less stuff moving around by using separate
  1053. segment files for manifest DELETEs and PUTs, #3947
  1054. - use pyinstaller v3.3.1 to build binaries
  1055. - update bundled zstd code to 1.3.8, #4210
  1056. - update bundled lz4 code to 1.8.3, #4209
  1057. - msgpack:
  1058. - switch to recent "msgpack" pypi pkg name, #3890
  1059. - wrap msgpack to avoid future compat complications, #3632, #2738
  1060. - support msgpack 0.6.0 and 0.6.1, #4220, #4308
  1061. - llfuse: modernize / simplify llfuse version requirements
  1062. - code refactorings / internal improvements:
  1063. - include size/csize/nfiles[_parts] stats into archive, #3241
  1064. - calc_stats: use archive stats metadata, if available
  1065. - crypto: refactored crypto to use an AEAD style API
  1066. - crypto: new AES-OCB, CHACHA20-POLY1305
  1067. - create: use less syscalls by not using a python file obj, #906, #3962
  1068. - diff: refactor the diff functionality to new ItemDiff class, #2475
  1069. - archive: create FilesystemObjectProcessors class
  1070. - helpers: make a package, split into smaller modules
  1071. - xattrs: move to platform package, use cython instead ctypes, #2495
  1072. - xattrs/acls/bsdflags: misc. code/api optimizations
  1073. - FUSE: separate creation of filesystem from implementation of llfuse funcs, #3042
  1074. - FUSE: use unpacker.tell() instead of deprecated write_bytes, #3899
  1075. - setup.py: move build_man / build_usage code to setup_docs.py
  1076. - setup.py: update to use a newer Cython/setuptools API for compiling .pyx -> .c, #3788
  1077. - use python 3.5's os.scandir / os.set_blocking
  1078. - multithreading preparations (not used yet):
  1079. - item.to_optr(), Item.from_optr()
  1080. - fix chunker holding the GIL during blocking I/O
  1081. - C code portability / basic MSC compatibility, #4147, #2677
  1082. - testing:
  1083. - vagrant: new VMs for linux/bsd/darwin, most with OpenSSL 1.1 and py36
  1084. Version 1.1.18 (2022-06-05)
  1085. ---------------------------
  1086. Compatibility notes:
  1087. - When upgrading from borg 1.0.x to 1.1.x, please note:
  1088. - read all the compatibility notes for 1.1.0*, starting from 1.1.0b1.
  1089. - borg upgrade: you do not need to and you also should not run it.
  1090. There is one exception though:
  1091. If you upgrade from an unpatched borg < 1.0.9, please read that section
  1092. above: "Pre-1.0.9 manifest spoofing vulnerability (CVE-2016-10099)"
  1093. - borg might ask some security-related questions once after upgrading.
  1094. You can answer them either manually or via environment variable.
  1095. One known case is if you use unencrypted repositories, then it will ask
  1096. about a unknown unencrypted repository one time.
  1097. - your first backup with 1.1.x might be significantly slower (it might
  1098. completely read, chunk, hash a lot files) - this is due to the
  1099. --files-cache mode change (and happens every time you change mode).
  1100. You can avoid the one-time slowdown by using the pre-1.1.0rc4-compatible
  1101. mode (but that is less safe for detecting changed files than the default).
  1102. See the --files-cache docs for details.
  1103. - 1.1.11 removes WSL autodetection (Windows 10 Subsystem for Linux).
  1104. If WSL still has a problem with sync_file_range, you need to set
  1105. BORG_WORKAROUNDS=basesyncfile in the borg process environment to
  1106. work around the WSL issue.
  1107. - 1.1.14 changes return codes due to a bug fix:
  1108. In case you have scripts expecting rc == 2 for a signal exit, you need to
  1109. update them to check for >= 128 (as documented since long).
  1110. - 1.1.15 drops python 3.4 support, minimum requirement is 3.5 now.
  1111. - 1.1.17 install_requires the "packaging" pypi package now.
  1112. New features:
  1113. - check --repair: significantly speed up search for next valid object in segment, #6022
  1114. - create: add retry_erofs workaround for O_NOATIME issue on volume shadow copies in WSL1, #6024
  1115. - key export: display key if path is '-' or not given, #6092
  1116. - list --format: add command_line to format keys, #6108
  1117. Fixes:
  1118. - check: improve error handling for corrupt archive metadata block,
  1119. make robust_iterator more robust, #4777
  1120. - diff: support presence change for blkdev, chrdev and fifo items, #6483
  1121. - diff: reduce memory consumption, fix is_hardlink_master
  1122. - init: disallow overwriting of existing keyfiles
  1123. - info: fix authenticated mode repo to show "Encrypted: No", #6462
  1124. - info: emit repo info even if repo has 0 archives, #6120
  1125. - list: remove placeholders for shake_* hashes, #6082
  1126. - mount -o versions: give clear error msg instead of crashing
  1127. - show_progress: add finished=true/false to archive_progress json, #6570
  1128. - fix hardlinkable file type check, #6037
  1129. - do not show archive name in error msgs referring to the repository, #6023
  1130. - prettier error msg (no stacktrace) if exclude file is missing, #5734
  1131. - do not require BORG_CONFIG_DIR if BORG_{SECURITY,KEYS}_DIR are set, #5979
  1132. - atomically create the CACHE_TAG file, #6028
  1133. - deal with the SaveFile/SyncFile race, docs, see #6176 5c5b59bc9
  1134. - avoid expanding path into LHS of formatting operation + tests, #6064 #6063
  1135. - repository: quota / compactable computation fixes, #6119.
  1136. This is mainly to keep the repo code in sync with borg 1.2. As borg 1.1
  1137. compacts immediately, there was not really an issue with this in 1.1.
  1138. - fix transaction rollback: use files cache filename as found in txn.active, #6353
  1139. - do not load files cache for commands not using it, fixes #5673
  1140. - fix scp repo url parsing for ip v6 addrs, #6526
  1141. - repo::archive location placeholder expansion fixes, #5826, #5998
  1142. - use expanded location for log output
  1143. - support placeholder expansion for BORG_REPO env var
  1144. - respect umask for created directory and file modes, #6400
  1145. - safer truncate_and_unlink implementation
  1146. Other changes:
  1147. - upgrade bundled xxhash code to 0.8.1
  1148. - fix xxh64 related build (setup.py and post-0.8.1 patch for static_assert).
  1149. The patch was required to build the bundled xxhash code on FreeBSD, see
  1150. https://github.com/Cyan4973/xxHash/pull/670
  1151. - msgpack build: remove endianness macro, #6105
  1152. - update and fix shell completions
  1153. - fuse: remove unneeded version check and compat code
  1154. - delete --force: do not ask when deleting a repo, #5941
  1155. - delete: don't commit if nothing was deleted, avoid cache sync, #6060
  1156. - delete: add repository id and location to prompt
  1157. - compact segments: improve freeable / freed space log output, #5679
  1158. - if ensure_dir() fails, give more informative error message, #5952
  1159. - load_key: no key is same as empty key, #6441
  1160. - better error msg for defect or unsupported repo configs, #6566
  1161. - use hmac.compare_digest instead of ==, #6470
  1162. - implement more standard hashindex.setdefault behaviour
  1163. - remove stray punctuation from secure-erase message
  1164. - add development.lock.txt, use a real python 3.5 to generate frozen reqs
  1165. - setuptools 60.7.0 breaks pyinstaller, #6246
  1166. - setup.py clean2 was added to work around some setuptools customizability limitation.
  1167. - allow extra compiler flags for every extension build
  1168. - C code: make switch fallthrough explicit
  1169. - Cython code: fix "useless trailing comma" cython warnings
  1170. - requirements.lock.txt: use the latest cython 0.29.30
  1171. - fix compilation warnings: ‘PyUnicode_AsUnicode’ is deprecated
  1172. - docs:
  1173. - ~/.config/borg/keys is not used for repokey keys, #6107
  1174. - excluded parent dir's metadata can't restore, #6062
  1175. - permissions note rewritten to make it less confusing, #5490
  1176. - add note about grandfather-father-son backup retention policy / rotation scheme
  1177. - clarify who starts the remote agent (borg serve)
  1178. - test/improve pull backup docs, #5903
  1179. - document the socat pull mode described in #900 #515ß
  1180. - borg serve: improve ssh forced commands docs, #6083
  1181. - improve docs for borg list --format, #6080
  1182. - fix the broken link to .nix file
  1183. - clarify pattern usage with commands, #5176
  1184. - clarify user_id vs uid for fuse, #5723
  1185. - fix binary build freebsd/macOS version, #5942
  1186. - FAQ: fix manifest-timestamp path, #6016
  1187. - remove duplicate faq entries, #5926
  1188. - fix sphinx warnings, #5919
  1189. - virtualisation speed tips
  1190. - fix values of TAG bytes, #6515
  1191. - recommend umask for passphrase file perms
  1192. - update link to ubuntu packages, #6485
  1193. - clarify on-disk order and size of log entry fields, #6357
  1194. - do not transform --/--- to unicode dashes
  1195. - improve linking inside docs, link to borg_placeholders, link to borg_patterns
  1196. - use same phrasing in misc. help texts
  1197. - borg init: explain the encryption modes better
  1198. - explain the difference between a path that ends with or without a slash, #6297
  1199. - clarify usage of patternfile roots, #6242
  1200. - borg key export: add examples
  1201. - updates about features not experimental any more: FUSE "versions" view, --pattern*, #6134
  1202. - fix/update cygwin package requirements
  1203. - impact of deleting path/to/repo/nonce, #5858
  1204. - warn about tampered server nonce
  1205. - mention BORG_FILES_CACHE_SUFFIX as alternative to BORG_FILES_CACHE_TTL, #5602
  1206. - add a troubleshooting note about "is not a valid repository" to the FAQ
  1207. - vagrant / CI / testing:
  1208. - misc. fixes and updates, new python versions
  1209. - macOS on github: re-enable fuse2 testing by downgrading to older macOS, #6099
  1210. - fix OpenBSD symlink mode test failure, #2055
  1211. - use the generic/openbsd6 box
  1212. - strengthen the test: we can read data w/o nonces
  1213. - add tests for path/to/repo/nonce deletion
  1214. - darwin64: backport some tunings from master
  1215. - darwin64: remove fakeroot, #6314
  1216. - darwin64: fix vagrant scp, #5921
  1217. - darwin64: use macfuse instead of osxfuse
  1218. - add ubuntu "jammy" 22.04 LTS VM
  1219. - adapt memory for openindiana64 and darwin64
  1220. Version 1.1.17 (2021-07-12)
  1221. ---------------------------
  1222. Compatibility notes:
  1223. - When upgrading from borg 1.0.x to 1.1.x, please note:
  1224. - read all the compatibility notes for 1.1.0*, starting from 1.1.0b1.
  1225. - borg upgrade: you do not need to and you also should not run it.
  1226. There is one exception though:
  1227. If you upgrade from an unpatched borg < 1.0.9, please read that section
  1228. above: "Pre-1.0.9 manifest spoofing vulnerability (CVE-2016-10099)"
  1229. - borg might ask some security-related questions once after upgrading.
  1230. You can answer them either manually or via environment variable.
  1231. One known case is if you use unencrypted repositories, then it will ask
  1232. about a unknown unencrypted repository one time.
  1233. - your first backup with 1.1.x might be significantly slower (it might
  1234. completely read, chunk, hash a lot files) - this is due to the
  1235. --files-cache mode change (and happens every time you change mode).
  1236. You can avoid the one-time slowdown by using the pre-1.1.0rc4-compatible
  1237. mode (but that is less safe for detecting changed files than the default).
  1238. See the --files-cache docs for details.
  1239. - 1.1.11 removes WSL autodetection (Windows 10 Subsystem for Linux).
  1240. If WSL still has a problem with sync_file_range, you need to set
  1241. BORG_WORKAROUNDS=basesyncfile in the borg process environment to
  1242. work around the WSL issue.
  1243. - 1.1.14 changes return codes due to a bug fix:
  1244. In case you have scripts expecting rc == 2 for a signal exit, you need to
  1245. update them to check for >= 128 (as documented since long).
  1246. - 1.1.15 drops python 3.4 support, minimum requirement is 3.5 now.
  1247. - 1.1.17 install_requires the "packaging" pypi package now.
  1248. Fixes:
  1249. - pyinstaller dir-mode: fix pyi detection / LIBPATH treatment, #5897
  1250. - handle crash due to kill stale lock race, #5828
  1251. - fix BORG_CACHE_DIR crashing borg if empty, #5216
  1252. - create --dry-run: fix display of kept tagfile, #5834
  1253. - fix missing parameter in "did not consistently fail" msg, #5822
  1254. - missing / healed chunks: always tell chunk ID, #5704
  1255. - benchmark: make sure cleanup happens even on exceptions, #5630
  1256. New features:
  1257. - implement BORG_SELFTEST env variable, #5871.
  1258. this can be used to accelerate borg startup a bit. not recommended for
  1259. normal usage, but borg mass hosters with a lot of borg invocations can
  1260. save some resources with this. on my laptop, this saved ~100ms cpu time
  1261. (sys+user) per borg command invocation.
  1262. - implement BORG_LIBC env variable to give the libc filename, #5870.
  1263. you can use this if a borg does not find your libc.
  1264. - check: add progress indicator for archive check.
  1265. - allow --files-cache=size (not recommended, make sure you know what you do)
  1266. Other changes:
  1267. - Python 3.10 now officially supported!
  1268. we test on py310-dev on github CI since a while and now also on the vagrant
  1269. machines, so it should work ok.
  1270. - github CI: test on py310 (again)
  1271. - get rid of distutils, use packaging and setuptools.
  1272. distutils is deprecated and gives warnings on py 3.10.
  1273. - setup.py: rename "clean" to "clean2" to avoid shadowing the "clean" command.
  1274. - remove libc filename fallback for the BSDs (there is no "usual" name)
  1275. - cleanup flake8 checks, fix some pep8 violations.
  1276. - docs building: replace deprecated function ".add_stylesheet()" for Sphinx 4 compatibility
  1277. - docs:
  1278. - add a hint on sleeping computer and ssh connections, #5301
  1279. - update the documentation on hacked backup client, #5480
  1280. - improve docs/FAQ about append-only remote repos, #5497
  1281. - complement the documentation for pattern files and exclude files, #5520
  1282. - "filename with spaces" example added to exclude file, #5236
  1283. note: no whitespace escaping needed, processed by borg.
  1284. - add info on renaming repositories, #5240
  1285. - clarify borg check --verify-data, #5808
  1286. - add notice about defective hardware to check documentation, #5753
  1287. - add paragraph added in #5855 to utility documentation source
  1288. - add missing leading slashes in help patterns, #5857
  1289. - clarify "you will need key and passphrase" borg init warning, #4622
  1290. - pull mode: add some warnings, #5827
  1291. - mention tar --compare (compare archive to fs files), #5880
  1292. - fix typos, backport of #5597
  1293. - vagrant:
  1294. - add py3.7.11 for binary build, also add 3.10-dev.
  1295. - use latest Cython 0.29.23 for py310 compat fixes.
  1296. - more RAM for openindiana upgrade plan resolver, it just hangs (swaps?) if
  1297. there is too little RAM.
  1298. - fix install_pyenv to adapt to recent changes in pyenv (same as in master now).
  1299. - use generic/netbsd9 box, copied from master branch.
  1300. Version 1.1.16 (2021-03-23)
  1301. ---------------------------
  1302. Fixes:
  1303. - setup.py: add special openssl prefix for Apple M1 compatibility
  1304. - do not recurse into duplicate roots, #5603
  1305. - remove empty shadowed_segments lists, #5275, #5614
  1306. - fix libpython load error when borg fat binary / dir-based binary is invoked
  1307. via a symlink by upgrading pyinstaller to v4.2, #5688
  1308. - config: accept non-int value (like 500M or 100G) for max_segment_size or
  1309. storage_quota, #5639.
  1310. please note: when setting a non-int value for this in a repo config,
  1311. using the repo will require borg >= 1.1.16.
  1312. New features:
  1313. - bundled msgpack: drop support for old buffer protocol to support Python 3.10
  1314. - verbose files cache logging via --debug-topic=files_cache, #5659.
  1315. Use this if you suspect that borg does not detect unmodified files as expected.
  1316. - create/extract: add --noxattrs and --noacls option, #3955.
  1317. when given with borg create, borg will not get xattrs / ACLs from input files
  1318. (and thus, it will not archive xattrs / ACLs). when given with borg extract,
  1319. borg will not read xattrs / ACLs from archive and will not set xattrs / ACLs
  1320. on extracted files.
  1321. - diff: add --json-lines option, #3765
  1322. - check: debug log segment filename
  1323. - borg debug dump-hints
  1324. Other changes:
  1325. - Tab completion support for additional archives for 'borg delete'
  1326. - repository: deduplicate code of put and delete, no functional change
  1327. - tests: fix result order issue (sporadic test failure on openindiana)
  1328. - vagrant:
  1329. - upgrade pyinstaller to v4.2, #5671
  1330. - avoid grub-install asking interactively for device
  1331. - remove the xenial box
  1332. - update freebsd box to 12.1
  1333. - docs:
  1334. - update macOS install instructions, #5677
  1335. - use macFUSE (not osxfuse) for Apple M1 compatibility
  1336. - update docs for dev environment installation instructions, #5643
  1337. - fix grammar in faq
  1338. - recommend running tests only on installed versions for setup
  1339. - add link back to git-installation
  1340. - remove /var/cache exclusion in example commands, #5625.
  1341. This is generally a poor idea and shouldn't be promoted through examples.
  1342. - add repology.org badge with current packaging status
  1343. - explain hash collision
  1344. - add unsafe workaround to use an old repo copy, #5722
  1345. Version 1.1.15 (2020-12-25)
  1346. ---------------------------
  1347. Fixes:
  1348. - extract:
  1349. - improve exception handling when setting xattrs, #5092.
  1350. - emit a warning message giving the path, xattr key and error message.
  1351. - continue trying to restore other xattrs and bsdflags of the same file
  1352. after an exception with xattr-setting happened.
  1353. - export-tar:
  1354. - set tar format to GNU_FORMAT explicitly, #5274
  1355. - fix memory leak with ssh: remote repository, #5568
  1356. - fix potential memory leak with ssh: remote repository with partial extraction
  1357. - create: fix --dry-run and --stats coexistence, #5415
  1358. - use --timestamp for {utcnow} and {now} if given, #5189
  1359. New features:
  1360. - create: implement --stdin-mode, --stdin-user and --stdin-group, #5333
  1361. - allow appending the files cache filename with BORG_FILES_CACHE_SUFFIX env var
  1362. Other changes:
  1363. - drop python 3.4 support, minimum requirement is 3.5 now.
  1364. - enable using libxxhash instead of bundled xxh64 code
  1365. - update llfuse requirements (1.3.8)
  1366. - set cython language_level in some files to fix warnings
  1367. - allow EIO with warning when trying to hardlink
  1368. - PropDict: fail early if internal_dict is not a dict
  1369. - update shell completions
  1370. - tests / CI
  1371. - add a test for the hashindex corruption bug, #5531 #4829
  1372. - fix spurious failure in test_cache_files, #5438
  1373. - added a github ci workflow
  1374. - reduce testing on travis, no macOS, no py3x-dev, #5467
  1375. - travis: use newer dists, native py on dist
  1376. - vagrant:
  1377. - remove jessie and trusty boxes, #5348 #5383
  1378. - pyinstaller 4.0, build on py379
  1379. - binary build on stretch64, #5348
  1380. - remove easy_install based pip installation
  1381. - docs:
  1382. - clarify '--one-file-system' for btrfs, #5391
  1383. - add example for excluding content using the --pattern cmd line arg
  1384. - complement the documentation for pattern files and exclude files, #5524
  1385. - made ansible playbook more generic, use package instead of pacman. also
  1386. change state from "latest" to "present".
  1387. - complete documentation on append-only remote repos, #5497
  1388. - internals: rather talk about target size than statistics, #5336
  1389. - new compression algorithm policy, #1633 #5505
  1390. - faq: add a hint on sleeping computer, #5301
  1391. - note requirements for full disk access on macOS Catalina, #5303
  1392. - fix/improve description of borg upgrade hardlink usage, #5518
  1393. - modernize 1.1 code:
  1394. - drop code/workarounds only needed to support Python 3.4
  1395. - remove workaround for pre-release py37 argparse bug
  1396. - removed some outdated comments/docstrings
  1397. - requirements: remove some restrictions, lock on current versions
  1398. Version 1.1.14 (2020-10-07)
  1399. ---------------------------
  1400. Fixes:
  1401. - check --repair: fix potential data loss when interrupting it, #5325
  1402. - exit with 128 + signal number (as documented) when borg is killed by a signal, #5161
  1403. - fix hardlinked CACHEDIR.TAG processing, #4911
  1404. - create --read-special: .part files also should be regular files, #5217
  1405. - llfuse dependency: choose least broken 1.3.6/1.3.7.
  1406. 1.3.6 is broken on python 3.9, 1.3.7 is broken on FreeBSD.
  1407. Other changes:
  1408. - upgrade bundled xxhash to 0.7.4
  1409. - self test: if it fails, also point to OS and hardware, #5334
  1410. - pyinstaller: compute basepath from spec file location
  1411. - prettier error message when archive gets too big, #5307
  1412. - check/recreate are not "experimental" any more (but still potentially dangerous):
  1413. - recreate: remove extra confirmation
  1414. - rephrase some warnings, update docs, #5164
  1415. - shell completions:
  1416. - misc. updates / fixes
  1417. - support repositories in fish tab completion, #5256
  1418. - complete $BORG_RECREATE_I_KNOW_WHAT_I_AM_DOING
  1419. - rewrite zsh completion:
  1420. - completion for almost all optional and positional arguments
  1421. - completion for Borg environment variables (parameters)
  1422. - use "allow/deny list" instead of "white/black list" wording
  1423. - declare "allow_cache_wipe" marker in setup.cfg to avoid pytest warning
  1424. - vagrant / tests:
  1425. - misc. fixes / updates
  1426. - use python 3.5.10 for binary build
  1427. - build directory-based binaries additionally to the single file binaries
  1428. - add libffi-dev, required to build python
  1429. - use cryptography<3.0, more recent versions break the jessie box
  1430. - test on python 3.9
  1431. - do brew update with /dev/null redirect to avoid "too much log output" on travis-ci
  1432. - docs:
  1433. - add ssh-agent pull backup method docs, #5288
  1434. - how to approach borg speed issues, #5371
  1435. - mention double --force in prune docs
  1436. - update Homebrew install instructions, #5185
  1437. - better description of how cache and rebuilds of it work
  1438. - point to borg create --list item flags in recreate usage, #5165
  1439. - add security faq explaining AES-CTR crypto issues, #5254
  1440. - add a note to create from stdin regarding files cache, #5180
  1441. - fix borg.1 manpage generation regression, #5211
  1442. - clarify how exclude options work in recreate, #5193
  1443. - add section for retired contributors
  1444. - hint about not misusing private email addresses of contributors for borg support
  1445. Version 1.1.13 (2020-06-06)
  1446. ---------------------------
  1447. Compatibility notes:
  1448. - When upgrading from borg 1.0.x to 1.1.x, please note:
  1449. - read all the compatibility notes for 1.1.0*, starting from 1.1.0b1.
  1450. - borg upgrade: you do not need to and you also should not run it.
  1451. There is one exception though:
  1452. If you upgrade from an unpatched borg < 1.0.9, please read that section
  1453. above: "Pre-1.0.9 manifest spoofing vulnerability (CVE-2016-10099)"
  1454. - borg might ask some security-related questions once after upgrading.
  1455. You can answer them either manually or via environment variable.
  1456. One known case is if you use unencrypted repositories, then it will ask
  1457. about a unknown unencrypted repository one time.
  1458. - your first backup with 1.1.x might be significantly slower (it might
  1459. completely read, chunk, hash a lot files) - this is due to the
  1460. --files-cache mode change (and happens every time you change mode).
  1461. You can avoid the one-time slowdown by using the pre-1.1.0rc4-compatible
  1462. mode (but that is less safe for detecting changed files than the default).
  1463. See the --files-cache docs for details.
  1464. - 1.1.11 removes WSL autodetection (Windows 10 Subsystem for Linux).
  1465. If WSL still has a problem with sync_file_range, you need to set
  1466. BORG_WORKAROUNDS=basesyncfile in the borg process environment to
  1467. work around the WSL issue.
  1468. Fixes:
  1469. - rebuilt using a current Cython version, compatible with python 3.8, #5214
  1470. Version 1.1.12 (2020-06-06)
  1471. ---------------------------
  1472. Fixes:
  1473. - fix preload-related memory leak, #5202.
  1474. - mount / borgfs (FUSE filesystem):
  1475. - fix FUSE low linear read speed on large files, #5067
  1476. - fix crash on old llfuse without birthtime attrs, #5064 - accidentally
  1477. we required llfuse >= 1.3. Now also old llfuse works again.
  1478. - set f_namemax in statfs result, #2684
  1479. - update precedence of env vars to set config and cache paths, #4894
  1480. - correctly calculate compression ratio, taking header size into account, too
  1481. New features:
  1482. - --bypass-lock option to bypass locking with read-only repositories
  1483. Other changes:
  1484. - upgrade bundled zstd to 1.4.5
  1485. - travis: adding comments and explanations to Travis config / install script,
  1486. improve macOS builds.
  1487. - tests: test_delete_force: avoid sporadic test setup issues, #5196
  1488. - misc. vagrant fixes
  1489. - the binary for macOS is now built on macOS 10.12
  1490. - the binaries for Linux are now built on Debian 8 "Jessie", #3761
  1491. - docs:
  1492. - PlaceholderError not printed as JSON, #4073
  1493. - "How important is Borg config?", #4941
  1494. - make Sphinx warnings break docs build, #4587
  1495. - some markup / warning fixes
  1496. - add "updating borgbackup.org/releases" to release checklist, #4999
  1497. - add "rendering docs" to release checklist, #5000
  1498. - clarify borg init's encryption modes
  1499. - add note about patterns and stored paths, #4160
  1500. - add upgrade of tools to pip installation how-to
  1501. - document one cause of orphaned chunks in check command, #2295
  1502. - linked recommended restrictions to ssh public keys on borg servers in faq, #4946
  1503. Version 1.1.11 (2020-03-08)
  1504. ---------------------------
  1505. Compatibility notes:
  1506. - When upgrading from borg 1.0.x to 1.1.x, please note:
  1507. - read all the compatibility notes for 1.1.0*, starting from 1.1.0b1.
  1508. - borg upgrade: you do not need to and you also should not run it.
  1509. There is one exception though:
  1510. If you upgrade from an unpatched borg < 1.0.9, please read that section
  1511. above: "Pre-1.0.9 manifest spoofing vulnerability (CVE-2016-10099)"
  1512. - borg might ask some security-related questions once after upgrading.
  1513. You can answer them either manually or via environment variable.
  1514. One known case is if you use unencrypted repositories, then it will ask
  1515. about a unknown unencrypted repository one time.
  1516. - your first backup with 1.1.x might be significantly slower (it might
  1517. completely read, chunk, hash a lot files) - this is due to the
  1518. --files-cache mode change (and happens every time you change mode).
  1519. You can avoid the one-time slowdown by using the pre-1.1.0rc4-compatible
  1520. mode (but that is less safe for detecting changed files than the default).
  1521. See the --files-cache docs for details.
  1522. - 1.1.11 removes WSL autodetection (Windows 10 Subsystem for Linux).
  1523. If WSL still has a problem with sync_file_range, you need to set
  1524. BORG_WORKAROUNDS=basesyncfile in the borg process environment to
  1525. work around the WSL issue.
  1526. Fixes:
  1527. - fixed potential index corruption / data loss issue due to bug in hashindex_set, #4829.
  1528. Please read and follow the more detailed notes close to the top of this document.
  1529. - upgrade bundled xxhash to 0.7.3, #4891.
  1530. 0.7.2 is the minimum requirement for correct operations on ARMv6 in non-fixup
  1531. mode, where unaligned memory accesses cause bus errors.
  1532. 0.7.3 adds some speedups and libxxhash 0.7.3 even has a pkg-config file now.
  1533. - upgrade bundled lz4 to 1.9.2
  1534. - upgrade bundled zstd to 1.4.4
  1535. - fix crash when upgrading erroneous hints file, #4922
  1536. - extract:
  1537. - fix KeyError for "partial" extraction, #4607
  1538. - fix "partial" extract for hardlinked contentless file types, #4725
  1539. - fix preloading for old (0.xx) remote servers, #4652
  1540. - fix confusing output of borg extract --list --strip-components, #4934
  1541. - delete: after double-force delete, warn about necessary repair, #4704
  1542. - create: give invalid repo error msg if repo config not found, #4411
  1543. - mount: fix FUSE mount missing st_birthtime, #4763 #4767
  1544. - check: do not stumble over invalid item key, #4845
  1545. - info: if the archive doesn't exist, print a pretty message, #4793
  1546. - SecurityManager.known(): check all files, #4614
  1547. - Repository.open: use stat() to check for repo dir, #4695
  1548. - Repository.check_can_create_repository: use stat() to check, #4695
  1549. - fix invalid archive error message
  1550. - fix optional/non-optional location arg, #4541
  1551. - commit-time free space calc: ignore bad compact map entries, #4796
  1552. - ignore EACCES (errno 13) when hardlinking the old config, #4730
  1553. - --prefix / -P: fix processing, avoid argparse issue, #4769
  1554. New features:
  1555. - enable placeholder usage in all extra archive arguments
  1556. - new BORG_WORKAROUNDS mechanism, basesyncfile, #4710
  1557. - recreate: support --timestamp option, #4745
  1558. - support platforms without os.link (e.g. Android with Termux), #4901.
  1559. if we don't have os.link, we just extract another copy instead of making a hardlink.
  1560. - support linux platforms without sync_file_range (e.g. Android 7 with Termux), #4905
  1561. Other:
  1562. - ignore --stats when given with --dry-run, but continue, #4373
  1563. - add some ProgressIndicator msgids to code / fix docs, #4935
  1564. - elaborate on "Calculating size" message
  1565. - argparser: always use REPOSITORY in metavar, also use more consistent help phrasing.
  1566. - check: improve error output for matching index size, see #4829
  1567. - docs:
  1568. - changelog: add advisory about hashindex_set bug #4829
  1569. - better describe BORG_SECURITY_DIR, BORG_CACHE_DIR, #4919
  1570. - infos about cache security assumptions, #4900
  1571. - add FAQ describing difference between a local repo vs. repo on a server.
  1572. - document how to test exclusion patterns without performing an actual backup
  1573. - timestamps in the files cache are now usually ctime, #4583
  1574. - fix bad reference to borg compact (does not exist in 1.1), #4660
  1575. - create: borg 1.1 is not future any more
  1576. - extract: document limitation "needs empty destination", #4598
  1577. - how to supply a passphrase, use crypto devices, #4549
  1578. - fix osxfuse github link in installation docs
  1579. - add example of exclude-norecurse rule in help patterns
  1580. - update macOS Brew link
  1581. - add note about software for automating backups, #4581
  1582. - AUTHORS: mention copyright+license for bundled msgpack
  1583. - fix various code blocks in the docs, #4708
  1584. - updated docs to cover use of temp directory on remote, #4545
  1585. - add restore docs, #4670
  1586. - add a pull backup / push restore how-to, #1552
  1587. - add FAQ how to retain original paths, #4532
  1588. - explain difference between --exclude and --pattern, #4118
  1589. - add FAQs for SSH connection issues, #3866
  1590. - improve password FAQ, #4591
  1591. - reiterate that 'file cache names are absolute' in FAQ
  1592. - tests:
  1593. - cope with ANY error when importing pytest into borg.testsuite, #4652
  1594. - fix broken test that relied on improper zlib assumptions
  1595. - test_fuse: filter out selinux xattrs, #4574
  1596. - travis / vagrant:
  1597. - misc python versions removed / changed (due to openssl 1.1 compatibility)
  1598. or added (3.7 and 3.8, for better borg compatibility testing)
  1599. - binary building is on python 3.5.9 now
  1600. - vagrant:
  1601. - add new boxes: ubuntu 18.04 and 20.04, debian 10
  1602. - update boxes: openindiana, darwin, netbsd
  1603. - remove old boxes: centos 6
  1604. - darwin: updated osxfuse to 3.10.4
  1605. - use debian/ubuntu pip/virtualenv packages
  1606. - rather use python 3.6.2 than 3.6.0, fixes coverage/sqlite3 issue
  1607. - use requirements.d/development.lock.txt to avoid compat issues
  1608. - travis:
  1609. - darwin: backport some install code / order from master
  1610. - remove deprecated keyword "sudo" from travis config
  1611. - allow osx builds to fail, #4955
  1612. this is due to travis-ci frequently being so slow that the OS X builds
  1613. just fail because they exceed 50 minutes and get killed by travis.
  1614. Version 1.1.10 (2019-05-16)
  1615. ---------------------------
  1616. Fixes:
  1617. - extract: hang on partial extraction with ssh: repo, when hardlink master
  1618. is not matched/extracted and borg hangs on related slave hardlink, #4350
  1619. - lrucache: regularly remove old FDs, #4427
  1620. - avoid stale filehandle issues, #3265
  1621. - freebsd: make xattr platform code api compatible with linux, #3952
  1622. - use whitelist approach for borg serve, #4097
  1623. - borg command shall terminate with rc 2 for ImportErrors, #4424
  1624. - create: only run stat_simple_attrs() once, this increases
  1625. backup with lots of unchanged files performance by ~ 5%.
  1626. - prune: fix incorrect borg prune --stats output with --dry-run, #4373
  1627. - key export: emit user-friendly error if repo key is exported to a directory,
  1628. #4348
  1629. New features:
  1630. - bundle latest supported msgpack-python release (0.5.6), remove msgpack-python
  1631. from setup.py install_requires - by default we use the bundled code now.
  1632. optionally, we still support using an external msgpack (see hints in
  1633. setup.py), but this requires solid requirements management within
  1634. distributions and is not recommended.
  1635. borgbackup will break if you upgrade msgpack to an unsupported version.
  1636. - display msgpack version as part of sysinfo (e.g. in tracebacks)
  1637. - timestamp for borg delete --info added, #4359
  1638. - enable placeholder usage in --comment and --glob-archives, #4559, #4495
  1639. Other:
  1640. - serve: do not check python/libc for borg serve, #4483
  1641. - shell completions: borg diff second archive
  1642. - release scripts: signing binaries with Qubes OS support
  1643. - testing:
  1644. - vagrant: upgrade openbsd box to 6.4
  1645. - travis-ci: lock test env to py 3.4 compatible versions, #4343
  1646. - get rid of confusing coverage warning, #2069
  1647. - rename test_mount_hardlinks to test_fuse_mount_hardlinks,
  1648. so both can be excluded by "not test_fuse".
  1649. - pure-py msgpack warning shall not make a lot of tests fail, #4558
  1650. - docs:
  1651. - add "SSH Configuration" section to "borg serve", #3988, #636, #4485
  1652. - README: new URL for funding options
  1653. - add a sample logging.conf in docs/misc, #4380
  1654. - elaborate on append-only mode docs, #3504
  1655. - installation: added Alpine Linux to distribution list, #4415
  1656. - usage.html: only modify window.location when redirecting, #4133
  1657. - add msgpack license to docs/3rd_party/msgpack
  1658. - vagrant / binary builds:
  1659. - use python 3.5.7 for builds
  1660. - use osxfuse 3.8.3
  1661. Version 1.1.9 (2019-02-10)
  1662. --------------------------
  1663. Compatibility notes:
  1664. - When upgrading from borg 1.0.x to 1.1.x, please note:
  1665. - read all the compatibility notes for 1.1.0*, starting from 1.1.0b1.
  1666. - borg upgrade: you do not need to and you also should not run it.
  1667. There is one exception though:
  1668. If you upgrade from an unpatched borg < 1.0.9, please read that section
  1669. above: "Pre-1.0.9 manifest spoofing vulnerability (CVE-2016-10099)"
  1670. - borg might ask some security-related questions once after upgrading.
  1671. You can answer them either manually or via environment variable.
  1672. One known case is if you use unencrypted repositories, then it will ask
  1673. about a unknown unencrypted repository one time.
  1674. - your first backup with 1.1.x might be significantly slower (it might
  1675. completely read, chunk, hash a lot files) - this is due to the
  1676. --files-cache mode change (and happens every time you change mode).
  1677. You can avoid the one-time slowdown by using the pre-1.1.0rc4-compatible
  1678. mode (but that is less safe for detecting changed files than the default).
  1679. See the --files-cache docs for details.
  1680. Fixes:
  1681. - security fix: configure FUSE with "default_permissions", #3903
  1682. "default_permissions" is now enforced by borg by default to let the
  1683. kernel check uid/gid/mode based permissions.
  1684. "ignore_permissions" can be given to not enforce "default_permissions".
  1685. - make "hostname" short, even on misconfigured systems, #4262
  1686. - fix free space calculation on macOS (and others?), #4289
  1687. - config: quit with error message when no key is provided, #4223
  1688. - recover_segment: handle too small segment files correctly, #4272
  1689. - correctly release memoryview, #4243
  1690. - avoid diaper pattern in configparser by opening files, #4263
  1691. - add "# cython: language_level=3" directive to .pyx files, #4214
  1692. - info: consider part files for "This archive" stats, #3522
  1693. - work around Microsoft WSL issue #645 (sync_file_range), #1961
  1694. New features:
  1695. - add --rsh command line option to complement BORG_RSH env var, #1701
  1696. - init: --make-parent-dirs parent1/parent2/repo_dir, #4235
  1697. Other:
  1698. - add archive name to check --repair output, #3447
  1699. - check for unsupported msgpack versions
  1700. - shell completions:
  1701. - new shell completions for borg 1.1.9
  1702. - more complete shell completions for borg mount -o
  1703. - added shell completions for borg help
  1704. - option arguments for zsh tab completion
  1705. - docs:
  1706. - add FAQ regarding free disk space check, #3905
  1707. - update BORG_PASSCOMMAND example and clarify variable expansion, #4249
  1708. - FAQ regarding change of compression settings, #4222
  1709. - add note about BSD flags to changelog, #4246
  1710. - improve logging in example automation script
  1711. - add note about files changing during backup, #4081
  1712. - work around the backslash issue, #4280
  1713. - update release workflow using twine (docs, scripts), #4213
  1714. - add warnings on repository copies to avoid future problems, #4272
  1715. - tests:
  1716. - fix the homebrew 1.9 issues on travis-ci, #4254
  1717. - fix duplicate test method name, #4311
  1718. Version 1.1.8 (2018-12-09)
  1719. --------------------------
  1720. Fixes:
  1721. - enforce storage quota if set by serve-command, #4093
  1722. - invalid locations: give err msg containing parsed location, #4179
  1723. - list repo: add placeholders for hostname and username, #4130
  1724. - on linux, symlinks can't have ACLs, so don't try to set any, #4044
  1725. New features:
  1726. - create: added PATH::archive output on INFO log level
  1727. - read a passphrase from a file descriptor specified in the
  1728. BORG_PASSPHRASE_FD environment variable.
  1729. Other:
  1730. - docs:
  1731. - option --format is required for some expensive-to-compute values for json
  1732. borg list by default does not compute expensive values except when
  1733. they are needed. whether they are needed is determined by the format,
  1734. in standard mode as well as in --json mode.
  1735. - tell that our binaries are x86/x64 amd/intel, bauerj has ARM
  1736. - fixed wrong archive name pattern in CRUD benchmark help
  1737. - fixed link to cachedir spec in docs, #4140
  1738. - tests:
  1739. - stop using fakeroot on travis, avoids sporadic EISDIR errors, #2482
  1740. - xattr key names must start with "user." on linux
  1741. - fix code so flake8 3.6 does not complain
  1742. - explicitly convert environment variable to str, #4136
  1743. - fix DeprecationWarning: Flags not at the start of the expression, #4137
  1744. - support pytest4, #4172
  1745. - vagrant:
  1746. - use python 3.5.6 for builds
  1747. Version 1.1.7 (2018-08-11)
  1748. --------------------------
  1749. Compatibility notes:
  1750. - added support for Python 3.7
  1751. Fixes:
  1752. - cache lock: use lock_wait everywhere to fix infinite wait, see #3968
  1753. - don't archive tagged dir when recursing an excluded dir, #3991
  1754. - py37 argparse: work around bad default in py 3.7.0a/b/rc, #3996
  1755. - py37 remove loggerDict.clear() from tearDown method, #3805
  1756. - some fixes for bugs which likely did not result in problems in practice:
  1757. - fixed logic bug in platform module API version check
  1758. - fixed xattr/acl function prototypes, added missing ones
  1759. New features:
  1760. - init: add warning to store both key and passphrase at safe place(s)
  1761. - BORG_HOST_ID env var to work around all-zero MAC address issue, #3985
  1762. - borg debug dump-repo-objs --ghost (dump everything from segment files,
  1763. including deleted or superseded objects or commit tags)
  1764. - borg debug search-repo-objs (search in repo objects for hex bytes or strings)
  1765. Other changes:
  1766. - add Python 3.7 support
  1767. - updated shell completions
  1768. - call socket.gethostname only once
  1769. - locking: better logging, add some asserts
  1770. - borg debug dump-repo-objs:
  1771. - filename layout improvements
  1772. - use repository.scan() to get on-disk order
  1773. - docs:
  1774. - update installation instructions for macOS
  1775. - added instructions to install fuse via homebrew
  1776. - improve diff docs
  1777. - added note that checkpoints inside files requires 1.1+
  1778. - add link to tempfile module
  1779. - remove row/column-spanning from docs source, #4000 #3990
  1780. - tests:
  1781. - fetch less data via os.urandom
  1782. - add py37 env for tox
  1783. - travis: add 3.7, remove 3.6-dev (we test with -dev in master)
  1784. - vagrant / binary builds:
  1785. - use osxfuse 3.8.2
  1786. - use own (uptodate) openindiana box
  1787. Version 1.1.6 (2018-06-11)
  1788. --------------------------
  1789. Compatibility notes:
  1790. - 1.1.6 changes:
  1791. - also allow msgpack-python 0.5.6.
  1792. Fixes:
  1793. - fix borg exception handling on ENOSPC error with xattrs, #3808
  1794. - prune: fix/improve overall progress display
  1795. - borg config repo ... does not need cache/manifest/key, #3802
  1796. - debug dump-repo-objs should not depend on a manifest obj
  1797. - pypi package:
  1798. - include .coveragerc, needed by tox.ini
  1799. - fix package long description, #3854
  1800. New features:
  1801. - mount: add uid, gid, umask mount options
  1802. - delete:
  1803. - only commit once, #3823
  1804. - implement --dry-run, #3822
  1805. - check:
  1806. - show progress while rebuilding missing manifest, #3787
  1807. - more --repair output
  1808. - borg config --list <repo>, #3612
  1809. Other changes:
  1810. - update msgpack requirement, #3753
  1811. - update bundled zstd to 1.3.4, #3745
  1812. - update bundled lz4 code to 1.8.2, #3870
  1813. - docs:
  1814. - describe what BORG_LIBZSTD_PREFIX does
  1815. - fix and deduplicate encryption quickstart docs, #3776
  1816. - vagrant:
  1817. - FUSE for macOS: upgrade 3.7.1 to 3.8.0
  1818. - exclude macOS High Sierra upgrade on the darwin64 machine
  1819. - remove borgbackup.egg-info dir in fs_init (after rsync)
  1820. - use pyenv-based build/test on jessie32/62
  1821. - use local 32 and 64bit debian jessie boxes
  1822. - use "vagrant" as username for new xenial box
  1823. - travis OS X: use xcode 8.3 (not broken)
  1824. Version 1.1.5 (2018-04-01)
  1825. --------------------------
  1826. Compatibility notes:
  1827. - 1.1.5 changes:
  1828. - require msgpack-python >= 0.4.6 and < 0.5.0.
  1829. 0.5.0+ dropped python 3.4 testing and also caused some other issues because
  1830. the python package was renamed to msgpack and emitted some FutureWarning.
  1831. Fixes:
  1832. - create --list: fix that it was never showing M status, #3492
  1833. - create: fix timing for first checkpoint (read files cache early, init
  1834. checkpoint timer after that), see #3394
  1835. - extract: set rc=1 when extracting damaged files with all-zero replacement
  1836. chunks or with size inconsistencies, #3448
  1837. - diff: consider an empty file as different to a non-existing file, #3688
  1838. - files cache: improve exception handling, #3553
  1839. - ignore exceptions in scandir_inorder() caused by an implicit stat(),
  1840. also remove unneeded sort, #3545
  1841. - fixed tab completion problem where a space is always added after path even
  1842. when it shouldn't
  1843. - build: do .h file content checks in binary mode, fixes build issue for
  1844. non-ascii header files on pure-ascii locale platforms, #3544 #3639
  1845. - borgfs: fix patterns/paths processing, #3551
  1846. - config: add some validation, #3566
  1847. - repository config: add validation for max_segment_size, #3592
  1848. - set cache previous_location on load instead of save
  1849. - remove platform.uname() call which caused library mismatch issues, #3732
  1850. - add exception handler around deprecated platform.linux_distribution() call
  1851. - use same datetime object for {now} and {utcnow}, #3548
  1852. New features:
  1853. - create: implement --stdin-name, #3533
  1854. - add chunker_params to borg archive info (--json)
  1855. - BORG_SHOW_SYSINFO=no to hide system information from exceptions
  1856. Other changes:
  1857. - updated zsh completions for borg 1.1.4
  1858. - files cache related code cleanups
  1859. - be more helpful when parsing invalid --pattern values, #3575
  1860. - be more clear in secure-erase warning message, #3591
  1861. - improve getpass user experience, #3689
  1862. - docs build: unicode problem fixed when using a py27-based sphinx
  1863. - docs:
  1864. - security: explicitly note what happens OUTSIDE the attack model
  1865. - security: add note about combining compression and encryption
  1866. - security: describe chunk size / proximity issue, #3687
  1867. - quickstart: add note about permissions, borg@localhost, #3452
  1868. - quickstart: add introduction to repositories & archives, #3620
  1869. - recreate --recompress: add missing metavar, clarify description, #3617
  1870. - improve logging docs, #3549
  1871. - add an example for --pattern usage, #3661
  1872. - clarify path semantics when matching, #3598
  1873. - link to offline documentation from README, #3502
  1874. - add docs on how to verify a signed release with GPG, #3634
  1875. - chunk seed is generated per repository (not: archive)
  1876. - better formatting of CPU usage documentation, #3554
  1877. - extend append-only repo rollback docs, #3579
  1878. - tests:
  1879. - fix erroneously skipped zstd compressor tests, #3606
  1880. - skip a test if argparse is broken, #3705
  1881. - vagrant:
  1882. - xenial64 box now uses username 'vagrant', #3707
  1883. - move cleanup steps to fs_init, #3706
  1884. - the boxcutter wheezy boxes are 404, use local ones
  1885. - update to Python 3.5.5 (for binary builds)
  1886. Version 1.1.4 (2017-12-31)
  1887. --------------------------
  1888. Compatibility notes:
  1889. - When upgrading from borg 1.0.x to 1.1.x, please note:
  1890. - read all the compatibility notes for 1.1.0*, starting from 1.1.0b1.
  1891. - borg upgrade: you do not need to and you also should not run it.
  1892. There is one exception though:
  1893. If you upgrade from an unpatched borg < 1.0.9, please read that section
  1894. above: "Pre-1.0.9 manifest spoofing vulnerability (CVE-2016-10099)"
  1895. - borg might ask some security-related questions once after upgrading.
  1896. You can answer them either manually or via environment variable.
  1897. One known case is if you use unencrypted repositories, then it will ask
  1898. about a unknown unencrypted repository one time.
  1899. - your first backup with 1.1.x might be significantly slower (it might
  1900. completely read, chunk, hash a lot files) - this is due to the
  1901. --files-cache mode change (and happens every time you change mode).
  1902. You can avoid the one-time slowdown by using the pre-1.1.0rc4-compatible
  1903. mode (but that is less safe for detecting changed files than the default).
  1904. See the --files-cache docs for details.
  1905. - borg 1.1.4 changes:
  1906. - zstd compression is new in borg 1.1.4, older borg can't handle it.
  1907. - new minimum requirements for the compression libraries - if the required
  1908. versions (header and lib) can't be found at build time, bundled code will
  1909. be used:
  1910. - added requirement: libzstd >= 1.3.0 (bundled: 1.3.2)
  1911. - updated requirement: liblz4 >= 1.7.0 / r129 (bundled: 1.8.0)
  1912. Fixes:
  1913. - check: data corruption fix: fix for borg check --repair malfunction, #3444.
  1914. See the more detailed notes close to the top of this document.
  1915. - delete: also delete security dir when deleting a repo, #3427
  1916. - prune: fix building the "borg prune" man page, #3398
  1917. - init: use given --storage-quota for local repo, #3470
  1918. - init: properly quote repo path in output
  1919. - fix startup delay with dns-only own fqdn resolving, #3471
  1920. New features:
  1921. - added zstd compression. try it!
  1922. - added placeholder {reverse-fqdn} for fqdn in reverse notation
  1923. - added BORG_BASE_DIR environment variable, #3338
  1924. Other changes:
  1925. - list help topics when invalid topic is requested
  1926. - fix lz4 deprecation warning, requires lz4 >= 1.7.0 (r129)
  1927. - add parens for C preprocessor macro argument usages (did not cause malfunction)
  1928. - exclude broken pytest 3.3.0 release
  1929. - updated fish/bash completions
  1930. - init: more clear exception messages for borg create, #3465
  1931. - docs:
  1932. - add auto-generated docs for borg config
  1933. - don't generate HTML docs page for borgfs, #3404
  1934. - docs update for lz4 b2 zstd changes
  1935. - add zstd to compression help, readme, docs
  1936. - update requirements and install docs about bundled lz4 and zstd
  1937. - refactored build of the compress and crypto.low_level extensions, #3415:
  1938. - move some lib/build related code to setup_{zstd,lz4,b2}.py
  1939. - bundle lz4 1.8.0 (requirement: >= 1.7.0 / r129)
  1940. - bundle zstd 1.3.2 (requirement: >= 1.3.0)
  1941. - blake2 was already bundled
  1942. - rename BORG_LZ4_PREFIX env var to BORG_LIBLZ4_PREFIX for better consistency:
  1943. we also have BORG_LIBB2_PREFIX and BORG_LIBZSTD_PREFIX now.
  1944. - add prefer_system_lib* = True settings to setup.py - by default the build
  1945. will prefer a shared library over the bundled code, if library and headers
  1946. can be found and meet the minimum requirements.
  1947. Version 1.1.3 (2017-11-27)
  1948. --------------------------
  1949. Fixes:
  1950. - Security Fix for CVE-2017-15914: Incorrect implementation of access controls
  1951. allows remote users to override repository restrictions in Borg servers.
  1952. A user able to access a remote Borg SSH server is able to circumvent access
  1953. controls post-authentication.
  1954. Affected releases: 1.1.0, 1.1.1, 1.1.2. Releases 1.0.x are NOT affected.
  1955. - crc32: deal with unaligned buffer, add tests - this broke borg on older ARM
  1956. CPUs that can not deal with unaligned 32bit memory accesses and raise a bus
  1957. error in such cases. the fix might also improve performance on some CPUs as
  1958. all 32bit memory accesses by the crc32 code are properly aligned now. #3317
  1959. - mount: fixed support of --consider-part-files and do not show .borg_part_N
  1960. files by default in the mounted FUSE filesystem. #3347
  1961. - fixed cache/repo timestamp inconsistency message, highlight that information
  1962. is obtained from security dir (deleting the cache will not bypass this error
  1963. in case the user knows this is a legitimate repo).
  1964. - borgfs: don't show sub-command in borgfs help, #3287
  1965. - create: show an error when --dry-run and --stats are used together, #3298
  1966. New features:
  1967. - mount: added exclusion group options and paths, #2138
  1968. Reused some code to support similar options/paths as borg extract offers -
  1969. making good use of these to only mount a smaller subset of dirs/files can
  1970. speed up mounting a lot and also will consume way less memory.
  1971. borg mount [options] repo_or_archive mountpoint path [paths...]
  1972. paths: you can just give some "root paths" (like for borg extract) to
  1973. only partially populate the FUSE filesystem.
  1974. new options: --exclude[-from], --pattern[s-from], --strip-components
  1975. - create/extract: support st_birthtime on platforms supporting it, #3272
  1976. - add "borg config" command for querying/setting/deleting config values, #3304
  1977. Other changes:
  1978. - clean up and simplify packaging (only package committed files, do not install
  1979. .c/.h/.pyx files)
  1980. - docs:
  1981. - point out tuning options for borg create, #3239
  1982. - add instructions for using ntfsclone, zerofree, #81
  1983. - move image backup-related FAQ entries to a new page
  1984. - clarify key aliases for borg list --format, #3111
  1985. - mention break-lock in checkpointing FAQ entry, #3328
  1986. - document sshfs rename workaround, #3315
  1987. - add FAQ about removing files from existing archives
  1988. - add FAQ about different prune policies
  1989. - usage and man page for borgfs, #3216
  1990. - clarify create --stats duration vs. wall time, #3301
  1991. - clarify encrypted key format for borg key export, #3296
  1992. - update release checklist about security fixes
  1993. - document good and problematic option placements, fix examples, #3356
  1994. - add note about using --nobsdflags to avoid speed penalty related to
  1995. bsdflags, #3239
  1996. - move most of support section to www.borgbackup.org
  1997. Version 1.1.2 (2017-11-05)
  1998. --------------------------
  1999. Fixes:
  2000. - fix KeyError crash when talking to borg server < 1.0.7, #3244
  2001. - extract: set bsdflags last (include immutable flag), #3263
  2002. - create: don't do stat() call on excluded-norecurse directory, fix exception
  2003. handling for stat() call, #3209
  2004. - create --stats: do not count data volume twice when checkpointing, #3224
  2005. - recreate: move chunks_healthy when excluding hardlink master, #3228
  2006. - recreate: get rid of chunks_healthy when rechunking (does not match), #3218
  2007. - check: get rid of already existing not matching chunks_healthy metadata, #3218
  2008. - list: fix stdout broken pipe handling, #3245
  2009. - list/diff: remove tag-file options (not used), #3226
  2010. New features:
  2011. - bash, zsh and fish shell auto-completions, see scripts/shell_completions/
  2012. - added BORG_CONFIG_DIR env var, #3083
  2013. Other changes:
  2014. - docs:
  2015. - clarify using a blank passphrase in keyfile mode
  2016. - mention "!" (exclude-norecurse) type in "patterns" help
  2017. - document to first heal before running borg recreate to re-chunk stuff,
  2018. because that will have to get rid of chunks_healthy metadata.
  2019. - more than 23 is not supported for CHUNK_MAX_EXP, #3115
  2020. - borg does not respect nodump flag by default any more
  2021. - clarify same-filesystem requirement for borg upgrade, #2083
  2022. - update / rephrase cygwin / WSL status, #3174
  2023. - improve docs about --stats, #3260
  2024. - vagrant: openindiana new clang package
  2025. Already contained in 1.1.1 (last minute fix):
  2026. - arg parsing: fix fallback function, refactor, #3205. This is a fixup
  2027. for #3155, which was broken on at least python <= 3.4.2.
  2028. Version 1.1.1 (2017-10-22)
  2029. --------------------------
  2030. Compatibility notes:
  2031. - The deprecated --no-files-cache is not a global/common option any more,
  2032. but only available for borg create (it is not needed for anything else).
  2033. Use --files-cache=disabled instead of --no-files-cache.
  2034. - The nodump flag ("do not backup this file") is not honoured any more by
  2035. default because this functionality (esp. if it happened by error or
  2036. unexpected) was rather confusing and unexplainable at first to users.
  2037. If you want that "do not backup NODUMP-flagged files" behaviour, use:
  2038. borg create --exclude-nodump ...
  2039. - If you are on Linux and do not need bsdflags archived, consider using
  2040. ``--nobsdflags`` with ``borg create`` to avoid additional syscalls and
  2041. speed up backup creation.
  2042. Fixes:
  2043. - borg recreate: correctly compute part file sizes. fixes cosmetic, but
  2044. annoying issue as borg check complains about size inconsistencies of part
  2045. files in affected archives. you can solve that by running borg recreate on
  2046. these archives, see also #3157.
  2047. - bsdflags support: do not open BLK/CHR/LNK files, avoid crashes and
  2048. slowness, #3130
  2049. - recreate: don't crash on attic archives w/o time_end, #3109
  2050. - don't crash on repository filesystems w/o hardlink support, #3107
  2051. - don't crash in first part of truncate_and_unlink, #3117
  2052. - fix server-side IndexError crash with clients < 1.0.7, #3192
  2053. - don't show traceback if only a global option is given, show help, #3142
  2054. - cache: use SaveFile for more safety, #3158
  2055. - init: fix wrong encryption choices in command line parser, fix missing
  2056. "authenticated-blake2", #3103
  2057. - move --no-files-cache from common to borg create options, #3146
  2058. - fix detection of non-local path (failed on ..filename), #3108
  2059. - logging with fileConfig: set json attr on "borg" logger, #3114
  2060. - fix crash with relative BORG_KEY_FILE, #3197
  2061. - show excluded dir with "x" for tagged dirs / caches, #3189
  2062. New features:
  2063. - create: --nobsdflags and --exclude-nodump options, #3160
  2064. - extract: --nobsdflags option, #3160
  2065. Other changes:
  2066. - remove annoying hardlinked symlinks warning, #3175
  2067. - vagrant: use self-made FreeBSD 10.3 box, #3022
  2068. - travis: don't brew update, hopefully fixes #2532
  2069. - docs:
  2070. - readme: -e option is required in borg 1.1
  2071. - add example showing --show-version --show-rc
  2072. - use --format rather than --list-format (deprecated) in example
  2073. - update docs about hardlinked symlinks limitation
  2074. Version 1.1.0 (2017-10-07)
  2075. --------------------------
  2076. Compatibility notes:
  2077. - borg command line: do not put options in between positional arguments
  2078. This sometimes works (e.g. it worked in borg 1.0.x), but can easily stop
  2079. working if we make positional arguments optional (like it happened for
  2080. borg create's "paths" argument in 1.1). There are also places in borg 1.0
  2081. where we do that, so it doesn't work there in general either. #3356
  2082. Good: borg create -v --stats repo::archive path
  2083. Good: borg create repo::archive path -v --stats
  2084. Bad: borg create repo::archive -v --stats path
  2085. Fixes:
  2086. - fix LD_LIBRARY_PATH restoration for subprocesses, #3077
  2087. - "auto" compression: make sure expensive compression is actually better,
  2088. otherwise store lz4 compressed data we already computed.
  2089. Other changes:
  2090. - docs:
  2091. - FAQ: we do not implement futile attempts of ETA / progress displays
  2092. - manpage: fix typos, update homepage
  2093. - implement simple "issue" role for manpage generation, #3075
  2094. Version 1.1.0rc4 (2017-10-01)
  2095. -----------------------------
  2096. Compatibility notes:
  2097. - A borg server >= 1.1.0rc4 does not support borg clients 1.1.0b3-b5. #3033
  2098. - The files cache is now controlled differently and has a new default mode:
  2099. - the files cache now uses ctime by default for improved file change
  2100. detection safety. You can still use mtime for more speed and less safety.
  2101. - --ignore-inode is deprecated (use --files-cache=... without "inode")
  2102. - --no-files-cache is deprecated (use --files-cache=disabled)
  2103. New features:
  2104. - --files-cache - implement files cache mode control, #911
  2105. You can now control the files cache mode using this option:
  2106. --files-cache={ctime,mtime,size,inode,rechunk,disabled}
  2107. (only some combinations are supported). See the docs for details.
  2108. Fixes:
  2109. - remote progress/logging: deal with partial lines, #2637
  2110. - remote progress: flush json mode output
  2111. - fix subprocess environments, #3050 (and more)
  2112. Other changes:
  2113. - remove client_supports_log_v3 flag, #3033
  2114. - exclude broken Cython 0.27(.0) in requirements, #3066
  2115. - vagrant:
  2116. - upgrade to FUSE for macOS 3.7.1
  2117. - use Python 3.5.4 to build the binaries
  2118. - docs:
  2119. - security: change-passphrase only changes the passphrase, #2990
  2120. - fixed/improved borg create --compression examples, #3034
  2121. - add note about metadata dedup and --no[ac]time, #2518
  2122. - twitter account @borgbackup now, better visible, #2948
  2123. - simplified rate limiting wrapper in FAQ
  2124. Version 1.1.0rc3 (2017-09-10)
  2125. -----------------------------
  2126. New features:
  2127. - delete: support naming multiple archives, #2958
  2128. Fixes:
  2129. - repo cleanup/write: invalidate cached FDs, #2982
  2130. - fix datetime.isoformat() microseconds issues, #2994
  2131. - recover_segment: use mmap(), lower memory needs, #2987
  2132. Other changes:
  2133. - with-lock: close segment file before invoking subprocess
  2134. - keymanager: don't depend on optional readline module, #2976
  2135. - docs:
  2136. - fix macOS keychain integration command
  2137. - show/link new screencasts in README, #2936
  2138. - document utf-8 locale requirement for json mode, #2273
  2139. - vagrant: clean up shell profile init, user name, #2977
  2140. - test_detect_attic_repo: don't test mount, #2975
  2141. - add debug logging for repository cleanup
  2142. Version 1.1.0rc2 (2017-08-28)
  2143. -----------------------------
  2144. Compatibility notes:
  2145. - list: corrected mix-up of "isomtime" and "mtime" formats. Previously,
  2146. "isomtime" was the default but produced a verbose human format,
  2147. while "mtime" produced a ISO-8601-like format.
  2148. The behaviours have been swapped (so "mtime" is human, "isomtime" is ISO-like),
  2149. and the default is now "mtime".
  2150. "isomtime" is now a real ISO-8601 format ("T" between date and time, not a space).
  2151. New features:
  2152. - None.
  2153. Fixes:
  2154. - list: fix weird mixup of mtime/isomtime
  2155. - create --timestamp: set start time, #2957
  2156. - ignore corrupt files cache, #2939
  2157. - migrate locks to child PID when daemonize is used
  2158. - fix exitcode of borg serve, #2910
  2159. - only compare contents when chunker params match, #2899
  2160. - umount: try fusermount, then try umount, #2863
  2161. Other changes:
  2162. - JSON: use a more standard ISO 8601 datetime format, #2376
  2163. - cache: write_archive_index: truncate_and_unlink on error, #2628
  2164. - detect non-upgraded Attic repositories, #1933
  2165. - delete various nogil and threading related lines
  2166. - coala / pylint related improvements
  2167. - docs:
  2168. - renew asciinema/screencasts, #669
  2169. - create: document exclusion through nodump, #2949
  2170. - minor formatting fixes
  2171. - tar: tarpipe example
  2172. - improve "with-lock" and "info" docs, #2869
  2173. - detail how to use macOS/GNOME/KDE keyrings for repo passwords, #392
  2174. - travis: only short-circuit docs-only changes for pull requests
  2175. - vagrant:
  2176. - netbsd: bash is already installed
  2177. - fix netbsd version in PKG_PATH
  2178. - add exe location to PATH when we build an exe
  2179. Version 1.1.0rc1 (2017-07-24)
  2180. -----------------------------
  2181. Compatibility notes:
  2182. - delete: removed short option for --cache-only
  2183. New features:
  2184. - support borg list repo --format {comment} {bcomment} {end}, #2081
  2185. - key import: allow reading from stdin, #2760
  2186. Fixes:
  2187. - with-lock: avoid creating segment files that might be overwritten later, #1867
  2188. - prune: fix checkpoints processing with --glob-archives
  2189. - FUSE: versions view: keep original file extension at end, #2769
  2190. - fix --last, --first: do not accept values <= 0,
  2191. fix reversed archive ordering with --last
  2192. - include testsuite data (attic.tar.gz) when installing the package
  2193. - use limited unpacker for outer key, for manifest (both security precautions),
  2194. #2174 #2175
  2195. - fix bashism in shell scripts, #2820, #2816
  2196. - cleanup endianness detection, create _endian.h,
  2197. fixes build on alpine linux, #2809
  2198. - fix crash with --no-cache-sync (give known chunk size to chunk_incref), #2853
  2199. Other changes:
  2200. - FUSE: versions view: linear numbering by archive time
  2201. - split up interval parsing from filtering for --keep-within, #2610
  2202. - add a basic .editorconfig, #2734
  2203. - use archive creation time as mtime for FUSE mount, #2834
  2204. - upgrade FUSE for macOS (osxfuse) from 3.5.8 to 3.6.3, #2706
  2205. - hashindex: speed up by replacing modulo with "if" to check for wraparound
  2206. - coala checker / pylint: fixed requirements and .coafile, more ignores
  2207. - borg upgrade: name backup directories as 'before-upgrade', #2811
  2208. - add .mailmap
  2209. - some minor changes suggested by lgtm.com
  2210. - docs:
  2211. - better explanation of the --ignore-inode option relevance, #2800
  2212. - fix openSUSE command and add openSUSE section
  2213. - simplify ssh authorized_keys file using "restrict", add legacy note, #2121
  2214. - mount: show usage of archive filters
  2215. - mount: add repository example, #2462
  2216. - info: update and add examples, #2765
  2217. - prune: include example
  2218. - improved style / formatting
  2219. - improved/fixed segments_per_dir docs
  2220. - recreate: fix wrong "remove unwanted files" example
  2221. - reference list of status chars in borg recreate --filter description
  2222. - update source-install docs about doc build dependencies, #2795
  2223. - cleanup installation docs
  2224. - file system requirements, update segs per dir
  2225. - fix checkpoints/parts reference in FAQ, #2859
  2226. - code:
  2227. - hashindex: don't pass side effect into macro
  2228. - crypto low_level: don't mutate local bytes()
  2229. - use dash_open function to open file or "-" for stdin/stdout
  2230. - archiver: argparse cleanup / refactoring
  2231. - shellpattern: add match_end arg
  2232. - tests: added some additional unit tests, some fixes, #2700 #2710
  2233. - vagrant: fix setup of cygwin, add Debian 9 "stretch"
  2234. - travis: don't perform full travis build on docs-only changes, #2531
  2235. Version 1.1.0b6 (2017-06-18)
  2236. ----------------------------
  2237. Compatibility notes:
  2238. - Running "borg init" via a "borg serve --append-only" server will *not* create
  2239. an append-only repository anymore. Use "borg init --append-only" to initialize
  2240. an append-only repository.
  2241. - Repositories in the "repokey" and "repokey-blake2" modes with an empty passphrase
  2242. are now treated as unencrypted repositories for security checks (e.g.
  2243. BORG_UNKNOWN_UNENCRYPTED_REPO_ACCESS_IS_OK).
  2244. Previously there would be no prompts nor messages if an unknown repository
  2245. in one of these modes with an empty passphrase was encountered. This would
  2246. allow an attacker to swap a repository, if one assumed that the lack of
  2247. password prompts was due to a set BORG_PASSPHRASE.
  2248. Since the "trick" does not work if BORG_PASSPHRASE is set, this does generally
  2249. not affect scripts.
  2250. - Repositories in the "authenticated" mode are now treated as the unencrypted
  2251. repositories they are.
  2252. - The client-side temporary repository cache now holds unencrypted data for better speed.
  2253. - borg init: removed the short form of --append-only (-a).
  2254. - borg upgrade: removed the short form of --inplace (-i).
  2255. New features:
  2256. - reimplemented the RepositoryCache, size-limited caching of decrypted repo
  2257. contents, integrity checked via xxh64. #2515
  2258. - reduced space usage of chunks.archive.d. Existing caches are migrated during
  2259. a cache sync. #235 #2638
  2260. - integrity checking using xxh64 for important files used by borg, #1101:
  2261. - repository: index and hints files
  2262. - cache: chunks and files caches, chunks.archive.d
  2263. - improve cache sync speed, #1729
  2264. - create: new --no-cache-sync option
  2265. - add repository mandatory feature flags infrastructure, #1806
  2266. - Verify most operations against SecurityManager. Location, manifest timestamp
  2267. and key types are now checked for almost all non-debug commands. #2487
  2268. - implement storage quotas, #2517
  2269. - serve: add --restrict-to-repository, #2589
  2270. - BORG_PASSCOMMAND: use external tool providing the key passphrase, #2573
  2271. - borg export-tar, #2519
  2272. - list: --json-lines instead of --json for archive contents, #2439
  2273. - add --debug-profile option (and also "borg debug convert-profile"), #2473
  2274. - implement --glob-archives/-a, #2448
  2275. - normalize authenticated key modes for better naming consistency:
  2276. - rename "authenticated" to "authenticated-blake2" (uses blake2b)
  2277. - implement "authenticated" mode (uses hmac-sha256)
  2278. Fixes:
  2279. - hashindex: read/write indices >2 GiB on 32bit systems, better error
  2280. reporting, #2496
  2281. - repository URLs: implement IPv6 address support and also more informative
  2282. error message when parsing fails.
  2283. - mount: check whether llfuse is installed before asking for passphrase, #2540
  2284. - mount: do pre-mount checks before opening repository, #2541
  2285. - FUSE:
  2286. - fix crash if empty (None) xattr is read, #2534
  2287. - fix read(2) caching data in metadata cache
  2288. - fix negative uid/gid crash (fix crash when mounting archives
  2289. of external drives made on cygwin), #2674
  2290. - redo ItemCache, on top of object cache
  2291. - use decrypted cache
  2292. - remove unnecessary normpaths
  2293. - serve: ignore --append-only when initializing a repository (borg init), #2501
  2294. - serve: fix incorrect type of exception_short for Errors, #2513
  2295. - fix --exclude and --exclude-from recursing into directories, #2469
  2296. - init: don't allow creating nested repositories, #2563
  2297. - --json: fix encryption[mode] not being the cmdline name
  2298. - remote: propagate Error.traceback correctly
  2299. - fix remote logging and progress, #2241
  2300. - implement --debug-topic for remote servers
  2301. - remote: restore "Remote:" prefix (as used in 1.0.x)
  2302. - rpc negotiate: enable v3 log protocol only for supported clients
  2303. - fix --progress and logging in general for remote
  2304. - fix parse_version, add tests, #2556
  2305. - repository: truncate segments (and also some other files) before unlinking, #2557
  2306. - recreate: keep timestamps as in original archive, #2384
  2307. - recreate: if single archive is not processed, exit 2
  2308. - patterns: don't recurse with ! / --exclude for pf:, #2509
  2309. - cache sync: fix n^2 behaviour in lookup_name
  2310. - extract: don't write to disk with --stdout (affected non-regular-file items), #2645
  2311. - hashindex: implement KeyError, more tests
  2312. Other changes:
  2313. - remote: show path in PathNotAllowed
  2314. - consider repokey w/o passphrase == unencrypted, #2169
  2315. - consider authenticated mode == unencrypted, #2503
  2316. - restrict key file names, #2560
  2317. - document follow_symlinks requirements, check libc, use stat and chown
  2318. with follow_symlinks=False, #2507
  2319. - support common options on the main command, #2508
  2320. - support common options on mid-level commands (e.g. borg *key* export)
  2321. - make --progress a common option
  2322. - increase DEFAULT_SEGMENTS_PER_DIR to 1000
  2323. - chunker: fix invalid use of types (function only used by tests)
  2324. - chunker: don't do uint32_t >> 32
  2325. - FUSE:
  2326. - add instrumentation (--debug and SIGUSR1/SIGINFO)
  2327. - reduced memory usage for repository mounts by lazily instantiating archives
  2328. - improved archive load times
  2329. - info: use CacheSynchronizer & HashIndex.stats_against (better performance)
  2330. - docs:
  2331. - init: document --encryption as required
  2332. - security: OpenSSL usage
  2333. - security: used implementations; note python libraries
  2334. - security: security track record of OpenSSL and msgpack
  2335. - patterns: document denial of service (regex, wildcards)
  2336. - init: note possible denial of service with "none" mode
  2337. - init: document SHA extension is supported in OpenSSL and thus SHA is
  2338. faster on AMD Ryzen than blake2b.
  2339. - book: use A4 format, new builder option format.
  2340. - book: create appendices
  2341. - data structures: explain repository compaction
  2342. - data structures: add chunk layout diagram
  2343. - data structures: integrity checking
  2344. - data structures: demingle cache and repo index
  2345. - Attic FAQ: separate section for attic stuff
  2346. - FAQ: I get an IntegrityError or similar - what now?
  2347. - FAQ: Can I use Borg on SMR hard drives?, #2252
  2348. - FAQ: specify "using inline shell scripts"
  2349. - add systemd warning regarding placeholders, #2543
  2350. - xattr: document API
  2351. - add docs/misc/borg-data-flow data flow chart
  2352. - debugging facilities
  2353. - README: how to help the project, #2550
  2354. - README: add bountysource badge, #2558
  2355. - fresh new theme + tweaking
  2356. - logo: vectorized (PDF and SVG) versions
  2357. - frontends: use headlines - you can link to them
  2358. - mark --pattern, --patterns-from as experimental
  2359. - highlight experimental features in online docs
  2360. - remove regex based pattern examples, #2458
  2361. - nanorst for "borg help TOPIC" and --help
  2362. - split deployment
  2363. - deployment: hosting repositories
  2364. - deployment: automated backups to a local hard drive
  2365. - development: vagrant, windows10 requirements
  2366. - development: update docs remarks
  2367. - split usage docs, #2627
  2368. - usage: avoid bash highlight, [options] instead of <options>
  2369. - usage: add benchmark page
  2370. - helpers: truncate_and_unlink doc
  2371. - don't suggest to leak BORG_PASSPHRASE
  2372. - internals: columnize rather long ToC [webkit fixup]
  2373. internals: manifest & feature flags
  2374. - internals: more HashIndex details
  2375. - internals: fix ASCII art equations
  2376. - internals: edited obj graph related sections a bit
  2377. - internals: layers image + description
  2378. - fix way too small figures in pdf
  2379. - index: disable syntax highlight (bash)
  2380. - improve options formatting, fix accidental block quotes
  2381. - testing / checking:
  2382. - add support for using coala, #1366
  2383. - testsuite: add ArchiverCorruptionTestCase
  2384. - do not test logger name, #2504
  2385. - call setup_logging after destroying logging config
  2386. - testsuite.archiver: normalise pytest.raises vs. assert_raises
  2387. - add test for preserved intermediate folder permissions, #2477
  2388. - key: add round-trip test
  2389. - remove attic dependency of the tests, #2505
  2390. - enable remote tests on cygwin
  2391. - tests: suppress tar's future timestamp warning
  2392. - cache sync: add more refcount tests
  2393. - repository: add tests, including corruption tests
  2394. - vagrant:
  2395. - control VM cpus and pytest workers via env vars VMCPUS and XDISTN
  2396. - update cleaning workdir
  2397. - fix openbsd shell
  2398. - add OpenIndiana
  2399. - packaging:
  2400. - binaries: don't bundle libssl
  2401. - setup.py clean to remove compiled files
  2402. - fail in borg package if version metadata is very broken (setuptools_scm)
  2403. - repo / code structure:
  2404. - create borg.algorithms and borg.crypto packages
  2405. - algorithms: rename crc32 to checksums
  2406. - move patterns to module, #2469
  2407. - gitignore: complete paths for src/ excludes
  2408. - cache: extract CacheConfig class
  2409. - implement IntegrityCheckedFile + Detached variant, #2502 #1688
  2410. - introduce popen_with_error_handling to handle common user errors
  2411. Version 1.1.0b5 (2017-04-30)
  2412. ----------------------------
  2413. Compatibility notes:
  2414. - BORG_HOSTNAME_IS_UNIQUE is now on by default.
  2415. - removed --compression-from feature
  2416. - recreate: add --recompress flag, unify --always-recompress and
  2417. --recompress
  2418. Fixes:
  2419. - catch exception for os.link when hardlinks are not supported, #2405
  2420. - borg rename / recreate: expand placeholders, #2386
  2421. - generic support for hardlinks (files, devices, FIFOs), #2324
  2422. - extract: also create parent dir for device files, if needed, #2358
  2423. - extract: if a hardlink master is not in the to-be-extracted subset,
  2424. the "x" status was not displayed for it, #2351
  2425. - embrace y2038 issue to support 32bit platforms: clamp timestamps to int32,
  2426. #2347
  2427. - verify_data: fix IntegrityError handling for defect chunks, #2442
  2428. - allow excluding parent and including child, #2314
  2429. Other changes:
  2430. - refactor compression decision stuff
  2431. - change global compression default to lz4 as well, to be consistent
  2432. with --compression defaults.
  2433. - placeholders: deny access to internals and other unspecified stuff
  2434. - clearer error message for unrecognized placeholder
  2435. - more clear exception if borg check does not help, #2427
  2436. - vagrant: upgrade FUSE for macOS to 3.5.8, #2346
  2437. - linux binary builds: get rid of glibc 2.13 dependency, #2430
  2438. - docs:
  2439. - placeholders: document escaping
  2440. - serve: env vars in original commands are ignored
  2441. - tell what kind of hardlinks we support
  2442. - more docs about compression
  2443. - LICENSE: use canonical formulation
  2444. ("copyright holders and contributors" instead of "author")
  2445. - document borg init behaviour via append-only borg serve, #2440
  2446. - be clear about what buzhash is used for, #2390
  2447. - add hint about chunker params, #2421
  2448. - clarify borg upgrade docs, #2436
  2449. - FAQ to explain warning when running borg check --repair, #2341
  2450. - repository file system requirements, #2080
  2451. - pre-install considerations
  2452. - misc. formatting / crossref fixes
  2453. - tests:
  2454. - enhance travis setuptools_scm situation
  2455. - add extra test for the hashindex
  2456. - fix invalid param issue in benchmarks
  2457. These belong to 1.1.0b4 release, but did not make it into changelog by then:
  2458. - vagrant: increase memory for parallel testing
  2459. - lz4 compress: lower max. buffer size, exception handling
  2460. - add docstring to do_benchmark_crud
  2461. - patterns help: mention path full-match in intro
  2462. Version 1.1.0b4 (2017-03-27)
  2463. ----------------------------
  2464. Compatibility notes:
  2465. - init: the --encryption argument is mandatory now (there are several choices)
  2466. - moved "borg migrate-to-repokey" to "borg key migrate-to-repokey".
  2467. - "borg change-passphrase" is deprecated, use "borg key change-passphrase"
  2468. instead.
  2469. - the --exclude-if-present option now supports tagging a folder with any
  2470. filesystem object type (file, folder, etc), instead of expecting only files
  2471. as tags, #1999
  2472. - the --keep-tag-files option has been deprecated in favor of the new
  2473. --keep-exclude-tags, to account for the change mentioned above.
  2474. - use lz4 compression by default, #2179
  2475. New features:
  2476. - JSON API to make developing frontends and automation easier
  2477. (see :ref:`json_output`)
  2478. - add JSON output to commands: `borg create/list/info --json ...`.
  2479. - add --log-json option for structured logging output.
  2480. - add JSON progress information, JSON support for confirmations (yes()).
  2481. - add two new options --pattern and --patterns-from as discussed in #1406
  2482. - new path full match pattern style (pf:) for very fast matching, #2334
  2483. - add 'debug dump-manifest' and 'debug dump-archive' commands
  2484. - add 'borg benchmark crud' command, #1788
  2485. - new 'borg delete --force --force' to delete severely corrupted archives, #1975
  2486. - info: show utilization of maximum archive size, #1452
  2487. - list: add dsize and dcsize keys, #2164
  2488. - paperkey.html: Add interactive html template for printing key backups.
  2489. - key export: add qr html export mode
  2490. - securely erase config file (which might have old encryption key), #2257
  2491. - archived file items: add size to metadata, 'borg extract' and 'borg check' do
  2492. check the file size for consistency, FUSE uses precomputed size from Item.
  2493. Fixes:
  2494. - fix remote speed regression introduced in 1.1.0b3, #2185
  2495. - fix regression handling timestamps beyond 2262 (revert bigint removal),
  2496. introduced in 1.1.0b3, #2321
  2497. - clamp (nano)second values to unproblematic range, #2304
  2498. - hashindex: rebuild hashtable if we have too little empty buckets
  2499. (performance fix), #2246
  2500. - Location regex: fix bad parsing of wrong syntax
  2501. - ignore posix_fadvise errors in repository.py, #2095
  2502. - borg rpc: use limited msgpack.Unpacker (security precaution), #2139
  2503. - Manifest: Make sure manifest timestamp is strictly monotonically increasing.
  2504. - create: handle BackupOSError on a per-path level in one spot
  2505. - create: clarify -x option / meaning of "same filesystem"
  2506. - create: don't create hard link refs to failed files
  2507. - archive check: detect and fix missing all-zero replacement chunks, #2180
  2508. - files cache: update inode number when --ignore-inode is used, #2226
  2509. - fix decompression exceptions crashing ``check --verify-data`` and others
  2510. instead of reporting integrity error, #2224 #2221
  2511. - extract: warning for unextracted big extended attributes, #2258, #2161
  2512. - mount: umount on SIGINT/^C when in foreground
  2513. - mount: handle invalid hard link refs
  2514. - mount: fix huge RAM consumption when mounting a repository (saves number of
  2515. archives * 8 MiB), #2308
  2516. - hashindex: detect mingw byte order #2073
  2517. - hashindex: fix wrong skip_hint on hashindex_set when encountering tombstones,
  2518. the regression was introduced in #1748
  2519. - fix ChunkIndex.__contains__ assertion for big-endian archs
  2520. - fix borg key/debug/benchmark crashing without subcommand, #2240
  2521. - Location: accept //servername/share/path
  2522. - correct/refactor calculation of unique/non-unique chunks
  2523. - extract: fix missing call to ProgressIndicator.finish
  2524. - prune: fix error msg, it is --keep-within, not --within
  2525. - fix "auto" compression mode bug (not compressing), #2331
  2526. - fix symlink item fs size computation, #2344
  2527. Other changes:
  2528. - remote repository: improved async exception processing, #2255 #2225
  2529. - with --compression auto,C, only use C if lz4 achieves at least 3% compression
  2530. - PatternMatcher: only normalize path once, #2338
  2531. - hashindex: separate endian-dependent defs from endian detection
  2532. - migrate-to-repokey: ask using canonical_path() as we do everywhere else.
  2533. - SyncFile: fix use of fd object after close
  2534. - make LoggedIO.close_segment reentrant
  2535. - creating a new segment: use "xb" mode, #2099
  2536. - redo key_creator, key_factory, centralise key knowledge, #2272
  2537. - add return code functions, #2199
  2538. - list: only load cache if needed
  2539. - list: files->items, clarifications
  2540. - list: add "name" key for consistency with info cmd
  2541. - ArchiveFormatter: add "start" key for compatibility with "info"
  2542. - RemoteRepository: account rx/tx bytes
  2543. - setup.py build_usage/build_man/build_api fixes
  2544. - Manifest.in: simplify, exclude .so, .dll and .orig, #2066
  2545. - FUSE: get rid of chunk accounting, st_blocks = ceil(size / blocksize).
  2546. - tests:
  2547. - help python development by testing 3.6-dev
  2548. - test for borg delete --force
  2549. - vagrant:
  2550. - freebsd: some fixes, #2067
  2551. - darwin64: use osxfuse 3.5.4 for tests / to build binaries
  2552. - darwin64: improve VM settings
  2553. - use python 3.5.3 to build binaries, #2078
  2554. - upgrade pyinstaller from 3.1.1+ to 3.2.1
  2555. - pyinstaller: use fixed AND freshly compiled bootloader, #2002
  2556. - pyinstaller: automatically builds bootloader if missing
  2557. - docs:
  2558. - create really nice man pages
  2559. - faq: mention --remote-ratelimit in bandwidth limit question
  2560. - fix caskroom link, #2299
  2561. - docs/security: reiterate that RPC in Borg does no networking
  2562. - docs/security: counter tracking, #2266
  2563. - docs/development: update merge remarks
  2564. - address SSH batch mode in docs, #2202 #2270
  2565. - add warning about running build_usage on Python >3.4, #2123
  2566. - one link per distro in the installation page
  2567. - improve --exclude-if-present and --keep-exclude-tags, #2268
  2568. - improve automated backup script in doc, #2214
  2569. - improve remote-path description
  2570. - update docs for create -C default change (lz4)
  2571. - document relative path usage, #1868
  2572. - document snapshot usage, #2178
  2573. - corrected some stuff in internals+security
  2574. - internals: move toctree to after the introduction text
  2575. - clarify metadata kind, manifest ops
  2576. - key enc: correct / clarify some stuff, link to internals/security
  2577. - datas: enc: 1.1.x mas different MACs
  2578. - datas: enc: correct factual error -- no nonce involved there.
  2579. - make internals.rst an index page and edit it a bit
  2580. - add "Cryptography in Borg" and "Remote RPC protocol security" sections
  2581. - document BORG_HOSTNAME_IS_UNIQUE, #2087
  2582. - FAQ by categories as proposed by @anarcat in #1802
  2583. - FAQ: update Which file types, attributes, etc. are *not* preserved?
  2584. - development: new branching model for git repository
  2585. - development: define "ours" merge strategy for auto-generated files
  2586. - create: move --exclude note to main doc
  2587. - create: move item flags to main doc
  2588. - fix examples using borg init without -e/--encryption
  2589. - list: don't print key listings in fat (html + man)
  2590. - remove Python API docs (were very incomplete, build problems on RTFD)
  2591. - added FAQ section about backing up root partition
  2592. Version 1.1.0b3 (2017-01-15)
  2593. ----------------------------
  2594. Compatibility notes:
  2595. - borg init: removed the default of "--encryption/-e", #1979
  2596. This was done so users do a informed decision about -e mode.
  2597. Bug fixes:
  2598. - borg recreate: don't rechunkify unless explicitly told so
  2599. - borg info: fixed bug when called without arguments, #1914
  2600. - borg init: fix free space check crashing if disk is full, #1821
  2601. - borg debug delete/get obj: fix wrong reference to exception
  2602. - fix processing of remote ~/ and ~user/ paths (regressed since 1.1.0b1), #1759
  2603. - posix platform module: only build / import on non-win32 platforms, #2041
  2604. New features:
  2605. - new CRC32 implementations that are much faster than the zlib one used previously, #1970
  2606. - add blake2b key modes (use blake2b as MAC). This links against system libb2,
  2607. if possible, otherwise uses bundled code
  2608. - automatically remove stale locks - set BORG_HOSTNAME_IS_UNIQUE env var
  2609. to enable stale lock killing. If set, stale locks in both cache and
  2610. repository are deleted. #562 #1253
  2611. - borg info <repo>: print general repo information, #1680
  2612. - borg check --first / --last / --sort / --prefix, #1663
  2613. - borg mount --first / --last / --sort / --prefix, #1542
  2614. - implement "health" item formatter key, #1749
  2615. - BORG_SECURITY_DIR to remember security related infos outside the cache.
  2616. Key type, location and manifest timestamp checks now survive cache
  2617. deletion. This also means that you can now delete your cache and avoid
  2618. previous warnings, since Borg can still tell it's safe.
  2619. - implement BORG_NEW_PASSPHRASE, #1768
  2620. Other changes:
  2621. - borg recreate:
  2622. - remove special-cased --dry-run
  2623. - update --help
  2624. - remove bloat: interruption blah, autocommit blah, resuming blah
  2625. - re-use existing checkpoint functionality
  2626. - archiver tests: add check_cache tool - lints refcounts
  2627. - fixed cache sync performance regression from 1.1.0b1 onwards, #1940
  2628. - syncing the cache without chunks.archive.d (see :ref:`disable_archive_chunks`)
  2629. now avoids any merges and is thus faster, #1940
  2630. - borg check --verify-data: faster due to linear on-disk-order scan
  2631. - borg debug-xxx commands removed, we use "debug xxx" subcommands now, #1627
  2632. - improve metadata handling speed
  2633. - shortcut hashindex_set by having hashindex_lookup hint about address
  2634. - improve / add progress displays, #1721
  2635. - check for index vs. segment files object count mismatch
  2636. - make RPC protocol more extensible: use named parameters.
  2637. - RemoteRepository: misc. code cleanups / refactors
  2638. - clarify cache/repository README file
  2639. - docs:
  2640. - quickstart: add a comment about other (remote) filesystems
  2641. - quickstart: only give one possible ssh url syntax, all others are
  2642. documented in usage chapter.
  2643. - mention file://
  2644. - document repo URLs / archive location
  2645. - clarify borg diff help, #980
  2646. - deployment: synthesize alternative --restrict-to-path example
  2647. - improve cache / index docs, esp. files cache docs, #1825
  2648. - document using "git merge 1.0-maint -s recursive -X rename-threshold=20%"
  2649. for avoiding troubles when merging the 1.0-maint branch into master.
  2650. - tests:
  2651. - FUSE tests: catch ENOTSUP on freebsd
  2652. - FUSE tests: test troublesome xattrs last
  2653. - fix byte range error in test, #1740
  2654. - use monkeypatch to set env vars, but only on pytest based tests.
  2655. - point XDG_*_HOME to temp dirs for tests, #1714
  2656. - remove all BORG_* env vars from the outer environment
  2657. Version 1.1.0b2 (2016-10-01)
  2658. ----------------------------
  2659. Bug fixes:
  2660. - fix incorrect preservation of delete tags, leading to "object count mismatch"
  2661. on borg check, #1598. This only occurred with 1.1.0b1 (not with 1.0.x) and is
  2662. normally fixed by running another borg create/delete/prune.
  2663. - fix broken --progress for double-cell paths (e.g. CJK), #1624
  2664. - borg recreate: also catch SIGHUP
  2665. - FUSE:
  2666. - fix hardlinks in versions view, #1599
  2667. - add parameter check to ItemCache.get to make potential failures more clear
  2668. New features:
  2669. - Archiver, RemoteRepository: add --remote-ratelimit (send data)
  2670. - borg help compression, #1582
  2671. - borg check: delete chunks with integrity errors, #1575, so they can be
  2672. "repaired" immediately and maybe healed later.
  2673. - archives filters concept (refactoring/unifying older code)
  2674. - covers --first/--last/--prefix/--sort-by options
  2675. - currently used for borg list/info/delete
  2676. Other changes:
  2677. - borg check --verify-data slightly tuned (use get_many())
  2678. - change {utcnow} and {now} to ISO-8601 format ("T" date/time separator)
  2679. - repo check: log transaction IDs, improve object count mismatch diagnostic
  2680. - Vagrantfile: use TW's fresh-bootloader pyinstaller branch
  2681. - fix module names in api.rst
  2682. - hashindex: bump api_version
  2683. Version 1.1.0b1 (2016-08-28)
  2684. ----------------------------
  2685. New features:
  2686. - new commands:
  2687. - borg recreate: re-create existing archives, #787 #686 #630 #70, also see
  2688. #757, #770.
  2689. - selectively remove files/dirs from old archives
  2690. - re-compress data
  2691. - re-chunkify data, e.g. to have upgraded Attic / Borg 0.xx archives
  2692. deduplicate with Borg 1.x archives or to experiment with chunker-params.
  2693. - borg diff: show differences between archives
  2694. - borg with-lock: execute a command with the repository locked, #990
  2695. - borg create:
  2696. - Flexible compression with pattern matching on path/filename,
  2697. and LZ4 heuristic for deciding compressibility, #810, #1007
  2698. - visit files in inode order (better speed, esp. for large directories and rotating disks)
  2699. - in-file checkpoints, #1217
  2700. - increased default checkpoint interval to 30 minutes (was 5 minutes), #896
  2701. - added uuid archive format tag, #1151
  2702. - save mountpoint directories with --one-file-system, makes system restore easier, #1033
  2703. - Linux: added support for some BSD flags, #1050
  2704. - add 'x' status for excluded paths, #814
  2705. - also means files excluded via UF_NODUMP, #1080
  2706. - borg check:
  2707. - will not produce the "Checking segments" output unless new --progress option is passed, #824.
  2708. - --verify-data to verify data cryptographically on the client, #975
  2709. - borg list, #751, #1179
  2710. - removed {formatkeys}, see "borg list --help"
  2711. - --list-format is deprecated, use --format instead
  2712. - --format now also applies to listing archives, not only archive contents, #1179
  2713. - now supports the usual [PATH [PATHS…]] syntax and excludes
  2714. - new keys: csize, num_chunks, unique_chunks, NUL
  2715. - supports guaranteed_available hashlib hashes
  2716. (to avoid varying functionality depending on environment),
  2717. which includes the SHA1 and SHA2 family as well as MD5
  2718. - borg prune:
  2719. - to better visualize the "thinning out", we now list all archives in
  2720. reverse time order. rephrase and reorder help text.
  2721. - implement --keep-last N via --keep-secondly N, also --keep-minutely.
  2722. assuming that there is not more than 1 backup archive made in 1s,
  2723. --keep-last N and --keep-secondly N are equivalent, #537
  2724. - cleanup checkpoints except the latest, #1008
  2725. - borg extract:
  2726. - added --progress, #1449
  2727. - Linux: limited support for BSD flags, #1050
  2728. - borg info:
  2729. - output is now more similar to borg create --stats, #977
  2730. - borg mount:
  2731. - provide "borgfs" wrapper for borg mount, enables usage via fstab, #743
  2732. - "versions" mount option - when used with a repository mount, this gives
  2733. a merged, versioned view of the files in all archives, #729
  2734. - repository:
  2735. - added progress information to commit/compaction phase (often takes some time when deleting/pruning), #1519
  2736. - automatic recovery for some forms of repository inconsistency, #858
  2737. - check free space before going forward with a commit, #1336
  2738. - improved write performance (esp. for rotating media), #985
  2739. - new IO code for Linux
  2740. - raised default segment size to approx 512 MiB
  2741. - improved compaction performance, #1041
  2742. - reduced client CPU load and improved performance for remote repositories, #940
  2743. - options that imply output (--show-rc, --show-version, --list, --stats,
  2744. --progress) don't need -v/--info to have that output displayed, #865
  2745. - add archive comments (via borg (re)create --comment), #842
  2746. - borg list/prune/delete: also output archive id, #731
  2747. - --show-version: shows/logs the borg version, #725
  2748. - added --debug-topic for granular debug logging, #1447
  2749. - use atomic file writing/updating for configuration and key files, #1377
  2750. - BORG_KEY_FILE environment variable, #1001
  2751. - self-testing module, #970
  2752. Bug fixes:
  2753. - list: fixed default output being produced if --format is given with empty parameter, #1489
  2754. - create: fixed overflowing progress line with CJK and similar characters, #1051
  2755. - prune: fixed crash if --prefix resulted in no matches, #1029
  2756. - init: clean up partial repo if passphrase input is aborted, #850
  2757. - info: quote cmdline arguments that have spaces in them
  2758. - fix hardlinks failing in some cases for extracting subtrees, #761
  2759. Other changes:
  2760. - replace stdlib hmac with OpenSSL, zero-copy decrypt (10-15% increase in
  2761. performance of hash-lists and extract).
  2762. - improved chunker performance, #1021
  2763. - open repository segment files in exclusive mode (fail-safe), #1134
  2764. - improved error logging, #1440
  2765. - Source:
  2766. - pass meta-data around, #765
  2767. - move some constants to new constants module
  2768. - better readability and fewer errors with namedtuples, #823
  2769. - moved source tree into src/ subdirectory, #1016
  2770. - made borg.platform a package, #1113
  2771. - removed dead crypto code, #1032
  2772. - improved and ported parts of the test suite to py.test, #912
  2773. - created data classes instead of passing dictionaries around, #981, #1158, #1161
  2774. - cleaned up imports, #1112
  2775. - Docs:
  2776. - better help texts and sphinx reproduction of usage help:
  2777. - Group options
  2778. - Nicer list of options in Sphinx
  2779. - Deduplicate 'Common options' (including --help)
  2780. - chunker: added some insights by "Voltara", #903
  2781. - clarify what "deduplicated size" means
  2782. - fix / update / add package list entries
  2783. - added a SaltStack usage example, #956
  2784. - expanded FAQ
  2785. - new contributors in AUTHORS!
  2786. - Tests:
  2787. - vagrant: add ubuntu/xenial 64bit - this box has still some issues
  2788. - ChunkBuffer: add test for leaving partial chunk in buffer, fixes #945
  2789. Version 1.0.13 (2019-02-15)
  2790. ---------------------------
  2791. Please note: this is very likely the last 1.0.x release, please upgrade to 1.1.x.
  2792. Bug fixes:
  2793. - security fix: configure FUSE with "default_permissions", #3903.
  2794. "default_permissions" is now enforced by borg by default to let the
  2795. kernel check uid/gid/mode based permissions.
  2796. "ignore_permissions" can be given to not enforce "default_permissions".
  2797. - xattrs: fix borg exception handling on ENOSPC error, #3808.
  2798. New features:
  2799. - Read a passphrase from a file descriptor specified in the
  2800. BORG_PASSPHRASE_FD environment variable.
  2801. Other changes:
  2802. - acl platform code: fix acl set return type
  2803. - xattr:
  2804. - add linux {list,get,set}xattr ctypes prototypes
  2805. - fix darwin flistxattr ctypes prototype
  2806. - testing / travis-ci:
  2807. - fix the homebrew 1.9 issues on travis-ci, #4254
  2808. - travis OS X: use xcode 8.3 (not broken)
  2809. - tox.ini: lock requirements
  2810. - unbreak 1.0-maint on travis, fixes #4123
  2811. - vagrant:
  2812. - misc. fixes
  2813. - FUSE for macOS: upgrade 3.7.1 to 3.8.3
  2814. - Python: upgrade 3.5.5 to 3.5.6
  2815. - docs:
  2816. - Update installation instructions for macOS
  2817. - update release workflow using twine (docs, scripts), #4213
  2818. Version 1.0.12 (2018-04-08)
  2819. ---------------------------
  2820. Bug fixes:
  2821. - repository: cleanup/write: invalidate cached FDs, tests
  2822. - serve: fix exitcode, #2910
  2823. - extract: set bsdflags last (include immutable flag), #3263
  2824. - create --timestamp: set start time, #2957
  2825. - create: show excluded dir with "x" for tagged dirs / caches, #3189
  2826. - migrate locks to child PID when daemonize is used
  2827. - Buffer: fix wrong thread-local storage use, #2951
  2828. - fix detection of non-local path, #3108
  2829. - fix LDLP restoration for subprocesses, #3077
  2830. - fix subprocess environments (xattr module's fakeroot version check,
  2831. borg umount, BORG_PASSCOMMAND), #3050
  2832. - remote: deal with partial lines, #2637
  2833. - get rid of datetime.isoformat, use safe parse_timestamp to parse
  2834. timestamps, #2994
  2835. - build: do .h file content checks in binary mode, fixes build issue for
  2836. non-ascii header files on pure-ascii locale platforms, #3544 #3639
  2837. - remove platform.uname() call which caused library mismatch issues, #3732
  2838. - add exception handler around deprecated platform.linux_distribution() call
  2839. Other changes:
  2840. - require msgpack-python >= 0.4.6 and < 0.5.0, see #3753
  2841. - add parens for C preprocessor macro argument usages (did not cause
  2842. malfunction)
  2843. - ignore corrupt files cache, #2939
  2844. - replace "modulo" with "if" to check for wraparound in hashmap
  2845. - keymanager: don't depend on optional readline module, #2980
  2846. - exclude broken pytest 3.3.0 release
  2847. - exclude broken Cython 0.27(.0) release, #3066
  2848. - flake8: add some ignores
  2849. - docs:
  2850. - create: document exclusion through nodump
  2851. - document good and problematic option placements, fix examples, #3356
  2852. - update docs about hardlinked symlinks limitation
  2853. - faq: we do not implement futile attempts of ETA / progress displays
  2854. - simplified rate limiting wrapper in FAQ
  2855. - twitter account @borgbackup, #2948
  2856. - add note about metadata dedup and --no[ac]time, #2518
  2857. - change-passphrase only changes the passphrase, #2990
  2858. - clarify encrypted key format for borg key export, #3296
  2859. - document sshfs rename workaround, #3315
  2860. - update release checklist about security fixes
  2861. - docs about how to verify a signed release, #3634
  2862. - chunk seed is generated per /repository/
  2863. - vagrant:
  2864. - use FUSE for macOS 3.7.1 to build the macOS binary
  2865. - use python 3.5.5 to build the binaries
  2866. - add exe location to PATH when we build an exe
  2867. - use https pypi url for wheezy
  2868. - netbsd: bash is already installed
  2869. - netbsd: fix netbsd version in PKG_PATH
  2870. - use self-made FreeBSD 10.3 box, #3022
  2871. - backport fs_init (including related updates) from 1.1
  2872. - the boxcutter wheezy boxes are 404, use local ones
  2873. - travis:
  2874. - don't perform full Travis build on docs-only changes, #2531
  2875. - only short-circuit docs-only changes for pull requests
  2876. Version 1.0.11 (2017-07-21)
  2877. ---------------------------
  2878. Bug fixes:
  2879. - use limited unpacker for outer key (security precaution), #2174
  2880. - fix paperkey import bug
  2881. Other changes:
  2882. - change --checkpoint-interval default from 600s to 1800s, #2841.
  2883. this improves efficiency for big repositories a lot.
  2884. - docs: fix OpenSUSE command and add OpenSUSE section
  2885. - tests: add tests for split_lstring and paperkey
  2886. - vagrant:
  2887. - fix openbsd shell
  2888. - backport cpu/ram setup from master
  2889. - add stretch64 VM
  2890. Version 1.0.11rc1 (2017-06-27)
  2891. ------------------------------
  2892. Bug fixes:
  2893. - performance: rebuild hashtable if we have too few empty buckets, #2246.
  2894. this fixes some sporadic, but severe performance breakdowns.
  2895. - Archive: allocate zeros when needed, #2308
  2896. fixes huge memory usage of mount (8 MiB × number of archives)
  2897. - IPv6 address support
  2898. also: Location: more informative exception when parsing fails
  2899. - borg single-file binary: use pyinstaller v3.2.1, #2396
  2900. this fixes that the prelink cronjob on some distros kills the
  2901. borg binary by stripping away parts of it.
  2902. - extract:
  2903. - warning for unextracted big extended attributes, #2258
  2904. - also create parent dir for device files, if needed.
  2905. - don't write to disk with --stdout, #2645
  2906. - archive check: detect and fix missing all-zero replacement chunks, #2180
  2907. - fix (de)compression exceptions, #2224 #2221
  2908. - files cache: update inode number, #2226
  2909. - borg rpc: use limited msgpack.Unpacker (security precaution), #2139
  2910. - Manifest: use limited msgpack.Unpacker (security precaution), #2175
  2911. - Location: accept //servername/share/path
  2912. - fix ChunkIndex.__contains__ assertion for big-endian archs (harmless)
  2913. - create: handle BackupOSError on a per-path level in one spot
  2914. - fix error msg, there is no --keep-last in borg 1.0.x, #2282
  2915. - clamp (nano)second values to unproblematic range, #2304
  2916. - fuse / borg mount:
  2917. - fix st_blocks to be an integer (not float) value
  2918. - fix negative uid/gid crash (they could come into archives e.g. when
  2919. backing up external drives under cygwin), #2674
  2920. - fix crash if empty (None) xattr is read
  2921. - do pre-mount checks before opening repository
  2922. - check llfuse is installed before asking for passphrase
  2923. - borg rename: expand placeholders, #2386
  2924. - borg serve: fix forced command lines containing BORG_* env vars
  2925. - fix error msg, it is --keep-within, not --within
  2926. - fix borg key/debug/benchmark crashing without subcommand, #2240
  2927. - chunker: fix invalid use of types, don't do uint32_t >> 32
  2928. - document follow_symlinks requirements, check libc, #2507
  2929. New features:
  2930. - added BORG_PASSCOMMAND environment variable, #2573
  2931. - add minimal version of in repository mandatory feature flags, #2134
  2932. This should allow us to make sure older borg versions can be cleanly
  2933. prevented from doing operations that are no longer safe because of
  2934. repository format evolution. This allows more fine grained control than
  2935. just incrementing the manifest version. So for example a change that
  2936. still allows new archives to be created but would corrupt the repository
  2937. when an old version tries to delete an archive or check the repository
  2938. would add the new feature to the check and delete set but leave it out
  2939. of the write set.
  2940. - borg delete --force --force to delete severely corrupted archives, #1975
  2941. Other changes:
  2942. - embrace y2038 issue to support 32bit platforms
  2943. - be more clear that this is a "beyond repair" case, #2427
  2944. - key file names: limit to 100 characters and remove colons from host name
  2945. - upgrade FUSE for macOS to 3.5.8, #2346
  2946. - split up parsing and filtering for --keep-within, better error message, #2610
  2947. - docs:
  2948. - fix caskroom link, #2299
  2949. - address SSH batch mode, #2202 #2270
  2950. - improve remote-path description
  2951. - document snapshot usage, #2178
  2952. - document relative path usage, #1868
  2953. - one link per distro in the installation page
  2954. - development: new branching model in git repository
  2955. - kill api page
  2956. - added FAQ section about backing up root partition
  2957. - add bountysource badge, #2558
  2958. - create empty docs.txt reequirements, #2694
  2959. - README: how to help the project
  2960. - note -v/--verbose requirement on affected options, #2542
  2961. - document borg init behaviour via append-only borg serve, #2440
  2962. - be clear about what buzhash is used for (chunking) and want it is not
  2963. used for (deduplication)- also say already in the readme that we use a
  2964. cryptohash for dedupe, so people don't worry, #2390
  2965. - add hint about chunker params to borg upgrade docs, #2421
  2966. - clarify borg upgrade docs, #2436
  2967. - quickstart: delete problematic BORG_PASSPHRASE use, #2623
  2968. - faq: specify "using inline shell scripts"
  2969. - document pattern denial of service, #2624
  2970. - tests:
  2971. - remove attic dependency of the tests, #2505
  2972. - travis:
  2973. - enhance travis setuptools_scm situation
  2974. - install fakeroot for Linux
  2975. - add test for borg delete --force
  2976. - enable remote tests on cygwin (the cygwin issue that caused these tests
  2977. to break was fixed in cygwin at least since cygwin 2.8, maybe even since
  2978. 2.7.0).
  2979. - remove skipping the noatime tests on GNU/Hurd, #2710
  2980. - fix borg import issue, add comment, #2718
  2981. - include attic.tar.gz when installing the package
  2982. also: add include_package_data=True
  2983. Version 1.0.10 (2017-02-13)
  2984. ---------------------------
  2985. Bug fixes:
  2986. - Manifest timestamps are now monotonically increasing,
  2987. this fixes issues when the system clock jumps backwards
  2988. or is set inconsistently across computers accessing the same repository, #2115
  2989. - Fixed testing regression in 1.0.10rc1 that lead to a hard dependency on
  2990. py.test >= 3.0, #2112
  2991. New features:
  2992. - "key export" can now generate a printable HTML page with both a QR code and
  2993. a human-readable "paperkey" representation (and custom text) through the
  2994. ``--qr-html`` option.
  2995. The same functionality is also available through `paperkey.html <paperkey.html>`_,
  2996. which is the same HTML page generated by ``--qr-html``. It works with existing
  2997. "key export" files and key files.
  2998. Other changes:
  2999. - docs:
  3000. - language clarification - "borg create --one-file-system" option does not respect
  3001. mount points, but considers different file systems instead, #2141
  3002. - setup.py: build_api: sort file list for determinism
  3003. Version 1.0.10rc1 (2017-01-29)
  3004. ------------------------------
  3005. Bug fixes:
  3006. - borg serve: fix transmission data loss of pipe writes, #1268
  3007. This affects only the cygwin platform (not Linux, BSD, OS X).
  3008. - Avoid triggering an ObjectiveFS bug in xattr retrieval, #1992
  3009. - When running out of buffer memory when reading xattrs, only skip the
  3010. current file, #1993
  3011. - Fixed "borg upgrade --tam" crashing with unencrypted repositories. Since
  3012. :ref:`the issue <tam_vuln>` is not relevant for unencrypted repositories,
  3013. it now does nothing and prints an error, #1981.
  3014. - Fixed change-passphrase crashing with unencrypted repositories, #1978
  3015. - Fixed "borg check repo::archive" indicating success if "archive" does not exist, #1997
  3016. - borg check: print non-exit-code warning if --last or --prefix aren't fulfilled
  3017. - fix bad parsing of wrong repo location syntax
  3018. - create: don't create hard link refs to failed files,
  3019. mount: handle invalid hard link refs, #2092
  3020. - detect mingw byte order, #2073
  3021. - creating a new segment: use "xb" mode, #2099
  3022. - mount: umount on SIGINT/^C when in foreground, #2082
  3023. Other changes:
  3024. - binary: use fixed AND freshly compiled pyinstaller bootloader, #2002
  3025. - xattr: ignore empty names returned by llistxattr(2) et al
  3026. - Enable the fault handler: install handlers for the SIGSEGV, SIGFPE, SIGABRT,
  3027. SIGBUS and SIGILL signals to dump the Python traceback.
  3028. - Also print a traceback on SIGUSR2.
  3029. - borg change-passphrase: print key location (simplify making a backup of it)
  3030. - officially support Python 3.6 (setup.py: add Python 3.6 qualifier)
  3031. - tests:
  3032. - vagrant / travis / tox: add Python 3.6 based testing
  3033. - vagrant: fix openbsd repo, #2042
  3034. - vagrant: fix the freebsd64 machine, #2037 #2067
  3035. - vagrant: use python 3.5.3 to build binaries, #2078
  3036. - vagrant: use osxfuse 3.5.4 for tests / to build binaries
  3037. vagrant: improve darwin64 VM settings
  3038. - travis: fix osxfuse install (fixes OS X testing on Travis CI)
  3039. - travis: require succeeding OS X tests, #2028
  3040. - travis: use latest pythons for OS X based testing
  3041. - use pytest-xdist to parallelize testing
  3042. - fix xattr test race condition, #2047
  3043. - setup.cfg: fix pytest deprecation warning, #2050
  3044. - docs:
  3045. - language clarification - VM backup FAQ
  3046. - borg create: document how to backup stdin, #2013
  3047. - borg upgrade: fix incorrect title levels
  3048. - add CVE numbers for issues fixed in 1.0.9, #2106
  3049. - fix typos (taken from Debian package patch)
  3050. - remote: include data hexdump in "unexpected RPC data" error message
  3051. - remote: log SSH command line at debug level
  3052. - API_VERSION: use numberspaces, #2023
  3053. - remove .github from pypi package, #2051
  3054. - add pip and setuptools to requirements file, #2030
  3055. - SyncFile: fix use of fd object after close (cosmetic)
  3056. - Manifest.in: simplify, exclude \*.{so,dll,orig}, #2066
  3057. - ignore posix_fadvise errors in repository.py, #2095
  3058. (works around issues with docker on ARM)
  3059. - make LoggedIO.close_segment reentrant, avoid reentrance
  3060. Version 1.0.9 (2016-12-20)
  3061. --------------------------
  3062. Security fixes:
  3063. - A flaw in the cryptographic authentication scheme in Borg allowed an attacker
  3064. to spoof the manifest. See :ref:`tam_vuln` above for the steps you should
  3065. take.
  3066. CVE-2016-10099 was assigned to this vulnerability.
  3067. - borg check: When rebuilding the manifest (which should only be needed very rarely)
  3068. duplicate archive names would be handled on a "first come first serve" basis, allowing
  3069. an attacker to apparently replace archives.
  3070. CVE-2016-10100 was assigned to this vulnerability.
  3071. Bug fixes:
  3072. - borg check:
  3073. - rebuild manifest if it's corrupted
  3074. - skip corrupted chunks during manifest rebuild
  3075. - fix TypeError in integrity error handler, #1903, #1894
  3076. - fix location parser for archives with @ char (regression introduced in 1.0.8), #1930
  3077. - fix wrong duration/timestamps if system clock jumped during a create
  3078. - fix progress display not updating if system clock jumps backwards
  3079. - fix checkpoint interval being incorrect if system clock jumps
  3080. Other changes:
  3081. - docs:
  3082. - add python3-devel as a dependency for cygwin-based installation
  3083. - clarify extract is relative to current directory
  3084. - FAQ: fix link to changelog
  3085. - markup fixes
  3086. - tests:
  3087. - test_get\_(cache|keys)_dir: clean env state, #1897
  3088. - get back pytest's pretty assertion failures, #1938
  3089. - setup.py build_usage:
  3090. - fixed build_usage not processing all commands
  3091. - fixed build_usage not generating includes for debug commands
  3092. Version 1.0.9rc1 (2016-11-27)
  3093. -----------------------------
  3094. Bug fixes:
  3095. - files cache: fix determination of newest mtime in backup set (which is
  3096. used in cache cleanup and led to wrong "A" [added] status for unchanged
  3097. files in next backup), #1860.
  3098. - borg check:
  3099. - fix incorrectly reporting attic 0.13 and earlier archives as corrupt
  3100. - handle repo w/o objects gracefully and also bail out early if repo is
  3101. *completely* empty, #1815.
  3102. - fix tox/pybuild in 1.0-maint
  3103. - at xattr module import time, loggers are not initialized yet
  3104. New features:
  3105. - borg umount <mountpoint>
  3106. exposed already existing umount code via the CLI api, so users can use it,
  3107. which is more consistent than using borg to mount and fusermount -u (or
  3108. umount) to un-mount, #1855.
  3109. - implement borg create --noatime --noctime, fixes #1853
  3110. Other changes:
  3111. - docs:
  3112. - display README correctly on PyPI
  3113. - improve cache / index docs, esp. files cache docs, fixes #1825
  3114. - different pattern matching for --exclude, #1779
  3115. - datetime formatting examples for {now} placeholder, #1822
  3116. - clarify passphrase mode attic repo upgrade, #1854
  3117. - clarify --umask usage, #1859
  3118. - clarify how to choose PR target branch
  3119. - clarify prune behavior for different archive contents, #1824
  3120. - fix PDF issues, add logo, fix authors, headings, TOC
  3121. - move security verification to support section
  3122. - fix links in standalone README (:ref: tags)
  3123. - add link to security contact in README
  3124. - add FAQ about security
  3125. - move fork differences to FAQ
  3126. - add more details about resource usage
  3127. - tests: skip remote tests on cygwin, #1268
  3128. - travis:
  3129. - allow OS X failures until the brew cask osxfuse issue is fixed
  3130. - caskroom osxfuse-beta gone, it's osxfuse now (3.5.3)
  3131. - vagrant:
  3132. - upgrade OSXfuse / FUSE for macOS to 3.5.3
  3133. - remove llfuse from tox.ini at a central place
  3134. - do not try to install llfuse on centos6
  3135. - fix FUSE test for darwin, #1546
  3136. - add windows virtual machine with cygwin
  3137. - Vagrantfile cleanup / code deduplication
  3138. Version 1.0.8 (2016-10-29)
  3139. --------------------------
  3140. Bug fixes:
  3141. - RemoteRepository: Fix busy wait in call_many, #940
  3142. New features:
  3143. - implement borgmajor/borgminor/borgpatch placeholders, #1694
  3144. {borgversion} was already there (full version string). With the new
  3145. placeholders you can now also get e.g. 1 or 1.0 or 1.0.8.
  3146. Other changes:
  3147. - avoid previous_location mismatch, #1741
  3148. due to the changed canonicalization for relative paths in PR #1711 / #1655
  3149. (implement /./ relpath hack), there would be a changed repo location warning
  3150. and the user would be asked if this is ok. this would break automation and
  3151. require manual intervention, which is unwanted.
  3152. thus, we automatically fix the previous_location config entry, if it only
  3153. changed in the expected way, but still means the same location.
  3154. - docs:
  3155. - deployment.rst: do not use bare variables in ansible snippet
  3156. - add clarification about append-only mode, #1689
  3157. - setup.py: add comment about requiring llfuse, #1726
  3158. - update usage.rst / api.rst
  3159. - repo url / archive location docs + typo fix
  3160. - quickstart: add a comment about other (remote) filesystems
  3161. - vagrant / tests:
  3162. - no chown when rsyncing (fixes boxes w/o vagrant group)
  3163. - fix FUSE permission issues on linux/freebsd, #1544
  3164. - skip FUSE test for borg binary + fakeroot
  3165. - ignore security.selinux xattrs, fixes tests on centos, #1735
  3166. Version 1.0.8rc1 (2016-10-17)
  3167. -----------------------------
  3168. Bug fixes:
  3169. - fix signal handling (SIGINT, SIGTERM, SIGHUP), #1620 #1593
  3170. Fixes e.g. leftover lock files for quickly repeated signals (e.g. Ctrl-C
  3171. Ctrl-C) or lost connections or systemd sending SIGHUP.
  3172. - progress display: adapt formatting to narrow screens, do not crash, #1628
  3173. - borg create --read-special - fix crash on broken symlink, #1584.
  3174. also correctly processes broken symlinks. before this regressed to a crash
  3175. (5b45385) a broken symlink would've been skipped.
  3176. - process_symlink: fix missing backup_io()
  3177. Fixes a chmod/chown/chgrp/unlink/rename/... crash race between getting
  3178. dirents and dispatching to process_symlink.
  3179. - yes(): abort on wrong answers, saying so, #1622
  3180. - fixed exception borg serve raised when connection was closed before repository
  3181. was opened. Add an error message for this.
  3182. - fix read-from-closed-FD issue, #1551
  3183. (this seems not to get triggered in 1.0.x, but was discovered in master)
  3184. - hashindex: fix iterators (always raise StopIteration when exhausted)
  3185. (this seems not to get triggered in 1.0.x, but was discovered in master)
  3186. - enable relative paths in ssh:// repo URLs, via /./relpath hack, #1655
  3187. - allow repo paths with colons, #1705
  3188. - update changed repo location immediately after acceptance, #1524
  3189. - fix debug get-obj / delete-obj crash if object not found and remote repo,
  3190. #1684
  3191. - pyinstaller: use a spec file to build borg.exe binary, exclude osxfuse dylib
  3192. on Mac OS X (avoids mismatch lib <-> driver), #1619
  3193. New features:
  3194. - add "borg key export" / "borg key import" commands, #1555, so users are able
  3195. to backup / restore their encryption keys more easily.
  3196. Supported formats are the keyfile format used by borg internally and a
  3197. special "paper" format with by line checksums for printed backups. For the
  3198. paper format, the import is an interactive process which checks each line as
  3199. soon as it is input.
  3200. - add "borg debug-refcount-obj" to determine a repo objects' referrer counts,
  3201. #1352
  3202. Other changes:
  3203. - add "borg debug ..." subcommands
  3204. (borg debug-* still works, but will be removed in borg 1.1)
  3205. - setup.py: Add subcommand support to build_usage.
  3206. - remote: change exception message for unexpected RPC data format to indicate
  3207. dataflow direction.
  3208. - improved messages / error reporting:
  3209. - IntegrityError: add placeholder for message, so that the message we give
  3210. appears not only in the traceback, but also in the (short) error message,
  3211. #1572
  3212. - borg.key: include chunk id in exception msgs, #1571
  3213. - better messages for cache newer than repo, #1700
  3214. - vagrant (testing/build VMs):
  3215. - upgrade OSXfuse / FUSE for macOS to 3.5.2
  3216. - update Debian Wheezy boxes, #1686
  3217. - openbsd / netbsd: use own boxes, fixes misc rsync installation and
  3218. FUSE/llfuse related testing issues, #1695 #1696 #1670 #1671 #1728
  3219. - docs:
  3220. - add docs for "key export" and "key import" commands, #1641
  3221. - fix inconsistency in FAQ (pv-wrapper).
  3222. - fix second block in "Easy to use" section not showing on GitHub, #1576
  3223. - add bestpractices badge
  3224. - link reference docs and faq about BORG_FILES_CACHE_TTL, #1561
  3225. - improve borg info --help, explain size infos, #1532
  3226. - add release signing key / security contact to README, #1560
  3227. - add contribution guidelines for developers
  3228. - development.rst: add sphinx_rtd_theme to the sphinx install command
  3229. - adjust border color in borg.css
  3230. - add debug-info usage help file
  3231. - internals.rst: fix typos
  3232. - setup.py: fix build_usage to always process all commands
  3233. - added docs explaining multiple --restrict-to-path flags, #1602
  3234. - add more specific warning about write-access debug commands, #1587
  3235. - clarify FAQ regarding backup of virtual machines, #1672
  3236. - tests:
  3237. - work around FUSE xattr test issue with recent fakeroot
  3238. - simplify repo/hashindex tests
  3239. - travis: test FUSE-enabled borg, use trusty to have a recent FUSE
  3240. - re-enable FUSE tests for RemoteArchiver (no deadlocks any more)
  3241. - clean env for pytest based tests, #1714
  3242. - fuse_mount contextmanager: accept any options
  3243. Version 1.0.7 (2016-08-19)
  3244. --------------------------
  3245. Security fixes:
  3246. - borg serve: fix security issue with remote repository access, #1428
  3247. If you used e.g. --restrict-to-path /path/client1/ (with or without trailing
  3248. slash does not make a difference), it acted like a path prefix match using
  3249. /path/client1 (note the missing trailing slash) - the code then also allowed
  3250. working in e.g. /path/client13 or /path/client1000.
  3251. As this could accidentally lead to major security/privacy issues depending on
  3252. the paths you use, the behaviour was changed to be a strict directory match.
  3253. That means --restrict-to-path /path/client1 (with or without trailing slash
  3254. does not make a difference) now uses /path/client1/ internally (note the
  3255. trailing slash here!) for matching and allows precisely that path AND any
  3256. path below it. So, /path/client1 is allowed, /path/client1/repo1 is allowed,
  3257. but not /path/client13 or /path/client1000.
  3258. If you willingly used the undocumented (dangerous) previous behaviour, you
  3259. may need to rearrange your --restrict-to-path paths now. We are sorry if
  3260. that causes work for you, but we did not want a potentially dangerous
  3261. behaviour in the software (not even using a for-backwards-compat option).
  3262. Bug fixes:
  3263. - fixed repeated LockTimeout exceptions when borg serve tried to write into
  3264. a already write-locked repo (e.g. by a borg mount), #502 part b)
  3265. This was solved by the fix for #1220 in 1.0.7rc1 already.
  3266. - fix cosmetics + file leftover for "not a valid borg repository", #1490
  3267. - Cache: release lock if cache is invalid, #1501
  3268. - borg extract --strip-components: fix leak of preloaded chunk contents
  3269. - Repository, when a InvalidRepository exception happens:
  3270. - fix spurious, empty lock.roster
  3271. - fix repo not closed cleanly
  3272. New features:
  3273. - implement borg debug-info, fixes #1122
  3274. (just calls already existing code via cli, same output as below tracebacks)
  3275. Other changes:
  3276. - skip the O_NOATIME test on GNU Hurd, fixes #1315
  3277. (this is a very minor issue and the GNU Hurd project knows the bug)
  3278. - document using a clean repo to test / build the release
  3279. Version 1.0.7rc2 (2016-08-13)
  3280. -----------------------------
  3281. Bug fixes:
  3282. - do not write objects to repository that are bigger than the allowed size,
  3283. borg will reject reading them, #1451.
  3284. Important: if you created archives with many millions of files or
  3285. directories, please verify if you can open them successfully,
  3286. e.g. try a "borg list REPO::ARCHIVE".
  3287. - lz4 compression: dynamically enlarge the (de)compression buffer, the static
  3288. buffer was not big enough for archives with extremely many items, #1453
  3289. - larger item metadata stream chunks, raise archive item limit by 8x, #1452
  3290. - fix untracked segments made by moved DELETEs, #1442
  3291. Impact: Previously (metadata) segments could become untracked when deleting data,
  3292. these would never be cleaned up.
  3293. - extended attributes (xattrs) related fixes:
  3294. - fixed a race condition in xattrs querying that led to the entire file not
  3295. being backed up (while logging the error, exit code = 1), #1469
  3296. - fixed a race condition in xattrs querying that led to a crash, #1462
  3297. - raise OSError including the error message derived from errno, deal with
  3298. path being a integer FD
  3299. Other changes:
  3300. - print active env var override by default, #1467
  3301. - xattr module: refactor code, deduplicate, clean up
  3302. - repository: split object size check into too small and too big
  3303. - add a transaction_id assertion, so borg init on a broken (inconsistent)
  3304. filesystem does not look like a coding error in borg, but points to the
  3305. real problem.
  3306. - explain confusing TypeError caused by compat support for old servers, #1456
  3307. - add forgotten usage help file from build_usage
  3308. - refactor/unify buffer code into helpers.Buffer class, add tests
  3309. - docs:
  3310. - document archive limitation, #1452
  3311. - improve prune examples
  3312. Version 1.0.7rc1 (2016-08-05)
  3313. -----------------------------
  3314. Bug fixes:
  3315. - fix repo lock deadlocks (related to lock upgrade), #1220
  3316. - catch unpacker exceptions, resync, #1351
  3317. - fix borg break-lock ignoring BORG_REPO env var, #1324
  3318. - files cache performance fixes (fixes unnecessary re-reading/chunking/
  3319. hashing of unmodified files for some use cases):
  3320. - fix unintended file cache eviction, #1430
  3321. - implement BORG_FILES_CACHE_TTL, update FAQ, raise default TTL from 10
  3322. to 20, #1338
  3323. - FUSE:
  3324. - cache partially read data chunks (performance), #965, #966
  3325. - always create a root dir, #1125
  3326. - use an OrderedDict for helptext, making the build reproducible, #1346
  3327. - RemoteRepository init: always call close on exceptions, #1370 (cosmetic)
  3328. - ignore stdout/stderr broken pipe errors (cosmetic), #1116
  3329. New features:
  3330. - better borg versions management support (useful esp. for borg servers
  3331. wanting to offer multiple borg versions and for clients wanting to choose
  3332. a specific server borg version), #1392:
  3333. - add BORG_VERSION environment variable before executing "borg serve" via ssh
  3334. - add new placeholder {borgversion}
  3335. - substitute placeholders in --remote-path
  3336. - borg init --append-only option (makes using the more secure append-only mode
  3337. more convenient. when used remotely, this requires 1.0.7+ also on the borg
  3338. server), #1291.
  3339. Other changes:
  3340. - Vagrantfile:
  3341. - darwin64: upgrade to FUSE for macOS 3.4.1 (aka osxfuse), #1378
  3342. - xenial64: use user "ubuntu", not "vagrant" (as usual), #1331
  3343. - tests:
  3344. - fix FUSE tests on OS X, #1433
  3345. - docs:
  3346. - FAQ: add backup using stable filesystem names recommendation
  3347. - FAQ about glibc compatibility added, #491, glibc-check improved
  3348. - FAQ: 'A' unchanged file; remove ambiguous entry age sentence.
  3349. - OS X: install pkg-config to build with FUSE support, fixes #1400
  3350. - add notes about shell/sudo pitfalls with env. vars, #1380
  3351. - added platform feature matrix
  3352. - implement borg debug-dump-repo-objs
  3353. Version 1.0.6 (2016-07-12)
  3354. --------------------------
  3355. Bug fixes:
  3356. - Linux: handle multiple LD_PRELOAD entries correctly, #1314, #1111
  3357. - Fix crash with unclear message if the libc is not found, #1314, #1111
  3358. Other changes:
  3359. - tests:
  3360. - Fixed O_NOATIME tests for Solaris and GNU Hurd, #1315
  3361. - Fixed sparse file tests for (file) systems not supporting it, #1310
  3362. - docs:
  3363. - Fixed syntax highlighting, #1313
  3364. - misc docs: added data processing overview picture
  3365. Version 1.0.6rc1 (2016-07-10)
  3366. -----------------------------
  3367. New features:
  3368. - borg check --repair: heal damaged files if missing chunks re-appear (e.g. if
  3369. the previously missing chunk was added again in a later backup archive),
  3370. #148. (*) Also improved logging.
  3371. Bug fixes:
  3372. - sync_dir: silence fsync() failing with EINVAL, #1287
  3373. Some network filesystems (like smbfs) don't support this and we use this in
  3374. repository code.
  3375. - borg mount (FUSE):
  3376. - fix directories being shadowed when contained paths were also specified,
  3377. #1295
  3378. - raise I/O Error (EIO) on damaged files (unless -o allow_damaged_files is
  3379. used), #1302. (*)
  3380. - borg extract: warn if a damaged file is extracted, #1299. (*)
  3381. - Added some missing return code checks (ChunkIndex._add, hashindex_resize).
  3382. - borg check: fix/optimize initial hash table size, avoids resize of the table.
  3383. Other changes:
  3384. - tests:
  3385. - add more FUSE tests, #1284
  3386. - deduplicate FUSE (u)mount code
  3387. - fix borg binary test issues, #862
  3388. - docs:
  3389. - changelog: added release dates to older borg releases
  3390. - fix some sphinx (docs generator) warnings, #881
  3391. Notes:
  3392. (*) Some features depend on information (chunks_healthy list) added to item
  3393. metadata when a file with missing chunks was "repaired" using all-zero
  3394. replacement chunks. The chunks_healthy list is generated since borg 1.0.4,
  3395. thus borg can't recognize such "repaired" (but content-damaged) files if the
  3396. repair was done with an older borg version.
  3397. Version 1.0.5 (2016-07-07)
  3398. --------------------------
  3399. Bug fixes:
  3400. - borg mount: fix FUSE crash in xattr code on Linux introduced in 1.0.4, #1282
  3401. Other changes:
  3402. - backport some FAQ entries from master branch
  3403. - add release helper scripts
  3404. - Vagrantfile:
  3405. - centos6: no FUSE, don't build binary
  3406. - add xz for redhat-like dists
  3407. Version 1.0.4 (2016-07-07)
  3408. --------------------------
  3409. New features:
  3410. - borg serve --append-only, #1168
  3411. This was included because it was a simple change (append-only functionality
  3412. was already present via repository config file) and makes better security now
  3413. practically usable.
  3414. - BORG_REMOTE_PATH environment variable, #1258
  3415. This was included because it was a simple change (--remote-path cli option
  3416. was already present) and makes borg much easier to use if you need it.
  3417. - Repository: cleanup incomplete transaction on "no space left" condition.
  3418. In many cases, this can avoid a 100% full repo filesystem (which is very
  3419. problematic as borg always needs free space - even to delete archives).
  3420. Bug fixes:
  3421. - Fix wrong handling and reporting of OSErrors in borg create, #1138.
  3422. This was a serious issue: in the context of "borg create", errors like
  3423. repository I/O errors (e.g. disk I/O errors, ssh repo connection errors)
  3424. were handled badly and did not lead to a crash (which would be good for this
  3425. case, because the repo transaction would be incomplete and trigger a
  3426. transaction rollback to clean up).
  3427. Now, error handling for source files is cleanly separated from every other
  3428. error handling, so only problematic input files are logged and skipped.
  3429. - Implement fail-safe error handling for borg extract.
  3430. Note that this isn't nearly as critical as the borg create error handling
  3431. bug, since nothing is written to the repo. So this was "merely" misleading
  3432. error reporting.
  3433. - Add missing error handler in directory attr restore loop.
  3434. - repo: make sure write data hits disk before the commit tag (#1236) and also
  3435. sync the containing directory.
  3436. - FUSE: getxattr fail must use errno.ENOATTR, #1126
  3437. (fixes Mac OS X Finder malfunction: "zero bytes" file length, access denied)
  3438. - borg check --repair: do not lose information about the good/original chunks.
  3439. If we do not lose the original chunk IDs list when "repairing" a file
  3440. (replacing missing chunks with all-zero chunks), we have a chance to "heal"
  3441. the file back into its original state later, in case the chunks re-appear
  3442. (e.g. in a fresh backup). Healing is not implemented yet, see #148.
  3443. - fixes for --read-special mode:
  3444. - ignore known files cache, #1241
  3445. - fake regular file mode, #1214
  3446. - improve symlinks handling, #1215
  3447. - remove passphrase from subprocess environment, #1105
  3448. - Ignore empty index file (will trigger index rebuild), #1195
  3449. - add missing placeholder support for --prefix, #1027
  3450. - improve exception handling for placeholder replacement
  3451. - catch and format exceptions in arg parsing
  3452. - helpers: fix "undefined name 'e'" in exception handler
  3453. - better error handling for missing repo manifest, #1043
  3454. - borg delete:
  3455. - make it possible to delete a repo without manifest
  3456. - borg delete --forced allows one to delete corrupted archives, #1139
  3457. - borg check:
  3458. - make borg check work for empty repo
  3459. - fix resync and msgpacked item qualifier, #1135
  3460. - rebuild_manifest: fix crash if 'name' or 'time' key were missing.
  3461. - better validation of item metadata dicts, #1130
  3462. - better validation of archive metadata dicts
  3463. - close the repo on exit - even if rollback did not work, #1197.
  3464. This is rather cosmetic, it avoids repo closing in the destructor.
  3465. - tests:
  3466. - fix sparse file test, #1170
  3467. - flake8: ignore new F405, #1185
  3468. - catch "invalid argument" on cygwin, #257
  3469. - fix sparseness assertion in test prep, #1264
  3470. Other changes:
  3471. - make borg build/work on OpenSSL 1.0 and 1.1, #1187
  3472. - docs / help:
  3473. - fix / clarify prune help, #1143
  3474. - fix "patterns" help formatting
  3475. - add missing docs / help about placeholders
  3476. - resources: rename atticmatic to borgmatic
  3477. - document sshd settings, #545
  3478. - more details about checkpoints, add split trick, #1171
  3479. - support docs: add freenode web chat link, #1175
  3480. - add prune visualization / example, #723
  3481. - add note that Fnmatch is default, #1247
  3482. - make clear that lzma levels > 6 are a waste of cpu cycles
  3483. - add a "do not edit" note to auto-generated files, #1250
  3484. - update cygwin installation docs
  3485. - repository interoperability with borg master (1.1dev) branch:
  3486. - borg check: read item metadata keys from manifest, #1147
  3487. - read v2 hints files, #1235
  3488. - fix hints file "unknown version" error handling bug
  3489. - tests: add tests for format_line
  3490. - llfuse: update version requirement for freebsd
  3491. - Vagrantfile:
  3492. - use openbsd 5.9, #716
  3493. - do not install llfuse on netbsd (broken)
  3494. - update OSXfuse to version 3.3.3
  3495. - use Python 3.5.2 to build the binaries
  3496. - glibc compatibility checker: scripts/glibc_check.py
  3497. - add .eggs to .gitignore
  3498. Version 1.0.3 (2016-05-20)
  3499. --------------------------
  3500. Bug fixes:
  3501. - prune: avoid that checkpoints are kept and completed archives are deleted in
  3502. a prune run), #997
  3503. - prune: fix commandline argument validation - some valid command lines were
  3504. considered invalid (annoying, but harmless), #942
  3505. - fix capabilities extraction on Linux (set xattrs last, after chown()), #1069
  3506. - repository: fix commit tags being seen in data
  3507. - when probing key files, do binary reads. avoids crash when non-borg binary
  3508. files are located in borg's key files directory.
  3509. - handle SIGTERM and make a clean exit - avoids orphan lock files.
  3510. - repository cache: don't cache large objects (avoid using lots of temp. disk
  3511. space), #1063
  3512. Other changes:
  3513. - Vagrantfile: OS X: update osxfuse / install lzma package, #933
  3514. - setup.py: add check for platform_darwin.c
  3515. - setup.py: on freebsd, use a llfuse release that builds ok
  3516. - docs / help:
  3517. - update readthedocs URLs, #991
  3518. - add missing docs for "borg break-lock", #992
  3519. - borg create help: add some words to about the archive name
  3520. - borg create help: document format tags, #894
  3521. Version 1.0.2 (2016-04-16)
  3522. --------------------------
  3523. Bug fixes:
  3524. - fix malfunction and potential corruption on (nowadays rather rare) big-endian
  3525. architectures or bi-endian archs in (rare) BE mode. #886, #889
  3526. cache resync / index merge was malfunctioning due to this, potentially
  3527. leading to data loss. borg info had cosmetic issues (displayed wrong values).
  3528. note: all (widespread) little-endian archs (like x86/x64) or bi-endian archs
  3529. in (widespread) LE mode (like ARMEL, MIPSEL, ...) were NOT affected.
  3530. - add overflow and range checks for 1st (special) uint32 of the hashindex
  3531. values, switch from int32 to uint32.
  3532. - fix so that refcount will never overflow, but just stick to max. value after
  3533. a overflow would have occurred.
  3534. - borg delete: fix --cache-only for broken caches, #874
  3535. Makes --cache-only idempotent: it won't fail if the cache is already deleted.
  3536. - fixed borg create --one-file-system erroneously traversing into other
  3537. filesystems (if starting fs device number was 0), #873
  3538. - workaround a bug in Linux fadvise FADV_DONTNEED, #907
  3539. Other changes:
  3540. - better test coverage for hashindex, incl. overflow testing, checking correct
  3541. computations so endianness issues would be discovered.
  3542. - reproducible doc for ProgressIndicator*, make the build reproducible.
  3543. - use latest llfuse for vagrant machines
  3544. - docs:
  3545. - use /path/to/repo in examples, fixes #901
  3546. - fix confusing usage of "repo" as archive name (use "arch")
  3547. Version 1.0.1 (2016-04-08)
  3548. --------------------------
  3549. New features:
  3550. Usually there are no new features in a bugfix release, but these were added
  3551. due to their high impact on security/safety/speed or because they are fixes
  3552. also:
  3553. - append-only mode for repositories, #809, #36 (see docs)
  3554. - borg create: add --ignore-inode option to make borg detect unmodified files
  3555. even if your filesystem does not have stable inode numbers (like sshfs and
  3556. possibly CIFS).
  3557. - add options --warning, --error, --critical for missing log levels, #826.
  3558. it's not recommended to suppress warnings or errors, but the user may decide
  3559. this on his own.
  3560. note: --warning is not given to borg serve so a <= 1.0.0 borg will still
  3561. work as server (it is not needed as it is the default).
  3562. do not use --error or --critical when using a <= 1.0.0 borg server.
  3563. Bug fixes:
  3564. - fix silently skipping EIO, #748
  3565. - add context manager for Repository (avoid orphan repository locks), #285
  3566. - do not sleep for >60s while waiting for lock, #773
  3567. - unpack file stats before passing to FUSE
  3568. - fix build on illumos
  3569. - don't try to backup doors or event ports (Solaris and derivatives)
  3570. - remove useless/misleading libc version display, #738
  3571. - test suite: reset exit code of persistent archiver, #844
  3572. - RemoteRepository: clean up pipe if remote open() fails
  3573. - Remote: don't print tracebacks for Error exceptions handled downstream, #792
  3574. - if BORG_PASSPHRASE is present but wrong, don't prompt for password, but fail
  3575. instead, #791
  3576. - ArchiveChecker: move "orphaned objects check skipped" to INFO log level, #826
  3577. - fix capitalization, add ellipses, change log level to debug for 2 messages,
  3578. #798
  3579. Other changes:
  3580. - update llfuse requirement, llfuse 1.0 works
  3581. - update OS / dist packages on build machines, #717
  3582. - prefer showing --info over -v in usage help, #859
  3583. - docs:
  3584. - fix cygwin requirements (gcc-g++)
  3585. - document how to debug / file filesystem issues, #664
  3586. - fix reproducible build of api docs
  3587. - RTD theme: CSS !important overwrite, #727
  3588. - Document logo font. Recreate logo png. Remove GIMP logo file.
  3589. Version 1.0.0 (2016-03-05)
  3590. --------------------------
  3591. The major release number change (0.x -> 1.x) indicates bigger incompatible
  3592. changes, please read the compatibility notes, adapt / test your scripts and
  3593. check your backup logs.
  3594. Compatibility notes:
  3595. - drop support for python 3.2 and 3.3, require 3.4 or 3.5, #221 #65 #490
  3596. note: we provide binaries that include python 3.5.1 and everything else
  3597. needed. they are an option in case you are stuck with < 3.4 otherwise.
  3598. - change encryption to be on by default (using "repokey" mode)
  3599. - moved keyfile keys from ~/.borg/keys to ~/.config/borg/keys,
  3600. you can either move them manually or run "borg upgrade <REPO>"
  3601. - remove support for --encryption=passphrase,
  3602. use borg migrate-to-repokey to switch to repokey mode, #97
  3603. - remove deprecated --compression <number>,
  3604. use --compression zlib,<number> instead
  3605. in case of 0, you could also use --compression none
  3606. - remove deprecated --hourly/daily/weekly/monthly/yearly
  3607. use --keep-hourly/daily/weekly/monthly/yearly instead
  3608. - remove deprecated --do-not-cross-mountpoints,
  3609. use --one-file-system instead
  3610. - disambiguate -p option, #563:
  3611. - -p now is same as --progress
  3612. - -P now is same as --prefix
  3613. - remove deprecated "borg verify",
  3614. use "borg extract --dry-run" instead
  3615. - cleanup environment variable semantics, #355
  3616. the environment variables used to be "yes sayers" when set, this was
  3617. conceptually generalized to "automatic answerers" and they just give their
  3618. value as answer (as if you typed in that value when being asked).
  3619. See the "usage" / "Environment Variables" section of the docs for details.
  3620. - change the builtin default for --chunker-params, create 2MiB chunks, #343
  3621. --chunker-params new default: 19,23,21,4095 - old default: 10,23,16,4095
  3622. one of the biggest issues with borg < 1.0 (and also attic) was that it had a
  3623. default target chunk size of 64kiB, thus it created a lot of chunks and thus
  3624. also a huge chunk management overhead (high RAM and disk usage).
  3625. please note that the new default won't change the chunks that you already
  3626. have in your repository. the new big chunks do not deduplicate with the old
  3627. small chunks, so expect your repo to grow at least by the size of every
  3628. changed file and in the worst case (e.g. if your files cache was lost / is
  3629. not used) by the size of every file (minus any compression you might use).
  3630. in case you want to immediately see a much lower resource usage (RAM / disk)
  3631. for chunks management, it might be better to start with a new repo than
  3632. continuing in the existing repo (with an existing repo, you'ld have to wait
  3633. until all archives with small chunks got pruned to see a lower resource
  3634. usage).
  3635. if you used the old --chunker-params default value (or if you did not use
  3636. --chunker-params option at all) and you'ld like to continue using small
  3637. chunks (and you accept the huge resource usage that comes with that), just
  3638. explicitly use borg create --chunker-params=10,23,16,4095.
  3639. - archive timestamps: the 'time' timestamp now refers to archive creation
  3640. start time (was: end time), the new 'time_end' timestamp refers to archive
  3641. creation end time. This might affect prune if your backups take rather long.
  3642. if you give a timestamp via cli this is stored into 'time', therefore it now
  3643. needs to mean archive creation start time.
  3644. New features:
  3645. - implement password roundtrip, #695
  3646. Bug fixes:
  3647. - remote end does not need cache nor keys directories, do not create them, #701
  3648. - added retry counter for passwords, #703
  3649. Other changes:
  3650. - fix compiler warnings, #697
  3651. - docs:
  3652. - update README.rst to new changelog location in docs/changes.rst
  3653. - add Teemu to AUTHORS
  3654. - changes.rst: fix old chunker params, #698
  3655. - FAQ: how to limit bandwidth
  3656. Version 1.0.0rc2 (2016-02-28)
  3657. -----------------------------
  3658. New features:
  3659. - format options for location: user, pid, fqdn, hostname, now, utcnow, user
  3660. - borg list --list-format
  3661. - borg prune -v --list enables the keep/prune list output, #658
  3662. Bug fixes:
  3663. - fix _open_rb noatime handling, #657
  3664. - add a simple archivename validator, #680
  3665. - borg create --stats: show timestamps in localtime, use same labels/formatting
  3666. as borg info, #651
  3667. - llfuse compatibility fixes (now compatible with: 0.40, 0.41, 0.42)
  3668. Other changes:
  3669. - it is now possible to use "pip install borgbackup[fuse]" to automatically
  3670. install the llfuse dependency using the correct version requirement
  3671. for it. you still need to care about having installed the FUSE / build
  3672. related OS package first, though, so that building llfuse can succeed.
  3673. - Vagrant: drop Ubuntu Precise (12.04) - does not have Python >= 3.4
  3674. - Vagrant: use pyinstaller v3.1.1 to build binaries
  3675. - docs:
  3676. - borg upgrade: add to docs that only LOCAL repos are supported
  3677. - borg upgrade also handles borg 0.xx -> 1.0
  3678. - use pip extras or requirements file to install llfuse
  3679. - fix order in release process
  3680. - updated usage docs and other minor / cosmetic fixes
  3681. - verified borg examples in docs, #644
  3682. - freebsd dependency installation and FUSE configuration, #649
  3683. - add example how to restore a raw device, #671
  3684. - add a hint about the dev headers needed when installing from source
  3685. - add examples for delete (and handle delete after list, before prune), #656
  3686. - update example for borg create -v --stats (use iso datetime format), #663
  3687. - added example to BORG_RSH docs
  3688. - "connection closed by remote": add FAQ entry and point to issue #636
  3689. Version 1.0.0rc1 (2016-02-07)
  3690. -----------------------------
  3691. New features:
  3692. - borg migrate-to-repokey ("passphrase" -> "repokey" encryption key mode)
  3693. - implement --short for borg list REPO, #611
  3694. - implement --list for borg extract (consistency with borg create)
  3695. - borg serve: overwrite client's --restrict-to-path with ssh forced command's
  3696. option value (but keep everything else from the client commandline), #544
  3697. - use $XDG_CONFIG_HOME/keys for keyfile keys (~/.config/borg/keys), #515
  3698. - "borg upgrade" moves the keyfile keys to the new location
  3699. - display both archive creation start and end time in "borg info", #627
  3700. Bug fixes:
  3701. - normalize trailing slashes for the repository path, #606
  3702. - Cache: fix exception handling in __init__, release lock, #610
  3703. Other changes:
  3704. - suppress unneeded exception context (PEP 409), simpler tracebacks
  3705. - removed special code needed to deal with imperfections / incompatibilities /
  3706. missing stuff in py 3.2/3.3, simplify code that can be done simpler in 3.4
  3707. - removed some version requirements that were kept on old versions because
  3708. newer did not support py 3.2 any more
  3709. - use some py 3.4+ stdlib code instead of own/openssl/pypi code:
  3710. - use os.urandom instead of own cython openssl RAND_bytes wrapper, #493
  3711. - use hashlib.pbkdf2_hmac from py stdlib instead of own openssl wrapper
  3712. - use hmac.compare_digest instead of == operator (constant time comparison)
  3713. - use stat.filemode instead of homegrown code
  3714. - use "mock" library from stdlib, #145
  3715. - remove borg.support (with non-broken argparse copy), it is ok in 3.4+, #358
  3716. - Vagrant: copy CHANGES.rst as symlink, #592
  3717. - cosmetic code cleanups, add flake8 to tox/travis, #4
  3718. - docs / help:
  3719. - make "borg -h" output prettier, #591
  3720. - slightly rephrase prune help
  3721. - add missing example for --list option of borg create
  3722. - quote exclude line that includes an asterisk to prevent shell expansion
  3723. - fix dead link to license
  3724. - delete Ubuntu Vivid, it is not supported anymore (EOL)
  3725. - OS X binary does not work for older OS X releases, #629
  3726. - borg serve's special support for forced/original ssh commands, #544
  3727. - misc. updates and fixes
  3728. Version 0.30.0 (2016-01-23)
  3729. ---------------------------
  3730. Compatibility notes:
  3731. - you may need to use -v (or --info) more often to actually see output emitted
  3732. at INFO log level (because it is suppressed at the default WARNING log level).
  3733. See the "general" section in the usage docs.
  3734. - for borg create, you need --list (additionally to -v) to see the long file
  3735. list (was needed so you can have e.g. --stats alone without the long list)
  3736. - see below about BORG_DELETE_I_KNOW_WHAT_I_AM_DOING (was:
  3737. BORG_CHECK_I_KNOW_WHAT_I_AM_DOING)
  3738. Bug fixes:
  3739. - fix crash when using borg create --dry-run --keep-tag-files, #570
  3740. - make sure teardown with cleanup happens for Cache and RepositoryCache,
  3741. avoiding leftover locks and TEMP dir contents, #285 (partially), #548
  3742. - fix locking KeyError, partial fix for #502
  3743. - log stats consistently, #526
  3744. - add abbreviated weekday to timestamp format, fixes #496
  3745. - strip whitespace when loading exclusions from file
  3746. - unset LD_LIBRARY_PATH before invoking ssh, fixes strange OpenSSL library
  3747. version warning when using the borg binary, #514
  3748. - add some error handling/fallback for C library loading, #494
  3749. - added BORG_DELETE_I_KNOW_WHAT_I_AM_DOING for check in "borg delete", #503
  3750. - remove unused "repair" rpc method name
  3751. New features:
  3752. - borg create: implement exclusions using regular expression patterns.
  3753. - borg create: implement inclusions using patterns.
  3754. - borg extract: support patterns, #361
  3755. - support different styles for patterns:
  3756. - fnmatch (`fm:` prefix, default when omitted), like borg <= 0.29.
  3757. - shell (`sh:` prefix) with `*` not matching directory separators and
  3758. `**/` matching 0..n directories
  3759. - path prefix (`pp:` prefix, for unifying borg create pp1 pp2 into the
  3760. patterns system), semantics like in borg <= 0.29
  3761. - regular expression (`re:`), new!
  3762. - --progress option for borg upgrade (#291) and borg delete <archive>
  3763. - update progress indication more often (e.g. for borg create within big
  3764. files or for borg check repo), #500
  3765. - finer chunker granularity for items metadata stream, #547, #487
  3766. - borg create --list now used (additionally to -v) to enable the verbose
  3767. file list output
  3768. - display borg version below tracebacks, #532
  3769. Other changes:
  3770. - hashtable size (and thus: RAM and disk consumption) follows a growth policy:
  3771. grows fast while small, grows slower when getting bigger, #527
  3772. - Vagrantfile: use pyinstaller 3.1 to build binaries, freebsd sqlite3 fix,
  3773. fixes #569
  3774. - no separate binaries for centos6 any more because the generic linux binaries
  3775. also work on centos6 (or in general: on systems with a slightly older glibc
  3776. than debian7
  3777. - dev environment: require virtualenv<14.0 so we get a py32 compatible pip
  3778. - docs:
  3779. - add space-saving chunks.archive.d trick to FAQ
  3780. - important: clarify -v and log levels in usage -> general, please read!
  3781. - sphinx configuration: create a simple man page from usage docs
  3782. - add a repo server setup example
  3783. - disable unneeded SSH features in authorized_keys examples for security.
  3784. - borg prune only knows "--keep-within" and not "--within"
  3785. - add gource video to resources docs, #507
  3786. - add netbsd install instructions
  3787. - authors: make it more clear what refers to borg and what to attic
  3788. - document standalone binary requirements, #499
  3789. - rephrase the mailing list section
  3790. - development docs: run build_api and build_usage before tagging release
  3791. - internals docs: hash table max. load factor is 0.75 now
  3792. - markup, typo, grammar, phrasing, clarifications and other fixes.
  3793. - add gcc gcc-c++ to redhat/fedora/corora install docs, fixes #583
  3794. Version 0.29.0 (2015-12-13)
  3795. ---------------------------
  3796. Compatibility notes:
  3797. - when upgrading to 0.29.0 you need to upgrade client as well as server
  3798. installations due to the locking and commandline interface changes otherwise
  3799. you'll get an error msg about a RPC protocol mismatch or a wrong commandline
  3800. option.
  3801. if you run a server that needs to support both old and new clients, it is
  3802. suggested that you have a "borg-0.28.2" and a "borg-0.29.0" command.
  3803. clients then can choose via e.g. "borg --remote-path=borg-0.29.0 ...".
  3804. - the default waiting time for a lock changed from infinity to 1 second for a
  3805. better interactive user experience. if the repo you want to access is
  3806. currently locked, borg will now terminate after 1s with an error message.
  3807. if you have scripts that shall wait for the lock for a longer time, use
  3808. --lock-wait N (with N being the maximum wait time in seconds).
  3809. Bug fixes:
  3810. - hash table tuning (better chosen hashtable load factor 0.75 and prime initial
  3811. size of 1031 gave ~1000x speedup in some scenarios)
  3812. - avoid creation of an orphan lock for one case, #285
  3813. - --keep-tag-files: fix file mode and multiple tag files in one directory, #432
  3814. - fixes for "borg upgrade" (attic repo converter), #466
  3815. - remove --progress isatty magic (and also --no-progress option) again, #476
  3816. - borg init: display proper repo URL
  3817. - fix format of umask in help pages, #463
  3818. New features:
  3819. - implement --lock-wait, support timeout for UpgradableLock, #210
  3820. - implement borg break-lock command, #157
  3821. - include system info below traceback, #324
  3822. - sane remote logging, remote stderr, #461:
  3823. - remote log output: intercept it and log it via local logging system,
  3824. with "Remote: " prefixed to message. log remote tracebacks.
  3825. - remote stderr: output it to local stderr with "Remote: " prefixed.
  3826. - add --debug and --info (same as --verbose) to set the log level of the
  3827. builtin logging configuration (which otherwise defaults to warning), #426
  3828. note: there are few messages emitted at DEBUG level currently.
  3829. - optionally configure logging via env var BORG_LOGGING_CONF
  3830. - add --filter option for status characters: e.g. to show only the added
  3831. or modified files (and also errors), use "borg create -v --filter=AME ...".
  3832. - more progress indicators, #394
  3833. - use ISO-8601 date and time format, #375
  3834. - "borg check --prefix" to restrict archive checking to that name prefix, #206
  3835. Other changes:
  3836. - hashindex_add C implementation (speed up cache re-sync for new archives)
  3837. - increase FUSE read_size to 1024 (speed up metadata operations)
  3838. - check/delete/prune --save-space: free unused segments quickly, #239
  3839. - increase rpc protocol version to 2 (see also Compatibility notes), #458
  3840. - silence borg by default (via default log level WARNING)
  3841. - get rid of C compiler warnings, #391
  3842. - upgrade OS X FUSE to 3.0.9 on the OS X binary build system
  3843. - use python 3.5.1 to build binaries
  3844. - docs:
  3845. - new mailing list borgbackup@python.org, #468
  3846. - readthedocs: color and logo improvements
  3847. - load coverage icons over SSL (avoids mixed content)
  3848. - more precise binary installation steps
  3849. - update release procedure docs about OS X FUSE
  3850. - FAQ entry about unexpected 'A' status for unchanged file(s), #403
  3851. - add docs about 'E' file status
  3852. - add "borg upgrade" docs, #464
  3853. - add developer docs about output and logging
  3854. - clarify encryption, add note about client-side encryption
  3855. - add resources section, with videos, talks, presentations, #149
  3856. - Borg moved to Arch Linux [community]
  3857. - fix wrong installation instructions for archlinux
  3858. Version 0.28.2 (2015-11-15)
  3859. ---------------------------
  3860. New features:
  3861. - borg create --exclude-if-present TAGFILE - exclude directories that have the
  3862. given file from the backup. You can additionally give --keep-tag-files to
  3863. preserve just the directory roots and the tag-files (but not backup other
  3864. directory contents), #395, attic #128, attic #142
  3865. Other changes:
  3866. - do not create docs sources at build time (just have them in the repo),
  3867. completely remove have_cython() hack, do not use the "mock" library at build
  3868. time, #384
  3869. - avoid hidden import, make it easier for PyInstaller, easier fix for #218
  3870. - docs:
  3871. - add description of item flags / status output, fixes #402
  3872. - explain how to regenerate usage and API files (build_api or
  3873. build_usage) and when to commit usage files directly into git, #384
  3874. - minor install docs improvements
  3875. Version 0.28.1 (2015-11-08)
  3876. ---------------------------
  3877. Bug fixes:
  3878. - do not try to build api / usage docs for production install,
  3879. fixes unexpected "mock" build dependency, #384
  3880. Other changes:
  3881. - avoid using msgpack.packb at import time
  3882. - fix formatting issue in changes.rst
  3883. - fix build on readthedocs
  3884. Version 0.28.0 (2015-11-08)
  3885. ---------------------------
  3886. Compatibility notes:
  3887. - changed return codes (exit codes), see docs. in short:
  3888. old: 0 = ok, 1 = error. now: 0 = ok, 1 = warning, 2 = error
  3889. New features:
  3890. - refactor return codes (exit codes), fixes #61
  3891. - add --show-rc option enable "terminating with X status, rc N" output, fixes 58, #351
  3892. - borg create backups atime and ctime additionally to mtime, fixes #317
  3893. - extract: support atime additionally to mtime
  3894. - FUSE: support ctime and atime additionally to mtime
  3895. - support borg --version
  3896. - emit a warning if we have a slow msgpack installed
  3897. - borg list --prefix=thishostname- REPO, fixes #205
  3898. - Debug commands (do not use except if you know what you do: debug-get-obj,
  3899. debug-put-obj, debug-delete-obj, debug-dump-archive-items.
  3900. Bug fixes:
  3901. - setup.py: fix bug related to BORG_LZ4_PREFIX processing
  3902. - fix "check" for repos that have incomplete chunks, fixes #364
  3903. - borg mount: fix unlocking of repository at umount time, fixes #331
  3904. - fix reading files without touching their atime, #334
  3905. - non-ascii ACL fixes for Linux, FreeBSD and OS X, #277
  3906. - fix acl_use_local_uid_gid() and add a test for it, attic #359
  3907. - borg upgrade: do not upgrade repositories in place by default, #299
  3908. - fix cascading failure with the index conversion code, #269
  3909. - borg check: implement 'cmdline' archive metadata value decoding, #311
  3910. - fix RobustUnpacker, it missed some metadata keys (new atime and ctime keys
  3911. were missing, but also bsdflags). add check for unknown metadata keys.
  3912. - create from stdin: also save atime, ctime (cosmetic)
  3913. - use default_notty=False for confirmations, fixes #345
  3914. - vagrant: fix msgpack installation on centos, fixes #342
  3915. - deal with unicode errors for symlinks in same way as for regular files and
  3916. have a helpful warning message about how to fix wrong locale setup, fixes #382
  3917. - add ACL keys the RobustUnpacker must know about
  3918. Other changes:
  3919. - improve file size displays, more flexible size formatters
  3920. - explicitly commit to the units standard, #289
  3921. - archiver: add E status (means that an error occurred when processing this
  3922. (single) item
  3923. - do binary releases via "github releases", closes #214
  3924. - create: use -x and --one-file-system (was: --do-not-cross-mountpoints), #296
  3925. - a lot of changes related to using "logging" module and screen output, #233
  3926. - show progress display if on a tty, output more progress information, #303
  3927. - factor out status output so it is consistent, fix surrogates removal,
  3928. maybe fixes #309
  3929. - move away from RawConfigParser to ConfigParser
  3930. - archive checker: better error logging, give chunk_id and sequence numbers
  3931. (can be used together with borg debug-dump-archive-items).
  3932. - do not mention the deprecated passphrase mode
  3933. - emit a deprecation warning for --compression N (giving a just a number)
  3934. - misc .coverragerc fixes (and coverage measurement improvements), fixes #319
  3935. - refactor confirmation code, reduce code duplication, add tests
  3936. - prettier error messages, fixes #307, #57
  3937. - tests:
  3938. - add a test to find disk-full issues, #327
  3939. - travis: also run tests on Python 3.5
  3940. - travis: use tox -r so it rebuilds the tox environments
  3941. - test the generated pyinstaller-based binary by archiver unit tests, #215
  3942. - vagrant: tests: announce whether fakeroot is used or not
  3943. - vagrant: add vagrant user to fuse group for debianoid systems also
  3944. - vagrant: llfuse install on darwin needs pkgconfig installed
  3945. - vagrant: use pyinstaller from develop branch, fixes #336
  3946. - benchmarks: test create, extract, list, delete, info, check, help, fixes #146
  3947. - benchmarks: test with both the binary and the python code
  3948. - archiver tests: test with both the binary and the python code, fixes #215
  3949. - make basic test more robust
  3950. - docs:
  3951. - moved docs to borgbackup.readthedocs.org, #155
  3952. - a lot of fixes and improvements, use mobile-friendly RTD standard theme
  3953. - use zlib,6 compression in some examples, fixes #275
  3954. - add missing rename usage to docs, closes #279
  3955. - include the help offered by borg help <topic> in the usage docs, fixes #293
  3956. - include a list of major changes compared to attic into README, fixes #224
  3957. - add OS X install instructions, #197
  3958. - more details about the release process, #260
  3959. - fix linux glibc requirement (binaries built on debian7 now)
  3960. - build: move usage and API generation to setup.py
  3961. - update docs about return codes, #61
  3962. - remove api docs (too much breakage on rtd)
  3963. - borgbackup install + basics presentation (asciinema)
  3964. - describe the current style guide in documentation
  3965. - add section about debug commands
  3966. - warn about not running out of space
  3967. - add example for rename
  3968. - improve chunker params docs, fixes #362
  3969. - minor development docs update
  3970. Version 0.27.0 (2015-10-07)
  3971. ---------------------------
  3972. New features:
  3973. - "borg upgrade" command - attic -> borg one time converter / migration, #21
  3974. - temporary hack to avoid using lots of disk space for chunks.archive.d, #235:
  3975. To use it: rm -rf chunks.archive.d ; touch chunks.archive.d
  3976. - respect XDG_CACHE_HOME, attic #181
  3977. - add support for arbitrary SSH commands, attic #99
  3978. - borg delete --cache-only REPO (only delete cache, not REPO), attic #123
  3979. Bug fixes:
  3980. - use Debian 7 (wheezy) to build pyinstaller borgbackup binaries, fixes slow
  3981. down observed when running the Centos6-built binary on Ubuntu, #222
  3982. - do not crash on empty lock.roster, fixes #232
  3983. - fix multiple issues with the cache config version check, #234
  3984. - fix segment entry header size check, attic #352
  3985. plus other error handling improvements / code deduplication there.
  3986. - always give segment and offset in repo IntegrityErrors
  3987. Other changes:
  3988. - stop producing binary wheels, remove docs about it, #147
  3989. - docs:
  3990. - add warning about prune
  3991. - generate usage include files only as needed
  3992. - development docs: add Vagrant section
  3993. - update / improve / reformat FAQ
  3994. - hint to single-file pyinstaller binaries from README
  3995. Version 0.26.1 (2015-09-28)
  3996. ---------------------------
  3997. This is a minor update, just docs and new pyinstaller binaries.
  3998. - docs update about python and binary requirements
  3999. - better docs for --read-special, fix #220
  4000. - re-built the binaries, fix #218 and #213 (glibc version issue)
  4001. - update web site about single-file pyinstaller binaries
  4002. Note: if you did a python-based installation, there is no need to upgrade.
  4003. Version 0.26.0 (2015-09-19)
  4004. ---------------------------
  4005. New features:
  4006. - Faster cache sync (do all in one pass, remove tar/compression stuff), #163
  4007. - BORG_REPO env var to specify the default repo, #168
  4008. - read special files as if they were regular files, #79
  4009. - implement borg create --dry-run, attic issue #267
  4010. - Normalize paths before pattern matching on OS X, #143
  4011. - support OpenBSD and NetBSD (except xattrs/ACLs)
  4012. - support / run tests on Python 3.5
  4013. Bug fixes:
  4014. - borg mount repo: use absolute path, attic #200, attic #137
  4015. - chunker: use off_t to get 64bit on 32bit platform, #178
  4016. - initialize chunker fd to -1, so it's not equal to STDIN_FILENO (0)
  4017. - fix reaction to "no" answer at delete repo prompt, #182
  4018. - setup.py: detect lz4.h header file location
  4019. - to support python < 3.2.4, add less buggy argparse lib from 3.2.6 (#194)
  4020. - fix for obtaining ``char *`` from temporary Python value (old code causes
  4021. a compile error on Mint 17.2)
  4022. - llfuse 0.41 install troubles on some platforms, require < 0.41
  4023. (UnicodeDecodeError exception due to non-ascii llfuse setup.py)
  4024. - cython code: add some int types to get rid of unspecific python add /
  4025. subtract operations (avoid ``undefined symbol FPE_``... error on some platforms)
  4026. - fix verbose mode display of stdin backup
  4027. - extract: warn if a include pattern never matched, fixes #209,
  4028. implement counters for Include/ExcludePatterns
  4029. - archive names with slashes are invalid, attic issue #180
  4030. - chunker: add a check whether the POSIX_FADV_DONTNEED constant is defined -
  4031. fixes building on OpenBSD.
  4032. Other changes:
  4033. - detect inconsistency / corruption / hash collision, #170
  4034. - replace versioneer with setuptools_scm, #106
  4035. - docs:
  4036. - pkg-config is needed for llfuse installation
  4037. - be more clear about pruning, attic issue #132
  4038. - unit tests:
  4039. - xattr: ignore security.selinux attribute showing up
  4040. - ext3 seems to need a bit more space for a sparse file
  4041. - do not test lzma level 9 compression (avoid MemoryError)
  4042. - work around strange mtime granularity issue on netbsd, fixes #204
  4043. - ignore st_rdev if file is not a block/char device, fixes #203
  4044. - stay away from the setgid and sticky mode bits
  4045. - use Vagrant to do easy cross-platform testing (#196), currently:
  4046. - Debian 7 "wheezy" 32bit, Debian 8 "jessie" 64bit
  4047. - Ubuntu 12.04 32bit, Ubuntu 14.04 64bit
  4048. - Centos 7 64bit
  4049. - FreeBSD 10.2 64bit
  4050. - OpenBSD 5.7 64bit
  4051. - NetBSD 6.1.5 64bit
  4052. - Darwin (OS X Yosemite)
  4053. Version 0.25.0 (2015-08-29)
  4054. ---------------------------
  4055. Compatibility notes:
  4056. - lz4 compression library (liblz4) is a new requirement (#156)
  4057. - the new compression code is very compatible: as long as you stay with zlib
  4058. compression, older borg releases will still be able to read data from a
  4059. repo/archive made with the new code (note: this is not the case for the
  4060. default "none" compression, use "zlib,0" if you want a "no compression" mode
  4061. that can be read by older borg). Also the new code is able to read repos and
  4062. archives made with older borg versions (for all zlib levels 0..9).
  4063. Deprecations:
  4064. - --compression N (with N being a number, as in 0.24) is deprecated.
  4065. We keep the --compression 0..9 for now to not break scripts, but it is
  4066. deprecated and will be removed later, so better fix your scripts now:
  4067. --compression 0 (as in 0.24) is the same as --compression zlib,0 (now).
  4068. BUT: if you do not want compression, you rather want --compression none
  4069. (which is the default).
  4070. --compression 1 (in 0.24) is the same as --compression zlib,1 (now)
  4071. --compression 9 (in 0.24) is the same as --compression zlib,9 (now)
  4072. New features:
  4073. - create --compression none (default, means: do not compress, just pass through
  4074. data "as is". this is more efficient than zlib level 0 as used in borg 0.24)
  4075. - create --compression lz4 (super-fast, but not very high compression)
  4076. - create --compression zlib,N (slower, higher compression, default for N is 6)
  4077. - create --compression lzma,N (slowest, highest compression, default N is 6)
  4078. - honor the nodump flag (UF_NODUMP) and do not backup such items
  4079. - list --short just outputs a simple list of the files/directories in an archive
  4080. Bug fixes:
  4081. - fixed --chunker-params parameter order confusion / malfunction, fixes #154
  4082. - close fds of segments we delete (during compaction)
  4083. - close files which fell out the lrucache
  4084. - fadvise DONTNEED now is only called for the byte range actually read, not for
  4085. the whole file, fixes #158.
  4086. - fix issue with negative "all archives" size, fixes #165
  4087. - restore_xattrs: ignore if setxattr fails with EACCES, fixes #162
  4088. Other changes:
  4089. - remove fakeroot requirement for tests, tests run faster without fakeroot
  4090. (test setup does not fail any more without fakeroot, so you can run with or
  4091. without fakeroot), fixes #151 and #91.
  4092. - more tests for archiver
  4093. - recover_segment(): don't assume we have an fd for segment
  4094. - lrucache refactoring / cleanup, add dispose function, py.test tests
  4095. - generalize hashindex code for any key length (less hardcoding)
  4096. - lock roster: catch file not found in remove() method and ignore it
  4097. - travis CI: use requirements file
  4098. - improved docs:
  4099. - replace hack for llfuse with proper solution (install libfuse-dev)
  4100. - update docs about compression
  4101. - update development docs about fakeroot
  4102. - internals: add some words about lock files / locking system
  4103. - support: mention BountySource and for what it can be used
  4104. - theme: use a lighter green
  4105. - add pypi, wheel, dist package based install docs
  4106. - split install docs into system-specific preparations and generic instructions
  4107. Version 0.24.0 (2015-08-09)
  4108. ---------------------------
  4109. Incompatible changes (compared to 0.23):
  4110. - borg now always issues --umask NNN option when invoking another borg via ssh
  4111. on the repository server. By that, it's making sure it uses the same umask
  4112. for remote repos as for local ones. Because of this, you must upgrade both
  4113. server and client(s) to 0.24.
  4114. - the default umask is 077 now (if you do not specify via --umask) which might
  4115. be a different one as you used previously. The default umask avoids that
  4116. you accidentally give access permissions for group and/or others to files
  4117. created by borg (e.g. the repository).
  4118. Deprecations:
  4119. - "--encryption passphrase" mode is deprecated, see #85 and #97.
  4120. See the new "--encryption repokey" mode for a replacement.
  4121. New features:
  4122. - borg create --chunker-params ... to configure the chunker, fixes #16
  4123. (attic #302, attic #300, and somehow also #41).
  4124. This can be used to reduce memory usage caused by chunk management overhead,
  4125. so borg does not create a huge chunks index/repo index and eats all your RAM
  4126. if you back up lots of data in huge files (like VM disk images).
  4127. See docs/misc/create_chunker-params.txt for more information.
  4128. - borg info now reports chunk counts in the chunk index.
  4129. - borg create --compression 0..9 to select zlib compression level, fixes #66
  4130. (attic #295).
  4131. - borg init --encryption repokey (to store the encryption key into the repo),
  4132. fixes #85
  4133. - improve at-end error logging, always log exceptions and set exit_code=1
  4134. - LoggedIO: better error checks / exceptions / exception handling
  4135. - implement --remote-path to allow non-default-path borg locations, #125
  4136. - implement --umask M and use 077 as default umask for better security, #117
  4137. - borg check: give a named single archive to it, fixes #139
  4138. - cache sync: show progress indication
  4139. - cache sync: reimplement the chunk index merging in C
  4140. Bug fixes:
  4141. - fix segfault that happened for unreadable files (chunker: n needs to be a
  4142. signed size_t), #116
  4143. - fix the repair mode, #144
  4144. - repo delete: add destroy to allowed rpc methods, fixes issue #114
  4145. - more compatible repository locking code (based on mkdir), maybe fixes #92
  4146. (attic #317, attic #201).
  4147. - better Exception msg if no Borg is installed on the remote repo server, #56
  4148. - create a RepositoryCache implementation that can cope with >2GiB,
  4149. fixes attic #326.
  4150. - fix Traceback when running check --repair, attic #232
  4151. - clarify help text, fixes #73.
  4152. - add help string for --no-files-cache, fixes #140
  4153. Other changes:
  4154. - improved docs:
  4155. - added docs/misc directory for misc. writeups that won't be included
  4156. "as is" into the html docs.
  4157. - document environment variables and return codes (attic #324, attic #52)
  4158. - web site: add related projects, fix web site url, IRC #borgbackup
  4159. - Fedora/Fedora-based install instructions added to docs
  4160. - Cygwin-based install instructions added to docs
  4161. - updated AUTHORS
  4162. - add FAQ entries about redundancy / integrity
  4163. - clarify that borg extract uses the cwd as extraction target
  4164. - update internals doc about chunker params, memory usage and compression
  4165. - added docs about development
  4166. - add some words about resource usage in general
  4167. - document how to backup a raw disk
  4168. - add note about how to run borg from virtual env
  4169. - add solutions for (ll)fuse installation problems
  4170. - document what borg check does, fixes #138
  4171. - reorganize borgbackup.github.io sidebar, prev/next at top
  4172. - deduplicate and refactor the docs / README.rst
  4173. - use borg-tmp as prefix for temporary files / directories
  4174. - short prune options without "keep-" are deprecated, do not suggest them
  4175. - improved tox configuration
  4176. - remove usage of unittest.mock, always use mock from pypi
  4177. - use entrypoints instead of scripts, for better use of the wheel format and
  4178. modern installs
  4179. - add requirements.d/development.txt and modify tox.ini
  4180. - use travis-ci for testing based on Linux and (new) OS X
  4181. - use coverage.py, pytest-cov and codecov.io for test coverage support
  4182. I forgot to list some stuff already implemented in 0.23.0, here they are:
  4183. New features:
  4184. - efficient archive list from manifest, meaning a big speedup for slow
  4185. repo connections and "list <repo>", "delete <repo>", "prune" (attic #242,
  4186. attic #167)
  4187. - big speedup for chunks cache sync (esp. for slow repo connections), fixes #18
  4188. - hashindex: improve error messages
  4189. Other changes:
  4190. - explicitly specify binary mode to open binary files
  4191. - some easy micro optimizations
  4192. Version 0.23.0 (2015-06-11)
  4193. ---------------------------
  4194. Incompatible changes (compared to attic, fork related):
  4195. - changed sw name and cli command to "borg", updated docs
  4196. - package name (and name in urls) uses "borgbackup" to have fewer collisions
  4197. - changed repo / cache internal magic strings from ATTIC* to BORG*,
  4198. changed cache location to .cache/borg/ - this means that it currently won't
  4199. accept attic repos (see issue #21 about improving that)
  4200. Bug fixes:
  4201. - avoid defect python-msgpack releases, fixes attic #171, fixes attic #185
  4202. - fix traceback when trying to do unsupported passphrase change, fixes attic #189
  4203. - datetime does not like the year 10.000, fixes attic #139
  4204. - fix "info" all archives stats, fixes attic #183
  4205. - fix parsing with missing microseconds, fixes attic #282
  4206. - fix misleading hint the fuse ImportError handler gave, fixes attic #237
  4207. - check unpacked data from RPC for tuple type and correct length, fixes attic #127
  4208. - fix Repository._active_txn state when lock upgrade fails
  4209. - give specific path to xattr.is_enabled(), disable symlink setattr call that
  4210. always fails
  4211. - fix test setup for 32bit platforms, partial fix for attic #196
  4212. - upgraded versioneer, PEP440 compliance, fixes attic #257
  4213. New features:
  4214. - less memory usage: add global option --no-cache-files
  4215. - check --last N (only check the last N archives)
  4216. - check: sort archives in reverse time order
  4217. - rename repo::oldname newname (rename repository)
  4218. - create -v output more informative
  4219. - create --progress (backup progress indicator)
  4220. - create --timestamp (utc string or reference file/dir)
  4221. - create: if "-" is given as path, read binary from stdin
  4222. - extract: if --stdout is given, write all extracted binary data to stdout
  4223. - extract --sparse (simple sparse file support)
  4224. - extra debug information for 'fread failed'
  4225. - delete <repo> (deletes whole repo + local cache)
  4226. - FUSE: reflect deduplication in allocated blocks
  4227. - only allow whitelisted RPC calls in server mode
  4228. - normalize source/exclude paths before matching
  4229. - use posix_fadvise to not spoil the OS cache, fixes attic #252
  4230. - toplevel error handler: show tracebacks for better error analysis
  4231. - sigusr1 / sigint handler to print current file infos - attic PR #286
  4232. - RPCError: include the exception args we get from remote
  4233. Other changes:
  4234. - source: misc. cleanups, pep8, style
  4235. - docs and faq improvements, fixes, updates
  4236. - cleanup crypto.pyx, make it easier to adapt to other AES modes
  4237. - do os.fsync like recommended in the python docs
  4238. - source: Let chunker optionally work with os-level file descriptor.
  4239. - source: Linux: remove duplicate os.fsencode calls
  4240. - source: refactor _open_rb code a bit, so it is more consistent / regular
  4241. - source: refactor indicator (status) and item processing
  4242. - source: use py.test for better testing, flake8 for code style checks
  4243. - source: fix tox >=2.0 compatibility (test runner)
  4244. - pypi package: add python version classifiers, add FreeBSD to platforms
  4245. Attic Changelog
  4246. ---------------
  4247. Here you can see the full list of changes between each Attic release until Borg
  4248. forked from Attic:
  4249. Version 0.17
  4250. ~~~~~~~~~~~~
  4251. (bugfix release, released on X)
  4252. - Fix hashindex ARM memory alignment issue (#309)
  4253. - Improve hashindex error messages (#298)
  4254. Version 0.16
  4255. ~~~~~~~~~~~~
  4256. (bugfix release, released on May 16, 2015)
  4257. - Fix typo preventing the security confirmation prompt from working (#303)
  4258. - Improve handling of systems with improperly configured file system encoding (#289)
  4259. - Fix "All archives" output for attic info. (#183)
  4260. - More user friendly error message when repository key file is not found (#236)
  4261. - Fix parsing of iso 8601 timestamps with zero microseconds (#282)
  4262. Version 0.15
  4263. ~~~~~~~~~~~~
  4264. (bugfix release, released on Apr 15, 2015)
  4265. - xattr: Be less strict about unknown/unsupported platforms (#239)
  4266. - Reduce repository listing memory usage (#163).
  4267. - Fix BrokenPipeError for remote repositories (#233)
  4268. - Fix incorrect behavior with two character directory names (#265, #268)
  4269. - Require approval before accessing relocated/moved repository (#271)
  4270. - Require approval before accessing previously unknown unencrypted repositories (#271)
  4271. - Fix issue with hash index files larger than 2GB.
  4272. - Fix Python 3.2 compatibility issue with noatime open() (#164)
  4273. - Include missing pyx files in dist files (#168)
  4274. Version 0.14
  4275. ~~~~~~~~~~~~
  4276. (feature release, released on Dec 17, 2014)
  4277. - Added support for stripping leading path segments (#95)
  4278. "attic extract --strip-segments X"
  4279. - Add workaround for old Linux systems without acl_extended_file_no_follow (#96)
  4280. - Add MacPorts' path to the default openssl search path (#101)
  4281. - HashIndex improvements, eliminates unnecessary IO on low memory systems.
  4282. - Fix "Number of files" output for attic info. (#124)
  4283. - limit create file permissions so files aren't read while restoring
  4284. - Fix issue with empty xattr values (#106)
  4285. Version 0.13
  4286. ~~~~~~~~~~~~
  4287. (feature release, released on Jun 29, 2014)
  4288. - Fix sporadic "Resource temporarily unavailable" when using remote repositories
  4289. - Reduce file cache memory usage (#90)
  4290. - Faster AES encryption (utilizing AES-NI when available)
  4291. - Experimental Linux, OS X and FreeBSD ACL support (#66)
  4292. - Added support for backup and restore of BSDFlags (OSX, FreeBSD) (#56)
  4293. - Fix bug where xattrs on symlinks were not correctly restored
  4294. - Added cachedir support. CACHEDIR.TAG compatible cache directories
  4295. can now be excluded using ``--exclude-caches`` (#74)
  4296. - Fix crash on extreme mtime timestamps (year 2400+) (#81)
  4297. - Fix Python 3.2 specific lockf issue (EDEADLK)
  4298. Version 0.12
  4299. ~~~~~~~~~~~~
  4300. (feature release, released on April 7, 2014)
  4301. - Python 3.4 support (#62)
  4302. - Various documentation improvements a new style
  4303. - ``attic mount`` now supports mounting an entire repository not only
  4304. individual archives (#59)
  4305. - Added option to restrict remote repository access to specific path(s):
  4306. ``attic serve --restrict-to-path X`` (#51)
  4307. - Include "all archives" size information in "--stats" output. (#54)
  4308. - Added ``--stats`` option to ``attic delete`` and ``attic prune``
  4309. - Fixed bug where ``attic prune`` used UTC instead of the local time zone
  4310. when determining which archives to keep.
  4311. - Switch to SI units (Power of 1000 instead 1024) when printing file sizes
  4312. Version 0.11
  4313. ~~~~~~~~~~~~
  4314. (feature release, released on March 7, 2014)
  4315. - New "check" command for repository consistency checking (#24)
  4316. - Documentation improvements
  4317. - Fix exception during "attic create" with repeated files (#39)
  4318. - New "--exclude-from" option for attic create/extract/verify.
  4319. - Improved archive metadata deduplication.
  4320. - "attic verify" has been deprecated. Use "attic extract --dry-run" instead.
  4321. - "attic prune --hourly|daily|..." has been deprecated.
  4322. Use "attic prune --keep-hourly|daily|..." instead.
  4323. - Ignore xattr errors during "extract" if not supported by the filesystem. (#46)
  4324. Version 0.10
  4325. ~~~~~~~~~~~~
  4326. (bugfix release, released on Jan 30, 2014)
  4327. - Fix deadlock when extracting 0 sized files from remote repositories
  4328. - "--exclude" wildcard patterns are now properly applied to the full path
  4329. not just the file name part (#5).
  4330. - Make source code endianness agnostic (#1)
  4331. Version 0.9
  4332. ~~~~~~~~~~~
  4333. (feature release, released on Jan 23, 2014)
  4334. - Remote repository speed and reliability improvements.
  4335. - Fix sorting of segment names to ignore NFS left over files. (#17)
  4336. - Fix incorrect display of time (#13)
  4337. - Improved error handling / reporting. (#12)
  4338. - Use fcntl() instead of flock() when locking repository/cache. (#15)
  4339. - Let ssh figure out port/user if not specified so we don't override .ssh/config (#9)
  4340. - Improved libcrypto path detection (#23).
  4341. Version 0.8.1
  4342. ~~~~~~~~~~~~~
  4343. (bugfix release, released on Oct 4, 2013)
  4344. - Fix segmentation fault issue.
  4345. Version 0.8
  4346. ~~~~~~~~~~~
  4347. (feature release, released on Oct 3, 2013)
  4348. - Fix xattr issue when backing up sshfs filesystems (#4)
  4349. - Fix issue with excessive index file size (#6)
  4350. - Support access of read only repositories.
  4351. - New syntax to enable repository encryption:
  4352. attic init --encryption="none|passphrase|keyfile".
  4353. - Detect and abort if repository is older than the cache.
  4354. Version 0.7
  4355. ~~~~~~~~~~~
  4356. (feature release, released on Aug 5, 2013)
  4357. - Ported to FreeBSD
  4358. - Improved documentation
  4359. - Experimental: Archives mountable as FUSE filesystems.
  4360. - The "user." prefix is no longer stripped from xattrs on Linux
  4361. Version 0.6.1
  4362. ~~~~~~~~~~~~~
  4363. (bugfix release, released on July 19, 2013)
  4364. - Fixed an issue where mtime was not always correctly restored.
  4365. Version 0.6
  4366. ~~~~~~~~~~~
  4367. First public release on July 9, 2013