2
0

changes.rst 231 KB

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