ChangeLog.txt 347 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405
  1. Tor Browser 11.5a9 - April 12 2022
  2. * Windows + OS X + Linux
  3. * Update Firefox to 91.8.0esr
  4. * Update NoScript to 11.4.4
  5. * Update Tor Launcher 0.2.34
  6. * Update Tor to 0.4.7.5-alpha
  7. * Bug 34366: The onion-location mechanism does not redirect to full URL [tor-browser]
  8. * Bug 40469: Update zlib to 1.2.12 (CVE-2018-25032) [tor-browser-build]
  9. * Bug 40773: Update the about:torconnect frontend page to match additional UI flows [tor-browser]
  10. * Bug 40774: Update about:preferences page to match new UI designs [tor-browser]
  11. * Bug 40822: Rebase tor-browser 11.5a9 to 91.8 Firefox [tor-browser]
  12. * Bug 40862: Backport 1760674 [tor-browser]
  13. Tor Browser 11.5a8 - March 15 2022
  14. * Windows + OS X + Linux
  15. * Bug 14939: Support ipv6 addresses in Tor Circuit Display [tor-browser]
  16. * Bug 40460: Upgrade to OpenSSL 1.1.1n [tor-browser]
  17. * Bug 40802: Client Auth dialog is broken in Tor Browser 11.06, works in 11.04 [tor-browser]
  18. * Bug 40830: cherry-pick fix for bugzilla 1758156
  19. Tor Browser 11.5a7 - March 9 2022
  20. * Android
  21. * Update NoScript to 11.3.7
  22. * Bug 40829: port fixes for Mozilla security advisory mfsa2022-09 to Android [tor-browser]
  23. * Build System
  24. * Android
  25. * Update Go to 1.17.8
  26. Tor Browser 11.5a6 - March 8 2022
  27. * Windows + OS X + Linux
  28. * Update Firefox to 91.7.0esr
  29. * Update Tor to 0.4.7.4-alpha
  30. * Update NoScript to 11.3.7
  31. * Bug 19850: Disable Plaintext HTTP Clearnet Connections [tor-browser]
  32. * Bug 40440: Bump version of snowflake to include PT LOG events [tor-browser-build]
  33. * Bug 40819: Update Firefox to 91.7.0esr [tor-browser]
  34. * Bug 40824: Drop 16539 Patch (android screencasting disable) [tor-browser]
  35. * Bug 40825: Redirect HTTPS-Only error page when not connected [tor-browser]
  36. * Bug 40826: Cherry-pick fixes for Mozilla bug 1758062 [tor-browser]
  37. * Build System
  38. * Windows + OS X + Linux
  39. * Update Go to 1.17.8
  40. * Bug 40441: Add Austin as a valid git-tag signer [tor-browser-build]
  41. Tor Browser 11.5a5 - March 1 2022
  42. * Android
  43. * Update Fenix to 96.3.0
  44. * Update Tor to 0.4.7.4-alpha
  45. * Update NoScript to 11.3.4
  46. * Bug 40075: Fix problem preventing file downloads on Android Q and above [android-components]
  47. * Bug 40432: Support bug reports by displaying Android Components commit hash in "About Tor Browser" display [tor-browser-build]
  48. * Build System
  49. * Android
  50. * Update Go to 1.17.7
  51. * Bug 40056: Download .aar and .jar files for all .pom files [tor-browser-build]
  52. * Bug 40385: Update components for mozilla95 [tor-browser-build]
  53. * Bug 40418: Update components for mozilla96 [tor-browser-build]
  54. * Bug 40435: Remove default obfs4 bridge "deusexmachina" [tor-browser-build]
  55. * Bug 40436: Use intermediate files for default bridge lines [tor-browser-build]
  56. * Bug 40438: Use the same list of bridges for desktop and android [tor-browser-build]
  57. * Bug 40441: Add Austin as a valid git-tag signer [tor-browser-build]
  58. Tor Browser 11.5a4 - February 15 2022
  59. * Windows + OS X + Linux
  60. * Update Firefox to 91.6.0esr
  61. * Update NoScript to 11.2.19
  62. * Tor Launcher 0.2.33
  63. * Bug 40562: Reorganize patchset [tor-browser]
  64. * Bug 40598: Remove legacy settings read from TorSettings module [tor-browser]
  65. * Bug 40679: Missing features on first-time launch in esr91 [tor-browser]
  66. * Added extensions.torlauncher.launch_delay debug pref to simulate slow tor daemon launch [tor-launcher]
  67. * Bug 40752: Misleading UX when about:tor as New Tab [tor-browser]
  68. * Bug 40775: about:ion should no tbe labeled as a Tor Browser page [tor-browser]
  69. * Bug 40793: moved Tor configuration options from old-configure.in to moz.configure [tor-browser]
  70. * Bug 40795: Revert Deutsche Welle v2 redirect [tor-browser]
  71. * Build System
  72. * Windows + OS X + Linux
  73. * Update Go to 1.17.6
  74. * Bug 40416: Pick up obfsproxy 0.0.12 [tor-browser-build]
  75. Tor Browser 11.0.6 - February 8 2022
  76. * Windows + OS X + Linux
  77. * Update Firefox to 91.6.0esr
  78. * Update NoScript to 11.2.16
  79. * Update OpenSSL to 1.1.1m
  80. * Tor Launcher 0.2.33
  81. * Bug 40795: Revert Deutsche Welle v2 redirect [tor-browser]
  82. * Bug 40679: Missing features on first-time launch in esr91 [tor-browser]
  83. * Added extensions.torlauncher.launch_delay debug pref to simulate slow tor daemon launch [tor-launcher]
  84. * Build System
  85. * Windows + OS X + Linux + Android
  86. * Update Go to 1.16.13
  87. * Bug 40413: Removed lsb_release from Python build script [tor-browser-build]
  88. * Bug 40416: Pick up obfsproxy 0.0.12 [tor-browser-build]
  89. Tor Browser 11.0.5 - February 3 2022
  90. * Android
  91. * Update Fenix to 94.1.1
  92. * Update Tor to 0.4.6.9
  93. * Update NoScript to 11.2.16
  94. * Update OpenSSL to 1.1.1m
  95. * Bug 40006: Add new default obfs4 bridge "deusexmachina" [tor-android-service]
  96. * Bug 40198: Spoof English toggle now overlaps with locale list [fenix]
  97. * Bug 40393: Point to a forked version of pion/dtls with fingerprinting fix [tor-browser-build]
  98. * Bug 40394: Bump version of Snowflake to 221f1c41 [tor-browser-build]
  99. * Bug 40398: Jetify tor-android-service packages [tor-browser-build]
  100. * Bug 40682: Disable network.proxy.allow_bypass [tor-browser]
  101. * Bug 40736: Disable third-party cookies in Private Browsing Mode [tor-browser]
  102. * Build System
  103. * Android
  104. * Bug 40366: Use bullseye to build https-everywhere [tor-browser-build]
  105. * Bug 40368: Use system's python3 for android builds [tor-browser-build]
  106. * Bug 40373: Update components for mozilla93 [tor-browser-build]
  107. * Bug 40379: Update components for mozilla94 [tor-browser-build]
  108. * Bug 40395: Update node to 12.22.1 [tor-browser-build]
  109. * Bug 40403: Update Go to 1.16.12 [tor-browser-build]
  110. Tor Browser 11.5a3 - January 14 2022
  111. * Android
  112. * Update Fenix to 94.1.1
  113. * Update NoScript to 11.2.14
  114. * Update OpenSSL to 1.1.1m
  115. * Update Tor to 0.4.7.3-alpha
  116. * Bug 40070: Temporarily redirect DW's v2 address to their new v3 address [android-components]
  117. * Bug 40198: Spoof English toggle now overlaps with locale list [fenix]
  118. * Bug 40393: Point to a forked version of pion/dtls with fingerprinting fix [tor-browser-build]
  119. * Bug 40394: Bump version of Snowflake to 221f1c41 [tor-browser-build]
  120. * Bug 40398: Jetify tor-android-service packages [tor-browser-build]
  121. * Bug 40682: Disable network.proxy.allow_bypass [tor-browser]
  122. * Bug 40736: Disable third-party cookies in Private Browsing Mode [tor-browser]
  123. * Build System
  124. * Android
  125. * Bug 40345: Update Go to 1.17.5 [tor-browser-build]
  126. * Bug 40366: Use bullseye to build https-everywhere [tor-browser-build]
  127. * Bug 40368: Use system's python3 for android builds [tor-browser-build]
  128. * Bug 40373: Update components for mozilla93 [tor-browser-build]
  129. * Bug 40379: Update components for mozilla94 [tor-browser-build]
  130. * Bug 40395: Update node to 12.22.1 [tor-browser-build]
  131. * Bug 40413: Removed lsb_release from Python build script [tor-browser-build]
  132. Tor Browser 11.5a2 - January 11 2022
  133. * Windows + OS X + Linux
  134. * Update Firefox to 91.5.0esr
  135. * Update Tor to 0.4.7.3-alpha
  136. * Update OpenSSL to 1.1.1m
  137. * Update NoScript to 11.2.14
  138. * Bug 40405: Rotate deusexmachina IP address [tor-browser-build]
  139. * Bug 40645: Migrate Moat APIs to Moat.jsm module [tor-browser]
  140. * Bug 40684: Misc UI bug fixes [tor-browser]
  141. * Bug 40736: Disable third-party cookies in Private Browsing Mode [tor-browser]
  142. * Bug 40756: Fix up wrong observer removals [tor-browser]
  143. * Bug 40758: Remove YEC takeover from about:tor [torbutton]
  144. * Translations update
  145. * Windows
  146. * Bug 40742: Remove workaround for fixing --disable-maintenance-service build bustage [tor-browser]
  147. * Bug 40753: Revert fix for Youtube videos not playing on Windows [tor-browser]
  148. * Linux
  149. * Bug 40387: Fonts of the GUI do not render after update [tor-browser-build]
  150. * Bug 40399: Bring back Noto Sans Gurmukhi and Sinhala fonts [tor-browser-build]
  151. * Bug 40685: Monospace font in browser chrome [tor-browser]
  152. * Build System
  153. * Windows + OS X + Linux
  154. * Bug 40345: Update Go to 1.17.5 [tor-browser-build]
  155. * Bug 40395: Update node to 12.22.1 [tor-browser-build]
  156. * OS X
  157. * Bug 40390: Remove workaround for macOS OpenSSL build breakage [tor-browser-build]
  158. Tor Browser 11.0.4 - January 11 2022
  159. * Windows + OS X + Linux
  160. * Update Firefox to 91.5.0esr
  161. * Update NoScript to 11.2.14
  162. * Bug 40405: Rotate deusexmachina IP address [tor-browser-build]
  163. * Bug 40756: Fix up wrong observer removals [tor-browser]
  164. * Bug 40758: Remove YEC takeover from about:tor [torbutton]
  165. * Linux
  166. * Bug 40399: Bring back Noto Sans Gurmukhi and Sinhala fonts [tor-browser-build]
  167. Tor Browser 11.0.3 - December 20 2021
  168. * Windows + OS X + Linux
  169. * Update Firefox to 91.4.1esr
  170. * Update Tor to 0.4.6.9
  171. * Update OpenSSL to 1.1.1m
  172. * Bug 40393: Point to a forked version of pion/dtls with fingerprinting fix [tor-browser-build]
  173. * Bug 40394: Bump version of Snowflake to 221f1c41 [tor-browser-build]
  174. * Bug 40646: Revert tor-browser#40475 and inherit upstream fix [tor-browser]
  175. * Bug 40705: "visit our website" link on about:tbupdate pointing to different locations [tor-browser]
  176. * Bug 40736: Disable third-party cookies in Private Browsing Mode [tor-browser]
  177. * Windows
  178. * Bug 40389: Remove workaround for HTTPS-Everywhere WASM breakage [tor-browser-build]
  179. * Bug 40698: Addon menus missing content in TB11 [tor-browser]
  180. * Bug 40706: Fix issue in HTTPS-Everywhere WASM [tor-browser]
  181. * Bug 40721: Tabs crashing on certain pages in TB11 on Win 10 [tor-browser]
  182. * Bug 40742: Remove workaround for fixing --disable-maintenance-service build bustage [tor-browser]
  183. * Linux
  184. * Bug 40387: Fonts of the GUI do not render after update [tor-browser-build]
  185. * Bug 40685: Monospace font in browser chrome [tor-browser]
  186. * Build System
  187. * Windows + OS X + Linux
  188. * Bug 40403: Update Go to 1.16.12 [tor-browser-build]
  189. * OS X
  190. * Bug 40390: Remove workaround for macOS OpenSSL build breakage [tor-browser-build]
  191. Tor Browser 11.5a1 - December 13 2021
  192. * Windows + OS X + Linux
  193. * Update Firefox to 91.4.0esr
  194. * Tor Launcher 0.2.32
  195. * Bug 40059: YEC activist sign empty in about:tor on RTL locales [torbutton]
  196. * Bug 40386: Add new default obfs4 bridge "deusexmachina" [tor-browser-build]
  197. * Bug 40393: Point to a forked version of pion/dtls with fingerprinting fix [tor-browser-build]
  198. * Bug 40394: Bump version of Snowflake to 221f1c41 [tor-browser-build]
  199. * Bug 40438: Add Blockchair as a search engine [tor-browser]
  200. * Bug 40646: Revert tor-browser#40475 and inherit upstream fix [tor-browser]
  201. * Bug 40680: Prepare update to localized assets for YEC [tor-browser]
  202. * Bug 40682: Disable network.proxy.allow_bypass [tor-browser]
  203. * Bug 40684: Misc UI bug fixes in 11.0a10 [tor-browser]
  204. * Bug 40686: Update Onboarding link for 11.0 [tor-browser]
  205. * Bug 40689: Change Blockchair Search provider's HTTP method [tor-browser]
  206. * Bug 40690: Browser chrome breaks when private browsing mode is turned off [tor-browser]
  207. * Bug 40691: Make quickstart checkbox gray when "off" on about:torconnect [tor-browser]
  208. * Bug 40700: Switch Firefox recommendations off by default [tor-browser]
  209. * Bug 40705: "visit our website" link on about:tbupdate pointing to different locations [tor-browser]
  210. * Bug 40714: Next button closes "How do circuits work?" onboarding tour [tor-browser]
  211. * Bug 40718: Application Menu items should be sentence case [tor-browser]
  212. * Bug 40725: about:torconnect missing identity block content on TB11 [tor-browser]
  213. * Translations update
  214. * Windows
  215. * Bug 40389: Remove workaround for HTTPS-Everywhere WASM breakage [tor-browser-build]
  216. * Bug 40698: Addon menus missing content in TB11 [tor-browser]
  217. * Bug 40706: Fix issue in HTTPS-Everywhere WASM [tor-browser]
  218. * Bug 40721: Tabs crashing on certain pages in TB11 on Win 10 [tor-browser]
  219. * Bug 40668: Document is freezing with file: scheme [tor-browser]
  220. * Linux
  221. * Bug 40318: Remove check for DISPLAY env var in start-tor-browser [tor-browser-build]
  222. * Bug 40387: Remove some fonts on Linux [tor-browser-build]
  223. Tor Browser 11.0.2 - December 7 2021
  224. * Windows + OS X + Linux
  225. * Update Firefox to 91.4.0esr
  226. * Bug 40318: Remove check for DISPLAY env var in start-tor-browser [tor-browser-build]
  227. * Bug 40386: Add new default obfs4 bridge "deusexmachina" [tor-browser-build]
  228. * Bug 40682: Disable network.proxy.allow_bypass [tor-browser]
  229. * Linux
  230. * Bug 40387: Remove some fonts on Linux [tor-browser-build]
  231. Tor Browser 11.0.1 - November 14 2021
  232. * Windows + OS X + Linux
  233. * Tor Launcher 0.2.32
  234. * Bug 40059: YEC activist sign empty in about:tor on RTL locales [torbutton]
  235. * Bug 40438: Add Blockchair as a search engine [tor-browser]
  236. * Bug 40689: Change Blockchair Search provider's HTTP method [tor-browser]
  237. * Bug 40690: Browser chrome breaks when private browsing mode is turned off [tor-browser]
  238. * Bug 40700: Switch Firefox recommendations off by default [tor-browser]
  239. * Windows
  240. * Bug 40383: Workaround issue in https-e wasm [tor-browser-build]
  241. * Bug 40668: Document is freezing with file: scheme [tor-browser]
  242. Tor Browser 11.0 - November 8 2021
  243. * Windows + OS X + Linux
  244. * Update Firefox to 91.3.0esr
  245. * Update Tor to tor-0.4.6.8
  246. * Bug 27845: New window height is aftected by bookmarks toolbar with icons [tor-browser]
  247. * Bug 32624: localStorage is not shared between tabs [tor-browser]
  248. * Bug 33125: Remove xpinstall.whitelist.add* as they don't do anything anymore [tor-browser]
  249. * Bug 34188: Cleanup extensions.* prefs [tor-browser]
  250. * Bug 40004: Convert tl-protocol to async. [tor-launcher]
  251. * Bug 40012: Watch all requested tor events [tor-launcher]
  252. * Bug 40027: Make torbutton_send_ctrl_cmd async [torbutton]
  253. * Bug 40042: Add missing parameter of createTransport [torbutton]
  254. * Bug 40043: Delete all plugin-related protections [torbutton]
  255. * Bug 40045: Teach the controller about status_client [torbutton]
  256. * Bug 40046: Support arbitrary watch events [torbutton]
  257. * Bug 40047: New string for Security Level panel [torbutton]
  258. * Bug 40048: Protonify Circuit Display Panel [torbutton]
  259. * Bug 40053: investigate fingerprinting potential of extended TextMetrics interface [tor-browser]
  260. * Bug 40057: Error popup when using New Identity feature [torbutton]
  261. * Bug 40083: Make sure Region.jsm fetching is disabled [tor-browser]
  262. * Bug 40177: Clean up obsolete preferences in our 000-tor-browser.js [tor-browser]
  263. * Bug 40220: Make sure tracker cookie purging is disabled [tor-browser]
  264. * Bug 40342: Set `gfx.bundled-fonts.activate = 1` to preserve current bundled fonts behaviour [tor-browser]
  265. * Bug 40463: Disable network.http.windows10-sso.enabled in FF 91 [tor-browser]
  266. * Bug 40483: Deutsche Welle v2 redirect [tor-browser]
  267. * Bug 40534: Cannot open URLs on command line with Tor Browser 10.5 [tor-browser]
  268. * Bug 40547: UX: starting in offline mode can result in difficulty to connect later [tor-browser]
  269. * Bug 40548: Set network.proxy.failover_direct to false in FF 91 [tor-browser]
  270. * Bug 40561: Refactor about:torconnect implementation [tor-browser]
  271. * Bug 40567: RFPHelper is not init until after about:torconnect bootstraps [tor-browser]
  272. * Bug 40597: Implement TorSettings module [tor-browser]
  273. * Bug 40600: Multiple pages as home page unreliable in 11.0a4 [tor-browser]
  274. * Bug 40616: UX: multiple about:torconnect [tor-browser]
  275. * Bug 40624: TorConnect banner always visible in about:preferences#tor even after bootstrap [tor-browser]
  276. * Bug 40626: Update Security Level styling to match Proton UI [tor-browser]
  277. * Bug 40628: Checkbox wrong color in about:torconnect in dark mode theme [tor-browser]
  278. * Bug 40630: Update New Identity and New Circuit icons [tor-browser]
  279. * Bug 40631: site identity icons are not being displayed properly [tor-browser]
  280. * Bug 40632: Proton'ify Circuit Display Panel [tor-browser]
  281. * Bug 40634: Style updates for Onion Error Pages [tor-browser]
  282. * Bug 40636: Fix about:torconnect 'Connect' border radius in about:preferences#tor [tor-browser]
  283. * Bug 40641: Update Security Level selection in about:preferences to match style as tracking protection option bubbles [tor-browser]
  284. * Bug 40648: Replace onion pattern divs/css with tiling SVG [tor-browser]
  285. * Bug 40653: Onion Available text not aligned correctly in toolbar in ESR91 [tor-browser]
  286. * Bug 40655: esr91 is suggesting to make Tor Browser the default browser [tor-browser]
  287. * Bug 40657: esr91 is missing "New identity" in hamburger menu [tor-browser]
  288. * Bug 40680: Prepare update to localized assets for YEC [tor-browser]
  289. * Bug 40684: Misc UI bug fixes in 11.0a10
  290. * Bug 40686: Update Onboarding link for 11.0 [tor-browser]
  291. * Build System
  292. * Windows + OS X + Linux
  293. * Update Go to 1.16.9
  294. * Bug 40048: Remove projects/clang-source [tor-browser-build]
  295. * Bug 40347: Make the list of toolchain updates needed for firefox91 [tor-browser-build]
  296. * Bug 40363: Change bsaes git url [tor-browser-build]
  297. * Bug 40366: Use bullseye to build https-everywhere [tor-browser-build]
  298. * Bug 40368: Use system's python3 for https-everywhere [tor-browser-build]
  299. * Windows + Linux
  300. * Bug 40357: Update binutils to 2.35.2 [tor-browser-build]
  301. * Windows
  302. * Bug 28240: Switch from SJLJ exception handling to Dwarf2 in mingw for win32 [tor-browser-build]
  303. * Bug 40306: Update Windows toolchain to switch to mozilla91 [tor-browser-build]
  304. * Bug 40376: Use python3 for running pe_checksum_fix.py [tor-browser-build]
  305. * OS X
  306. * Bug 40307: Update macOS toolchain to switch to mozilla91 [tor-browser-build]
  307. * Linux
  308. * Bug 40222: Bump GCC to 10.3.0 for Linux [tor-browser-build]
  309. * Bug 40305: Update Linux toolchain to switch to mozilla91 [tor-browser-build]
  310. * Bug 40353: Temporarily disable rlbox for linux builds [tor-browser-build]
  311. Tor Browser 11.0a10 - November 4 2021
  312. * Windows + OS X + Linux
  313. * Update Firefox to 91.3.0esr
  314. * Update Tor to 0.4.7.2-alpha
  315. * Bug 32624: localStorage is not shared between tabs [tor-browser]
  316. * Bug 33125: Remove xpinstall.whitelist.add* as they don't do anything anymore [tor-browser]
  317. * Bug 34188: Cleanup extensions.* prefs [tor-browser]
  318. * Bug 40053: investigate fingerprinting potential of extended TextMetrics interface [tor-browser]
  319. * Bug 40057: Error popup when using New Identity feature [torbutton]
  320. * Bug 40083: Make sure Region.jsm fetching is disabled [tor-browser]
  321. * Bug 40177: Clean up obsolete preferences in our 000-tor-browser.js [tor-browser]
  322. * Bug 40220: Make sure tracker cookie purging is disabled [tor-browser]
  323. * Bug 40342: Set `gfx.bundled-fonts.activate = 1` to preserve current bundled fonts behaviour [tor-browser]
  324. * Bug 40463: Disable network.http.windows10-sso.enabled in FF 91 [tor-browser]
  325. * Bug 40483: Deutsche Welle v2 redirect [tor-browser]
  326. * Bug 40548: Set network.proxy.failover_direct to false in FF 91 [tor-browser]
  327. * Bug 40630: New Identity and New Circuit icons [tor-browser]
  328. * Bug 40641: Update Security Level selection in about:preferences to match style as tracking protection option bubbles [tor-browser]
  329. * Bug 40648: Replace onion pattern divs/css with tiling SVG [tor-browser]
  330. * Bug 40653: Onion Available text not aligned correctly in toolbar in ESR91 [tor-browser]
  331. * Bug 40655: esr91 is suggesting to make Tor Browser the default browse [tor-browser]
  332. * Bug 40657: esr91 is missing "New identity" in hamburger menu [tor-browser]
  333. * Bug 40680: Prepare update to localized assets for YEC [tor-browser]
  334. * Build System
  335. * Windows + OS X + Linux
  336. * Bug 40366: Use bullseye to build https-everywhere [tor-browser-build]
  337. * Bug 40368: Use system's python3 for https-everywhere [tor-browser-build]
  338. Tor Browser 10.5.10 -- October 23 2021
  339. * All Platforms
  340. * Translations Update
  341. * Windows + OS X + Linux
  342. * Revert bug 40049 [torbutton]
  343. * Bug 40051: Implement 2021 Year End Campaign look in about:tor [torbutton]
  344. * Android
  345. * Revert bug 40193 [fenix]
  346. * Bug 40194: Add 2021 YEC home screen [fenix]
  347. Tor Browser 11.0a9 -- October 15 2021
  348. * Windows + OS X + Linux
  349. * Update Firefox to 91.2.0esr
  350. * Update Tor to 0.4.7.1-alpha
  351. * Bug 27845: New window height is aftected by bookmarks toolbar with icons [tor-browser]
  352. * Bug 40004: Convert tl-protocol to async. [tor-launcher]
  353. * Bug 40012: Watch all requested tor events [tor-launcher]
  354. * Bug 40027: Make torbutton_send_ctrl_cmd async [torbutton]
  355. * Bug 40042: Add missing parameter of createTransport [torbutton]
  356. * Bug 40043: Delete all plugin-related protections [torbutton]
  357. * Bug 40045: Teach the controller about status_client [torbutton]
  358. * Bug 40046: Support arbitrary watch events [torbutton]
  359. * Bug 40047: New string for Security Level panel [torbutton]
  360. * Bug 40048: Protonify Circuit Display Panel [torbutton]
  361. * Bug 40600: Multiple pages as home page unreliable in 11.0a4 [tor-browser]
  362. * Bug 40616: UX: multiple about:torconnect [tor-browser]
  363. * Bug 40624: TorConnect banner always visible in about:preferences#tor even after bootstrap [tor-browser]
  364. * Bug 40626: Update Security Level styling to match Proton UI [tor-browser]
  365. * Bug 40628: Checkbox wrong color in about:torconnect in dark mode theme [tor-browser]
  366. * Bug 40630: Update New Identity and New Circuit icons [tor-browser]
  367. * Bug 40631: site identity icons are not being displayed properly [tor-browser]
  368. * Bug 40632: Proton'ify Circuit Display Panel [tor-browser]
  369. * Bug 40634: Style updates for Onion Error Pages [tor-browser]
  370. * Bug 40636: Fix about:torconnect 'Connect' border radius in about:preferences#tor [tor-browser]
  371. * Build System
  372. * Windows + OS X + Linux
  373. * Update Go to 1.16.9
  374. * Bug 40048: Remove projects/clang-source [tor-browser-build]
  375. * Bug 40347: Make the list of toolchain updates needed for firefox91 [tor-browser-build]
  376. * Bug 40363: Change bsaes git url [tor-browser-build]
  377. * Windows + Linux
  378. * Bug 40357: Update binutils to 2.35.2 [tor-browser-build]
  379. * Windows
  380. * Bug 28240: switch from SJLJ exception handling to Dwarf2 in mingw for win32 [tor-browser-build]
  381. * Bug 40306: Update Windows toolchain to switch to mozilla91 [tor-browser-build]
  382. * Bug 40376: Use python3 for running pe_checksum_fix.py [tor-browser-build]
  383. * OS X
  384. * Bug 40307: Update macOS toolchain to switch to mozilla91 [tor-browser-build]
  385. * Linux
  386. * Bug 40222: Bump GCC to 10.3.0 for Linux [tor-browser-build]
  387. * Bug 40305: Update Linux toolchain to switch to mozilla91 [tor-browser-build]
  388. * Bug 40353: Temporarily disable rlbox for linux builds [tor-browser-build]
  389. Tor Browser 11.0a8 -- October 10 2021
  390. * Android
  391. * Bug 40052: Skip L10nRegistry source registration on Android [torbutton]
  392. Tor Browser 10.5.9 -- October 9 2021
  393. * Android
  394. * Bug 40052: Skip L10nRegistry source registration on Android [torbutton]
  395. Tor Browser 10.5.8 -- October 5 2021
  396. * Windows + OS X + Linux
  397. * Update Firefox to 78.15.0esr
  398. * Bug 40049: Add banner for VPN survey to about:tor [torbutton]
  399. * Android
  400. * Bug 40193: Add banner for VPN survey to Android homepage [fenix]
  401. * Build System
  402. * All Platforms
  403. * Bug 40363: Change bsaes git url [tor-browser-build]
  404. Tor Browser 10.5.7 -- September 24 2021
  405. * Android
  406. * Update Openssl to 1.1.1l
  407. * Bug 40639: Rebase geckoview patches onto 92.0 build3 [tor-browser]
  408. Tor Browser 11.0a7 -- September 10 2021
  409. * All Platforms
  410. * Update Openssl to 1.1.1l
  411. * Windows + OS X + Linux
  412. * Update Firefox to 78.14.0esr
  413. * Bug 40597: Implement TorSettings module [tor-browser]
  414. * Android
  415. * Bug 40611: Rebase geckoview patches onto 92.0 [tor-browser]
  416. * OS X
  417. * Bug 40358: Make OpenSSL 1.1.1l buildable for macOS [tor-browser-build]
  418. Tor Browser 10.5.6 -- September 7 2021
  419. * Windows + OS X + Linux
  420. * Update Openssl to 1.1.1l
  421. * Update Firefox to 78.14.0esr
  422. * Build System
  423. * OS X
  424. * Bug 40358: Make OpenSSL 1.1.1l buildable for macOS [tor-browser-build]
  425. Tor Browser 11.0a6 -- September 2 2021
  426. * Android
  427. * Bug 40611: Rebase geckoview patches onto 92.0b9 [tor-browser]
  428. Tor Browser 11.0a5 -- August 22 2021
  429. * All Platforms
  430. * Update Tor to 0.4.6.7
  431. * Linux
  432. * Bug 40582: Tor Browser 10.5.2 tabs always crash on Fedora Xfce Rawhide [tor-browser]
  433. * Android
  434. * Update Fenix to 91.2.0
  435. Tor Browser 10.5.5 -- August 18 2021
  436. * All Platforms
  437. * Update Tor to 0.4.5.10
  438. * Linux
  439. * Bug 40582: Tor Browser 10.5.2 tabs always crash on Fedora Xfce Rawhide [tor-browser]
  440. * Android
  441. * Update Fenix to 91.2.0
  442. * Update NoScript to 11.2.11
  443. * Bug 40063: Move custom search providers [android-components]
  444. * Bug 40176: TBA: sometimes I only see the banner and can't tap on the address bar [fenix]
  445. * Bug 40181: Remove V2 Deprecation banner on about:tor for Android [fenix]
  446. * Bug 40184: Rebase fenix patches to fenix v91.0.0-beta.5 [fenix]
  447. * Bug 40185: Use NimbusDisabled [fenix]
  448. * Bug 40186: Hide Credit Cards in Settings [fenix]
  449. * Build System
  450. * Android
  451. * Update Go to 1.15.15
  452. * Bug 40331: Update components for mozilla91 [tor-browser-build]
  453. Tor Browser 11.0a4 -- August 11 2021
  454. * All Platforms
  455. * Windows + OS X + Linux
  456. * Update Firefox to 78.13.0esr
  457. * Bug 40041: Remove V2 Deprecation banner on about:tor for desktop [torbutton]
  458. * Bug 40534: Cannot open URLs on command line with Tor Browser 10.5 [tor-browser]
  459. * Bug 40547: UX: starting in offline mode can result in difficulty to connect later [tor-browser]
  460. * Bug 40561: Refactor about:torconnect implementation [tor-browser]
  461. * Bug 40567: RFPHelper is not init until after about:torconnect bootstraps [tor-browser]
  462. * Android
  463. * Update Fenix to 91.1.0
  464. * Bug 40186: Hide Credit Cards in Settings [fenix]
  465. * Build System
  466. * All Platforms
  467. * Update Go to 1.16.7
  468. Tor Browser 10.5.4 -- August 10 2021
  469. * Windows + OS X + Linux
  470. * Update Firefox to 78.13.0esr
  471. * Update NoScript to 11.2.11
  472. * Bug 40041: Remove V2 Deprecation banner on about:tor for desktop [torbutton]
  473. * Bug 40506: Saved Logins not available in 10.5 [tor-browser]
  474. * Bug 40524: Update DuckDuckGo onion site URL in search preferences and onboarding [tor-browser]
  475. * Build System
  476. * Windows + OS X + Linux
  477. * Update Go to 1.15.14
  478. Tor Browser 11.0a3 -- August 5 2021
  479. * Android
  480. * Update NoScript to 11.2.11
  481. * Bug 40176: TBA: sometimes I only see the banner and can't tap on the address bar [fenix]
  482. * Bug 40185: Use NimbusDisabled [fenix]
  483. * Bug 40181: Remove V2 Deprecation banner on about:tor for Android [fenix]
  484. * Bug 40184: Rebase fenix patches to fenix v91.0.0-beta.5 [fenix]
  485. * Bug 40063: Move custom search providers [android-components]
  486. * Build System
  487. * Android
  488. * Bug 40331: Update components for mozilla91 [tor-browser-build]
  489. Tor Browser 11.0a2 -- July 19 2021
  490. * All Platforms
  491. * Update HTTPS Everywhere to 2021.7.13
  492. * Windows + OS X + Linux
  493. * Update Firefox to 78.12.0esr
  494. * Bug 40497: Cannot set multiple pages as home pages in 10.5a17 [tor-browser]
  495. * Bug 40506: Saved Logins not available in 10.5 [tor-browser]
  496. * Bug 40507: Full update is not downloaded after applying partial update fails [tor-browser]
  497. * Bug 40510: open tabs get redirected to about:torconnect on restart [tor-browser]
  498. * Bug 40524: Update DuckDuckGo onion site URL in search preferences and onboarding [tor-browser]
  499. * Android
  500. * Update Fenix to 90.1.1
  501. * Bug 40062: Update DuckDuckGo onion search plugin [android-components]
  502. * Bug 40177: Hide Tor icons in settings [fenix]
  503. * Build System
  504. * All Platforms
  505. * Update Go to 1.16.6
  506. Tor Browser 10.5.3 -- July 17 2021
  507. * Android
  508. * Update HTTPS Everywhere to 2021.7.13
  509. * Update Fenix to 90.1.1
  510. * Bug 40172: Find the Quit button [fenix]
  511. * Bug 40173: Rebase fenix patches to fenix v90.0.0-beta.6 [fenix]
  512. * Bug 40177: Hide Tor icons in settings [fenix]
  513. * Bug 40179: Show Snowflake bridge option on Release [fenix]
  514. * Bug 40180: Rebase fenix patches to fenix v90.1.1 [fenix]
  515. * Build System
  516. * Android
  517. * Bug 40312: Update components for mozilla90 [tor-browser-build]
  518. Tor Browser 10.5.2 -- July 13 2021
  519. * Windows + OS X + Linux
  520. * Update Firefox to 78.12.0esr
  521. * Bug 40497: Cannot set multiple pages as home pages in 10.5a17 [tor-browser]
  522. * Bug 40507: Full update is not downloaded after applying partial update fails [tor-browser]
  523. * Bug 40510: open tabs get redirected to about:torconnect on restart [tor-browser]
  524. Tor Browser 11.0a1 -- July 9 2021
  525. * Android
  526. * Bug 40172: Find the Quit button [fenix]
  527. * Bug 40173: Rebase fenix patches to fenix v90.0.0-beta.6 [fenix]
  528. * Bug 40179: Show Snowflake bridge option on Release [fenix]
  529. * Build System
  530. * Android
  531. * Bug 40312: Update components for mozilla90 [tor-browser-build]
  532. * Bug 40323: Remove unused gomobile project [tor-browser-build]
  533. Tor Browser 10.5.1 -- July 7 2021
  534. * Android
  535. * Bug 40324: Change Fenix variant to Release [fenix]
  536. Tor Browser 10.5 -- July 6 2021
  537. * All Platforms
  538. * Update NoScript to 11.2.9
  539. * Update Tor Launcher to 0.2.30
  540. * Translations update
  541. * Bug 25483: Provide Snowflake based on Pion for Windows, macOS, and Linux
  542. * Bug 33761: Remove unnecessary snowflake dependencies
  543. * Bug 40064: Bump libevent to 2.1.12 [tor-browser-build]
  544. * Bug 40137: Migrate https-everywhere storage to idb [tor-browser]
  545. * Bug 40261: Bump versions of snowflake and webrtc [tor-browser-build]
  546. * Bug 40263: Update domain front for Snowflake [tor-browser-build]
  547. * Bug 40302: Update version of snowflake [tor-browser-build]
  548. * Bug 40030: DuckDuckGo redirect to html doesn't work [torbutton]
  549. * Windows + OS X + Linux
  550. * Bug 27476: Implement about:torconnect captive portal within Tor Browser [tor-browser]
  551. * Bug 32228: Bookmark TPO support domains in Tor Browser
  552. * Bug 33803: Add a secondary nightly MAR signing key [tor-browser]
  553. * Bug 33954: Consider different approach for Bug 2176
  554. * Bug 34345: "Don't Bootstrap" Startup Mode
  555. * Bug 40011: Rename tor-browser-brand.ftl to brand.ftl [torbutton]
  556. * Bug 40012: Fix about:tor not loading some images in 82 [torbutton]
  557. * Bug 40138: Move our primary nightly MAR signing key to tor-browser [tor-browser-build]
  558. * Bug 40209: Implement Basic Crypto Safety [tor-browser]
  559. * Bug 40428: Correct minor Cryptocurrency warning string typo [tor-browser]
  560. * Bug 40429: Update Onboarding for 10.5 [tor-browser]
  561. * Bug 40455: Block or recover background requests after bootstrap [tor-browser]
  562. * Bug 40456: Update the SecureDrop HTTPS-Everywhere update channel [tor-browser]
  563. * Bug 40475: Include clearing CORS preflight cache [tor-browser]
  564. * Bug 40478: Onion alias url rewrite is broken [tor-browser]
  565. * Bug 40484: Bootstrapping page show Quickstart text [tor-browser]
  566. * Bug 40490: BridgeDB bridge captcha selection is broken in alpha [tor-browser]
  567. * Bug 40495: Onion pattern is focusable by click on about:torconnect [tor-browser]
  568. * Bug 40499: Onion Alias doesn't work with TOR_SKIP_LAUNCH [tor-browser]
  569. * Android
  570. * Bug 30318: Integrate snowflake into mobile Tor Browser
  571. * Bug 40206: Disable the /etc/hosts parser [tor-browser]
  572. * Linux
  573. * Bug 40089: Remove CentOS 6 support for Tor Browser 10.5 [tor-browser]
  574. * Build System
  575. * All Platforms
  576. * Update Go to 1.15.13
  577. * Bug 23631: Use rootless containers [tor-browser-build]
  578. * Bug 33693: Change snowflake and meek dummy address [tor-browser]
  579. * Bug 40016: getfpaths is not setting origin_project [rbm]
  580. * Bug 40169: Update apt package cache after calling pre_pkginst, too [tor-browser-build]
  581. * Bug 40194: Remove osname part in cbindgen filename [tor-browser-build]
  582. * Windows + OS X + Linux
  583. * Bug 40081: Build Mozilla code with --enable-rust-simd [tor-browser-build]
  584. * Bug 40104: Use our TMPDIR when creating our .mar files [tor-browser-build]
  585. * Bug 40133: Bump Rust version for ESR 78 to 1.43.0 [tor-browser-build]
  586. * Bug 40166: Update apt cache before calling pre_pkginst in container-image config [tor-browser-build]
  587. * Android
  588. * Bug 28672: Android reproducible build of Snowflake
  589. * Bug 40313: Use apt-get to install openjdk-8 .deb files with their dependencies [tor-browser-build]
  590. * Windows
  591. * Bug 34360: Bump binutils to 2.35.1
  592. * Bug 40131: Remove unused binutils patches [tor-browser-build]
  593. * Linux
  594. * Bug 26238: Move to Debian Jessie for our Linux builds
  595. * Bug 31729: Support Wayland
  596. * Bug 40041: Remove CentOS 6 support for 10.5 series [tor-browser-build]
  597. * Bug 40103: Add i386 pkg-config path for linux-i686 [tor-browser-build]
  598. * Bug 40112: Strip libstdc++ we ship [tor-browser-build]
  599. * Bug 40118: Add missing libdrm dev package to firefox container [tor-browser-build]
  600. * Bug 40235: Bump apt for Jessie containers [tor-browser-build]
  601. Tor Browser 10.5a17 -- June 27 2021
  602. * All Platforms
  603. * Update NoScript to 11.2.9
  604. * Update Tor to 0.4.6.5
  605. * Update Tor Launcher to 0.2.29
  606. * Windows + OS X + Linux
  607. * Bug 34345: "Don't Bootstrap" Startup Mode
  608. * Bug 40302: Update version of snowflake [tor-browser-build]
  609. * Bug 40455: Block or recover background requests after bootstrap [tor-browser]
  610. * Bug 40456: Update the SecureDrop HTTPS-Everywhere update channel [tor-browser]
  611. * Bug 40475: Include clearing CORS preflight cache [tor-browser]
  612. * Bug 40478: Onion alias url rewrite is broken [tor-browser]
  613. * Build System
  614. * All Platforms
  615. * Update Go to 1.15.13
  616. * Android
  617. * Bug 40313: Use apt-get to install openjdk-8 .deb files with their dependencies [tor-browser-build]
  618. Tor Browser 10.0.18 -- June 16 2021
  619. * All Platforms
  620. * Update Tor to 0.4.5.9
  621. * Android
  622. * Update Fenix to 89.1.1
  623. * Update NoScript to 11.2.8
  624. * Bug 40055: Rebase android-componets patches on 75.0.22 for Fenix 89 [android-components]
  625. * Bug 40165: Announce v2 onion service deprecation on about:tor [fenix]
  626. * Bug 40166: Hide "Normal" tab (again) and Sync tab in TabTray [fenix]
  627. * Bug 40167: Hide "Save to Collection" in menu [fenix]
  628. * Bug 40169: Rebase fenix patches to fenix v89.1.1 [fenix]
  629. * Bug 40170: Error building tor-browser-89.1.1-10.5-1 [fenix]
  630. * Bug 40432: Prevent probing installed applications [tor-browser]
  631. * Bug 40470: Rebase 10.0 patches onto 89.0 [tor-browser]
  632. * Build System
  633. * Android
  634. * Bug 40290: Update components for mozilla89-based Fenix [tor-browser-build]
  635. Tor Browser 10.5a16 -- June 5 2021
  636. * All Platforms
  637. * Update HTTPS Everywhere to 2021.4.15
  638. * Update NoScript to 11.2.8
  639. * Update Tor to 0.4.6.4-rc
  640. * Bug 40432: Prevent probing installed applications [tor-browser]
  641. * Windows + OS X + Linux
  642. * Update Firefox to 78.11.0esr
  643. * Bug 27476: Implement about:torconnect captive portal within Tor Browser [tor-browser]
  644. * Bug 40037: Announce v2 onion service deprecation on about:tor [torbutton]
  645. * Bug 40428: Correct minor Cryptocurrency warning string typo [tor-browser]
  646. * Android
  647. * Update Fenix to 89.1.1
  648. * Bug 40055: Rebase android-componets patches on 75.0.22 for Fenix 89 [android-components]
  649. * Bug 40165: Announce v2 onion service deprecation on about:tor [fenix]
  650. * Bug 40169: Rebase fenix patches to fenix v89.1.1 [fenix]
  651. * Bug 40170: Error building tor-browser-89.1.1-10.5-1 [fenix]
  652. * Bug 40453: Rebase tor-browser patches to 89.0 [tor-browser]
  653. * Build System
  654. * All Platforms
  655. * Update Go to 1.15.12
  656. * Android
  657. * Bug 40290: Update components for mozilla89-based Fenix [tor-browser-build]
  658. Tor Browser 10.0.17 -- June 1 2021
  659. * Windows + OS X + Linux
  660. * Update Firefox to 78.11.0esr
  661. * Update HTTPS Everywhere to 2021.4.15
  662. * Update NoScript to 11.2.8
  663. * Update Tor to 0.4.5.8
  664. * Bug 27002: (Mozilla 1673237) Always allow SVGs on about: pages [tor-browser]
  665. * Bug 40432: Prevent probing installed applications [tor-browser]
  666. * Bug 40037: Announce v2 onion service deprecation on about:tor [torbutton]
  667. Tor Browser 10.5a15 -- April 23 2021
  668. * All Platforms
  669. * Update Tor to 0.4.6.2-alpha
  670. * Windows + OS X + Linux
  671. * Update Firefox to 78.10.0esr
  672. * Bug 40408: Disallow SVG Context Paint in all web content [tor-browser]
  673. * Android
  674. * Update Fenix to 88.1.1
  675. * Bug 40051: Rebase android-components patches for Fenix 88 [android-components]
  676. * Bug 40158: Rebase Fenix patches to Fenix 88.1.1 [fenix]
  677. * Bug 40399: Rebase 10.5 patches on 88.0 [tor-browser]
  678. * Build System
  679. * All Platforms
  680. * Update Go to 1.15.11
  681. * Android
  682. * Bug 40259: Update components for mozilla88-based Fenix [tor-browser-build]
  683. Tor Browser 10.0.16 -- May 7 2021
  684. * Android
  685. * Update Fenix to 88.1.3
  686. * Update HTTPS Everywhere to 2021.4.15
  687. * Update NoScript to 11.2.6
  688. * Translations update
  689. * Bug 40052: Rebase android-components patches for Fenix 88 [android-components]
  690. * Bug 40162: Disable Numbus experiments [fenix]
  691. * Bug 40163: Rebase Fenix patches to Fenix 88.1.3 [fenix]
  692. * Bug 40423: Disable http/3 [tor-browser]
  693. * Bug 40425: Rebase 10.5 patches on 88.0.1 [tor-browser]
  694. * Build System
  695. * Android
  696. * Bug 40259: Update components for mozilla88-based Fenix [tor-browser-build]
  697. * Bug 40293: Patch app-services' vendored uniffi_bindgen [tor-browser-build]
  698. Tor Browser 10.0.16 -- April 20 2021
  699. * Windows + OS X + Linux
  700. * Update Firefox to 78.10.0esr
  701. * Update NoScript to 11.2.4
  702. * Bug 40007: Update domain fronting config for Moat [tor-launcher]
  703. * Bug 40390: Add Burmese as a new locale [tor-browser]
  704. * Bug 40408: Disallow SVG Context Paint in all web content [tor-browser]
  705. Tor Browser 10.5a14 -- April 11 2021
  706. * All Platforms
  707. * Update NoScript to 11.2.4
  708. * Translations update
  709. * Bug 40261: Bump versions of snowflake and webrtc [tor-browser-build]
  710. * Bug 40263: Update domain front for Snowflake [tor-browser-build]
  711. * Bug 40390: Add Burmese as a new locale [tor-browser]
  712. * Windows + OS X + Linux
  713. * Bug 40007: Update domain fronting config for Moat [tor-launcher]
  714. Tor Browser 10.0.15 -- April 7 2021
  715. * All Platforms
  716. * Update Openssl to 1.1.1k
  717. * Bug 40030: Add 'noscript' capability to NoScript [torbutton]
  718. * Android
  719. * Update Fenix to 87.0.0
  720. * Update NoScript to 11.2.4
  721. * Update Tor to 0.4.5.7
  722. * Translations update
  723. * Bug 40045: Add External App Prompt for Sharing Images [android-components]
  724. * Bug 40047: Rebase android-components patches for Fenix 87.0.0 [android-components]
  725. * Bug 40151: Remove survey banner on TBA-stable [fenix]
  726. * Bug 40153: Rebase Fenix patches to Fenix 87.0.0 [fenix]
  727. * Bug 40365: Rebase 10.5 patches on 87.0 [tor-browser]
  728. * Bug 40383: Disable dom.enable_event_timing [tor-browser]
  729. * Build System
  730. * Android
  731. * Bug 40162: Build Fenix instrumented tests apk [tor-browser-build]
  732. * Bug 40172: Move Gradle compilers out of android-toolchain to own gradle project [tor-browser-build]
  733. * Bug 40241: Update components for mozilla87-based Fenix [tor-browser-build]
  734. Tor Browser 10.5a13 -- March 24 2021
  735. * Windows + OS X + Linux
  736. * Update Firefox to 78.9.0esr
  737. * Update NoScript to 11.2.3
  738. * Update Openssl to 1.1.1k
  739. * Update Tor to 0.4.6.1-alpha
  740. * Translations update
  741. * Bug 40030: DuckDuckGo redirect to html doesn't work [torbutton]
  742. * Bug 40032: Remove Snowflake survey banner from TB-alpha [torbutton]
  743. * Android
  744. * Update Fenix to 87.0.0
  745. * Bug 40047: Rebase android-components patches for Fenix 87.0.0 [android-components]
  746. * Bug 40153: Rebase Fenix patches to Fenix 87.0.0 [fenix]
  747. * Bug 40365: Rebase 10.5 patches on 87.0 [tor-browser]
  748. * Bug 40383: Disable dom.enable_event_timing [tor-browser]
  749. * Build System
  750. * Windows + OS X + Linux
  751. * Update Go to 1.15.10
  752. * Bug 23631: Use rootless containers [tor-browser-build]
  753. * Bug 40016: getfpaths is not setting origin_project [rbm]
  754. * Windows
  755. * Bug 40252: Bump mingw-w64 and clang for Firefox 78.9 [tor-browser-build]
  756. Tor Browser 10.0.14 -- March 23 2021
  757. * Windows + OS X + Linux
  758. * Update Firefox to 78.9.0esr
  759. * Update NoScript to 11.2.3
  760. * Update Tor to 0.4.5.7
  761. * Bug 40031: Remove survey banner on TB-stable [torbutton]
  762. * Build System
  763. * Windows
  764. * Bug 40249: Bump mingw-w64 and clang for Firefox 78.9 [tor-browser-build]
  765. Tor Browser 10.5a12 -- March 20 2021
  766. * Android
  767. * Update Fenix to 87.0.0-beta.2
  768. * Update NoScript to 11.2.3
  769. * Update Tor to 0.4.6.1-alpha
  770. * Translations update
  771. * Bug 40030: DuckDuckGo redirect to html doesn't work [torbutton]
  772. * Bug 40043: Rebase android-components patches for Fenix 87 beta 2 builds [android-components]
  773. * Bug 40045: Add External App Prompt for Sharing Images [android-components]
  774. * Bug 40150: Rebase Fenix patches to Fenix 87 beta 2 [fenix]
  775. * Bug 40361: Rebase tor-browser patches to 87.0b4 [tor-browser]
  776. * Build System
  777. * Android
  778. * Update Go to 1.15.10
  779. * Bug 23631: Use rootless containers [tor-browser-build]
  780. * Bug 40016: getfpaths is not setting origin_project [rbm]
  781. * Bug 40172: Move Gradle compilers out of android-toolchain to own gradle project [tor-browser-build]
  782. * Bug 40241: Update components for mozilla87-based Fenix [tor-browser-build]
  783. Tor Browser 10.0.13 -- March 3 2021
  784. * Linux
  785. * Bug 40328: Fix instability after upgrading to glibc 2.33
  786. Tor Browser 10.5a11 -- February 23 2021
  787. * All Platforms
  788. * Update NoScript to 11.2.2
  789. * Update Openssl to 1.1.1j
  790. * Update Tor to 0.4.5.6
  791. * Windows + OS X + Linux
  792. * Update Firefox to 78.8.0esr
  793. * Bug 40029: Create survey banner on about:tor for snowflake [torbutton]
  794. * Bug 40209: Implement Basic Crypto Safety [tor-browser]
  795. * OS X + Linux
  796. * Update HTTPS Everywhere to 2021.1.27
  797. * Bug 40212: Bump version of snowflake and webrtc [tor-browser-build]
  798. * Android
  799. * Update Firefox to 86.1.0
  800. * Bug 40144: Hide Download Manager [fenix]
  801. * Bug 40148: Create survey banner on about:tor for Snowflake [fenix]
  802. * Bug 40344: Set privacy.window.name.update.enabled=false [tor-browser]
  803. * Build System
  804. * Linux
  805. * Bug 40235: Bump apt for Jessie containers [tor-browser-build]
  806. Tor Browser 10.0.12 -- February 23 2021
  807. * All Platforms
  808. * Update NoScript to 11.2.2
  809. * Update Openssl to 1.1.1j
  810. * Update Tor to 0.4.5.6
  811. * Windows + OS X + Linux
  812. * Update Firefox to 78.8.0esr
  813. * Bug 40026: Create survey banner on about:tor for desktop [torbutton]
  814. * Bug 40287: Switch DDG search from POST to GET [tor-browser]
  815. * Android
  816. * Update Firefox to 86.1.0
  817. * Bug 40138: Create survey banner on about:tor for Android [fenix]
  818. * Bug 40144: Hide Download Manager [fenix]
  819. * Bug 40171: Make WebRequest and GeckoWebExecutor First-Party aware [tor-browser]
  820. * Bug 40188: Build and ship snowflake only if it is enabled [tor-browser-build]
  821. * Bug 40309: Avoid using regional OS locales [tor-browser]
  822. * Bug 40344: Set privacy.window.name.update.enabled=false [tor-browser]
  823. * Build System
  824. * Android
  825. * Bug 40214: Update AMO Collection URL [tor-browser-build]
  826. * Bug 40217: Update components for switch to mozilla86-based Fenix [tor-browser-build]
  827. Tor Browser 10.5a10 -- February 7 2021
  828. * Windows
  829. * Update Firefox to 78.7.1esr
  830. * Update HTTPS Everywhere to 2021.1.27
  831. * Bug 40212: Bump version of snowflake and webrtc [tor-browser-build]
  832. Tor Browser 10.0.11 -- February 6 2021
  833. * Windows
  834. * Update Firefox to 78.7.1esr
  835. Tor Browser 10.5a9 -- February 5 2021
  836. * Android
  837. * Update Fenix to 86.0.0-beta.2
  838. * Update HTTPS Everywhere to 2021.1.27
  839. * Update NoScript to 11.2
  840. * Bug 40041: Rebase android-components patches for Fenix 86 beta 2 builds [android-components]
  841. * Bug 40109: Reduce requested permissions [fenix]
  842. * Bug 40141: Hide EME site permission [fenix]
  843. * Bug 40143: Use deterministic date in Test apk [fenix]
  844. * Bug 40146: Rebase Fenix patches to Fenix 86 beta 2 [fenix]
  845. * Bug 40188: Build and ship snowflake only if it is enabled [tor-browser-build}
  846. * Bug 40212: Bump version of snowflake and webrtc [tor-browser-build]
  847. * Bug 40308: Disable network partitioning until we evaluate dFPI [tor-browser]
  848. * Bug 40309: Avoid using regional OS locales [tor-browser]
  849. * Bug 40320: Rebase tor-browser patches to 86.0b5 [tor-browser]
  850. * Build System
  851. * Android
  852. * Bug 40214: Update AMO Collection URL [tor-browser-build]
  853. * Bug 40217: Update components for switch to mozilla86-based Fenix [tor-browser-build]
  854. Tor Browser 10.0.10 -- February 3 2021
  855. * All Platforms
  856. * Update NoScript to 11.2
  857. * Update HTTPS Everywhere to 2021.1.27
  858. * Bug 40224: Backport Tor patch for v3 onion services [tor-browser-build]
  859. * Android
  860. * Pick up fix for Mozilla's bug 1688783
  861. * Pick up fix for Mozilla's bug 1688017
  862. Tor Browser 10.5a8 -- January 26 2021
  863. * All Platforms
  864. * Update NoScript to 11.1.9
  865. * Update Tor to 0.4.5.4-rc
  866. * Windows + OS X + Linux
  867. * Update Firefox to 78.7.0esr
  868. * Bug 40249: Remove EOY 2020 Campaign [tor-browser]
  869. * Bug 40307: Rebase 10.5 patches onto 78.7.0esr [tor-browser]
  870. * Android
  871. * Update Fenix to 85.1.0
  872. * Bug 40037: Rebase 10.5 patches onto 70.0.16 [android-components]
  873. * Bug 40137: Remove EOY 2020 Campaign [fenix]
  874. * Bug 40139: Rebase 10.5 patches onto 85.1.0 [fenix]
  875. * Bug 40305: Rebase 10.5 patches onto 85.0 [tor-browser]
  876. * Build System
  877. * All Platforms
  878. * Update Go to 1.15.7
  879. * Bug 33693: Change snowflake and meek dummy address [tor-browser]
  880. * Android
  881. * Bug 40208: Mitigate uniffi non-deterministic code generation [tor-browser-build]
  882. * Linux
  883. * Bug 40112: Strip libstdc++ we ship [tor-browser-build]
  884. Tor Browser 10.0.9 -- January 26 2021
  885. * All Platforms
  886. * Update NoScript to 11.1.9
  887. * Windows + OS X + Linux
  888. * Update Firefox to 78.7.0esr
  889. * Bug 40249: Remove EOY 2020 Campaign [tor-browser]
  890. * Android
  891. * Update Fenix to 85.1.0
  892. * Bug 40137: Remove EOY 2020 Campaign [fenix]
  893. * Bug 40165: Update zstd to 1.4.8 [tor-browser-build]
  894. * Bug 40308: Disable network state partitioning until audit [tor-browser]
  895. * Build System
  896. * All Platforms
  897. * Update Go to 1.14.14
  898. * Android
  899. * Bug 40190: Update toolchain for Fenix 85 [tor-browser-build]
  900. * Bug 40191: Update Fenix and dependencies to 85.0.0-beta1 [tor-browser-build]
  901. * Bug 40193: Build all mobile Rust targets in a single step [tor-browser-build]
  902. * Bug 40208: Mitigate uniffi non-deterministic code generation [tor-browser-build]
  903. Tor Browser 10.5a7 -- January 19 2021
  904. * All Platforms
  905. * Update NoScript to 11.1.8
  906. * Bug 40204: Update Tor to 0.4.5.3-rc
  907. * Translations update
  908. * Windows + OS X + Linux
  909. * Update Firefox to 78.6.1esr
  910. * Bug 40287: Switch DDG search from POST to GET [tor-browser]
  911. * Bug 40297: Rebase 10.5 patches onto 78.6.1esr [tor-browser]
  912. * Android
  913. * Bug 40036: Rebase patches onto v70.0.11 [android-components]
  914. * Bug 40134: Rebase patches onto v85.0.0-beta.7 [fenix]
  915. * Bug 40293: Rebase patches onto 85.0b9-build1 [tor-browser]
  916. * Bug 40165: Update zstd to 1.4.8 [tor-browser-build]
  917. * OS X
  918. * Bug 40262: Browser tabs crashing on the new Macbooks with the M1 chip [tor-browser]
  919. * Build System
  920. * All Platforms
  921. * Bug 40194: Remove osname part in cbindgen filename [tor-browser-build]
  922. * Android
  923. * Bug 40162: Build Fenix instrumented tests apk [tor-browser-build]
  924. * Bug 40190: Update toolchain for Fenix 85 [tor-browser-build]
  925. * Bug 40191: Update Fenix and dependencies to 85.0.0-beta1 [tor-browser-build]
  926. * Bug 40193: Build all mobile Rust targets in a single step [tor-browser-build]
  927. * Bug 40195: repo.spring.io is not usable anymore [tor-browser-build]
  928. Tor Browser 10.0.8 -- January 12 2021
  929. * All Platforms
  930. * Update NoScript to 11.1.7
  931. * Windows + OS X + Linux
  932. * Update Firefox to 78.6.1esr
  933. * Android
  934. * Update Fenix to 84.1.4
  935. * OS X
  936. * Bug 40262: Browser tabs crashing on the new Macbooks with the M1 chip [tor-browser]
  937. * Build System
  938. * Android
  939. * Bug 40195: repo.spring.io is not usable anymore [tor-browser-build]
  940. Tor Browser 10.5a6 -- December 15 2020
  941. * All Platforms
  942. * Update NoScript to 11.1.6
  943. * Bug 40175: Update obfs4proxy's TLS certificate public key pinning [tor-browser-build]
  944. * Bug 40176: Update openssl to 1.1.1i [tor-browser-build]
  945. * Windows + OS X + Linux
  946. * Update Firefox to 78.6.0esr
  947. * Update HTTPS Everywhere to 2020.11.17
  948. * Update Tor to 0.4.5.2-alpha
  949. * Bug 33803: Add a secondary nightly MAR signing key [tor-browser]
  950. * Bug 40138: Move our primary nightly MAR signing key to tor-browser [tor-browser-build]
  951. * Bug 40159: Update snowflake to ece43cbf [tor-browser-build]
  952. * Android
  953. * Update Fenix to 84.1.0
  954. * Linux
  955. * Bug 40226: Crash on Fedora Workstation Rawhide GNOME [tor-browser]
  956. * Build System
  957. * All Platforms
  958. * Bug 40169: Update apt package cache after calling pre_pkginst, too [tor-browser-build]
  959. * Bug 40183: Pick up Go 1.15.6 [tor-browser-build]
  960. * Windows + OS X + Linux
  961. * Bug 40081: Build Mozilla code with --enable-rust-simd [tor-browser-build]
  962. * Bug 40166: Update apt cache before calling pre_pkginst in container-image config [tor-browser-build]
  963. * Android
  964. * Bug 40184: Update Fenix and deps to 84.1.0 [tor-browser-build]
  965. * OS X
  966. * Bug 40147: Remove RANLIB workaround once we pick up 0.4.5.2-alpha [tor-browser-build]
  967. Tor Browser 10.0.7 -- December 15 2020
  968. * All Platforms
  969. * Update HTTPS Everywhere to 2020.11.17
  970. * Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots [tor-browser]
  971. * Bug 40176: Update openssl to 1.1.1i [tor-browser-build]
  972. * Windows + OS X + Linux
  973. * Update Firefox to 78.6.0esr
  974. * Android
  975. * Update Fenix to 84.1.0
  976. * Update NoScript to 11.1.6
  977. * Linux
  978. * Bug 40226: Crash on Fedora Workstation Rawhide GNOME [tor-browser]
  979. * Build System
  980. * All Platforms
  981. * Bug 40139: Pick up rbm commit for bug 40008 [tor-browser-build]
  982. * Bug 40161: Update Go compiler to 1.14.13 [tor-browser-build]
  983. * Android
  984. * Bug 40128: Allow updating Fenix allowed_addons.json [tor-browser-build]
  985. * Bug 40140: Create own Gradle project [tor-browser-build]
  986. * Bug 40155: Update toolchain for Fenix 84 [tor-browser-build]
  987. * Bug 40156: Update Fenix and dependencies to 84.0.0-beta2 [tor-browser-build]
  988. * Bug 40163: Avoid checking hash of .pom files [tor-browser-build]
  989. * Bug 40171: Include all uniffi-rs artifacts into application-services [tor-browser-build]
  990. * Bug 40184: Update Fenix and deps to 84.1.0 [tor-browser-build]
  991. Tor Browser 10.0.6 -- December 8 2020
  992. * All Platforms
  993. * Bug 40175: Update obfs4proxy's TLS certificate public key pinning [tor-browser-build]
  994. Tor Browser 10.5a5 -- December 7 2020
  995. * Android
  996. * Update Fenix to 84.0.0-beta.2
  997. * Update HTTPS Everywhere to 2020.11.17
  998. * Update Tor to 0.4.5.2-alpha
  999. * Translations update
  1000. * Bug 40159: Update snowflake to ece43cbf [tor-browser-build]
  1001. * Bug 40236: Rebase tor-browser patches to 84.0b1 [tor-browser]
  1002. * Bug 40258: Rebase tor-browser patches to 84.0b7 [tor-browser]
  1003. * Bug 40119: Rebase Fenix patches to Fenix 84 beta 2 [fenix]
  1004. * Bug 40027: Rebase android-components patches for Fenix 84 beta 2 builds [android-components]
  1005. * Build System
  1006. * Android
  1007. * Bug 40081: Build Mozilla code with --enable-rust-simd [tor-browser-build]
  1008. * Bug 40128: Allow updating Fenix allowed_addons.json [tor-browser-build]
  1009. * Bug 40140: Create own Gradle project [tor-browser-build]
  1010. * Bug 40155: Update toolchain for Fenix 84 [tor-browser-build]
  1011. * Bug 40156: Update Fenix and dependencies to 84.0.0-beta2 [tor-browser-build]
  1012. * Bug 40161: Pick up Go 1.15.5 [tor-browser-build]
  1013. * Bug 40163: Bug 40163: Avoid checking hash of .pom files [tor-browser-build]
  1014. * Bug 40166: Update apt cache before calling pre_pkginst in container-image config [tor-browser-build]
  1015. * Bug 40171: Include all uniffi-rs artifacts into application-services [tor-browser-build]
  1016. Tor Browser 10.5a4 -- November 17 2020
  1017. * All Platforms
  1018. * Update Tor to 0.4.5.1-alpha
  1019. * Bug 40212: Add new default bridge "PraxedisGuerrero" [tor-browser]
  1020. * Windows + OS X + Linux
  1021. * Update Firefox to 78.5.0esr
  1022. * Android
  1023. * Update Fenix to 83.1.0
  1024. * Bug 27002: (Mozilla 1673237) Always allow SVGs on about: pages
  1025. * Bug 40137: Built-in https-everywhere storage is not migrated to idb [tor-browser]
  1026. * Bug 40152: Top Crash: android.database.sqlite.SQLiteConstraintException [tor-browser-build]
  1027. * Bug 40171: Make WebRequest and GeckoWebExecutor First-Party aware [tor-browser]
  1028. * Bug 40205: Replace occurrence of EmptyCString with 0-length _ns literal [tor-browser]
  1029. * Bug 40206: Disable the /etc/hosts parser [tor-browser]
  1030. * Translations update
  1031. * Build System
  1032. * OS X
  1033. * Bug 40139: Set RANLIB in macOS tor build [tor-browser-build]
  1034. * Android
  1035. * Bug 40211: Lower required build-tools version to 29.0.2 [tor-browser]
  1036. * Bug 40126: Bump Node to 10.22.1 for mozilla83 [tor-browser-build]
  1037. * Bug 40127: Update components for switch to mozilla83-based Fenix [tor-browser-build]
  1038. Tor Browser 10.0.5 -- November 27 2020
  1039. * All Platforms
  1040. * Update Tor to 0.4.4.6
  1041. * Bug 40212: Add new default obfs4 bridge [tor-browser]
  1042. * Windows + OS X + Linux
  1043. * Update Firefox to 78.5.0esr
  1044. * Android
  1045. * Update Fenix to 83.1.0
  1046. * Translations update
  1047. * Bug 40152: Top Crash: android.database.sqlite.SQLiteConstraintException [tor-browser-build]
  1048. * Bug 40205: Replace occurrence of EmptyCString with 0-length _ns literal [tor-browser]
  1049. * Build System
  1050. * Android
  1051. * Bug 40126: Update toolchains for Fenix 83 [tor-browser-build]
  1052. * Bug 40126: Bump Node to 10.22.1 for mozilla83 [tor-browser-build]
  1053. * Bug 40127: Update GeckoView to 83, android-components to 63.0.1, and Fenix to 83.0.0b2 [tor-browser-build]
  1054. * Bug 40160: Update Fenix to 83.1.0, and android-components to 63.0.9 [tor-browser-build]
  1055. * Bug 40211: Lower required build-tools version to 29.0.2 [tor-browser]
  1056. Tor Browser 10.5a3 -- November 10 2020
  1057. * All Platforms
  1058. * Update NoScript to 11.1.5
  1059. * Bug 40022: EOY November Update - Matching [torbutton]
  1060. * Bug 40064: Bump libevent to 2.1.12 [tor-browser-build]
  1061. * Translations update
  1062. * Windows + OS X + Linux
  1063. * Bug 27002: (Mozilla 1673237) Always allow SVGs on about: pages
  1064. * Bug 40021: Keep page shown after Tor Browser update purple [torbutton]
  1065. * Bug 40137: Migrate https-everywhere storage to idb [tor-browser]
  1066. * Bug 40219: Backport fix for Mozilla's bug 1675905 [tor-browser]
  1067. * Android
  1068. * Pick up fix for Mozilla's bug 1675905 (with GeckoView 82.0.3)
  1069. * Bug 40106: EOY November Update - Matching [fenix]
  1070. * Build System
  1071. * All Platforms
  1072. * Bug 40079: Bump Go to 1.15.4 [tor-browser-build]
  1073. * Windows + OS X + Linux
  1074. * Bug 40133: Bump Rust version for ESR 78 to 1.43.0 [tor-browser-build]
  1075. Tor Browser 10.0.4 -- November 9 2020
  1076. * All Platforms
  1077. * Update NoScript to 11.1.5
  1078. * Bug 40022: EOY November Update - Matching [torbutton]
  1079. * Bug 40219: Backport Mozilla Bug 1675905 [tor-browser]
  1080. * Translations update
  1081. * Windows + OS X + Linux
  1082. * Bug 40021: Keep page shown after Tor Browser update purple [torbutton]
  1083. * Android
  1084. * Bug 40106: EOY November Update - Matching [fenix]
  1085. * Translations update
  1086. * Build System
  1087. * All Platforms
  1088. * Update Go to 1.14.11
  1089. * Windows + OS X + Linux
  1090. * Bug 40141: Include "desktop" in signed tag [tor-browser-build]
  1091. * Android
  1092. * Bug 40141: Include "android" in signed tag [tor-browser-build]
  1093. Tor Browser 10.0.3 -- November 2 2020
  1094. * Android
  1095. * Update Fenix to 82.1.1
  1096. * Update NoScript to 11.1.4
  1097. * Update OpenSSL to 1.1.1h
  1098. * Update Tor to 0.4.4.5
  1099. * Bug 10394: Let Tor Browser update HTTPS Everywhere
  1100. * Bug 11154: Disable TLS 1.0 (and 1.1) by default
  1101. * Bug 16931: Sanitize the add-on blocklist update URL
  1102. * Bug 17374: Disable 1024-DH Encryption by default
  1103. * Bug 21601: Remove unused media.webaudio.enabled pref
  1104. * Bug 30682: Disable Intermediate CA Preloading
  1105. * Bug 30812: Exempt about: pages from Resist Fingerprinting
  1106. * Bug 32886: Separate treatment of @media interaction features for desktop and android
  1107. * Bug 33534: Review FF release notes from FF69 to latest (FF78)
  1108. * Bug 33594: Disable telemetry collection (Glean)
  1109. * Bug 33851: Patch out Parental Controls detection and logging
  1110. * Bug 33856: Set browser.privatebrowsing.forceMediaMemoryCache to True
  1111. * Bug 33862: Fix usages of createTransport API
  1112. * Bug 33962: Uplift patch for bug 5741 (dns leak protection)
  1113. * Bug 34125: API change in protocolProxyService.registerChannelFilter
  1114. * Bug 34338: Disable the crash reporter
  1115. * Bug 34377: Port padlock states for .onion services
  1116. * Bug 34378: Port external helper app prompting
  1117. * Bug 34401: Re-design Connect screen on Android
  1118. * Bug 34402: Re-design Network Settings Screen on Android
  1119. * Bug 34403: UI changes for "Only Private Browsing Mode" on Android
  1120. * Bug 34405: Re-design about:tor on Android
  1121. * Bug 34406: Re-design onion indicators for Android
  1122. * Bug 34407: Review all Fenix menu items
  1123. * Bug 30605: Honor privacy.spoof_english
  1124. * Bug 40001: Start Tor as part of the Fenix initialization [fenix]
  1125. * Bug 40001: Generate tor-browser-brand.ftl when importing translations [torbutton]
  1126. * Bug 40002: Ensure system download manager is not used [android-components]
  1127. * Bug 40002: Fix generateNSGetFactory being moved to ComponentUtils [torbutton]
  1128. * Bug 40003: Adapt code for L10nRegistry API changes [torbutton]
  1129. * Bug 40003: Block starting Tor when setup is not complete [tor-android-service]
  1130. * Bug 40004: "Tor Browser" string is used instead of "Alpha"/"Nightly" for non en-US locales [tor-android-service]
  1131. * Bug 40004: Fix noscript message passing for Firefox 79 [torbutton]
  1132. * Bug 40005: Modify WebExtensions Menu [android-components]
  1133. * Bug 40006: "Only Private Browsing Mode" on Android [fenix]
  1134. * Bug 40006: Add Security Level plumbing [android-components]
  1135. * Bug 40007: Port external helper app prompting [android-components]
  1136. * Bug 40007: Move SecurityPrefs initialization to the StartupObserver component [torbutton]
  1137. * Bug 40008: Style fixes for 78 [torbutton]
  1138. * Bug 40009: Change the default search engines [android-components]
  1139. * Bug 40010: Verify Sentry is disabled [fenix]
  1140. * Bug 40011: Verify Leanplum is disabled [fenix]
  1141. * Bug 40011: Hide option for disallowing addons in private mode [android-components]
  1142. * Bug 40012: Verify Adjust is disabled [fenix]
  1143. * Bug 40013: Timestamp is embedded in extension manifest files [android-components]
  1144. * Bug 40013: Verify InstallReferrer is disabled [fenix]
  1145. * Bug 40014: Verify Google Ads ID is disabled [fenix]
  1146. * Bug 40014: Set correct default Security Level [android-components]
  1147. * Bug 40015: Modify Fenix Home Menu [fenix]
  1148. * Bug 40016: Modify Fenix Settings Menu [fenix]
  1149. * Bug 40016: Allow inheriting from AddonCollectionProvider [android-components]
  1150. * Bug 40017: Rebase android-components patches to 60 [android-components]
  1151. * Bug 40017: Audit Firefox 68-78 diff for proxy issues [tor-browser]
  1152. * Bug 40018: Disable Push functionality [fenix]
  1153. * Bug 40019: Ensure missing Adjust token does not throw an exception [fenix]
  1154. * Bug 40019: Expose spoofEnglish pref [android-components]
  1155. * Bug 40020: Disable third-party cookies [android-components]
  1156. * Bug 40021: Force telemetry=false in Fennec settings migration [android-components]
  1157. * Bug 40022: Migrate tor security settings [android-components]
  1158. * Bug 40023: Stop Private Notification Service [android-components]
  1159. * Bug 40023: Rebase Tor Browser esr78 patches onto 80 beta [tor-browser]
  1160. * Bug 40024: Disable tracking protection by default [android-components]
  1161. * Bug 40026: Implement Security Level settings [fenix]
  1162. * Bug 40028: Implement bootstrapping and about:tor [fenix]
  1163. * Bug 40029: Rebase Fenix patches to 81.1.0b1 [fenix]
  1164. * Bug 40030: Install https-everywhere and noscript addons [fenix]
  1165. * Bug 40031: Hide Mozilla-specific items on About page [fenix]
  1166. * Bug 40032: Disallow Cleartext Traffic [fenix]
  1167. * Bug 40034: Disable PWA [fenix]
  1168. * Bug 40035: Maybe hide Quick Start in release [fenix]
  1169. * Bug 40038: Review RemoteSettings for ESR 78 [tor-browser]
  1170. * Bug 40039: Implement Bridge configuration from Connect screen [fenix]
  1171. * Bug 40040: Investigate why bootstrapping fails [fenix]
  1172. * Bug 40041: Implement Network settings [fenix]
  1173. * Bug 40042: Timestamp is embedded in extension manifest files [fenix]
  1174. * Bug 40044: Fixup Connect, Onboarding, and Home screens [fenix]
  1175. * Bug 40048: Disable various ESR78 features via prefs [tor-browser]
  1176. * Bug 40050: Rebase Fenix patches to Fenix 82 [fenix]
  1177. * Bug 40053: Select your security settings panel on start page is confusing [fenix]
  1178. * Bug 40054: Search engines on mobile Tor Browser don't match the desktop ones [fenix]
  1179. * Bug 40058: Disabling/Enabling addon still shows option to disallow in private mode [fenix]
  1180. * Bug 40058: Hide option for disallowing addon in private mode [fenix]
  1181. * Bug 40061: Do not show "Send to device" in sharing menu [fenix]
  1182. * Bug 40062: HTTPS Everywhere is not shown as installed [fenix]
  1183. * Bug 40063: Do not sort search engines alphabetically [fenix]
  1184. * Bug 40064: Modify Nighty (and Debug) build variants [fenix]
  1185. * Bug 40066: Remove default bridge 37.218.240.34 [tor-browser-build]
  1186. * Bug 40066: Update existing prefs for ESR 78 [tor-browser]
  1187. * Bug 40067: Make date on Fenix about page reproducible [fenix]
  1188. * Bug 40068: Tor Service closes when changing theme [fenix]
  1189. * Bug 40069: Add helpers for message passing with extensions [tor-browser]
  1190. * Bug 40071: Show only supported locales [fenix]
  1191. * Bug 40072: Bug 40072: Disable Tracking Protection [fenix]
  1192. * Bug 40073: Use correct branding on About page [fenix]
  1193. * Bug 40073: Repack omni.ja to include builtin HTTPS Everywhere [tor-browser-build]
  1194. * Bug 40073: Disable remote Public Suffix List fetching [tor-browser]
  1195. * Bug 40076: "Explore privately" not visible [fenix]
  1196. * Bug 40078: Crash at Android startup from background service [fenix]
  1197. * Bug 40082: Security level is reset when the app is killed [fenix]
  1198. * Bug 40082: Let JavaScript on safest setting handled by NoScript again [tor-browser]
  1199. * Bug 40083: Locale ordering in BuildConfig is non-deterministic [fenix]
  1200. * Bug 40087: Implement a switch for english locale spoofing [fenix]
  1201. * Bug 40088: Use Tor Browser logo in migration screen [fenix]
  1202. * Bug 40091: Load HTTPS Everywhere as a builtin addon [tor-browser]
  1203. * Bug 40093: Enable Quit menu button [fenix]
  1204. * Bug 40094: Do not use MasterPasswordTipProvider in HomeFragment [fenix]
  1205. * Bug 40095: Hide "Sign in to sync" in bookmarks [fenix]
  1206. * Bug 40095: Review Mozilla developer notes for 79-81 (including) [tor-browser]
  1207. * Bug 40096: Review closed Mozilla bugs between 79-81 (inclusive) for GeckoView [tor-browser]
  1208. * Bug 40097: Rebase browser patches to 81.0b1 [tor-browser]
  1209. * Bug 40097: Bump allowed_addons.json [fenix]
  1210. * Bug 40098: Implement EOY home screen [fenix]
  1211. * Bug 40100: Resolve startup crashes in debug build [fenix]
  1212. * Bug 40112: Check that caching stylesheets per document group adheres to FPI [tor-browser]
  1213. * Bug 40119: Update Fenix dependencies for 81.1.2 [fenix]
  1214. * Bug 40125: Geckoview: Expose security level interface [tor-browser]
  1215. * Bug 40133: Rebase tor-browser patches to 82.0b1 [tor-browser]
  1216. * Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots [tor-browser]
  1217. * Bug 40172: Security UI not updated for non-https .onion pages in Fenix [tor-browser]
  1218. * Bug 40173: Initialize security_slider in GeckoView at 4 [tor-browser]
  1219. * Bug 40198: Expose privacy.spoof_english pref [tor-browser]
  1220. * Bug 40199: Avoid using system locale for intl.accept_languages [tor-browser]
  1221. * Translations update
  1222. * Build System
  1223. * Android
  1224. * Update Go to 1.14.10
  1225. * Bug 33556: Add TBB project for android-components
  1226. * Bug 33557: Update Android toolchain for Fenix
  1227. * Bug 33558: Update tor-onion-proxy-library to use toolchain for Fenix
  1228. * Bug 33559: Update tor-android-service to use toolchain for Fenix
  1229. * Bug 33561: Update OpenSSL to use Android NDK 20
  1230. * Bug 33563: Update Tor to use Android NDK 20
  1231. * Bug 33564: Update ZSTD to use Android NDK 20
  1232. * Bug 33626: Add project for GeckoView
  1233. * Bug 33670: Update rbm.conf to match NDK 20
  1234. * Bug 33801: Update Go project to use new Android toolchain
  1235. * Bug 33833: Update Rust project to use Android NDK 20
  1236. * Bug 33927: Add tor-browser-build project for fenix
  1237. * Bug 33935: Fenix's classes5.dex files are not reproducible
  1238. * Bug 33973: Create fat .aar for GeckoView
  1239. * Bug 34011: Bump clang to 9.0.1
  1240. * Bug 34012: Bump cbindgen to 0.14.3
  1241. * Bug 34013: Bump Node to 10.21.0
  1242. * Bug 34014: Enable sqlite3 support in Python
  1243. * Bug 34101: Add tor-browser-build project for application-services
  1244. * Bug 34163: testbuild target is broken for Tor Browser 64 bit
  1245. * Bug 34187: Update zlib to use Android NDK 20
  1246. * Bug 34360: Bump binutils version to 2.35.1
  1247. * Bug 40010: Add nss project for application-services [tor-browser-build]
  1248. * Bug 40011: Add sqlcipher for application-services [tor-browser-build]
  1249. * Bug 40029: Clean-up all projects to remove fennec bits we don't need for fenix [tor-browser-build]
  1250. * Bug 40031: Add licenses for kcp-go and smux. [tor-browser-build]
  1251. * Bug 40039: Remove version_path in nss project [tor-browser-build]
  1252. * Bug 40040: Wire geckoview, application-services, android-components, and fenix together [tor-browser-build]
  1253. * Bug 40054: Adapt build.android script in tor-browser project for fenix [tor-browser-build]
  1254. * Bug 40055: Integrate building Glean in offline mode [tor-browser-build]
  1255. * Bug 40057: Include translations into build process in the fenix world [tor-browser-build]
  1256. * Bug 40058: Build Fenix with tor-android-service and tor-onion-proxy-library [tor-browser-build]
  1257. * Bug 40060: Set Fenix Version Name in build [tor-browser-build]
  1258. * Bug 40061: Remove Android SDK 28 [tor-browser-build]
  1259. * Bug 40065: Bump debootstrap-image ubuntu_version to 20.04.1 [tor-browser-build]
  1260. * Bug 40068: Bump versions for Fenix 81.1.0b1 dependencies [tor-browser-build]
  1261. * Bug 40072: Tor libraries are missing in final .apk after switch to 81.1.0b1 [tor-browser-build]
  1262. * Bug 40076: Use our android-components repo on GitLab [tor-browser-build]
  1263. * Bug 40078: Bump Gradle version for Fenix to 6.5.1 [tor-browser-build]
  1264. * Bug 40084: Generation of AndroidManifest.xml is not reproducible [tor-browser-build]
  1265. * Bug 40085+40086: classes.dex files are not reproducible in Fenix [tor-browser-build]
  1266. * Bug 40087: Deterministically add HTTPS Everywhere into omni.ja [tor-browser-build]
  1267. * Bug 40088+40117: Use MOZ_BUILD_DATE for extension manifest timestamps [tor-browser-build]
  1268. * Bug 40093: Ensure application-services libs do not include libc networking symbols [tor-browser-build]
  1269. * Bug 40094: Aarch64 fenix rust cross-compilation fails [tor-browser-build]
  1270. * Bug 40095: The pattern for the apk variable in build.android is matching too much [tor-browser-build]
  1271. * Bug 40097: Update toolchain for Fenix 82 [tor-browser-build]
  1272. * Bug 40101: Pick up Fenix 81.1.1 [tor-browser-build]
  1273. * Bug 40105: Enhance Gradle dependency script (sort deterministically and exclude .module files) [tor-browser-build]
  1274. * Bug 40106: Support using geckoview as well [tor-browser-build]
  1275. * Bug 40108: android-components does not bundle tooling-glean-gradle archive, only .pom file [tor-browser-build]
  1276. * Bug 40113: Nightly Android should use Nightly branding [tor-browser-build]
  1277. * Bug 40115: Update components for switch to mozilla82-based Fenix [tor-browser-build]
  1278. * Bug 40121: Use updated glean_parser for application-services as well [tor-browser-build]
  1279. * Bug 40124: Remove unused torbrowser-android-all (and related) targets [tor-browser-build]
  1280. * Bug 40125: Remove fenix-* projects [tor-browser-build]
  1281. * Bug 40129: application-services is missing rustc in PATH [tor-browser-build]
  1282. * Bug 40130: More mobile clean-up [tor-browser-build]
  1283. Tor Browser 10.0a9 -- October 26 2020
  1284. * Android
  1285. * Update Fenix to 82.1.1
  1286. * Update NoScript to 11.1.3
  1287. * Update OpenSSL to 1.1.1h
  1288. * Bug 30605: Honor privacy.spoof_english
  1289. * Bug 40003: Block starting Tor when setup is not complete [tor-android-service]
  1290. * Bug 40004: "Tor Browser" string is used instead of "Alpha"/"Nightly" for non en-US locales [tor-android-service]
  1291. * Bug 40016: Allow inheriting from AddonCollectionProvider [android-components]
  1292. * Bug 40017: Rebase android-components patches to 60 [android-components]
  1293. * Bug 40019: Expose spoofEnglish pref [android-components]
  1294. * Bug 40020: Disable third-party cookies [android-components]
  1295. * Bug 40021: Force telemetry=false in Fennec settings migration [android-components]
  1296. * Bug 40022: Migrate tor security settings [android-components]
  1297. * Bug 40023: Stop Private Notification Service [android-components]
  1298. * Bug 40024: Disable tracking protection by default [android-components]
  1299. * Bug 40050: Rebase Fenix patches to Fenix 82 [fenix]
  1300. * Bug 40053: Select your security settings panel on start page is confusing [fenix]
  1301. * Bug 40058: Disabling/Enabling addon still shows option to disallow in private mode [fenix]
  1302. * Bug 40062: HTTPS Everywhere is not shown as installed [fenix]
  1303. * Bug 40068: Tor Service closes when changing theme [fenix]
  1304. * Bug 40071: Show only supported locales [fenix]
  1305. * Bug 40073: Use correct branding on About page [fenix]
  1306. * Bug 40076: "Explore privately" not visible [fenix]
  1307. * Bug 40078: Crash at Android startup from background service [fenix]
  1308. * Bug 40082: Security level is reset when the app is killed [fenix]
  1309. * Bug 40083: Locale ordering in BuildConfig is non-deterministic [fenix]
  1310. * Bug 40087: Implement a switch for english locale spoofing [fenix]
  1311. * Bug 40088: Use Tor Browser logo in migration screen [fenix]
  1312. * Bug 40094: Do not use MasterPasswordTipProvider in HomeFragment [fenix]
  1313. * Bug 40095: Hide "Sign in to sync" in bookmarks [fenix]
  1314. * Bug 40097: Bump allowed_addons.json [fenix]
  1315. * Bug 40133: Rebase tor-browser patches to 82.0b1 [tor-browser]
  1316. * Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots [tor-browser]
  1317. * Bug 40198: Expose privacy.spoof_english pref [tor-browser]
  1318. * Bug 40199: Avoid using system locale for intl.accept_languages [tor-browser]
  1319. * Translations update
  1320. * Build System
  1321. * Android
  1322. * Update Go to 1.14.10
  1323. * Bug 34360: Bump binutils version to 2.35.1
  1324. * Bug 40097: Update toolchain for Fenix 82 [tor-browser-build]
  1325. * Bug 40108: Package tooling-glean-gradle archive, too [tor-browser-build]
  1326. * Bug 40115: Update components for switch to mozilla82-based Fenix [tor-browser-build]
  1327. * Bug 40121: Use updated glean_parser for application-services as well [tor-browser-build]
  1328. * Bug 40124: Remove unused torbrowser-android-all (and related) targets [tor-browser-build]
  1329. * Bug 40125: Remove fenix-* projects [tor-browser-build]
  1330. * Bug 40129: application-services is missing rustc in PATH [tor-browser-build]
  1331. * Bug 40130: More mobile clean-up [tor-browser-build]
  1332. Tor Browser 10.5a2 -- October 20 2020
  1333. * Windows + OS X + Linux
  1334. * Update Firefox to 78.4.0esr
  1335. * Update NoScript to 11.1.3
  1336. * Update OpenSSL to 1.1.1h
  1337. * Update Tor Launcher to 0.2.26
  1338. * Translations update
  1339. * Bug 31767: Avoid using intl.locale.requested preference directly
  1340. * Bug 33954: Consider different approach for Bug 2176
  1341. * Bug 40011: Rename tor-browser-brand.ftl to brand.ftl [torbutton]
  1342. * Bug 40012: Fix about:tor not loading some images in 82 [torbutton]
  1343. * Bug 40013: End of year 2020 Fundraising campaign [torbutton]
  1344. * Bug 40016: Fix onion pattern for LTR locales [torbutton]
  1345. * Bug 40139: Update Onboarding icon for 10.0 [tor-browser]
  1346. * Bug 40148: Disable Picture-in-Picture until we investigate and possibly fix it [tor-browser]
  1347. * Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots [tor-browser]
  1348. * Bug 40192: Backport Mozilla Bug 1658881 [tor-browser]
  1349. * Translations update
  1350. * Windows
  1351. * Bug 40140: Videos stop working with Tor Browser 10.0 on Windows [tor-browser]
  1352. * Build System
  1353. * Windows + OS X + Linux
  1354. * Update Go to 1.14.10
  1355. * Bug 40104: Use our TMPDIR when creating our .mar files [tor-browser-build]
  1356. * Linux
  1357. * Bug 40118: Add missing libdrm dev package to firefox container [tor-browser-build]
  1358. * Windows
  1359. * Bug 34360: Bump binutils to 2.35.1
  1360. * Bug 40051: Remove SOURCE_DATE_EPOCH patch [tor-browser-build]
  1361. * Bug 40131: Remove unused binutils patches [tor-browser-build]
  1362. Tor Browser 10.0.2 -- October 20 2020
  1363. * Windows + OS X + Linux
  1364. * Update Firefox to 78.4.0esr
  1365. * Update NoScript to 11.1.3
  1366. * Bug 40192: Backport Mozilla Bug 1658881 [tor-browser]
  1367. * Translations update
  1368. * Linux
  1369. * Bug 40193: Add `AT_EMPTY_PATH` definition [tor-browser]
  1370. Tor Browser 10.0.1 -- October 13 2020
  1371. * Windows + OS X + Linux
  1372. * Update NoScript to 11.1.1
  1373. * Bump OpenSSL to 1.1.1h
  1374. * Update Tor Launcher to 0.2.26
  1375. * Bug 31767: Avoid using intl.locale.requested preference directly
  1376. * Bug 40013: End of year 2020 Fundraising campaign [torbutton]
  1377. * Bug 40016: Fix onion pattern for LTR locales [torbutton]
  1378. * Bug 40139: Update Onboarding icon for 10.0 [tor-browser]
  1379. * Bug 40148: Disable Picture-in-Picture until we investigate and possibly fix it [tor-browser]
  1380. * Translations update
  1381. * Windows
  1382. * Bug 40140: Videos stop working with Tor Browser 10.0 on Windows [tor-browser]
  1383. * Build System
  1384. * Windows + OS X + Linux
  1385. * Bump Go to 1.14.9
  1386. * Windows
  1387. * Bug 40051: Remove SOURCE_DATE_EPOCH patch for OpenSSL [tor-browser-build]
  1388. Tor Browser 10.0a8 -- October 8 2020
  1389. * Android
  1390. * Update Fenix to 81.1.2
  1391. * Update Tor to 0.4.4.5
  1392. * Update NoScript to 11.0.46
  1393. * Bug 10394: Let Tor Browser update HTTPS Everywhere
  1394. * Bug 11154: Disable TLS 1.0 (and 1.1) by default
  1395. * Bug 16931: Sanitize the add-on blocklist update URL
  1396. * Bug 17374: Disable 1024-DH Encryption by default
  1397. * Bug 21601: Remove unused media.webaudio.enabled pref
  1398. * Bug 30682: Disable Intermediate CA Preloading
  1399. * Bug 30812: Exempt about: pages from Resist Fingerprinting
  1400. * Bug 32886: Separate treatment of @media interaction features for desktop and android
  1401. * Bug 33534: Review FF release notes from FF69 to latest (FF78)
  1402. * Bug 33594: Disable telemetry collection (Glean)
  1403. * Bug 33851: Patch out Parental Controls detection and logging
  1404. * Bug 33856: Set browser.privatebrowsing.forceMediaMemoryCache to True
  1405. * Bug 33862: Fix usages of createTransport API
  1406. * Bug 33962: Uplift patch for bug 5741 (dns leak protection)
  1407. * Bug 34125: API change in protocolProxyService.registerChannelFilter
  1408. * Bug 34338: Disable the crash reporter
  1409. * Bug 34377: Port padlock states for .onion services
  1410. * Bug 34378: Port external helper app prompting
  1411. * Bug 34401: Re-design Connect screen on Android
  1412. * Bug 34402: Re-design Network Settings Screen on Android
  1413. * Bug 34403: UI changes for "Only Private Browsing Mode" on Android
  1414. * Bug 34405: Re-design about:tor on Android
  1415. * Bug 34406: Re-design onion indicators for Android
  1416. * Bug 34407: Review all Fenix menu items
  1417. * Bug 40001: Start Tor as part of the Fenix initialization [fenix]
  1418. * Bug 40001: Generate tor-browser-brand.ftl when importing translations [torbutton]
  1419. * Bug 40002: Ensure system download manager is not used [android-components]
  1420. * Bug 40002: Fix generateNSGetFactory being moved to ComponentUtils [torbutton]
  1421. * Bug 40003: Adapt code for L10nRegistry API changes [torbutton]
  1422. * Bug 40004: Fix noscript message passing for Firefox 79 [torbutton]
  1423. * Bug 40005: Modify WebExtensions Menu [android-components]
  1424. * Bug 40006: "Only Private Browsing Mode" on Android [fenix]
  1425. * Bug 40006: Add Security Level plumbing [android-components]
  1426. * Bug 40007: Port external helper app prompting [android-components]
  1427. * Bug 40007: Move SecurityPrefs initialization to the StartupObserver component [torbutton]
  1428. * Bug 40008: Style fixes for 78 [torbutton]
  1429. * Bug 40009: Change the default search engines [android-components]
  1430. * Bug 40010: Verify Sentry is disabled [fenix]
  1431. * Bug 40011: Verify Leanplum is disabled [fenix]
  1432. * Bug 40011: Hide option for disallowing addons in private mode [android-components]
  1433. * Bug 40012: Verify Adjust is disabled [fenix]
  1434. * Bug 40013: Timestamp is embedded in extension manifest files [android-components]
  1435. * Bug 40013: Verify InstallReferrer is disabled [fenix]
  1436. * Bug 40014: Verify Google Ads ID is disabled [fenix]
  1437. * Bug 40014: Set correct default Security Level [android-components]
  1438. * Bug 40015: Modify Fenix Home Menu [fenix]
  1439. * Bug 40016: Modify Fenix Settings Menu [fenix]
  1440. * Bug 40017: Audit Firefox 68-78 diff for proxy issues [tor-browser]
  1441. * Bug 40018: Disable Push functionality [fenix]
  1442. * Bug 40019: Ensure missing Adjust token does not throw an exception [fenix]
  1443. * Bug 40023: Rebase Tor Browser esr78 patches onto 80 beta [tor-browser]
  1444. * Bug 40026: Implement Security Level settings [fenix]
  1445. * Bug 40028: Implement bootstrapping and about:tor [fenix]
  1446. * Bug 40029: Rebase Fenix patches to 81.1.0b1 [fenix]
  1447. * Bug 40030: Install https-everywhere and noscript addons [fenix]
  1448. * Bug 40031: Hide Mozilla-specific items on About page [fenix]
  1449. * Bug 40032: Disallow Cleartext Traffic [fenix]
  1450. * Bug 40034: Disable PWA [fenix]
  1451. * Bug 40038: Review RemoteSettings for ESR 78 [tor-browser]
  1452. * Bug 40035: Maybe hide Quick Start in release [fenix]
  1453. * Bug 40039: Implement Bridge configuration from Connect screen [fenix]
  1454. * Bug 40040: Investigate why bootstrapping fails [fenix]
  1455. * Bug 40041: Implement Network settings [fenix]
  1456. * Bug 40042: Timestamp is embedded in extension manifest files [fenix]
  1457. * Bug 40044: Fixup Connect, Onboarding, and Home screens [fenix]
  1458. * Bug 40048: Disable various ESR78 features via prefs [tor-browser]
  1459. * Bug 40054: Search engines on mobile Tor Browser don't match the desktop ones [fenix]
  1460. * Bug 40058: Hide option for disallowing addon in private mode [fenix]
  1461. * Bug 40061: Do not show "Send to device" in sharing menu [fenix]
  1462. * Bug 40063: Do not sort search engines alphabetically [fenix]
  1463. * Bug 40064: Modify Nighty (and Debug) build variants [fenix]
  1464. * Bug 40066: Remove default bridge 37.218.240.34 [tor-browser-build]
  1465. * Bug 40066: Enable Snowflake on Beta [fenix]
  1466. * Bug 40066: Update existing prefs for ESR 78 [tor-browser]
  1467. * Bug 40067: Make date on Fenix about page reproducible [fenix]
  1468. * Bug 40069: Add helpers for message passing with extensions [tor-browser]
  1469. * Bug 40072: Bug 40072: Disable Tracking Protection [fenix]
  1470. * Bug 40073: Repack omni.ja to include builtin HTTPS Everywhere [tor-browser-build]
  1471. * Bug 40073: Disable remote Public Suffix List fetching [tor-browser]
  1472. * Bug 40082: Let JavaScript on safest setting handled by NoScript again [tor-browser]
  1473. * Bug 40091: Load HTTPS Everywhere as a builtin addon [tor-browser]
  1474. * Bug 40095: Review Mozilla developer notes for 79-81 (including) [tor-browser]
  1475. * Bug 40096: Review closed Mozilla bugs between 79-81 (inclusive) for GeckoView [tor-browser]
  1476. * Bug 40097: Rebase browser patches to 81.0b1 [tor-browser]
  1477. * Bug 40098: Initialize torbutton for Geckoview and make sure its features work as expected in Fenix [tor-browser]
  1478. * Bug 40112: Check that caching stylesheets per document group adheres to FPI [tor-browser]
  1479. * Bug 40119: Update Fenix dependencies for 81.1.2 [fenix]
  1480. * Bug 40125: Geckoview: Expose security level interface [tor-browser]
  1481. * Bug 40172: Security UI not updated for non-https .onion pages in Fenix [tor-browser]
  1482. * Bug 40173: Initialize security_slider in GeckoView at 4 [tor-browser]
  1483. * Translations update
  1484. * Build System
  1485. * Android
  1486. * Bump Go to 1.14.7
  1487. * Bug 33556: Add TBB project for android-components
  1488. * Bug 33557: Update Android toolchain for Fenix
  1489. * Bug 33558: Update tor-onion-proxy-library to use toolchain for Fenix
  1490. * Bug 33559: Update tor-android-service to use toolchain for Fenix
  1491. * Bug 33561: Update OpenSSL to use Android NDK 20
  1492. * Bug 33563: Update Tor to use Android NDK 20
  1493. * Bug 33564: Update ZSTD to use Android NDK 20
  1494. * Bug 33626: Add project for GeckoView
  1495. * Bug 33670: Update rbm.conf to match NDK 20
  1496. * Bug 33801: Update Go project to use new Android toolchain
  1497. * Bug 33833: Update Rust project to use Android NDK 20
  1498. * Bug 33927: Add tor-browser-build project for fenix
  1499. * Bug 33935: Fenix's classes5.dex files are not reproducible
  1500. * Bug 33973: Create fat .aar for GeckoView
  1501. * Bug 34011: Bump clang to 9.0.1
  1502. * Bug 34012: Bump cbindgen to 0.14.3
  1503. * Bug 34013: Bump Node to 10.21.0
  1504. * Bug 34014: Enable sqlite3 support in Python
  1505. * Bug 34101: Add tor-browser-build project for application-services
  1506. * Bug 34163: testbuild target is broken for Tor Browser 64 bit
  1507. * Bug 34187: Update zlib to use Android NDK 20
  1508. * Bug 40010: Add nss project for application-services [tor-browser-build]
  1509. * Bug 40011: Add sqlcipher for application-services [tor-browser-build]
  1510. * Bug 40029: Clean-up all projects to remove fennec bits we don't need for fenix [tor-browser-build]
  1511. * Bug 40031: Add licenses for kcp-go and smux. [tor-browser-build]
  1512. * Bug 40039: Remove version_path in nss project [tor-browser-build]
  1513. * Bug 40040: Wire geckoview, application-services, android-components, and fenix together [tor-browser-build]
  1514. * Bug 40054: Adapt build.android script in tor-browser project for fenix [tor-browser-build]
  1515. * Bug 40055: Integrate building Glean in offline mode [tor-browser-build]
  1516. * Bug 40057: Include translations into build process in the fenix world [tor-browser-build]
  1517. * Bug 40058: Build Fenix with tor-android-service and tor-onion-proxy-library [tor-browser-build]
  1518. * Bug 40060: Set Fenix Version Name in build [tor-browser-build]
  1519. * Bug 40061: Remove Android SDK 28 [tor-browser-build]
  1520. * Bug 40065: Bump debootstrap-image ubuntu_version to 20.04.1 [tor-browser-build]
  1521. * Bug 40068: Bump versions for Fenix 81.1.0b1 dependencies [tor-browser-build]
  1522. * Bug 40072: Tor libraries are missing in final .apk after switch to 81.1.0b1 [tor-browser-build]
  1523. * Bug 40076: Use our android-components repo on GitLab [tor-browser-build]
  1524. * Bug 40078: Bump Gradle version for Fenix to 6.5.1 [tor-browser-build]
  1525. * Bug 40084: Generation of AndroidManifest.xml is not reproducible [tor-browser-build]
  1526. * Bug 40085+40086: classes.dex files are not reproducible in Fenix [tor-browser-build]
  1527. * Bug 40087: Deterministically add HTTPS Everywhere into omni.ja [tor-browser-build]
  1528. * Bug 40088+40117: Use MOZ_BUILD_DATE for extension manifest timestamps [tor-browser-build]
  1529. * Bug 40093: Ensure application-services libs do not include libc networking symbols [tor-browser-build]
  1530. * Bug 40094: Aarch64 fenix rust cross-compilation fails [tor-browser-build]
  1531. * Bug 40095: The pattern for the apk variable in build.android is matching too much [tor-browser-build]
  1532. * Bug 40101: Pick up Fenix 81.1.1 [tor-browser-build]
  1533. * Bug 40105: Enhance Gradle dependency script (sort deterministically and exclude .module files) [tor-browser-build]
  1534. * Bug 40106: Support using geckoview as well [tor-browser-build]
  1535. * Bug 40108: android-components does not bundle tooling-glean-gradle archive, only .pom file [tor-browser-build]
  1536. * Bug 40113: Nightly Android should use Nightly branding [tor-browser-build]
  1537. Tor Browser 10.5a1 -- September 22 2020
  1538. * Windows + OS X + Linux
  1539. * Update Firefox to 78.3.0esr
  1540. * Update Tor to 0.4.4.5
  1541. * Update Tor Launcher to 0.2.25
  1542. * Translations update
  1543. * Update NoScript to 11.0.44
  1544. * Bug 40093: Youtube videos on safer produce an error [tor-browser]
  1545. * Translations update
  1546. * Linux
  1547. * Bug 40089: Remove CentOS 6 support for Tor Browser 10.5 [tor-browser]
  1548. * Build System
  1549. * Linux
  1550. * Bug 26238: Move to Debian Jessie for our Linux builds
  1551. * Bug 31729: Support Wayland
  1552. * Bug 40041: Remove CentOS 6 support for 10.5 series [tor-browser-build]
  1553. * Bug 40103: Add i386 pkg-config path for linux-i686 [tor-browser-build]
  1554. Tor Browser 10.0 -- September 22 2020
  1555. * Windows + OS X + Linux
  1556. * Update Firefox to 78.3.0esr
  1557. * Update Tor to 0.4.4.5
  1558. * Update Tor Launcher to 0.2.25
  1559. * Bug 32174: Replace XUL <textbox> with <html:input>
  1560. * Bug 33890: Rename XUL files to XHTML
  1561. * Bug 33862: Fix usages of createTransport API
  1562. * Bug 33906: Fix Tor-Launcher issues for Firefox 75
  1563. * Bug 33998: Use CSS grid instead of XUL grid
  1564. * Bug 34164: Tor Launcher deadlocks during startup (Firefox 77)
  1565. * Bug 34206: Tor Launcher button labels are missing (Firefox 76)
  1566. * Bug 40002: After rebasing to 80.0b2 moat is broken [tor-launcher]
  1567. * Translations update
  1568. * Update NoScript to 11.0.44
  1569. * Bug 40093: Youtube videos on safer produce an error [tor-browser]
  1570. * Translations update
  1571. * Bug 10394: Let Tor Browser update HTTPS Everywhere
  1572. * Bug 11154: Disable TLS 1.0 (and 1.1) by default
  1573. * Bug 16931: Sanitize the add-on blocklist update URL
  1574. * Bug 17374: Disable 1024-DH Encryption by default
  1575. * Bug 21601: Remove unused media.webaudio.enabled pref
  1576. * Bug 30682: Disable Intermediate CA Preloading
  1577. * Bug 30812: Exempt about: pages from Resist Fingerprinting
  1578. * Bug 31918+33533+40024+40037: Rebase Tor Browser esr68 patches for ESR 78 [tor-browser]
  1579. * Bug 32612: Update MAR_CHANNEL_ID for the alpha
  1580. * Bug 32886: Separate treatment of @media interaction features for desktop and android
  1581. * Bug 33534: Review FF release notes from FF69 to latest (FF78)
  1582. * Bug 33697: Use old search config based on list.json
  1583. * Bug 33721: PDF Viewer is not working in the safest security level
  1584. * Bug 33734: Set MOZ_NORMANDY to False
  1585. * Bug 33737: Fix aboutDialog.js error for Firefox nightlies
  1586. * Bug 33848: Disable Enhanced Tracking Protection
  1587. * Bug 33851: Patch out Parental Controls detection and logging
  1588. * Bug 33852: Clean up about:logins to not mention Sync
  1589. * Bug 33856: Set browser.privatebrowsing.forceMediaMemoryCache to True
  1590. * Bug 33862: Fix usages of createTransport API
  1591. * Bug 33867: Disable password manager and password generation
  1592. * Bug 33890: Rename XUL files to XHTML
  1593. * Bug 33892: Add brandProductName to brand.dtd and brand.properties
  1594. * Bug 33962: Uplift patch for bug 5741 (dns leak protection)
  1595. * Bug 34125: API change in protocolProxyService.registerChannelFilter
  1596. * Bug 40001: Generate tor-browser-brand.ftl when importing translations [torbutton]
  1597. * Bug 40002: Remove about:pioneer [tor-browser]
  1598. * Bug 40002: Fix generateNSGetFactory being moved to ComponentUtils [torbutton]
  1599. * Bug 40003: Adapt code for L10nRegistry API changes [torbutton]
  1600. * Bug 40005: Initialize the identity UI before setting up the circuit display [torbutton]
  1601. * Bug 40006: Fix new identity for 81 [torbutton]
  1602. * Bug 40007: Move SecurityPrefs initialization to the StartupObserver component [torbutton]
  1603. * Bug 40008: Style fixes for 78 [torbutton]
  1604. * Bug 40017: Audit Firefox 68-78 diff for proxy issues [tor-browser]
  1605. * Bug 40022: Update new icons in Tor Browser branding [tor-browser]
  1606. * Bug 40025: Revert add-on permissions due to Mozilla's 1560059 [tor-browser]
  1607. * Bug 40036: Remove product version/update channel from #13379 patch [tor-browser]
  1608. * Bug 40038: Review RemoteSettings for ESR 78 [tor-browser]
  1609. * Bug 40048: Disable various ESR78 features via prefs [tor-browser]
  1610. * Bug 40059: Verify our external helper patch is still working [tor-browser]
  1611. * Bug 40066: Update existing prefs for ESR 78 [tor-browser]
  1612. * Bug 40066: Remove default bridge 37.218.240.34 [tor-browser-build]
  1613. * Bug 40073: Disable remote Public Suffix List fetching [tor-browser]
  1614. * Bug 40073: Repack omni.ja to include builtin HTTPS Everywhere [tor-browser-build]
  1615. * Bug 40078: Backport patches for bug 1651680 for now [tor-browser]
  1616. * Bug 40082: Let JavaScript on safest setting handled by NoScript again [tor-browser]
  1617. * Bug 40088: Moat "Submit" button does not work
  1618. * Bug 40090: Disable v3 add-on blocklist for now [tor-browser]
  1619. * Bug 40091: Load HTTPS Everywhere as a builtin addon [tor-browser]
  1620. * Bug 40102: Fix UI bugs in Tor Browser 10.0 alpha [tor-browser]
  1621. * Bug 40106: Cannot install addons in full screen mode [tor-browser]
  1622. * Bug 40109: Playing video breaks after reloading pages [tor-browser]
  1623. * Bug 40119: Enable v3 extension blocklisting again [tor-browser]
  1624. * Windows
  1625. * Bug 33855: Don't use site's icon as window icon in Windows in private mode
  1626. * Bug 40061: Omit the Windows default browser agent from the build [tor-browser]
  1627. * OS X
  1628. * Bug 32252: Tor Browser does not display correctly in VMWare Fusion on macOS (mojave)
  1629. * Build System
  1630. * Windows + OS X + Linux
  1631. * Bump Go to 1.14.7
  1632. * Bug 31845: Bump GCC version to 9.3.0
  1633. * Bug 34011: Bump clang to 9.0.1
  1634. * Bug 34014: Enable sqlite3 support in Python
  1635. * Bug 34390: Don't copy DBM libraries anymore
  1636. * Bug 34391: Remove unused --enable-signmar option
  1637. * Bug 40004: Adapt Rust project for Firefox 78 ESR [tor-browser-build]
  1638. * Bug 40005: Adapt Node project for Firefox 78 ESR [tor-browser-build]
  1639. * Bug 40006: Adapt cbindgen for Firefox 78 ESR [tor-browser-build]
  1640. * Bug 40037: Move projects over to clang-source [tor-browser-build]
  1641. * Bug 40026: Fix full .mar creation for esr78 [tor-browser-build]
  1642. * Bug 40027: Fix incremental .mar creation for esr78 [tor-browser-build]
  1643. * Bug 40028: Do not reference unset env variables [tor-browser-build]
  1644. * Bug 40031: Add licenses for kcp-go and smux. [tor-browser-build]
  1645. * Bug 40045: Fix complete .mar file creation for dmg2mar [tor-browser-build]
  1646. * Bug 40065: Bump debootstrap-image ubuntu_version to 20.04.1 [tor-browser-build]
  1647. * Bug 40087: Deterministically add HTTPS Everywhere into omni.ja [tor-browser-build]
  1648. * Windows
  1649. * Bug 34230: Update Windows toolchain for Firefox 78 ESR
  1650. * Bug 40015: Use only 64bit fxc2 [tor-browser-build]
  1651. * Bug 40017: Enable stripping again on Windows [tor-browser-build]
  1652. * Bug 40052: Bump NSIS to 3.06.1 [tor-browser-build]
  1653. * Bug 40061: Omit the Windows default browser agent from the build [tor-browser]
  1654. * Bug 40071: Be explicit about no SEH with mingw-w64 on 32bit systems [tor-browser-build]
  1655. * Bug 40077: Don't pass --no-insert-timestamp when building Firefox [tor-browser-build]
  1656. * Bug 40090: NSIS 3.06.1 based builds are not reproducible anymore [tor-browser-build]
  1657. * OS X
  1658. * Bug 34229: Update macOS toolchain for Firefox 78 ESR
  1659. * Bug 40003: Update cctools version for Firefox 78 ESR [tor-browser-build]
  1660. * Bug 40018: Add libtapi project for cctools [tor-browser-build]
  1661. * Bug 40019: Ship our own runtime library for macOS [tor-browser-build]
  1662. * Linux
  1663. * Bug 34359: Adapt abicheck.cc to deal with newer GCC version
  1664. * Bug 34386: Fix up clang compilation on Linux
  1665. * Bug 40053: Also create the langpacks tarball for non-release builds [tor-browser-build]
  1666. Tor Browser 10.0a7 -- September 14 2020
  1667. * Windows + OS X + Linux
  1668. * Update Tor Launcher to 0.2.24
  1669. * Update NoScript to 11.0.43
  1670. * Translations update
  1671. * Bug 10394: Let Tor Browser update HTTPS Everywhere
  1672. * Bug 32017: Use ExtensionStorageIDB again
  1673. * Bug 40006: Fix new identity for 81 [torbutton]
  1674. * Bug 40007: Move SecurityPrefs initialization to the StartupObserver component [torbutton]
  1675. * Bug 40008: Style fixes for 78 [torbutton]
  1676. * Bug 40066: Remove default bridge 37.218.240.34 [tor-browser-build]
  1677. * Bug 40073: Repack omni.ja to include builtin HTTPS Everywhere [tor-browser-build]
  1678. * Bug 40091: Load HTTPS Everywhere as a builtin addon [tor-browser]
  1679. * Bug 40102: Fix UI bugs in Tor Browser 10.0 alpha [tor-browser]
  1680. * Bug 40109: Playing video breaks after reloading pages [tor-browser]
  1681. * Big 40119: Enable v3 extension blocklisting again [tor-browser]
  1682. * Build System
  1683. * Windows + OS X + Linux
  1684. * Bump Go to 1.14.7
  1685. * Bug 40031: Add licenses for kcp-go and smux. [tor-browser-build]
  1686. * Bug 40045: Fix complete .mar file creation for dmg2mar [tor-browser-build]
  1687. * Bug 40065: Bump debootstrap-image ubuntu_version to 20.04.1 [tor-browser-build]
  1688. * Bug 40087: Deterministically add HTTPS Everywhere into omni.ja [tor-browser-build]
  1689. * Windows
  1690. * Bug 40052: Bump NSIS to 3.06.1 [tor-browser-build]
  1691. * Bug 40071: Be explicit about no SEH with mingw-w64 on 32bit systems [tor-browser-build]
  1692. * Bug 40077: Don't pass --no-insert-timestamp when building Firefox [tor-browser-build]
  1693. * Bug 40090: NSIS 3.06.1 based builds are not reproducible anymore [tor-browser-build]
  1694. Tor Browser 10.0a6 -- August 26 2020
  1695. * All Platforms
  1696. * Update HTTPS Everywhere to 2020.08.13
  1697. * Windows + OS X + Linux
  1698. * Update Firefox to 78.2.0esr
  1699. * Update Tor Launcher to 0.2.23
  1700. * Bug 40002: After rebasing to 80.0b2 moat is broken [tor-launcher]
  1701. * Translations update
  1702. * Update NoScript to 11.0.39
  1703. * Bug 21601: Remove unused media.webaudio.enabled pref
  1704. * Bug 40002: Remove about:pioneer [tor-browser]
  1705. * Bug 40082: Let JavaScript on safest setting handled by NoScript again [tor-browser]
  1706. * Bug 40088: Moat "Submit" button does not work
  1707. * Bug 40090: Disable v3 add-on blocklist for now [tor-browser]
  1708. * OS X
  1709. * Bug 40015: Tor Browser broken on MacOS 11 Big Sur
  1710. * Android
  1711. * Update Firefox to 68.12.0esr
  1712. * Update NoScript to 11.0.38
  1713. * Update Tor to 0.4.4.4-rc
  1714. * Build System
  1715. * Windows + OS X + Linux
  1716. * Bump Go to 1.13.15
  1717. * Linux
  1718. * Bug 40053: Also create the langpacks tarball for non-release builds [tor-browser-build]
  1719. Tor Browser 9.5.4 -- August 25 2020
  1720. * All Platforms
  1721. * Update Firefox to 68.12.0esr
  1722. * Update HTTPS Everywhere to 2020.08.13
  1723. * Update NoScript to 11.0.38
  1724. * Windows + OS X + Linux
  1725. * Bug 40019: Onion-Location should not be processed on .onion webpages [tor-browser]
  1726. * OS X
  1727. * Bug 40015: Tor Browser is broken on MacOS 11 Big Sur [tor-browser]
  1728. Tor Browser 10.0a5 -- August 18 2020
  1729. * Windows + OS X + Linux
  1730. * Update Firefox to 78.1.0esr
  1731. * Update Tor to 0.4.4.4-rc
  1732. * Update Tor Launcher to 0.2.22
  1733. * Bug 32174: Replace XUL <textbox> with <html:input>
  1734. * Bug 33890: Rename XUL files to XHTML
  1735. * Bug 33862: Fix usages of createTransport API
  1736. * Bug 33906: Fix Tor-Launcher issues for Firefox 75
  1737. * Bug 33998: Use CSS grid instead of XUL grid
  1738. * Bug 34164: Tor Launcher deadlocks during startup (Firefox 77)
  1739. * Bug 34206: Tor Launcher button labels are missing (Firefox 76)
  1740. * Translations update
  1741. * Update NoScript to 11.0.37
  1742. * Bug 11154: Disable TLS 1.0 (and 1.1) by default
  1743. * Bug 16931: Sanitize the add-on blocklist update URL
  1744. * Bug 17374: Disable 1024-DH Encryption by default
  1745. * Bug 30682: Disable Intermediate CA Preloading
  1746. * Bug 30812: Exempt about: pages from Resist Fingerprinting
  1747. * Bug 31918+33533+40024+40037: Rebase Tor Browser esr68 patches for ESR 78 [tor-browser]
  1748. * Bug 32612: Update MAR_CHANNEL_ID for the alpha
  1749. * Bug 32886: Separate treatment of @media interaction features for desktop and android
  1750. * Bug 33534: Review FF release notes from FF69 to latest (FF78)
  1751. * Bug 33697: Use old search config based on list.json
  1752. * Bug 33721: PDF Viewer is not working in the safest security level
  1753. * Bug 33734: Set MOZ_NORMANDY to False
  1754. * Bug 33737: Fix aboutDialog.js error for Firefox nightlies
  1755. * Bug 33848: Disable Enhanced Tracking Protection
  1756. * Bug 33851: Patch out Parental Controls detection and logging
  1757. * Bug 33852: Clean up about:logins to not mention Sync
  1758. * Bug 33856: Set browser.privatebrowsing.forceMediaMemoryCache to True
  1759. * Bug 33862: Fix usages of createTransport API
  1760. * Bug 33867: Disable password manager and password generation
  1761. * Bug 33890: Rename XUL files to XHTML
  1762. * Bug 33892: Add brandProductName to brand.dtd and brand.properties
  1763. * Bug 33962: Uplift patch for bug 5741 (dns leak protection)
  1764. * Bug 34125: API change in protocolProxyService.registerChannelFilter
  1765. * Bug 40001: Generate tor-browser-brand.ftl when importing translations [torbutton]
  1766. * Bug 40002: Fix generateNSGetFactory being moved to ComponentUtils [torbutton]
  1767. * Bug 40003: Adapt code for L10nRegistry API changes [torbutton]
  1768. * Bug 40005: Initialize the identity UI before setting up the circuit display [torbutton]
  1769. * Bug 40016: Update Snowflake to discover NAT type [tor-browser-build]
  1770. * Bug 40017: Audit Firefox 68-78 diff for proxy issues [tor-browser]
  1771. * Bug 40022: Update new icons in Tor Browser branding [tor-browser]
  1772. * Bug 40025: Revert add-on permissions due to Mozilla's 1560059 [tor-browser]
  1773. * Bug 40036: Remove product version/update channel from #13379 patch [tor-browser]
  1774. * Bug 40038: Review RemoteSettings for ESR 78 [tor-browser]
  1775. * Bug 40048: Disable various ESR78 features via prefs [tor-browser]
  1776. * Bug 40059: Verify our external helper patch is still working [tor-browser]
  1777. * Bug 40066: Update existing prefs for ESR 78 [tor-browser]
  1778. * Bug 40073: Disable remote Public Suffix List fetching [tor-browser]
  1779. * Bug 40078: Backport patches for bug 1651680 for now [tor-browser]
  1780. * Bug 40106: Cannot install addons in full screen mode [tor-browser]
  1781. * Translations update
  1782. * Windows
  1783. * Bug 33855: Don't use site's icon as window icon in Windows in private mode
  1784. * Bug 40061: Omit the Windows default browser agent from the build [tor-browser]
  1785. * OS X
  1786. * Bug 32252: Tor Browser does not display correctly in VMWare Fusion on macOS (mojave)
  1787. * Build System
  1788. * Windows + OS X + Linux
  1789. * Bug 31845: Bump GCC version to 9.3.0
  1790. * Bug 34011: Bump clang to 9.0.1
  1791. * Bug 34014: Enable sqlite3 support in Python
  1792. * Bug 34390: Don't copy DBM libraries anymore
  1793. * Bug 34391: Remove unused --enable-signmar option
  1794. * Bug 40004: Adapt Rust project for Firefox 78 ESR [tor-browser-build]
  1795. * Bug 40005: Adapt Node project for Firefox 78 ESR [tor-browser-build]
  1796. * Bug 40006: Adapt cbindgen for Firefox 78 ESR [tor-browser-build]
  1797. * Bug 40037: Move projects over to clang-source [tor-browser-build]
  1798. * Bug 40026: Fix full .mar creation for esr78 [tor-browser-build]
  1799. * Bug 40027: Fix incremental .mar creation for esr78 [tor-browser-build]
  1800. * Bug 40028: Do not reference unset env variables [tor-browser-build]
  1801. * Windows
  1802. * Bug 34230: Update Windows toolchain for Firefox 78 ESR
  1803. * Bug 40015: Use only 64bit fxc2 [tor-browser-build]
  1804. * Bug 40017: Enable stripping again on Windows [tor-browser-build]
  1805. * Bug 40061: Omit the Windows default browser agent from the build [tor-browser]
  1806. * OS X
  1807. * Bug 34229: Update macOS toolchain for Firefox 78 ESR
  1808. * Bug 40003: Update cctools version for Firefox 78 ESR [tor-browser-build]
  1809. * Bug 40018: Add libtapi project for cctools [tor-browser-build]
  1810. * Bug 40019: Ship our own runtime library for macOS [tor-browser-build]
  1811. * Linux
  1812. * Bug 34359: Adapt abicheck.cc to deal with newer GCC version
  1813. * Bug 34386: Fix up clang compilation on Linux
  1814. Tor Browser 10.0a4 -- July 28 2020
  1815. * All Platforms
  1816. * Update Firefox to 68.11.0esr
  1817. * Update NoScript to 11.0.34
  1818. * Update Tor to 0.4.4.2-alpha
  1819. * Windows + OS X + Linux
  1820. * Bug 40019: Onion-Location should not be processed on .onion webpages [tor-browser]
  1821. Tor Browser 9.5.3 -- July 28 2020
  1822. * All Platforms
  1823. * Update Firefox to 68.11.0esr
  1824. * Update NoScript to 11.0.34
  1825. * Update Tor to 0.4.3.6
  1826. Tor Browser 10.0a3 -- July 7 2020
  1827. * Android
  1828. * Update Firefox to 68.10.1esr
  1829. Tor Browser 9.5.2 -- July 7 2020
  1830. * Android
  1831. * Update Firefox to 68.10.1esr
  1832. Tor Browser 10.0a2 -- June 30 2020
  1833. * All Platforms
  1834. * Update Firefox to 68.10.0esr
  1835. * Update NoScript to 11.0.32
  1836. * Update Tor to 0.4.4.1-alpha
  1837. * Translations update
  1838. * Bug 34209: about:tor and about:tbupdate fail to load in debug build
  1839. * Bug 34250: Only listen to 'started' in noscript-control.js
  1840. * Bug 34383: Accept request if GetHost() in mixed content blocking check fails
  1841. * Windows + OS X + Linux
  1842. * Bug 34361: "Prioritize .onion sites when known" appears under General
  1843. * Bug 34362: Improve Onion Service Authentication prompt
  1844. * Bug 34369: Fix learn more link in Onion Auth prompt
  1845. * Bug 34379: Fix learn more for Onion-Location
  1846. * Android
  1847. * Bug 34372: Disable GeckoNetworkManager
  1848. Tor Browser 9.5.1 -- June 30 2020
  1849. * All Platforms
  1850. * Update Firefox to 68.10.0esr
  1851. * Update NoScript to 11.0.32
  1852. * Translations update
  1853. * Bug 40009: Improve tor's client auth stability
  1854. * Windows + OS X + Linux
  1855. * Bug 34361: "Prioritize .onion sites when known" appears under General
  1856. * Bug 34362: Improve Onion Service Authentication prompt
  1857. * Bug 34369: Fix learn more link in Onion Auth prompt
  1858. * Bug 34379: Fix learn more for Onion-Location
  1859. * Bug 34347: The Tor Network part on the onboarding is not new anymore
  1860. Tor Browser 10.0a1 -- June 2 2020
  1861. * All Platforms
  1862. * Update Firefox to 68.9.0esr
  1863. * Update HTTPS-Everywhere to 2020.5.20
  1864. * Translations update
  1865. * Windows + OS X + Linux
  1866. * Update Tor Launcher to 0.2.21.8
  1867. * Translations update
  1868. * Bug 34321: Add Learn More onboarding item
  1869. * Bug 34347: The Tor Network part on the onboarding is not new anymore
  1870. * Linux
  1871. * Bug 34315: Avoid reading policies from /etc/firefox on Linux
  1872. * Android
  1873. * Bug 30318: Integrate snowflake into mobile Tor Browser
  1874. * Bug 34219: Enable ZSTD support properly for Android
  1875. * Build System
  1876. * Windows
  1877. * Bug 31128: Move Windows containers to Debian 10
  1878. * Mac OS X
  1879. * Bug 31129: Move macOS containers to Debian 10
  1880. * Android
  1881. * Bug 28672: Android reproducible build of Snowflake
  1882. Tor Browser 9.5 -- June 2 2020
  1883. * All Platforms
  1884. * Update Firefox to 68.9.0esr
  1885. * Update HTTPS-Everywhere to 2020.5.20
  1886. * Update NoScript to 11.0.26
  1887. * Update Tor to 0.4.3.5
  1888. * Translations update
  1889. * Bug 21549: Disable wasm for now until it is properly audited
  1890. * Bug 27268: Preferences clean-up in Torbutton code
  1891. * Bug 28745: Remove torbutton.js unused code
  1892. * Bug 28746: Remove torbutton isolation and fp prefs sync
  1893. * Bug 30237: Control port module improvements for v3 client authentication
  1894. * Bug 30786: Add th locale
  1895. * Bug 30787: Add lt locale
  1896. * Bug 30788: Add ms locale
  1897. * Bug 30851: Move default preferences to 000-tor-browser.js
  1898. * Bug 30888: Move torbutton_util.js to modules/utils.js
  1899. * Bug 31134: Govern graphite again by security settings
  1900. * Bug 31395: Remove inline script in aboutTor.xhtml
  1901. * Bug 31499: Update libevent to 2.1.11-stable
  1902. * Bug 33877: Disable Samples and Regression tests For Libevent Build
  1903. * Bug 31573: Catch SessionStore.jsm exception
  1904. * Bug 32318: Backport Mozilla's fix for bug 1534339
  1905. * Bug 32414: Make Services.search.addEngine obey FPI
  1906. * Bug 32493: Disable MOZ_SERVICES_HEALTHREPORT
  1907. * Bug 32618: Backport fixes from Mozilla bugs 1467970 and 1590526
  1908. * Bug 33342: Avoid disconnect search addon error after removal
  1909. * Bug 33726: Fix patch for #23247: Communicating security expectations for .onion
  1910. * Bug 34157: Backport fix for Mozilla Bug 1511941
  1911. * Windows + OS X + Linux
  1912. * Update Tor Launcher to 0.2.21.8
  1913. * Translations update
  1914. * Bug 19757: Support on-disk storage of v3 client auth keys
  1915. * Bug 30237: Add v3 onion services client authentication prompt
  1916. * Bug 30786: Add th locale
  1917. * Bug 30787: Add lt locale
  1918. * Bug 30788: Add ms locale
  1919. * Bug 33514: non-en-US Tor Browser 9.5a6 won't start up
  1920. * Bug 19251: Show improved error pages for onion service errors
  1921. * Bug 19757: Support on-disk storage of v3 client auth keys
  1922. * Bug 21952: Implement Onion-Location
  1923. * Bug 27604: Fix broken Tor Browser after moving it to a different directory
  1924. * Bug 28005: Implement .onion alias urlbar rewrites
  1925. * Bug 30237: Improve TBB UI of hidden service client authorization
  1926. * Bug 32076: Upgrade to goptlib v1.1.0
  1927. * Bug 32220: Improve the letterboxing experience
  1928. * Bug 32418: Allow updates to be disabled via an enterprise policy.
  1929. * Bug 32470: Backport fix for bug 1590538
  1930. * Bug 32645: Update URL bar onion indicators
  1931. * Bug 32658: Create a new MAR signing key
  1932. * Bug 32674: Point the about:tor "Get involved" link to the community portal
  1933. * Bug 32767: Remove Disconnect search
  1934. * Bug 33698: Update "About Tor Browser" links in Tor Browser
  1935. * Bug 33707: Swap out onion icon in circuit display with new one
  1936. * Bug 34032: Use Securedrop's Official https-everywhere ruleset
  1937. * Bug 34196: Update site info URL with the onion name
  1938. * Bug 34321: Add Learn More onboarding item
  1939. * Windows
  1940. * Bug 22919: Improve the random number generator for the boundaries in multipart/form-data
  1941. * Bug 29614: Use SHA-256 algorithm for Windows timestamping
  1942. * Bug 33113: Bump NSIS version to 3.05
  1943. * OS X
  1944. * Bug 32505: Tighten our rules in our entitlements file for macOS
  1945. * Linux
  1946. * Bug 27903: Tor Browser 8 does not respect gtk3 settings
  1947. * Bug 34315: Avoid reading policies from /etc/firefox on Linux
  1948. * Android
  1949. * Bug 26529: Notify user about possible proxy-bypass before opening external app
  1950. * Bug 30767: Custom obfs4 bridge does not work on Tor Browser for Android
  1951. * Bug 32303: Obfs4 is broken on Android Q
  1952. * Bug 33359: Use latest Version of TOPL and Remove Patches
  1953. * Bug 33931: obfs4 bridges are used instead of meek if meek is selected in Tor Browser for Android alpha
  1954. * Build System
  1955. * All Platforms
  1956. * Bump Go to 1.13.11
  1957. * Bug 33380: Add *.json to sha256sums-unsigned-build.txt
  1958. * Windows
  1959. * Bug 33802: --enable-secure-api is not supported anymore in mingw-w64
  1960. * Linux
  1961. * Bug 32976: Build and bundle geckodriver
  1962. * Bug 34242: Fix creation of Linux containers
  1963. * Android
  1964. * Bug 28765: LibEvent Build for Android
  1965. * Bug 28766: Tor Build for Android
  1966. * Bug 28803: Integrate building Pluggable Transports for Android
  1967. * Bug 30461: Clean up tor-android-service project
  1968. * Bug 32993: Package Tor With Tor Android Service Project
  1969. * Bug 33685: Add Support for Building zlib for Android
  1970. Tor Browser 9.5a13 -- May 20 2020
  1971. * All Platforms
  1972. * Bump NoScript to 11.0.26
  1973. * Bump Tor to 0.4.3.5
  1974. * Translations update
  1975. * Bug 34157: Backport fix for Mozilla Bug 1511941
  1976. * Windows + OS X + Linux
  1977. * Update Tor Launcher to 0.2.21.7
  1978. * Translations update
  1979. * Bug 34196: Update site info URL with the onion name
  1980. * Bug 34043: Update snowflake to persist sessions across proxies
  1981. * Windows
  1982. * Bug 33113: Bump NSIS version to 3.05
  1983. * Build System
  1984. * All Platforms
  1985. * Bump Go to 1.13.11
  1986. * Linux
  1987. * Bug 34242: Fix creation of Linux containers
  1988. Tor Browser 9.5a12 -- May 7 2020
  1989. * All Platforms
  1990. * Update Firefox to 68.8.0esr
  1991. * Bump NoScript to 11.0.25
  1992. * Bump Tor to 0.4.3.4-rc
  1993. * Translations update
  1994. * Bug 31499: Update libevent to 2.1.11-stable
  1995. * Bug 33877: Disable Samples and Regression tests For Libevent Build
  1996. * Bug 33630: Remove noisebridge01 default bridge
  1997. * Bug 33726: Fix patch for #23247: Communicating security expectations for .onion
  1998. * Bug 34017: Bump openssl version to 1.1.1g
  1999. * Windows + OS X + Linux
  2000. * Update Tor Launcher to 0.2.21.6
  2001. * Translations update
  2002. * Bug 33576: Update pion-webrtc version to 2.2.3
  2003. * Bug 32418: Allow updates to be disabled via an enterprise policy.
  2004. * Bug 34032: Use Securedrop's Official https-everywhere ruleset
  2005. * Bug 33698: Update "About Tor Browser" links in Tor Browser
  2006. * Windows
  2007. * Bug 29614: Use SHA-256 algorithm for Windows timestamping
  2008. * Android
  2009. * Bug 33359: Use latest Version of TOPL and Remove Patches
  2010. * Bug 33931: obfs4 bridges are used instead of meek if meek is selected in Tor Browser for Android alpha
  2011. * Build System
  2012. * All Platforms
  2013. * Bug 32027: Bump Go to 1.13.10
  2014. * Android
  2015. * Bug 28765: LibEvent Build for Android
  2016. * Bug 28766: Tor Build for Android
  2017. * Bug 32993: Package Tor With Tor Android Service Project
  2018. * Bug 33685: Add Support for Building zlib for Android
  2019. * Windows
  2020. * Bug 33802: --enable-secure-api is not supported anymore in mingw-w64
  2021. Tor Browser 9.0.10 -- May 5 2020
  2022. * All Platforms
  2023. * Update Firefox to 68.8.0esr
  2024. * Bump NoScript to 11.0.25
  2025. * Windows + OS X + Linux
  2026. * Bug 34017: Bump openssl version to 1.1.1g
  2027. Tor Browser 9.5a11 -- April 8 2020
  2028. * All Platforms
  2029. * Update Firefox to 68.7.0esr
  2030. * Bump Https-Everywhere to 2020.3.16
  2031. * Bump NoScript to 11.0.23
  2032. * Translations update
  2033. * Bug 33342: Avoid disconnect search addon error after removal
  2034. * Bug 33482: Update about:tor donate string
  2035. * Windows + OS X + Linux
  2036. * Bug 19251: Show improved error pages for onion service errors
  2037. * Bug 21952: Implement Onion-Location
  2038. * Bug 28005: Implement .onion alias urlbar rewrites
  2039. * Bug 33693: Bump Snowflake to ea01bf41c3
  2040. * Bug 33707: Swap out onion icon in circuit display with new one
  2041. * Bug 33723: Bump openssl version to 1.1.1f
  2042. * Bug 33761: Remove unnecessary snowflake dependencies
  2043. * Bug 33771: Update some existing licenses and add Libevent license
  2044. * Android
  2045. * Translations update
  2046. * Build System
  2047. * Windows
  2048. * Bug 33805: Remove escape-openssldir.patch
  2049. Tor Browser 9.0.9 -- April 7 2020
  2050. * All Platforms
  2051. * Update Firefox to 68.7.0esr
  2052. * Bump NoScript to 11.0.23
  2053. * Bug 33630: Remove noisebridge01 default bridge
  2054. * Windows + OS X + Linux
  2055. * Bug 33771: Update some existing licenses and add Libevent license
  2056. * Bug 33723: Bump openssl version to 1.1.1f
  2057. * Windows
  2058. * Bug 33805: Remove escape-openssldir.patch
  2059. Tor Browser 9.5a10 -- April 5 2020
  2060. * All Platforms
  2061. * Mozilla Bug 1620818 - Release nsDocShell::mContentViewer properly
  2062. * Mozilla Bug 1626728 - Normalize shutdown
  2063. Tor Browser 9.0.8 -- April 5 2020
  2064. * All Platforms
  2065. * Mozilla Bug 1620818 - Release nsDocShell::mContentViewer properly
  2066. * Mozilla Bug 1626728 - Normalize shutdown
  2067. Tor Browser 9.5a9 -- March 25 2020
  2068. * All Platforms
  2069. * Translations update
  2070. * Bump NoScript to 11.0.21
  2071. * Bug 33613: Disable Javascript on Safest security level
  2072. * Bug 33342: Avoid disconnect search addon error after removal
  2073. * Windows + OS X + Linux
  2074. * Bump Tor to 0.4.3.3-alpha
  2075. * Update Tor Launcher to 0.2.21.5
  2076. * Translations update
  2077. Tor Browser 9.0.7 -- March 20 2020
  2078. * All Platforms
  2079. * Bump NoScript to 11.0.19
  2080. * Bump Https-Everywhere to 2020.3.16
  2081. * Bug 33613: Disable Javascript on Safest security level
  2082. * Windows + OS X + Linux
  2083. * Bump Tor to 0.4.2.7
  2084. Tor Browser 9.5a8 -- March 13 2020
  2085. * All Platforms
  2086. * Update Firefox to 68.6.0esr
  2087. * Bump NoScript to 11.0.15
  2088. * Bug 33430: Disable downloadable fonts on Safest security level
  2089. * Translations update
  2090. * Build System
  2091. * Windows
  2092. * Bug 33535: Patch openssl to use SOURCE_DATE_EPOCH for copyright year
  2093. Tor Browser 9.0.6 -- March 11 2020
  2094. * All Platforms
  2095. * Update Firefox to 68.6.0esr
  2096. * Bump NoScript to 11.0.15
  2097. * Bug 33430: Disable downloadable fonts on Safest security level
  2098. * Build System
  2099. * Windows
  2100. * Bug 33535: Patch openssl to use SOURCE_DATE_EPOCH for copyright year
  2101. Tor Browser 9.5a7 -- March 6 2020
  2102. * All Platforms
  2103. * Translations update
  2104. * Windows + OS X + Linux
  2105. * Update Tor Launcher to 0.2.21.3
  2106. * Translations update
  2107. * Bug 33514: non-en-US Tor Browser 9.5a6 won't start up
  2108. * Bug 32645: Update URL bar onion indicators
  2109. Tor Browser 9.5a6 -- February 27 2020
  2110. * All Platforms
  2111. * Translations update
  2112. * Windows + OS X + Linux
  2113. * Update Tor Launcher to 0.2.21.2
  2114. * Translations update
  2115. * Bug 19757: Support on-disk storage of v3 client auth keys
  2116. * Bug 19757: Support on-disk storage of v3 client auth keys
  2117. * Bug 32493: Disable MOZ_SERVICES_HEALTHREPORT
  2118. * Bug 32658: Create a new MAR signing key
  2119. * Build System
  2120. * All Platforms
  2121. * Bug 33380: Add *.json to sha256sums-unsigned-build.txt
  2122. Tor Browser 9.5a5 -- February 12 2020
  2123. * All Platforms
  2124. * Update Firefox to 68.5.0esr
  2125. * Bump NoScript to 11.0.13
  2126. * Translations update
  2127. * Bug 30237: Control port module improvements for v3 client authentication
  2128. * Bug 32891: Add new default bridges
  2129. * Bug 31395: Remove inline script in aboutTor.xhtml
  2130. * Bug 27268: Preferences clean-up in Torbutton code
  2131. * Bug 32470: Backport fix for bug 1590538
  2132. * Bug 32414: Make Services.search.addEngine obey FPI
  2133. * Bug 32948: Make referer behavior consistent regardless of private browing mode status
  2134. * Bug 22919: Improve the random number generator for the boundaries in multipart/form-data
  2135. * Windows + OS X + Linux
  2136. * Update Tor to 0.4.3.2-alpha
  2137. * Update Tor Launcher to 0.2.21.1
  2138. * Translations update
  2139. * Bug 30237: Add v3 onion services client authentication prompt
  2140. * Bug 32870: Update version of pion-webrtc
  2141. * Bug 32767: Remove Disconnect search
  2142. * Bug 30237: Add v3 onion services client authentication prompt
  2143. * Linux
  2144. * Bug 27903: Tor Browser 8 does not respect gtk3 settings
  2145. * Android
  2146. * Bug 30767: Custom obfs4 bridge does not work on Tor Browser for Android
  2147. * Build System
  2148. * Linux
  2149. * Bug 32976: Build and bundle geckodriver
  2150. * OS X
  2151. * Bug 33200: Fix permissions on bookmarks.html
  2152. Tor Browser 9.0.5 -- February 11 2020
  2153. * All Platforms
  2154. * Update Firefox to 68.5.0esr
  2155. * Bump NoScript to 11.0.13
  2156. * Bug 32053: Fix LLVM reproducibility issues
  2157. * Bug 32255: Missing ORIGIN header breaks CORS
  2158. * Bug 32891: Add new default bridges
  2159. * Windows + OS X + Linux
  2160. * Bump Tor to 0.4.2.6
  2161. * Windows
  2162. * Bug 32132: Re-enable jemalloc for Windows users
  2163. * Build System
  2164. * All Platforms
  2165. * Bug 32739: Bump clang to 8.0.1
  2166. * OS X
  2167. * Bug 33200: Fix permissions on bookmarks.html
  2168. Tor Browser 9.5a4 -- January 10 2020
  2169. * All Platforms
  2170. * Update Firefox to 68.4.1esr
  2171. * Bump NoScript to 11.0.11
  2172. * Translations update
  2173. * Bug 31134: Govern graphite again by security settings
  2174. * Bug 31855: Remove End of Year Fundraising Campaign from about:tor
  2175. * Bug 32053: Fix LLVM reproducibility issues
  2176. * Bug 32547: Add new default bridge at UMN
  2177. * Bug 32659: Remove IPv6 address of default bridge
  2178. * Windows + OS X + Linux
  2179. * Update Tor to 0.4.2.5
  2180. * Update Tor Launcher to 0.2.21
  2181. * Bug 32636: Clean up locales shipped with Tor Launcher
  2182. * Translations update
  2183. * Bug 32674: Point the about:tor "Get involved" link to the community portal
  2184. * Build System
  2185. * All Platforms
  2186. * Update OpenPGP keyring
  2187. * Bug 32739: Bump clang to 8.0.1
  2188. * Linux
  2189. * Bug 32676: Create a tarball with all Linux x86_64 language packs
  2190. Tor Browser 9.0.4 -- January 9 2020
  2191. * All Platforms
  2192. * Update Firefox to 68.4.1esr
  2193. Tor Browser 9.0.3 -- January 7 2020
  2194. * All Platforms
  2195. * Update Firefox to 68.4.0esr
  2196. * Bump NoScript to 11.0.11
  2197. * Translations update
  2198. * Bug 32606: Set up default bridge at Georgetown University
  2199. * Bug 32659: Remove IPv6 address of default bridge
  2200. * Bug 32547: Add new default bridge at UMN
  2201. * Bug 31855: Remove End of Year Fundraising Campaign from about:tor
  2202. * Windows + OS X + Linux
  2203. * Bump Tor to 0.4.2.5
  2204. * Update Tor Launcher to 0.2.20.5
  2205. * Bug 32636: Clean up locales shipped with Tor Launcher
  2206. * Revert bug 30786, 30787, and 30788
  2207. * Android
  2208. * Bug 32405: Crash immediately after bootstrap on Android
  2209. * Build System
  2210. * All Platforms
  2211. * Update OpenPGP keyring
  2212. * Linux
  2213. * Bug 32676: Create a tarball with all Linux x86_64 language packs
  2214. Tor Browser 9.0.2 -- December 3 2019
  2215. * All Platforms
  2216. * Update Firefox to 68.3.0esr
  2217. * Bump NoScript to 11.0.9
  2218. * Bug 32362: NoScript TRUSTED setting doesn't work
  2219. * Bug 32429: Issues with about:blank and NoScript on .onion sites
  2220. * Bump HTTPS Everywhere to 2019.11.7
  2221. * Bug 27268: Preferences clean-up in Torbutton code
  2222. * Translations update
  2223. * Windows + OS X + Linux
  2224. * Bug 32125: Fix circuit display for bridge without a fingerprint
  2225. * Bug 32250: Backport enhanced letterboxing support (bug 1546832 and 1556017)
  2226. * Windows
  2227. * Bug 31989: Backport backout of old mingw-gcc patch
  2228. * Bug 32616: Disable GetSecureOutputDirectoryPath() functionality
  2229. * Android
  2230. * Bug 32365: Localization is broken in Tor Browser 9 on Android
  2231. * Build System
  2232. * All Platforms
  2233. * Bug 32413: Bump Go version to 1.12.13
  2234. Tor Browser 9.5a3 -- December 3 2019
  2235. * All Platforms
  2236. * Update Firefox to 68.3.0esr
  2237. * Bump NoScript to 11.0.9
  2238. * Bug 32362: NoScript TRUSTED setting doesn't work
  2239. * Bug 32429: Issues with about:blank and NoScript on .onion sites
  2240. * Bug 32549: NoScript makes requests to sync-messages.invalid
  2241. * Update HTTPS Everywhere to 2019.11.7
  2242. * Bug 32618: Backport fixes from Mozilla bugs 1467970 and 1590526
  2243. * Bug 32606: Set up default bridge at Georgetown University
  2244. * Bug 30787: Add lt locale
  2245. * Bug 30788: Add ms locale
  2246. * Bug 30786: Add th locale
  2247. * Translations update
  2248. * Bug 28746: Remove torbutton isolation and fp prefs sync
  2249. * Bug 28745: Assume always running in Tor Browser
  2250. * Bug 30888: move torbutton_util.js to modules/utils.js
  2251. * Bug 30851: Move default preferences to 000-tor-browser.js
  2252. * Bug 28745: Remove torbutton.js unused code
  2253. * Bug 32255: Missing ORIGIN header breaks CORS
  2254. * Windows + OS X + Linux
  2255. * Update Tor to 0.4.2.4-rc
  2256. * Update Tor Launcher to 0.2.20.3
  2257. * Bug 30787: Add lt locale
  2258. * Bug 30788: Add ms locale
  2259. * Bug 30786: Add th locale
  2260. * Bug 30237: Improve TBB UI of hidden service client authorization
  2261. * Android
  2262. * Bug 32365: Localization is broken in Tor Browser 9 on Android
  2263. * Bug 32405: Crash immediately after bootstrap on Android
  2264. * OS X
  2265. * Bug 32505: Tighten our rules in our entitlements file for macOS
  2266. * Windows
  2267. * Bug 32616: Disable GetSecureOutputDirectoryPath() functionality
  2268. Tor Browser 9.0.2 -- December 3 2019
  2269. * All Platforms
  2270. * Update Firefox to 68.3.0esr
  2271. * Bump NoScript to 11.0.9
  2272. * Bug 32362: NoScript TRUSTED setting doesn't work
  2273. * Bug 32429: Issues with about:blank and NoScript on .onion sites
  2274. * Bug 32549: NoScript makes requests to sync-messages.invalid
  2275. * Bump HTTPS Everywhere to 2019.11.7
  2276. * Bug 27268: Preferences clean-up in Torbutton code
  2277. * Translations update
  2278. * Windows + OS X + Linux
  2279. * Bug 32125: Fix circuit display for bridge without a fingerprint
  2280. * Bug 32250: Backport enhanced letterboxing support (bug 1546832 and 1556017)
  2281. * Windows
  2282. * Bug 31989: Backport backout of old mingw-gcc patch
  2283. * Bug 32616: Disable GetSecureOutputDirectoryPath() functionality
  2284. * Android
  2285. * Bug 32365: Localization is broken in Tor Browser 9 on Android
  2286. * Build System
  2287. * All Platforms
  2288. * Bug 32413: Bump Go version to 1.12.13
  2289. Tor Browser 9.5a2 -- November 11 2019
  2290. * All Platforms
  2291. * Update NoScript to 11.0.7
  2292. * Bug 21004: Don't block JavaScript on onion services on medium security
  2293. * Bug 27307: NoScript marks HTTP onions as not secure
  2294. * Bug 30783: Fundraising banner for EOY 2019 campain
  2295. * Bug 32321: Don't ping Mozilla for Man-in-the-Middle-detection
  2296. * Bug 32318: Backport Mozilla's fix for bug 1534339
  2297. * Bug 31573: Catch SessionStore.jsm exception
  2298. * Bug 27268: Preferences clean-up
  2299. * Windows + OS X + Linux
  2300. * Update Tor to 0.4.2.3-alpha
  2301. * Update Tor Launcher to 0.2.20.2
  2302. * Bug 32164: Trim each received log line from tor
  2303. * Translations update
  2304. * Bug 32250: Backport enhanced letterboxing support (bug 1546832 and 1556017)
  2305. * Bug 31803: Replaced about:debugging logo with flat version
  2306. * Bug 31764: Fix for error when navigating via 'Paste and go'
  2307. * Bug 32169: Fix TB9 Wikipedia address bar search
  2308. * Bug 32210: Hide the tor pane when using a system tor
  2309. * Bug 31658: Use builtin --panel-disabled-color for security level text
  2310. * Bug 32188: Fix localization on about:preferences#tor
  2311. * Bug 32184: Red dot is shown while downloading an update
  2312. * Bug 27604: Fix broken Tor Browser after moving it to a different directory
  2313. * Bug 32220: Improve the letterboxing experience
  2314. * Bug 30683: Backport upstreamed fix from Mozilla (bug 1581537)
  2315. * Android
  2316. * Bug 32342: Crash when changing the browser locale
  2317. * Bug 32303: Obfs4 is broken on Android Q
  2318. * Build System
  2319. * All Platforms
  2320. * Bug 32413: Bump Go version to 1.12.13
  2321. * Android
  2322. * Bug 28803: Integrate building Pluggable Transports for Android
  2323. Tor Browser 9.0.1 -- November 4 2019
  2324. * All Platforms
  2325. * Update NoScript to 11.0.4
  2326. * Bug 21004: Don't block JavaScript on onion services on medium security
  2327. * Bug 27307: NoScript marks HTTP onions as not secure
  2328. * Bug 30783: Fundraising banner for EOY 2019 campain
  2329. * Bug 32321: Don't ping Mozilla for Man-in-the-Middle-detection
  2330. * Bug 27268: Preferences clean-up
  2331. * Windows + OS X + Linux
  2332. * Update Tor Launcher to 0.2.20.2
  2333. * Bug 32164: Trim each received log line from tor
  2334. * Translations update
  2335. * Bug 31803: Replaced about:debugging logo with flat version
  2336. * Bug 31764: Fix for error when navigating via 'Paste and go'
  2337. * Bug 32169: Fix TB9 Wikipedia address bar search
  2338. * Bug 32210: Hide the tor pane when using a system tor
  2339. * Bug 31658: Use builtin --panel-disabled-color for security level text
  2340. * Bug 32188: Fix localization on about:preferences#tor
  2341. * Bug 32184: Red dot is shown while downloading an update
  2342. * Android
  2343. * Bug 32342: Crash when changing the browser locale
  2344. Tor Browser 9.5a1 -- October 23 2019
  2345. * All Platforms
  2346. * Update Firefox to 68.2.0esr
  2347. * Bug 31740: Remove some unnecessary RemoteSettings instances
  2348. * Bug 30681: Set security.enterprise_roots.enabled to false
  2349. * Bug 31144: Review network code changes for Firefox 68 ESR
  2350. * Bug 21549: Enable WASM on standard security level
  2351. * Windows + OS X + Linux
  2352. * Update Tor Launcher to 0.2.20.1
  2353. * Bug 32154: Custom bridge field only allows one line of input
  2354. * Bug 32112: Fix bad & escaping in translations
  2355. * Bug 31286: Update to tor settings related strings
  2356. * Translations update
  2357. * Bug 32125: Fix circuit display for bridge without a fingerprint
  2358. * Bug 32076: Upgrade to goptlib v1.1.0
  2359. * Bug 32061: Bump snowflake version to b4f4b29a03
  2360. * Bug 32092: Fix Tor Browser Support link in preferences
  2361. * Bug 32111: Fixed issue parsing user-provided bridge strings
  2362. * Bug 31749: Fix security level panel spawning events
  2363. * Bug 31920: Fix Security Level panel when its toolbar button moves to overflow
  2364. * Bug 31748+31961: Fix 'Learn More' links in Security Level preferences and panel
  2365. * Translations update
  2366. * Windows
  2367. * Bug 32132: Re-enable jemalloc for Windows users
  2368. * Bug 31989: Backport backout of old mingw-gcc patch
  2369. * Android
  2370. * Bug 32097: Fix conflicts in mobile onboarding while rebasing to 68.2.0esr
  2371. * Bug 26529: Notify user about possible proxy-bypass before opening external app
  2372. * Build System
  2373. * Android
  2374. * Bug 30461: Clean up tor-android-service project
  2375. Tor Browser 9.0 -- October 22 2019
  2376. * All Platforms
  2377. * Update Firefox to 68.2.0esr
  2378. * Bug 31740: Remove some unnecessary RemoteSettings instances
  2379. * Bug 13543: Spoof smooth and powerEfficient for Media Capabilities
  2380. * Bug 28196: about:preferences is not properly translated anymore
  2381. * Bug 19417: Disable asmjs on safer and safest security levels
  2382. * Bug 30463: Explicitly disable MOZ_TELEMETRY_REPORTING
  2383. * Bug 31935: Disable profile downgrade protection
  2384. * Bug 16285: Disable DRM/EME on Android and drop Adobe CDM
  2385. * Bug 31602: Remove Pocket indicators in UI and disable it
  2386. * Bug 31914: Fix eslint linter error
  2387. * Bug 30429: Rebase patches for Firefox 68 ESR
  2388. * Bug 31144: Review network code changes for Firefox 68 ESR
  2389. * Bug 10760: Integrate Torbutton into Tor Browser directly
  2390. * Bug 25856: Remove XUL overlays from Torbutton
  2391. * Bug 31322: Fix about:tor assertion failure debug builds
  2392. * Bug 29430: Add support for meek_lite bridges to bridgeParser
  2393. * Bug 28561: Migrate "About Tor Browser" dialog to tor-browser
  2394. * Bug 30683: Prevent detection of locale via some *.properties
  2395. * Bug 31298: Backport patch for #24056
  2396. * Bug 9336: Odd wyswig schemes without isolation for browserspy.dk
  2397. * Bug 27601: Browser notifications are not working anymore
  2398. * Bug 30845: Make sure internal extensions are enabled
  2399. * Bug 28896: Enable extensions in private browsing by default
  2400. * Bug 31563: Reload search extensions if extensions.enabledScopes has changed
  2401. * Bug 31396: Fix communication with NoScript for security settings
  2402. * Bug 31142: Fix crash of tab and messing with about:newtab
  2403. * Bug 29049: Backport JS Poison Patch
  2404. * Bug 25214: Canvas data extraction on local pdf file should be allowed
  2405. * Bug 30657: Locale is leaked via title of link tag on non-html page
  2406. * Bug 31015: Disabling SVG hides UI icons in extensions
  2407. * Bug 30681: Set security.enterprise_roots.enabled to false
  2408. * Bug 30538: Unable to comment on The Independent Newspaper
  2409. * Bug 31209: View PDF in Tor Browser is fuzzy
  2410. * Translations update
  2411. * Windows + OS X + Linux
  2412. * Update Tor to 0.4.1.6
  2413. * Update OpenSSL to 1.1.1d
  2414. * Bug 31844: OpenSSL 1.1.1d fails to compile for some platforms/architectures
  2415. * Update Tor Launcher to 0.2.20.1
  2416. * Bug 28044: Integrate Tor Launcher into tor-browser
  2417. * Bug 32154: Custom bridge field only allows one line of input
  2418. * Bug 31286: New strings for about:preferences#tor
  2419. * Bug 31303: Do not launch tor in browser toolbox
  2420. * Bug 32112: Fix bad & escaping in translations
  2421. * Bug 31491: Clean up the old meek http helper browser profiles
  2422. * Bug 29197: Remove use of overlays
  2423. * Bug 31300: Modify Tor Launcher so it is compatible with ESR68
  2424. * Bug 31487: Modify moat client code so it is compatible with ESR68
  2425. * Bug 31488: Moat: support a comma-separated list of transports
  2426. * Bug 30468: Add mk locale
  2427. * Bug 30469: Add ro locale
  2428. * Bug 30319: Remove FTE bits
  2429. * Translations update
  2430. * Bug 32092: Fix Tor Browser Support link in preferences
  2431. * Bug 32111: Fixed issue parsing user-provided bridge strings
  2432. * Bug 31749: Fix security level panel spawning events
  2433. * Bug 31920: Fix Security Level panel when its toolbar button moves to overflow
  2434. * Bug 31748+31961: Fix 'Learn More' links in Security Level preferences and panel
  2435. * Bug 28044: Integrate Tor Launcher into tor-browser
  2436. * Bug 31059: Enable Letterboxing
  2437. * Bug 30468: Add mk locale
  2438. * Bug 30469: Add ro locale
  2439. * Bug 29430: Use obfs4proxy's meek_lite with utls instead of meek
  2440. * Bug 31251: Security Level button UI polish
  2441. * Bug 31344: Register SecurityLevelPreference's 'unload' callback
  2442. * Bug 31286: Provide network settings on about:preferences#tor
  2443. * Bug 31886: Fix ko bundle bustage
  2444. * Bug 31768: Update onboarding for Tor Browser 9
  2445. * Bug 27511: Add new identity button to toolbar
  2446. * Bug 31778: Support dark-theme for the Circuit Display UI
  2447. * Bug 31910: Replace meek_lite with meek in circuit display
  2448. * Bug 30504: Deal with New Identity related browser console errors
  2449. * Bug 31929: Don't escape DTD entity in ar
  2450. * Bug 31747: Some onboarding UI is always shown in English
  2451. * Bug 32041: Replace = with real hamburguer icon ≡
  2452. * Bug 30304: Browser locale can be obtained via DTD strings
  2453. * Bug 31065: Set network.proxy.allow_hijacking_localhost to true
  2454. * Bug 24653: Merge securityLevel.properties into torbutton.dtd
  2455. * Bug 31164: Set up default bridge at Karlstad University
  2456. * Bug 15563: Disable ServiceWorkers on all platforms
  2457. * Bug 31598: Disable warning on window resize if letterboxing is enabled
  2458. * Bug 31562: Fix circuit display for error pages
  2459. * Bug 31575: Firefox is phoning home during start-up
  2460. * Bug 31491: Clean up the old meek http helper browser profiles
  2461. * Bug 26345: Hide tracking protection UI
  2462. * Bug 31601: Disable recommended extensions again
  2463. * Bug 30662: Don't show Firefox Home when opening new tabs
  2464. * Bug 31457: Disable per-installation profiles
  2465. * Bug 28822: Re-implement desktop onboarding for ESR 68
  2466. * Windows
  2467. * Bug 31942: Re-enable signature check for language packs
  2468. * Bug 29013: Enable stack protection for Firefox on Windows
  2469. * Bug 30800: ftp:// on Windows can be used to leak the system time zone
  2470. * Bug 31547: Back out patch for Mozilla's bug 1574980
  2471. * Bug 31141: Fix typo in font.system.whitelist
  2472. * Bug 30319: Remove FTE bits
  2473. * OS X
  2474. * Bug 30126: Make Tor Browser compatible with macOS 10.15
  2475. * Bug 31607: App menu items stop working on macOS
  2476. * Bug 31955: On macOS avoid throwing inside nonBrowserWindowStartup()
  2477. * Bug 29818: Adapt #13379 patch for 68esr
  2478. * Bug 31464: Meek and moat are broken on macOS 10.9 with Go 1.12
  2479. * Linux
  2480. * Bug 31942: Re-enable signature check for language packs
  2481. * Bug 31646: Update abicheck to require newer libstdc++.so.6
  2482. * Bug 31968: Don't fail if /proc/cpuinfo is not readable
  2483. * Bug 24755: Stop using a heredoc in start-tor-browser
  2484. * Bug 31550: Put curly quotes inside single quotes
  2485. * Bug 31394: Replace "-1" with "−1" in start-tor-browser.desktop
  2486. * Bug 30319: Remove FTE bits
  2487. * Android
  2488. * Update Tor to 0.4.1.5
  2489. * Bug 31010: Rebase mobile patches for Fennec 68
  2490. * Bug 31010: Don't use addTrustedTab() on mobile
  2491. * Bug 30607: Support Tor Browser running on Android Q
  2492. * Bug 31192: Support x86_64 target on Android
  2493. * Bug 30380: Cancel dormant by startup
  2494. * Bug 30943: Show version number on mobile
  2495. * Bug 31720: Enable website suggestions in address bar
  2496. * Bug 31822: Security slider is not really visible on Android anymore
  2497. * Bug 24920: Only create Private tabs in permanent Private Browsing Mode
  2498. * Bug 31730: Revert aarch64-workaround against JIT-related crashes
  2499. * Bug 32097: Fix conflicts in mobile onboarding while rebasing to 68.2.0esr
  2500. * Build System
  2501. * All Platforms
  2502. * Bug 30585: Provide standalone clang 8 project across all platforms
  2503. * Bug 30376: Use Rust 1.34 for Tor Browser 9
  2504. * Bug 30490: Add cbindgen project for building Firefox 68 ESR/Fennec 68
  2505. * Bug 30701: Add nodejs project for building Firefox 68 ESR/Fennec 68
  2506. * Bug 31621: Fix node bug that makes large writes to stdout fail
  2507. * Bug 30734: Add nasm project for building Firefox 68 ESR/Fennec 68
  2508. * Bug 31293: Make sure the lo interface inside the containers is up
  2509. * Bug 27493: Clean up mozconfig options
  2510. * Bug 31308: Sync mozconfig files used in tor-browser over to tor-browser-build for esr68
  2511. * Windows
  2512. * Bug 29307: Use Stretch for cross-compiling for Windows
  2513. * Bug 29731: Remove faketime for Windows builds
  2514. * Bug 30322: Windows toolchain update for Firefox 68 ESR
  2515. * Bug 28716: Create mingw-w64-clang toolchain
  2516. * Bug 28238: Adapt firefox and fxc2 projects for Windows builds
  2517. * Bug 28716: Optionally omit timestamp in PE header
  2518. * Bug 31567: NS_tsnprintf() does not handle %s correctly on Windows
  2519. * Bug 31458: Revert patch for #27503 and bump mingw-w64 revision used
  2520. * Bug 9898: Provide clean fix for strcmpi issue in NSPR
  2521. * Bug 29013: Enable stack protection support for Firefox on Windows
  2522. * Bug 30384: Use 64bit containers to build 32bit Windows Tor Browser
  2523. * Bug 31538: Windows bundles based on ESR 68 are not built reproducibly
  2524. * Bug 31584: Clean up mingw-w64 project
  2525. * Bug 31596: Bump mingw-w64 version to pick up fix for #31567
  2526. * Bug 29187: Bump NSIS version to 3.04
  2527. * Bug 31732: Windows nightly builds are busted due to mingw-w64 commit bump
  2528. * Bug 29319: Remove FTE support for Windows
  2529. * OS X
  2530. * Bug 30323: MacOS toolchain update for Firefox 68 ESR
  2531. * Bug 31467: Switch to clang for cctools project
  2532. * Bug 31465: Adapt tor-browser-build projects for macOS notarization
  2533. * Linux
  2534. * Bug 31448: gold and lld break linking 32bit Linux bundles
  2535. * Bug 31618: Linux32 builds of Tor Browser 9.0a6 are not matching
  2536. * Bug 31450: Still use GCC for our ASan builds
  2537. * Bug 30321: Linux toolchain update for Firefox ESR 68
  2538. * Bug 30736: Install yasm from wheezy-backports
  2539. * Bug 31447: Don't install Python just for Mach
  2540. * Bug 30448: Strip Browser/gtk2/libmozgtk.so
  2541. * Android
  2542. * Bug 30324: Android toolchain update for Fennec 68
  2543. * Bug 31173: Update android-toolchain project to match Firefox
  2544. * Bug 31389: Update Android Firefox to build with Clang
  2545. * Bug 31388: Update Rust project for Android
  2546. * Bug 30665: Get Firefox 68 ESR working with latest android toolchain
  2547. * Bug 30460: Update TOPL project to use Firefox 68 toolchain
  2548. * Bug 30461: Update tor-android-service project to use Firefox 68 toolchain
  2549. * Bug 28753: Use Gradle with --offline when building the browser part
  2550. * Bug 31564: Make Android bundles based on ESR 68 reproducible
  2551. * Bug 31981: Remove require-api.patch
  2552. * Bug 31979: TOPL: Sort dependency list
  2553. * Bug 30665: Remove unnecessary build patches for Firefox
  2554. Tor Browser 9.0a8 -- October 14 2019
  2555. * All Platforms
  2556. * Bug 13543: Spoof smooth and powerEfficient for Media Capabilities
  2557. * Bug 28196: about:preferences is not properly translated anymore
  2558. * Bug 19417: Disable asmjs on safer and safest security levels
  2559. * Bug 30463: Explicitly disable MOZ_TELEMETRY_REPORTING
  2560. * Bug 31935: Disable profile downgrade protection
  2561. * Bug 31811: Backport fix for bug 1554805
  2562. * Bug 16285: Disable DRM/EME on Android and drop Adobe CDM
  2563. * Bug 31602: Remove Pocket indicators in UI and disable it
  2564. * Bug 31914: Fix eslint linter error
  2565. * Translations update
  2566. * Windows + OS X + Linux
  2567. * Update Tor to 0.4.2.2-alpha
  2568. * Update Tor Launcher to 0.2.19.5
  2569. * Bug 31286: New strings for about:preferences#tor
  2570. * Translations update
  2571. * Bug 31286: Provide network settings on about:preferences#tor
  2572. * Bug 31886: Fix ko bundle bustage
  2573. * Bug 31768: Update onboarding for Tor Browser 9
  2574. * Bug 27511: Add new identity button to toolbar
  2575. * Bug 31778: Support dark-theme for the Circuit Display UI
  2576. * Bug 31910: Replace meek_lite with meek in circuit display
  2577. * Bug 30504: Deal with New Identity related browser console errors
  2578. * Bug 31929: Don't escape DTD entity in ar
  2579. * Bug 31747: Some onboarding UI is always shown in English
  2580. * Bug 32041: Replace = with real hamburguer icon ≡
  2581. * Windows
  2582. * Bug 31942: Re-enable signature check for language packs
  2583. * Bug 29013: Enable stack protection for Firefox on Windows
  2584. * OS X
  2585. * Bug 31607: App menu items stop working on macOS
  2586. * Bug 31955: On macOS avoid throwing inside nonBrowserWindowStartup()
  2587. * Linux
  2588. * Bug 31942: Re-enable signature check for language packs
  2589. * Bug 31968: Don't fail if /proc/cpuinfo is not readable
  2590. * Bug 24755: Stop using a heredoc in start-tor-browser
  2591. * Bug 31550: Put curly quotes inside single quotes
  2592. * Android
  2593. * Bug 31822: Security slider is not really visible on Android anymore
  2594. * Build System
  2595. * All Platforms
  2596. * Bug 31293: Make sure the lo interface inside the containers is up
  2597. * Windows
  2598. * Bug 29013: Enable stack protection support for Firefox on Windows
  2599. * Android
  2600. * Bug 31564: Make Android bundles based on ESR 68 reproducible
  2601. * Bug 31981: Remove require-api.patch
  2602. * Bug 31979: TOPL: Sort dependency list
  2603. * Bug 30665: Remove unnecessary build patches for Firefox
  2604. Tor Browser 9.0a7 -- October 1 2019
  2605. * All platforms
  2606. * Bug 30304: Browser locale can be obtained via DTD strings
  2607. * Bug 31065: Set network.proxy.allow_hijacking_localhost to true
  2608. * Bug 24653: Merge securityLevel.properties into torbutton.dtd
  2609. * Bug 31725: Pick up mk in Torbutton properly
  2610. * Bug 31164: Set up default bridge at Karlstad University
  2611. * Bug 15563: Disable ServiceWorkers on all platforms
  2612. * Translations update
  2613. * Windows + OS X + Linux
  2614. * Update Tor to 0.4.2.1-alpha
  2615. * Update OpenSSL to 1.1.1d
  2616. * Bug 31844: OpenSSL 1.1.1d fails to compile for some platforms/architectures
  2617. * Update Tor Launcher to 0.2.19.4
  2618. * Bug 31303: Do not launch tor in browser toolbox
  2619. * Bug 31491: Clean up the old meek http helper browser profiles
  2620. * Translations update
  2621. * Bug 31598: Disable warning on window resize if letterboxing is enabled
  2622. * Bug 31562: Fix circuit display for error pages
  2623. * Bug 31575: Firefox is phoning home during start-up
  2624. * Bug 31491: Clean up the old meek http helper browser profiles
  2625. * Bug 26345: Hide tracking protection UI
  2626. * Bug 31601: Disable recommended extensions again
  2627. * Bug 30662: Don't show Firefox Home when opening new tabs
  2628. * Bug 31457: disable per-installation profiles
  2629. * Bug 28822: Re-implement desktop onboarding for ESR 68
  2630. * Bug 25483: Provide Snowflake based on Pion for Windows, macOS, and Linux
  2631. * Windows
  2632. * Bug 30800: ftp:// on Windows can be used to leak the system time zone
  2633. * OS X
  2634. * Bug 30126: Make Tor Browser on macOS compatible with Apple's notarization
  2635. * Bug 31702: Backport Mozilla's bug 1578075
  2636. * Linux
  2637. * Bug 31646: Update abicheck to require newer libstdc++.so.6
  2638. * Bug 31380: Snowflake does not start on older Linux systems
  2639. * Android
  2640. * Update Tor to 0.4.1.5
  2641. * Bug 31192: Support x86_64 target on Android
  2642. * Bug 30380: Cancel dormant by startup
  2643. * Bug 30943: Show version number on mobile
  2644. * Bug 31720: Enable website suggestions in address bar
  2645. * Build System
  2646. * All platforms
  2647. * Bug 31621: Fix node bug that makes large writes to stdout fail
  2648. * Bug 27493: Clean up mozconfig options
  2649. * Bug 31308: Sync mozconfig files used in tor-browser over to tor-browser-build for esr68
  2650. * Windows
  2651. * Bug 30384: Use 64bit containers to build 32bit Windows Tor Browser
  2652. * Bug 31538: Windows bundles based on ESR 68 are not built reproducibly
  2653. * Bug 31584: Clean up mingw-w64 project
  2654. * Bug 31596: Bump mingw-w64 version to pick up fix for #31567
  2655. * Bug 29187: Bump NSIS version to 3.04
  2656. * Bug 31732: Windows nightly builds are busted due to mingw-w64 commit bump
  2657. * Linux
  2658. * Bug 31448: gold and lld break linking 32bit Linux bundles
  2659. * Bug 31618: linux32 builds of Tor Browser 9.0a6 are not matching
  2660. * Bug 31450: Still use GCC for our ASan builds
  2661. Tor Browser 8.5.6 -- September 9 2019
  2662. * Android
  2663. * Update Torbutton to 2.1.14
  2664. * Bug 31616: Fix JIT related crashes on aarch64
  2665. Tor Browser 9.0a6 -- September 4 2019
  2666. * All platforms
  2667. * Update Firefox to 68.1.0esr
  2668. * Update NoScript to 11.0.3
  2669. * Bug 26847: NoScript pops up a full-site window for XSS warning
  2670. * Bug 31287: NoScript leaks browser locale
  2671. * Bug 30429: Rebase patches for Firefox 68 ESR
  2672. * Bug 10760: Integrate Torbutton into Tor Browser directly
  2673. * Bug 25856: Remove XUL overlays from Torbutton
  2674. * Bug 31322: Fix about:tor assertion failure debug builds
  2675. * Bug 31520: Remove monthly giving banner from Tor Browser
  2676. * Bug 29430: Add support for meek_lite bridges to bridgeParser
  2677. * Bug 28561: Migrate "About Tor Browser" dialog to tor-browser
  2678. * Bug 30683: Prevent detection of locale via some *.properties
  2679. * Bug 31298: Backport patch for #24056
  2680. * Bug 9336: Odd wyswig schemes without isolation for browserspy.dk
  2681. * Bug 27601: Browser notifications are not working anymore
  2682. * Bug 30845: Make sure internal extensions are enabled
  2683. * Bug 28896: Enable extensions in private browsing by default
  2684. * Bug 31563: Reload search extensions if extensions.enabledScopes has changed
  2685. * Bug 31396: Fix communication with NoScript for security settings
  2686. * Bug 31142: Fix crash of tab and messing with about:newtab
  2687. * Bug 29049: Backport JS Poison Patch
  2688. * Bug 25214: Canvas data extraction on local pdf file should be allowed
  2689. * Bug 30657: Locale is leaked via title of link tag on non-html page
  2690. * Bug 31015: Disabling SVG hides UI icons in extensions
  2691. * Bug 30538: Unable to comment on The Independent Newspaper
  2692. * Bug 31357: Retire Tom's default obfs4 bridge
  2693. * Windows + OS X + Linux
  2694. * Update Tor to 0.4.1.5
  2695. * Update Tor Launcher to 0.2.19.3
  2696. * Bug 29197: Remove use of overlays
  2697. * Bug 31300: Modify Tor Launcher so it is compatible with ESR68
  2698. * Bug 31487: Modify moat client code so it is compatible with ESR68
  2699. * Bug 31488: Moat: support a comma-separated list of transports
  2700. * Translations update
  2701. * Bug 29430: Use obfs4proxy's meek_lite with utls instead of meek
  2702. * Bug 31251: Security Level button UI polish
  2703. * Bug 31344: Register SecurityLevelPreference's 'unload' callback
  2704. * Bug 12774: Selecting meek in the browser UI is broken
  2705. * Build System:
  2706. * Bug 31465: Bump Go to 1.12.9
  2707. * Windows
  2708. * Bug 31547: Back out patch for Mozilla's bug 1574980
  2709. * Bug 31141: Fix typo in font.system.whitelist
  2710. * Backport fix for bug 1572844 to fix broken build
  2711. * OS X
  2712. * Bug 29818: Adapt #13379 patch for 68esr
  2713. * Bug 31464: meek and moat are broken on macOS 10.9 with Go 1.12
  2714. * Bug 31403: Bump snowflake commit to cd650fa009
  2715. * Linux
  2716. * Bug 31403: Bump snowflake commit to cd650fa009
  2717. * Android
  2718. * Bug 31010: Rebase mobile patches for Fennec 68
  2719. * Bug 31010: Don't use addTrustedTab() on mobile
  2720. * Bug 30607: Support Tor Browser running on Android Q
  2721. * Build System:
  2722. * All Platforms:
  2723. * Bug 30585: Provide standalone clang 8 project across all platforms
  2724. * Bug 30376: Use Rust 1.34 for Tor Browser 9
  2725. * Bug 30490: Add cbindgen project for building Firefox 68 ESR/Fennec 68
  2726. * Bug 30701: Add nodejs project for building Firefox 68 ESR/Fennec 68
  2727. * Bug 30734: Add nasm project for building Firefox 68 ESR/Fennec 68
  2728. * Windows
  2729. * Bug 30322: Windows toolchain update for Firefox 68 ESR
  2730. * Bug 28716: Create mingw-w64-clang toolchain
  2731. * Bug 28238: Adapt firefox and fxc2 projects for Windows builds
  2732. * Bug 28716: Optionally omit timestamp in PE header
  2733. * Bug 31567: NS_tsnprintf() does not handle %s correctly on Windows
  2734. * Bug 31458: Revert patch for #27503 and bump mingw-w64 revision used
  2735. * Bug 9898: Provide clean fix for strcmpi issue in NSPR
  2736. * OS X
  2737. * Bug 30323: MacOS toolchain update for Firefox 68 ESR
  2738. * Bug 31467: Switch to clang for cctools project
  2739. * Bug 31465: Adapt tor-browser-build projects for macOS notarization
  2740. * Linux
  2741. * Bug 30321: Linux toolchain update for Firefox ESR 68
  2742. * Bug 30736: Install yasm from wheezy-backports
  2743. * Bug 31447: Don't install Python just for Mach
  2744. * Bug 31394: Replace "-1" with "−1" in start-tor-browser.desktop.
  2745. * Android
  2746. * Bug 30324: Android toolchain update for Fennec 68
  2747. * Bug 31173: Update android-toolchain project to match Firefox
  2748. * Bug 31389: Update Android Firefox to build with Clang
  2749. * Bug 31388: Update Rust project for Android
  2750. * Bug 30665: Get Firefox 68 ESR working with latest android toolchain
  2751. * Bug 30460: Update TOPL project to use Firefox 68 toolchain
  2752. * Bug 30461: Update tor-android-service project to use Firefox 68 toolchain
  2753. * Bug 28753: Use Gradle with --offline when building the browser part
  2754. Tor Browser 8.5.5 -- September 3 2019
  2755. * All platforms
  2756. * Update Firefox to 60.9.0esr
  2757. * Update Torbutton to 2.1.13
  2758. * Bug 31520: Remove monthly giving banner from Tor Browser
  2759. * Bug 31140: Do not enable IonMonkey on AARCH64
  2760. * Translations update
  2761. * Update NoScript to 11.0.3
  2762. * Bug 26847: NoScript pops up a full-site window for XSS warning
  2763. * Bug 31287: NoScript leaks browser locale
  2764. * Bug 31357: Retire Tom's default obfs4 bridge
  2765. * Windows + OS X + Linux
  2766. * Update Tor to 0.4.1.5
  2767. * Windows
  2768. * Bug 31547: Back out patch for Mozilla's bug 1574980
  2769. * Bug 27503: Provide full support for accessibility tools
  2770. * Bug 30575: Don't allow enterprise policies in Tor Browser
  2771. * Bug 31141: Fix typo in font.system.whitelist
  2772. * Android
  2773. * Bug 28119: Tor Browser for aarch64
  2774. * Build System
  2775. * All platforms
  2776. * Bug 31465: Bump Go to 1.12.9
  2777. Tor Browser 9.0a5 -- July 31 2019
  2778. * Android
  2779. * Bug 31260: Backport bug 1477259 for aarch64 support on Google Play
  2780. Tor Browser 9.0a4 -- July 9 2019
  2781. * All platforms
  2782. * Update Firefox to 60.8.0esr
  2783. * Update Torbutton to 2.2.1
  2784. * Bug 30577: Add Fundraising Banner
  2785. * Bug 31041: Stop syncing network.cookie.lifetimePolicy
  2786. * Bug 30468: Add mk locale
  2787. * Translations update
  2788. * Update Tor Launcher to 0.2.19.2
  2789. * Bug 30468: Add mk locale
  2790. * Translations update
  2791. * Update HTTPS Everywhere to 2019.6.27
  2792. * Bug 31055+31058: Remove four default bridges
  2793. * Bug 30849: Backport fixes for Mozilla's bug 1552627 and 1549833
  2794. * Windows + OS X + Linux
  2795. * Update Tor to 0.4.1.3-alpha
  2796. * Bug 30468: Add mk locale
  2797. * Bug 31059: Enable Letterboxing
  2798. * Windows
  2799. * Bug 27503: Provide full support for accessibility tools
  2800. * Bug 30575: Don't allow enterprise policies in Tor Browser
  2801. * OS X
  2802. * Bug 30631: Blurry Tor Browser icon on macOS app switcher
  2803. * Android
  2804. * Bug 28119: Tor Browser for aarch64
  2805. Tor Browser 8.5.4 -- July 9 2019
  2806. * All platforms
  2807. * Update Firefox to 60.8.0esr
  2808. * Update Torbutton to 2.1.12
  2809. * Bug 30577: Add Fundraising Banner
  2810. * Bug 31041: Stop syncing network.cookie.lifetimePolicy
  2811. * Translations update
  2812. * Update HTTPS Everywhere to 2019.6.27
  2813. * Bug 31055+31058: Remove four default bridges
  2814. * Bug 30712: Backport fix for Mozilla's bug 1552993
  2815. * Bug 30849: Backport fixes for Mozilla's bug 1552627 and 1549833
  2816. * Windows + OS X + Linux
  2817. * Update Tor to 0.4.0.5
  2818. * Update OpenSSL to 1.0.2s
  2819. * Bug 29045: Ensure that tor does not start up in dormant mode
  2820. * OS X
  2821. * Bug 30631: Blurry Tor Browser icon on macOS app switcher
  2822. Tor Browser 9.0a3 -- June 24 2019
  2823. * All platforms
  2824. * Pick up fixes for Mozilla's bug 1544386 and 1560192
  2825. * Update NoScript to 10.6.3
  2826. * Bug 29904: NoScript blocks MP4 on higher security levels
  2827. * Bug 30624+29043+29647: Prevent XSS protection from freezing the browser
  2828. Tor Browser 8.5.3 -- June 21 2019
  2829. * All platforms
  2830. * Pick up fix for Mozilla's bug 1560192
  2831. Tor Browser 8.5.2 -- June 19 2019
  2832. * All platforms
  2833. * Pick up fix for Mozilla's bug 1544386
  2834. * Update NoScript to 10.6.3
  2835. * Bug 29904: NoScript blocks MP4 on higher security levels
  2836. * Bug 30624+29043+29647: Prevent XSS protection from freezing the browser
  2837. Tor Browser 9.0a2 -- June 11 2019
  2838. * All platforms
  2839. * Update Torbutton to 2.2
  2840. * Bug 30565: Sync nocertdb with privatebrowsing.autostart at startup
  2841. * Bug 30469: Add ro translation
  2842. * Translations update
  2843. * Update NoScript to 10.6.2
  2844. * Bug 29969: Remove workaround for Mozilla's bug 1532530
  2845. * Update HTTPS Everywhere to 2019.5.13
  2846. * Bug 30541: Disable WebGL readPixel() for web content
  2847. * Bug 30712: Backport fix for Mozilla's bug 1552993
  2848. * Bug 30469: Add locale ro
  2849. * Windows + OS X + Linux
  2850. * Update Tor to 0.4.1.2-alpha
  2851. * Update OpenSSL to 1.1.1c
  2852. * Update Tor Launcher to 0.2.19.1
  2853. * Bug 30469: Add locale ro
  2854. * Translations update
  2855. * Bug 30639: Revert IPv6 support test
  2856. * Bug 30560: Better match actual toolbar in onboarding toolbar graphic
  2857. * Bug 30571: Correct more information URL for security settings
  2858. * Linux
  2859. * Bug 30451: Compile go-webrtc with a non executable stack
  2860. * Android
  2861. * Bug 24920: Only create Private tabs in permanent Private Browsing Mode
  2862. * Bug 30635: Sync mobile default bridges list with desktop one
  2863. * Build System
  2864. * All platforms
  2865. * Bug 30480: Check that signed tag contains expected tag name
  2866. * Bug 30536: Update Go to 1.12.5
  2867. * OS X
  2868. * Bug 30491: Move our macOS builds to Debian Stretch
  2869. * Linux
  2870. * Bug 25930: Update GCC to 8.3.0 for our Linux builds
  2871. Tor Browser 8.5.1 -- June 4 2019
  2872. * All platforms
  2873. * Update Torbutton to 2.1.10
  2874. * Bug 30565: Sync nocertdb with privatebrowsing.autostart at startup
  2875. * Bug 30464: Add WebGL to safer descriptions
  2876. * Translations update
  2877. * Update NoScript to 10.6.2
  2878. * Bug 29969: Remove workaround for Mozilla's bug 1532530
  2879. * Update HTTPS Everywhere to 2019.5.13
  2880. * Bug 30541: Disable WebGL readPixel() for web content
  2881. * Windows + OS X + Linux
  2882. * Bug 30560: Better match actual toolbar in onboarding toolbar graphic
  2883. * Bug 30571: Correct more information URL for security settings
  2884. * Android
  2885. * Bug 30635: Sync mobile default bridges list with desktop one
  2886. * Build System
  2887. * All platforms
  2888. * Bug 30480: Check that signed tag contains expected tag name
  2889. Tor Browser 9.0a1 -- May 21 2019
  2890. * All platforms
  2891. * Update Firefox to 60.7.0esr
  2892. * Update Torbutton to 2.1.9
  2893. * Bug 30069: Use slider and about:tor localizations
  2894. * Bug 30115+27449+25145: Map browser + domain -> credentials to fix UI issues
  2895. * Bug 30171: Don't sync cookie.cookieBehavior and firstparty.isolate
  2896. * Bug 30425: Revert armagadd-on-2.0 changes
  2897. * Bug 30497: Add Donate link to about:tor
  2898. * Bug 30464: Add WebGL to safer descriptions
  2899. * Translations update
  2900. * Update HTTPS Everywhere to 2019.5.6.1
  2901. * Bug 24622: Proper first-party isolation of s3.amazonaws.com
  2902. * Bug 30425: Revert armagadd-on-2.0 changes
  2903. * Windows + OS X + Linux
  2904. * Update Tor Launcher to 0.2.19
  2905. * Bug 28044: Integrate Tor Launcher into tor-browser
  2906. * Bug 29627: Moat: add support for obfsproxy's meek_lite
  2907. * Bug 30319: Remove FTE bits
  2908. * Translations update
  2909. * Bug 28044: Integrate Tor Launcher into tor-browser
  2910. * Bug 30372: Backport letterboxing (bug 1538130)
  2911. * Bug 28369: Stop shipping pingsender executable
  2912. * Bug 30457: Remove defunct default bridges
  2913. * Bug 29045: Ensure that tor does not start up in dormant mode
  2914. * Bug 29641: Try to connect over IPv6 if needed
  2915. * Windows
  2916. * Bug 30319: Drop FTE releated bits
  2917. * Bug 29319: Remove FTE support for Windows
  2918. * OS X
  2919. * Bug 30241: Bump snowflake version to d11e55aabe
  2920. * Linux
  2921. * Bug 30319: Drop FTE releated bits
  2922. * Bug 30241: Bump snowflake version to d11e55aabe
  2923. * Android
  2924. * Bug 29982: Force single-pane UI on Tor Preferences
  2925. * Bug 30086: Prevent Sync-related crashes on Android
  2926. * Bug 30214: Kill background thread when Activity is null
  2927. * Bug 30239: Render Fragments after crash
  2928. * Bug 30136: Use 'Tor Browser' as brand name on mobile, too
  2929. * Bug 30069: Use slider and about:tor localizations
  2930. * Bug 30371: Stop hard-coding the content provider name in tor-android-service
  2931. * Bug 30162: Tor Browser bootstrap process got stuck after interrupting it
  2932. * Bug 30166: If specified, only use custom bridges for connecting
  2933. * Bug 30518: Add SocksPort flags for consistency across platforms
  2934. * Bug 30284: Fix broken start-up on KitKat devices
  2935. * Bug 30489: Remove Unused Resources from tor-android-service
  2936. * Build System
  2937. * Windows
  2938. * Bug 29307: Use Stretch for cross-compiling for Windows
  2939. * Bug 29731: Remove faketime for Windows builds
  2940. * Linux
  2941. * Bug 30377: Remove selfrando from our build system
  2942. * Bug 30448: Strip Browser/gtk2/libmozgtk.so
  2943. * Android
  2944. * Bug 29981: Add option to build without using containers
  2945. * Bug 30169: Switch to our tor-android-service repo
  2946. * Bug 30404: Remove Orbot Project
  2947. * Bug 30280: Wrong SHA-256 sum for j2objc-annotations-1.1.jar
  2948. Tor Browser 8.5 -- May 21 2019
  2949. * All platforms
  2950. * Update Firefox to 60.7.0esr
  2951. * Update Torbutton to 2.1.8
  2952. * Bug 25013: Integrate Torbutton into tor-browser for Android
  2953. * Bug 27111: Update about:tor desktop version to work on mobile
  2954. * Bug 22538+22513: Fix new circuit button for error pages
  2955. * Bug 25145: Update circuit display when back button is pressed
  2956. * Bug 27749: Opening about:config shows circuit from previous website
  2957. * Bug 30115+27449+25145: Map browser+domain to credentials to fix circuit display
  2958. * Bug 25702: Update Tor Browser icon to follow design guidelines
  2959. * Bug 21805: Add click-to-play button for WebGL
  2960. * Bug 28836: Links on about:tor are not clickable
  2961. * Bug 30171: Don't sync cookie.cookieBehavior and firstparty.isolate
  2962. * Bug 29825: Intelligently add new Security Level button to taskbar
  2963. * Bug 29903: No WebGL click-to-play on the standard security level
  2964. * Bug 27290: Remove WebGL pref for min capability mode
  2965. * Bug 25658: Replace security slider with security level UI
  2966. * Bug 28628: Change onboarding Security panel to open new Security Level panel
  2967. * Bug 29440: Update about:tor when Tor Browser is updated
  2968. * Bug 27478: Improved Torbutton icons for dark theme
  2969. * Bug 29239: Don't ship the Torbutton .xpi on mobile
  2970. * Bug 27484: Improve navigation within onboarding (strings)
  2971. * Bug 29768: Introduce new features to users (strings)
  2972. * Bug 28093: Update donation banner style to make it fit in small screens
  2973. * Bug 28543: about:tor has scroll bar between widths 900px and 1000px
  2974. * Bug 28039: Enable dump() if log method is 0
  2975. * Bug 27701: Don't show App Blocker dialog on Android
  2976. * Bug 28187: Change tor circuit icon to torbutton.svg
  2977. * Bug 29943: Use locales in AB-CD scheme to match Mozilla
  2978. * Bug 26498: Add locale: es-AR
  2979. * Bug 28082: Add locales cs, el, hu, ka
  2980. * Bug 29973: Remove remaining stopOpenSecuritySettingsObserver() pieces
  2981. * Bug 28075: Tone down missing SOCKS credential warning
  2982. * Bug 30425: Revert armagadd-on-2.0 changes
  2983. * Bug 30497: Add Donate link to about:tor
  2984. * Bug 30069: Use slider and about:tor localizations on mobile
  2985. * Bug 21263: Remove outdated information from the README
  2986. * Bug 28747: Remove NoScript (XPCOM) related unused code
  2987. * Translations update
  2988. * Code clean-up
  2989. * Update HTTPS Everywhere to 2019.5.6.1
  2990. * Bug 27290: Remove WebGL pref for min capability mode
  2991. * Bug 29120: Enable media cache in memory
  2992. * Bug 24622: Proper first-party isolation of s3.amazonaws.com
  2993. * Bug 29082: Backport patches for bug 1469916
  2994. * Bug 28711: Backport patches for bug 1474659
  2995. * Bug 27828: "Check for Tor Browser update" doesn't seem to do anything
  2996. * Bug 29028: Auto-decline most canvas warning prompts again
  2997. * Bug 27919: Backport SSL status API
  2998. * Bug 27597: Fix our debug builds
  2999. * Bug 28082: Add locales cs, el, hu, ka
  3000. * Bug 26498: Add locale: es-AR
  3001. * Bug 29916: Make sure enterprise policies are disabled
  3002. * Bug 29349: Remove network.http.spdy.* overrides from meek helper user.js
  3003. * Bug 29327: TypeError: hostName is null on about:tor page
  3004. * Bug 30425: Revert armagadd-on-2.0 changes
  3005. * Windows + OS X + Linux
  3006. * Update OpenSSL to 1.0.2r
  3007. * Update Tor Launcher to 0.2.18.3
  3008. * Bug 27994+25151: Use the new Tor Browser logo
  3009. * Bug 29328: Account for Tor 0.4.0.x's revised bootstrap status reporting
  3010. * Bug 22402: Improve "For assistance" link
  3011. * Bug 27994: Use the new Tor Browser logo
  3012. * Bug 25405: Cannot use Moat if a meek bridge is configured
  3013. * Bug 27392: Update Moat URLs
  3014. * Bug 28082: Add locales cs, el, hu, ka
  3015. * Bug 26498: Add locale es-AR
  3016. * Bug 28039: Enable dump() if log method is 0
  3017. * Translations update
  3018. * Bug 25702: Activity 1.1 Update Tor Browser icon to follow design guidelines
  3019. * Bug 28111: Use Tor Browser icon in identity box
  3020. * Bug 22343: Make 'Save Page As' obey first-party isolation
  3021. * Bug 29768: Introduce new features to users
  3022. * Bug 27484: Improve navigation within onboarding
  3023. * Bug 25658+29554: Replace security slider with security level UI
  3024. * Bug 25405: Cannot use Moat if a meek bridge is configured
  3025. * Bug 28885: Notify users that update is downloading
  3026. * Bug 29180: MAR download stalls when about dialog is opened
  3027. * Bug 27485: Users are not taught how to open security-slider dialog
  3028. * Bug 27486: Avoid about:blank tabs when opening onboarding pages
  3029. * Bug 29440: Update about:tor when Tor Browser is updated
  3030. * Bug 23359: WebExtensions icons are not shown on first start
  3031. * Bug 28628: Change onboarding Security panel to open new Security Level panel
  3032. * Bug 27905: Fix many occurrences of "Firefox" in about:preferences
  3033. * Bug 28369: Stop shipping pingsender executable
  3034. * Bug 30457: Remove defunct default bridges
  3035. * Windows
  3036. * Bug 27503: Improve screen reader accessibility
  3037. * Bug 27865: Tor Browser 8.5a2 is crashing on Windows
  3038. * Bug 22654: Firefox icon is shown for Tor Browser on Windows 10 start menu
  3039. * Bug 28874: Bump mingw-w64 commit to fix WebGL crash
  3040. * Bug 12885: Windows Jump Lists fail for Tor Browser
  3041. * Bug 28618: Set MOZILLA_OFFICIAL for Windows build
  3042. * Bug 21704: Abort install if CPU is missing SSE2 support
  3043. * OS X
  3044. * Bug 27623: Use MOZILLA_OFFICIAL for our builds
  3045. * Linux
  3046. * Bug 28022: Use `/usr/bin/env bash` for bash invocation
  3047. * Bug 27623: Use MOZILLA_OFFICIAL for our builds
  3048. * Android
  3049. * Bug 5709: Ship Tor Browser for Android
  3050. * Build System
  3051. * All platforms
  3052. * Bug 25623: Disable network during build
  3053. * Bug 25876: Generate source tarballs during build
  3054. * Bug 28685: Set Build ID based on Tor Browser version
  3055. * Bug 29194: Set DEBIAN_FRONTEND=noninteractive
  3056. * Bug 29167: Upgrade go to 1.11.5
  3057. * Bug 29158: Install updated apt packages (CVE-2019-3462)
  3058. * Bug 29097: Don't try to install python3.6-lxml for HTTPS Everywhere
  3059. * Bug 27061: Enable verification of langpacks checksums
  3060. * Windows
  3061. * Bug 26148: Update binutils to 2.31.1
  3062. * Bug 27320: Build certutil for Windows
  3063. * OS X
  3064. * Bug 27320: Build certutil for macOS
  3065. * Linux
  3066. * Bug 26323+29812: Build 32bit Linux bundles on 64bit Debian Wheezy
  3067. * Bug 26148: Update binutils to 2.31.1
  3068. * Bug 29758: Build firefox debug symbols for linux-i686
  3069. * Bug 29966: Use archive.debian.org for Wheezy images
  3070. * Bug 29183: Use linux-x86_64 langpacks on linux-x86_64
  3071. * Android
  3072. * Bug 29981: Add option to build without using containers
  3073. Tor Browser 8.5a12 -- May 7 2019
  3074. * All platforms
  3075. * Update Torbutton to 2.1.7
  3076. * Bug 30388: Make sure the updated intermediate certificate keeps working
  3077. * Backport fixes for bug 1549010 and bug 1549061
  3078. * Bug 30388: Make sure the updated intermediate certificate keeps working
  3079. Tor Browser 8.0.9 -- May 7 2019
  3080. * All platforms
  3081. * Update Torbutton to 2.0.13
  3082. * Bug 30388: Make sure the updated intermediate certificate keeps working
  3083. * Backport fixes for bug 1549010 and bug 1549061
  3084. * Bug 30388: Make sure the updated intermediate certificate keeps working
  3085. * Update NoScript to 10.6.1
  3086. * Bug 29872: XSS popup with DuckDuckGo search on about:tor
  3087. Tor Browser 8.5a11 -- April 16 2019
  3088. * All platforms
  3089. * Update Torbutton to 2.1.6
  3090. * Bug 22538+22513: Fix new circuit button for error pages
  3091. * Bug 29825: Intelligently add new Security Level button to taskbar
  3092. * Bug 29903: No WebGL click-to-play on the standard security level
  3093. * Bug 27484: Improve navigation within onboarding (strings)
  3094. * Bug 29768: Introduce new features to users (strings)
  3095. * Bug 29943: Use locales in AB-CD scheme to match Mozilla
  3096. * Bug 26498: Add locale: es-AR
  3097. * Bug 29973: Remove remaining stopOpenSecuritySettingsObserver() pieces
  3098. * Translations update
  3099. * Update NoScript to 10.6.1
  3100. * Bug 29872: XSS popup with DuckDuckGo search on about:tor
  3101. * Bug 29916: Make sure enterprise policies are disabled
  3102. * Bug 26498: Add locale: es-AR
  3103. * Windows + OS X + Linux
  3104. * Update Tor to 0.4.0.4-rc
  3105. * Update Tor Launcher to 0.2.18.2
  3106. * Bug 26498: Add locale es-AR
  3107. * Translations update
  3108. * Bug 29768: Introduce new features to users
  3109. * Bug 27484: Improve navigation within onboarding
  3110. * Bug 25658: Improve toolbar layout for new security settings
  3111. * Windows
  3112. * Bug 27503: Improve screen reader accessibility
  3113. * Android
  3114. * Bug 27609 (and child bugs): Use Tor Onion Proxy Library
  3115. * Bug 29312: Bump Tor to 0.3.5.8
  3116. * Bug 29859: Disable HLS support for now
  3117. * Bug 28622: Update Tor Browser icon for mobile
  3118. * Bug 29238: Prevent crash on Android after update
  3119. * Bug 29982: Add additional safe guards against crashes during bootstrap
  3120. * Bug 29906: Fix crash on older devices due to missing API
  3121. * Bug 29858: Load onboarding panels after bootstrapping is done
  3122. * Bug 28329: Improve bootstrapping experience
  3123. * Bug 30016: Localize bootstrap-/bridge-related strings for mobile
  3124. * Build System
  3125. * All platforms
  3126. * Bug 29868: Fix installation of python-future package
  3127. * Bug 25623: Disable network during build
  3128. * Linux
  3129. * Bug 29966: Use archive.debian.org for Wheezy images
  3130. * Android
  3131. * Bug 30089: Use apksigner instead of jarsigner
  3132. Tor Browser 8.5a10 -- March 24 2019
  3133. * All platforms
  3134. * Update Firefox to 60.6.1esr
  3135. * Update NoScript to 10.2.4
  3136. * Bug 29733: Work around Mozilla's bug 1532530
  3137. Tor Browser 8.0.8 -- March 22 2019
  3138. * All platforms
  3139. * Update Firefox to 60.6.1esr
  3140. * Update NoScript to 10.2.4
  3141. * Bug 29733: Work around Mozilla's bug 1532530
  3142. Tor Browser 8.5a9 -- March 20 2019
  3143. * All platforms
  3144. * Update Firefox to 60.6.0esr
  3145. * Update Torbutton to 2.1.5
  3146. * Bug 25658: Replace security slider with security level UI
  3147. * Bug 28628: Change onboarding Security panel to open new Security Level panel
  3148. * Bug 29440: Update about:tor when Tor Browser is updated
  3149. * Bug 27478: Improved Torbutton icons for dark theme
  3150. * Bug 29021: Tell NoScript it is running within Tor Browser
  3151. * Bug 29239: Don't ship the Torbutton .xpi on mobile
  3152. * Translations update
  3153. * Bug 29120: Enable media cache in memory
  3154. * Bug 29445: Enable support for enterprise policies
  3155. * Windows + OS X + Linux
  3156. * Update Tor to 0.4.0.2-alpha
  3157. * Bug 29660: XMPP can not connect to SOCKS5 anymore
  3158. * Update OpenSSL to 1.0.2r
  3159. * Update Tor Launcher to 0.2.18.1
  3160. * Bug 29328: Account for Tor 0.4.0.x's revised bootstrap status reporting
  3161. * Bug 22402: Improve "For assistance" link
  3162. * Translations update
  3163. * Bug 25658+29554: Replace security slider with security level UI
  3164. * Bug 28885: notify users that update is downloading
  3165. * Bug 29180: MAR download stalls when about dialog is opened
  3166. * Bug 27485: Users are not taught how to open security-slider dialog
  3167. * Bug 27486: Avoid about:blank tabs when opening onboarding pages
  3168. * Bug 29440: Update about:tor when Tor Browser is updated
  3169. * Bug 23359: WebExtensions icons are not shown on first start
  3170. * Bug 28628: Change onboarding Security panel to open new Security Level panel
  3171. * Android
  3172. * Bug 28329: Design Tor Browser for Android configuration UI
  3173. * Bug 28802: Support PTs in Tor Browser for Android
  3174. * Bug 29794: Update TBA built-in bridges
  3175. * Bug 27210: Add support for x86 on Android
  3176. * Bug 29809: Only ship tor binary for .apk architecture
  3177. * Bug 29633: Don't ship pdnsd anymore
  3178. * Bug 28708: about:tor is not the default homepage after upgrade
  3179. * Bug 29626: Application name is now "Always-On Notifications"
  3180. * Bug 29467: Backport fix for arc4random_buf bustage
  3181. * Build System
  3182. * All platforms
  3183. * Bug 25876: Generate source tarballs during build
  3184. * Bug 28685: Set Build ID based on Tor Browser version
  3185. * Bug 29194: Set DEBIAN_FRONTEND=noninteractive
  3186. * Linux
  3187. * Bug 26323+29812: Build 32bit Linux bundles on 64bit Debian Wheezy
  3188. * Bug 29758: Build firefox debug symbols for linux-i686
  3189. * Android
  3190. * Bug 29632: Use HTTPS for downloading Gradle
  3191. Tor Browser 8.0.7 -- March 19 2019
  3192. * All platforms
  3193. * Update Firefox to 60.6.0esr
  3194. * Update Tor to 0.3.5.8
  3195. * Bug 29660: XMPP can not connect to SOCKS5 anymore
  3196. * Update Torbutton to 2.0.11
  3197. * Bug 29021: Tell NoScript it is running within Tor Browser
  3198. * Windows
  3199. * Bug 29081: Harden libwinpthread
  3200. * Linux
  3201. * Bug 27531: Add separate LD_LIBRARY_PATH for fteproxy
  3202. Tor Browser 8.5a8 -- February 13 2019
  3203. * All platforms
  3204. * Update Firefox to 60.5.1esr
  3205. * Update HTTPS Everywhere to 2019.1.31
  3206. * Bug 29378: Remove 83.212.101.3 from default bridges
  3207. * Bug 29349: Remove network.http.spdy.* overrides from meek helper user.js
  3208. * Bug 29327: TypeError: hostName is null on about:tor page
  3209. * Build System
  3210. * All Platforms
  3211. * Bug 29235: Build our own version of python3.6 for HTTPS Everywhere
  3212. * Bug 29167: Upgrade go to 1.11.5
  3213. * Linux
  3214. * Bug 29183: Use linux-x86_64 langpacks on linux-x86_64
  3215. Tor Browser 8.0.6 -- February 12 2019
  3216. * All platforms
  3217. * Update Firefox to 60.5.1esr
  3218. * Update HTTPS Everywhere to 2019.1.31
  3219. * Bug 29378: Remove 83.212.101.3 from default bridges
  3220. * Build System
  3221. * All Platforms
  3222. * Bug 29235: Build our own version of python3.6 for HTTPS Everywhere
  3223. Tor Browser 8.5a7 -- January 29 2019
  3224. * All Platforms
  3225. * Update Firefox to 60.5.0esr
  3226. * Update Torbutton to 2.1.4
  3227. * Bug 25702: Update Tor Browser icon to follow design guidelines
  3228. * Bug 21805: Add click-to-play button for WebGL
  3229. * Bug 28836: Links on about:tor are not clickable
  3230. * Bug 29035: Clean up our donation campaign and add newsletter sign-up link
  3231. * Translations update
  3232. * Code clean-up
  3233. * Update HTTPS Everywhere to 2019.1.7
  3234. * Update NoScript to 10.2.1
  3235. * Bug 28873: Cascading of permissions is broken
  3236. * Bug 28720: Some videos are blocked outright on higher security levels
  3237. * Bug 29082: Backport patches for bug 1469916
  3238. * Bug 28711: Backport patches for bug 1474659
  3239. * Bug 27828: "Check for Tor Browser update" doesn't seem to do anything
  3240. * Bug 29028: Auto-decline most canvas warning prompts again
  3241. * Bug 27597: Fix our debug builds
  3242. * Windows
  3243. * Update Tor to 0.4.0.1-alpha
  3244. * Bug 25702: Activity 1.1 Update Tor Browser icon to follow design guidelines
  3245. * Bug 28111: Use Tor Browser icon in identity box
  3246. * Bug 22654: Firefox icon is shown for Tor Browser on Windows 10 start menu
  3247. * Bug 27503: Compile with accessibility support
  3248. * Bug 28874: Bump mingw-w64 commit to fix WebGL crash
  3249. * Bug 12885: Windows Jump Lists fail for Tor Browser
  3250. * Bug 28618: Set MOZILLA_OFFICIAL for Windows build
  3251. * OS X
  3252. * Update Tor to 0.4.0.1-alpha
  3253. * Bug 25702: Activity 1.1 Update Tor Browser icon to follow design guidelines
  3254. * Bug 28111: Use Tor Browser icon in identity box
  3255. * Linux
  3256. * Update Tor to 0.4.0.1-alpha
  3257. * Bug 25702: Activity 1.1 Update Tor Browser icon to follow design guidelines
  3258. * Bug 28111: Use Tor Browser icon in identity box
  3259. * Bug 27531: Fix crashing print dialog
  3260. * Android
  3261. * Bug 28705: Fix download crash on newer Android devices
  3262. * Bug 28814: Backport 1480079 to allow installing downloaded apps
  3263. * Build System
  3264. * All Platforms
  3265. * Bug 29158: Install updated apt packages (CVE-2019-3462)
  3266. * Bug 29097: Don't try to install python3.6-lxml for HTTPS Everywhere
  3267. * Windows
  3268. * Bug 26148: Update binutils to 2.31.1
  3269. * Bug 29081: Harden libwinpthread
  3270. * Linux
  3271. * Bug 26148: Update binutils to 2.31.1
  3272. * Android
  3273. * Bug 28752: Don't download tor-android-binary resources during build
  3274. Tor Browser 8.0.5 -- January 29 2019
  3275. * All platforms
  3276. * Update Firefox to 60.5.0esr
  3277. * Update Tor to 0.3.5.7
  3278. * Update Torbutton to 2.0.10
  3279. * Bug 29035: Clean up our donation campaign and add newsletter sign-up link
  3280. * Bug 27175: Add pref to allow users to persist custom noscript settings
  3281. * Update HTTPS Everywhere to 2019.1.7
  3282. * Update NoScript to 10.2.1
  3283. * Bug 28873: Cascading of permissions is broken
  3284. * Bug 28720: Some videos are blocked outright on higher security levels
  3285. * Bug 26540: Enabling pdfjs disableRange option prevents pdfs from loading
  3286. * Bug 28740: Adapt Windows navigator.platform value on 64-bit systems
  3287. * Bug 28695: Set default security.pki.name_matching_mode to enforce (3)
  3288. Tor Browser 8.5a6 -- December 11 2018
  3289. * All Platforms
  3290. * Update Firefox to 60.4.0esr
  3291. * Update Torbutton to 2.1.3
  3292. * Bug 28540: Use new text for 2018 donation banner
  3293. * Bug 27290: Remove WebGL pref for min capability mode
  3294. * Bug 28075: Tone down missing SOCKS credential warning
  3295. * Bug 28747: Remove NoScript (XPCOM) related unused code
  3296. * Translations update
  3297. * Bug 28608: Disable background HTTP response throttling
  3298. * Bug 28695: Set default security.pki.name_matching_mode to enforce (3)
  3299. * Bug 27290: Remove WebGL pref for min capability mode
  3300. * Bug 27919: Backport SSL status API
  3301. * Bug 25794: Disable pointer events
  3302. * Windows
  3303. * Update OpenSSL to 1.0.2q
  3304. * Bug 28740: Adapt Windows navigator.platform value on 64-bit systems
  3305. * OS X
  3306. * Update OpenSSL to 1.0.2q
  3307. * Linux
  3308. * Update OpenSSL to 1.0.2q
  3309. * Android
  3310. * Bug 26843: Multi-locale support for Tor Browser on Android
  3311. * Build System
  3312. * Android
  3313. * Bug 25164: Add .apk to our sha256sums unsigned build file
  3314. * Bug 28696: Make path to Gradle dependencies reproducible
  3315. * Bug 28697: Use pregenerated keystore and fix timestamp issues
  3316. Tor Browser 8.0.4 -- December 11 2018
  3317. * All platforms
  3318. * Update Firefox to 60.4.0esr
  3319. * Update Tor to 0.3.4.9
  3320. * Update OpenSSL to 1.0.2q
  3321. * Update Torbutton to 2.0.9
  3322. * Bug 28540: Use new text for 2018 donation banner
  3323. * Bug 28515: Use en-US for english Torbutton strings
  3324. * Translations update
  3325. * Update HTTPS Everywhere to 2018.10.31
  3326. * Update NoScript to 10.2.0
  3327. * Bug 1623: Block protocol handler enumeration (backport of fix for #680300)
  3328. * Bug 25794: Disable pointer events
  3329. * Bug 28608: Disable background HTTP response throttling
  3330. * Bug 28185: Add smallerRichard to Tor Browser
  3331. * Windows
  3332. * Bug 26381: about:tor page does not load on first start on Windows
  3333. * Bug 28657: Remove broken FTE bridge from Tor Browser
  3334. * OS X
  3335. * Bug 26263: App icon positioned incorrectly in macOS DMG installer window
  3336. * Bug 26475: Fix Stylo related reproducibility issue
  3337. * Linux
  3338. * Bug 26475: Fix Stylo related reproducibility issue
  3339. * Bug 28657: Remove broken FTE bridge from Tor Browser
  3340. * Build System
  3341. * All Platforms
  3342. * Bug 27218: Generate multiple Tor Browser bundles in parallel
  3343. Tor Browser 8.5a5 -- December 3 2018
  3344. * All Platforms
  3345. * Update Torbutton to 2.1.2
  3346. * Bug 25013: Integrate Torbutton into tor-browser for Android
  3347. * Bug 27111: Update about:tor desktop version to work on mobile
  3348. * Bug 28093: Update donation banner style to make it fit in small screens
  3349. * Bug 28543: about:tor has scroll bar between widths 900px and 1000px
  3350. * Bug 28039: Enable dump() if log method is 0
  3351. * Bug 27701: Don't show App Blocker dialog on Android
  3352. * Bug 28187: Change tor circuit icon to torbutton.svg
  3353. * Bug 28515: Use en-US for english Torbutton strings
  3354. * Translations update
  3355. * Update Tor Launcher to 0.2.18
  3356. * Bug 28039: Enable dump() if log method is 0
  3357. * Translations update
  3358. * Update HTTPS Everywhere to 2018.10.31
  3359. * Update NoScript to 10.2.0
  3360. * Bug 22343: Make 'Save Page As' obey first-party isolation
  3361. * Bug 26540: Enabling pdfjs disableRange option prevents pdfs from loading
  3362. * Windows
  3363. * Update Tor to 0.3.5.5-alpha
  3364. * Bug 28310: Don't build obfs4 with module versioning support
  3365. * Bug 27827: Update Go to 1.11.1
  3366. * Bug 28185: Add smallerRichard to Tor Browser
  3367. * Bug 28657: Remove broken FTE bridge from Tor Browser
  3368. * OS X
  3369. * Update Tor to 0.3.5.5-alpha
  3370. * Bug 28310: Don't build obfs4 with module versioning support
  3371. * Bug 27827: Update Go to 1.11.1
  3372. * Bug 27827: Build snowflake reproducibly
  3373. * Bug 28258: Don't look for webrtc headers under talk/
  3374. * Bug 28185: Add smallerRichard to Tor Browser
  3375. * Linux
  3376. * Update Tor to 0.3.5.5-alpha
  3377. * Bug 28310: Don't build obfs4 with module versioning support
  3378. * Bug 27827: Update Go to 1.11.1
  3379. * Bug 27827: Build snowflake reproducibly
  3380. * Bug 28258: Don't look for webrtc headers under talk/
  3381. * Bug 28185: Add smallerRichard to Tor Browser
  3382. * Bug 28657: Remove broken FTE bridge from Tor Browser
  3383. * Android
  3384. * Bug 28051: Fix up Orbot for inclusion into Tor Browser
  3385. * Bug 26690+25765: Port padlock states for .onion services to mobile
  3386. * Bug 28507: Delete private data in the browser startup
  3387. * Bug 27111+25013: Configure Tor Browser for mobile to load about:tor
  3388. * Bug 27256: Enable TouchEvents on Android
  3389. * Bug 28640: Use system add-on and distributed preferences
  3390. * Build System
  3391. * Bug 27977: Build Orbot inside tor-browser-build
  3392. * Bug 27443: Update Firefox RBM config and build for Android
  3393. * Bug 27439: Add android target for rust compiler
  3394. * Bug 28469: Fix unsupported libbacktrace in Rust 1.26
  3395. * Bug 28468: Modify Android toolchain to support Orbot
  3396. * Bug 28483: Modify Android Toolchain API Version
  3397. * Bug 28472: Add Android Makefile Rules
  3398. * Bug 28470: Add fetch gradle dependency script to common project
  3399. * Bug 28144: Update projects/tor-browser for Android
  3400. Tor Browser 8.5a4 -- October 23 2018
  3401. * All Platforms
  3402. * Update Firefox to 60.3.0esr
  3403. * Update Tor to 0.3.5.3-alpha
  3404. * Update Torbutton to 2.1.1
  3405. * Bug 23925+27959: Donation banner for year end 2018 campaign
  3406. * Bug 24172: Donation banner clobbers Tor Browser version string
  3407. * Bug 28082: Add locales cs, el, hu, ka
  3408. * Translations update
  3409. * Update Tor Launcher to 0.2.17
  3410. * Bug 27994+25151: Use the new Tor Browser logo
  3411. * Bug 28082: Add locales cs, el, hu, ka
  3412. * Translations update
  3413. * Update HTTPS Everywhere to 2018.9.19
  3414. * Update NoScript to 10.1.9.9
  3415. * Bug 1623: Block protocol handler enumeration (backport of fix for #680300)
  3416. * Bug 27905: Fix many occurrences of "Firefox" in about:preferences
  3417. * Bug 28082: Add locales cs, el, hu, ka
  3418. * Windows
  3419. * Bug 21704: Abort install if CPU is missing SSE2 support
  3420. * Bug 28002: Fix the precomplete file in the en-US installer
  3421. * OS X
  3422. * Bug 26263: App icon positioned incorrectly in macOS DMG installer window
  3423. * Bug 26475: Fix Stylo related reproducibility issue
  3424. * Linux
  3425. * Bug 26475: Fix Stylo related reproducibility issue
  3426. * Bug 28022: Use `/usr/bin/env bash` for bash invocation
  3427. * Android
  3428. * Backport of fixes for bug 1448014, 1458905, 1441345, and 1448305
  3429. * Build System
  3430. * All Platforms
  3431. * Bug 27218: Generate multiple Tor Browser bundles in parallel
  3432. * Windows
  3433. * Bug 27320: Build certutil for Windows
  3434. * OS X
  3435. * Bug 27320: Build certutil for macOS
  3436. Tor Browser 8.0.3 -- October 23 2018
  3437. * All platforms
  3438. * Update Firefox to 60.3.0esr
  3439. * Update Torbutton to 2.0.8
  3440. * Bug 23925+27959: Donation banner for year end 2018 campaign
  3441. * Bug 24172: Donation banner clobbers Tor Browser version string
  3442. * Bug 27760: Use new NoScript API for IPC and fix about:blank issue
  3443. * Translations update
  3444. * Update HTTPS Everywhere to 2018.9.19
  3445. * Update NoScript to 10.1.9.9
  3446. * Linux
  3447. * Bug 27546: Fix vertical scrollbar behavior in Tor Browser 8 with Gtk3
  3448. * Bug 27552: Use bundled dir on CentOS/RHEL 6
  3449. Tor Browser 8.5a3 -- October 4 2018
  3450. * All platforms
  3451. * Update Firefox to 60.2.1esr
  3452. * Backport fix for Mozilla bug 1493900 and 1493903
  3453. * Windows
  3454. * Bug 27865: Tor Browser 8.5a2 is crashing on Windows
  3455. * OS X
  3456. * Backport fix for Mozilla bug 1489785 for macOS 10.14 compatibility
  3457. Tor Browser 8.0.2 -- October 2 2018
  3458. * All platforms
  3459. * Update Firefox to 60.2.1esr
  3460. * Backport fix for Mozilla bug 1493900 and 1493903
  3461. * OS X
  3462. * Backport fix for Mozilla bug 1489785 for macOS 10.14 compatibility
  3463. Tor Browser 8.5a2 -- September 24 2018
  3464. * All platforms
  3465. * Update Tor to 0.3.5.2-alpha
  3466. * Update Torbutton to 2.1
  3467. * Bug 27097: Tor News signup banner
  3468. * Bug 27663: Add New Identity menuitem again
  3469. * Bug 27175: Add pref to allow users to persist custom noscript settings
  3470. * Bug 27760: Use new NoScript API for IPC and fix about:blank issue
  3471. * Bug 26624: Only block OBJECT on highest slider level
  3472. * Bug 26555: Don't show IP address for meek or snowflake
  3473. * Bug 27478: Torbutton icons for dark theme
  3474. * Bug 27506+14520: Move status version to upper left corner for RTL locales
  3475. * Bug 27558: Update the link to "Your Guard note may not change" text
  3476. * Bug 21263: Remove outdated information from the README
  3477. * Translations update
  3478. * Update Tor Launcher to 0.2.16.5
  3479. * Bug 27469: Adapt Moat URLs
  3480. * Translations update
  3481. * Clean-up
  3482. * Update NoScript to 10.1.9.6
  3483. * Bug 27763: Restrict Torbutton signing exemption to mobile
  3484. * Bug 26146: Spoof HTTP User-Agent header for desktop platforms
  3485. * Bug 27543: QR code is broken on web.whatsapp.com
  3486. * Bug 27264: Bookmark items are not visible on the boomark toolbar
  3487. * Bug 27535: Enable TLS 1.3 draft version
  3488. * Bug 27623: Use MOZILLA_OFFICIAL for our builds
  3489. * Backport of Mozilla bug 1490585, 1475775, and 1489744
  3490. * Windows:
  3491. * Bug 26381: about:tor page does not load on first start on Windows
  3492. * Linux:
  3493. * Bug 27546: Fix vertical scrollbar behavior in Tor Browser 8 with Gtk3
  3494. * Bug 27552: Use bundled dir on CentOS/RHEL 6
  3495. * Bug 26556: Fix broken Tor Browser icon path on Linux
  3496. Tor Browser 8.0.1 -- September 24 2018
  3497. * All platforms
  3498. * Update Tor to 0.3.4.8
  3499. * Update Torbutton to 2.0.7
  3500. * Bug 27097: Tor News signup banner
  3501. * Bug 27663: Add New Identity menuitem again
  3502. * Bug 26624: Only block OBJECT on highest slider level
  3503. * Bug 26555: Don't show IP address for meek or snowflake
  3504. * Bug 27478: Torbutton icons for dark theme
  3505. * Bug 27506+14520: Move status version to upper left corner for RTL locales
  3506. * Bug 27427: Fix NoScript IPC for about:blank by whitelisting messages
  3507. * Bug 27558: Update the link to "Your Guard note may not change" text
  3508. * Translations update
  3509. * Update Tor Launcher to 0.2.16.6
  3510. * Bug 27469: Adapt Moat URLs
  3511. * Translations update
  3512. * Clean-up
  3513. * Update NoScript to 10.1.9.6
  3514. * Bug 27763: Restrict Torbutton signing exemption to mobile
  3515. * Bug 26146: Spoof HTTP User-Agent header for desktop platforms
  3516. * Bug 27543: QR code is broken on web.whatsapp.com
  3517. * Bug 27264: Bookmark items are not visible on the boomark toolbar
  3518. * Bug 27535: Enable TLS 1.3 draft version
  3519. * Backport of Mozilla bug 1490585, 1475775, and 1489744
  3520. * OS X
  3521. * Bug 27482: Fix crash during start-up on macOS 10.9.x systems
  3522. * Linux
  3523. * Bug 26556: Fix broken Tor Browser icon path on Linux
  3524. Tor Browser 8.5a1 -- September 5 2018
  3525. * All platforms
  3526. * Update Firefox to 60.2.0esr
  3527. * Update Tor to 0.3.4.7-rc
  3528. * Update OpenSSL to 1.0.2p
  3529. * Update Torbutton to 2.0.6
  3530. * Bug 27401: Start listening for NoScript before it loads
  3531. * Bug 27276: Adapt to new NoScript messaging protocol
  3532. * Bug 26884: Use Torbutton to provide security slider on mobile
  3533. * Bug 26962: Circuit display onboarding
  3534. * Bug 26520: Fix sec slider/NoScript for TOR_SKIP_LAUNCH=1
  3535. * Bug 26490: Remove the security slider notification
  3536. * Bug 27301: Improve about:tor behavior and appearance
  3537. * Bug 27097: Add text for Tor News signup widget
  3538. * Bug 27214: Improve the onboarding text
  3539. * Translations update
  3540. * Update Tor Launcher to 0.2.16.4
  3541. * Bug 25405: Cannot use Moat if a meek bridge is configured
  3542. * Bug 27392: Update Moat URLs
  3543. * Translations update
  3544. * Update HTTPS Everywhere to 2018.8.22
  3545. * Update NoScript to 10.1.9.1
  3546. * Bug 26962: New feature onboarding
  3547. * Bug 27403: The onboarding bubble is not always displayed
  3548. * Bug 27283: Fix first-party isolation for UI tour
  3549. * Bug 27213: Update about:tbupdate to new (about:tor) layout
  3550. * Bug 26670: Make canvas permission prompt respect first-party isolation
  3551. * Bug 26561: .onion images are not displayed
  3552. * Bug 21787: Spoof en-US for date picker
  3553. * Bug 21607: Disable WebVR for now until it is properly audited
  3554. * Bug 21549: Disable wasm for now until it is properly audited
  3555. * Bug 26614: Disable Web Authentication API until it is properly audited
  3556. * Bug 27281: Enable Reader View mode again
  3557. * Bug 26114: Don't expose navigator.mozAddonManager to websites
  3558. * Bug 26048: Fix potentially confusing "restart to update" message
  3559. * Bug 27221: Purge startup cache if Tor Browser version changed
  3560. * Bug 26049: Reduce delay for showing update prompt to 1 hour
  3561. * Bug 25405: Cannot use Moat if a meek bridge is configured
  3562. * Bug 27268+27257+27262+26603: Preferences clean-up
  3563. * Windows
  3564. * Bug 26381: Work around endless loop during page load and about:tor not loading
  3565. * Bug 27411: Fix broken security slider and NoScript interaction on Windows
  3566. * Build System
  3567. * All Platforms
  3568. * Bug 27061: Enable verification of langpacks checksums
  3569. * Bug 27178+27179: Add support for xz compression in mar files
  3570. Tor Browser 8.0 -- September 5 2018
  3571. * All platforms
  3572. * Update Firefox to 60.2.0esr
  3573. * Update Tor to 0.3.3.9
  3574. * Update OpenSSL to 1.0.2p
  3575. * Update Libevent to 2.1.8
  3576. * Update Torbutton to 2.0.6
  3577. * Bug 26960: Implement new about:tor start page
  3578. * Bug 26961: Implement new user onboarding
  3579. * Bug 26962: Circuit display onboarding
  3580. * Bug 27301: Improve about:tor behavior and appearance
  3581. * Bug 27214: Improve the onboarding text
  3582. * Bug 26321: Move 'New Identity', 'New Circuit' to File, hamburger menus
  3583. * Bug 26100: Adapt Torbutton to Firefox 60 ESR
  3584. * Bug 26520: Fix sec slider/NoScript for TOR_SKIP_LAUNCH=1
  3585. * Bug 27401: Start listening for NoScript before it loads
  3586. * Bug 26430: New Torbutton icon
  3587. * Bug 24309: Move circuit display to the identity popup
  3588. * Bug 26884: Use Torbutton to provide security slider on mobile
  3589. * Bug 26128: Adapt security slider to the WebExtensions version of NoScript
  3590. * Bug 27276: Adapt to new NoScript messaging protocol
  3591. * Bug 23247: Show security state of .onions
  3592. * Bug 26129: Show our about:tor page on startup
  3593. * Bug 26235: Hide new unusable items from help menu
  3594. * Bug 26058: Remove workaround for hiding 'sign in to sync' button
  3595. * Bug 26590: Use new svg.disabled pref in security slider
  3596. * Bug 26655: Adjust color and size of onion button
  3597. * Bug 26500: Reposition circuit display relay icon for RTL locales
  3598. * Bug 26409: Remove spoofed locale implementation
  3599. * Bug 26189: Remove content-policy.js
  3600. * Bug 26544: Images are not centered anymore
  3601. * Bug 26490: Remove the security slider notification
  3602. * Bug 25126: Make about:tor layout responsive
  3603. * Bug 27097: Add text for Tor News signup widget
  3604. * Bug 21245: Add da translation to Torbutton and keep track of it
  3605. * Bug 27129+20628: Add locales ca, ga, id, is, nb, da, he, sv, and zh-TW
  3606. * Translations update
  3607. * Update Tor Launcher to 0.2.16.3
  3608. * Bug 23136: Moat integration (fetch bridges for the user)
  3609. * Bug 25750: Update Tor Launcher to make it compatible with Firefox 60 ESR
  3610. * Bug 26985: Help button icons missing
  3611. * Bug 25509: Improve the proxy help text
  3612. * Bug 26466: Remove sv-SE from tracking for releases
  3613. * Bug 27129+20628: Add locales ca, ga, id, is, nb, da, he, sv, and zh-TW
  3614. * Translations update
  3615. * Update HTTPS Everywhere to 2018.8.22
  3616. * Update NoScript to 10.1.9.1
  3617. * Update meek to 0.31
  3618. * Bug 26477: Make meek extension compatible with ESR 60
  3619. * Update obfs4proxy to v0.0.7 (bug 25356)
  3620. * Bug 27082: Enable a limited UITour for user onboarding
  3621. * Bug 26961: New user onboarding
  3622. * Bug 26962: New feature onboarding
  3623. * Bug 27403: The onboarding bubble is not always displayed
  3624. * Bug 27283: Fix first-party isolation for UI tour
  3625. * Bug 27213: Update about:tbupdate to new (about:tor) layout
  3626. * Bug 14952+24553: Enable HTTP2 and AltSvc
  3627. * Bug 25735: Tor Browser stalls while loading Facebook login page
  3628. * Bug 17252: Enable TLS session identifiers with first-party isolation
  3629. * Bug 26353: Prevent speculative connects that violate first-party isolation
  3630. * Bug 26670: Make canvas permission prompt respect first-party isolation
  3631. * Bug 24056: Use en-US strings in HTML forms if locale is spoofed to english
  3632. * Bug 26456: HTTP .onion sites inherit previous page's certificate information
  3633. * Bug 26561: .onion images are not displayed
  3634. * Bug 26321: Move 'New Identity', 'New Circuit' to File, hamburger menus
  3635. * Bug 26833: Backport Mozilla's bug 1473247
  3636. * Bug 26628: Backport Mozilla's bug 1470156
  3637. * Bug 26237: Clean up toolbar for ESR60-based Tor Browser
  3638. * Bug 26519: Avoid Firefox icons in ESR60
  3639. * Bug 26039: Load our preferences that modify extensions (fixup)
  3640. * Bug 26515: Update Tor Browser blog post URLs
  3641. * Bug 26216: Fix broken MAR file generation
  3642. * Bug 26409: Remove spoofed locale implementation
  3643. * Bug 25543: Rebase Tor Browser patches for ESR60
  3644. * Bug 23247: Show security state of .onions
  3645. * Bug 26039: Load our preferences that modify extensions
  3646. * Bug 17965: Isolate HPKP and HSTS to URL bar domain
  3647. * Bug 21787: Spoof en-US for date picker
  3648. * Bug 21607: Disable WebVR for now until it is properly audited
  3649. * Bug 21549: Disable wasm for now until it is properly audited
  3650. * Bug 26614: Disable Web Authentication API until it is properly audited
  3651. * Bug 18598: Disable WebSpeech API
  3652. * Bug 27281: Enable Reader View mode again
  3653. * Bug 26114: Don't expose navigator.mozAddonManager to websites
  3654. * Bug 21850: Update about:tbupdate handling for e10s
  3655. * Bug 26048: Fix potentially confusing "restart to update" message
  3656. * Bug 27221: Purge startup cache if Tor Browser version changed
  3657. * Bug 26049: Reduce delay for showing update prompt to 1 hour
  3658. * Bug 26365: Add potential AltSvc support
  3659. * Bug 9145: Fix broken hardware acceleration on Windows and enable it
  3660. * Bug 22756: Show Canvas prompt only after user interaction
  3661. * Bug 26045: Add new MAR signing keys
  3662. * Bug 25215: Revert bug 18619 (we are not disabling IndexedDB any longer)
  3663. * Bug 19910: Rip out optimistic data socks handshake variant (#3875)
  3664. * Bug 22564: Hide Firefox Sync
  3665. * Bug 21484: Hide "What's New" link from About dialog
  3666. * Bug 25090: Disable updater telemetry
  3667. * Bug 26127: Make sure Torbutton and Tor Launcher are not treated as legacy extensions
  3668. * Bug 13575: Disable randomised Firefox HTTP cache decay user tests
  3669. * Bug 22548: Firefox downgrades VP9 videos to VP8 for some users
  3670. * Bug 24995: Include git hash in tor --version
  3671. * Bug 27268+27257+27262+26603 : Preferences clean-up
  3672. * Bug 26073: Migrate general.useragent.locale to intl.locale.requested
  3673. * Bug 27129+20628: Make Tor Browser available in ca, ga, id, is, nb, da, he, sv, and zh-TW
  3674. * Bug 12927: Include Hebrew translation into Tor Browser
  3675. * Bug 21245: Add danish (da) translation
  3676. * Windows
  3677. * Bug 20636+10026: Create 64bit Tor Browser for Windows
  3678. * Bug 26239+24197: Enable content sandboxing for 64bit Windows builds
  3679. * Bug 26514: Fix intermittent updater failures on Win64 (Error 19)
  3680. * Bug 26874: Fix UNC path restrictions failure in Tor Browser 8.0a9
  3681. * Bug 12968: Enable HEASLR in Windows x86_64 builds
  3682. * Bug 26381: Work around endless loop during page load and about:tor not loading
  3683. * Bug 27411: Fix broken security slider and NoScript interaction on Windows
  3684. * Bug 22581: Fix shutdown crash
  3685. * Bug 25266: PT config should include full names of executable files
  3686. * Bug 26304: Update zlib to version 1.2.11
  3687. * Update tbb-windows-installer to 0.4
  3688. * Bug 26355: Update tbb-windows-installer to check for Windows7+
  3689. * Bug 26355: Require Windows7+ for updates to Tor Browser 8
  3690. * OS X
  3691. * Bug 24136: After loading file:// URLs clicking on links is broken on OS X
  3692. * Bug 24243: Tor Browser only renders HTML for local pages via file://
  3693. * Bug 24263: Tor Browser does not run extension scripts if loaded via about:debugging
  3694. * Bug 22794: Don't open AF_INET/AF_INET6 sockets when AF_LOCAL is configured
  3695. * Linux
  3696. * Bug 22794: Don't open AF_INET/AF_INET6 sockets when AF_LOCAL is configured
  3697. * Bug 25485: Unbreak Tor Browser on systems with newer libstdc++
  3698. * Bug 20866: Fix OpenGL software rendering on systems with newer libstdc++
  3699. * Bug 26951+18022: Fix execdesktop argument passing
  3700. * Bug 24136: After loading file:// URLs clicking on links is broken on Linux
  3701. * Bug 24243: Tor Browser only renders HTML for local pages via file://
  3702. * Bug 24263: Tor Browser does not run extension scripts if loaded via about:debugging
  3703. * Bug 20283: Tor Browser should run without a `/proc` filesystem.
  3704. * Bug 26354: Set SSE2 support as minimal requirement for Tor Browser 8
  3705. * Build System
  3706. * All Platforms
  3707. * Bug 26362+26410: Use old MAR format for first ESR60-based stable
  3708. * Bug 27020: RBM build fails with runc version 1.0.1
  3709. * Bug 26949: Use GitHub repository for STIX
  3710. * Bug 26773: Add --verbose to the ./mach build flag for firefox
  3711. * Bug 26319: Don't package up Tor Browser in the `mach package` step
  3712. * Bug 27178: Add support for xz compression in mar files
  3713. * Clean up
  3714. * Windows
  3715. * Bug 26203: Adapt tor-browser-build/tor-browser for Windows
  3716. * Bug 26204: Bundle d3dcompiler_47.dll for Tor Browser 8
  3717. * Bug 26205: Don't build the uninstaller for Windows during Firefox compilation
  3718. * Bug 26206: Ship pthread related dll where needed
  3719. * Bug 26396: Build libwinpthread reproducible
  3720. * Bug 25837: Integrate fxc2 into our build setup for Windows builds
  3721. * Bug 27152: Use mozilla/fxc2.git for the fxc2 repository
  3722. * Bug 25894: Get a rust cross-compiler for Windows
  3723. * Bug 25554: Bump mingw-w64 version for ESR 60
  3724. * Bug 23561: Fix nsis builds for Windows 64
  3725. * Bug 13469: Windows installer is missing many languages from NSIS file
  3726. * Bug 23231: Remove our STL Wrappers workaround for Windows 64bit
  3727. * Bug 26370: Don't copy msvcr100.dll and libssp-0.dll twice
  3728. * Bug 26476: Work around Tor Browser crashes due to fix for bug 1467041
  3729. * Bug 18287: Use SHA-2 signature for Tor Browser setup executables
  3730. * Bug 25420: Update GCC to 6.4.0
  3731. * Bug 16472: Update Binutils to 2.26.1
  3732. * Bug 20302: Fix FTE compilation for Windows with GCC 6.4.0
  3733. * Bug 25111: Don't compile Yasm on our own anymore for Windows Tor Browser
  3734. * Bug 18691: Switch Windows builds from precise to jessie
  3735. * OS X
  3736. * Bug 24632: Update macOS toolchain for ESR 60
  3737. * Bug 9711: Build our own cctools for macOS cross-compilation
  3738. * Bug 25548: Update macOS SDK for Tor Browser builds to 10.11
  3739. * Bug 26003: Clean up our mozconfig-osx-x86_64 file
  3740. * Bug 26195: Use new cctools in our macosx-toolchain project
  3741. * Bug 25975: Get a rust cross-compiler for macOS
  3742. * Bug 26475: Disable Stylo to make macOS build reproducible
  3743. * Bug 26489: Fix .app directory name in tools/dmg2mar
  3744. * Linux
  3745. * Bug 26073: Patch tor-browser-build for transition to ESR 60
  3746. * Bug 25481: Rust support for tor-browser and tor
  3747. * Bug 25304: Update GCC to 6.4.0
  3748. * Bug 16472: Update Binutils to 2.26.1
  3749. Tor Browser 8.0a10 -- August 20 2018
  3750. * All platforms
  3751. * Update Tor to 0.3.4.6-rc
  3752. * Update Torbutton to 2.0.2
  3753. * Bug 26960: Implement new about:tor start page
  3754. * Bug 26961: Implement new user onboarding
  3755. * Bug 26321: Move 'New Identity', 'New Circuit' to File, hamburger menus
  3756. * Bug 26590: Use new svg.disabled pref in security slider
  3757. * Bug 26655: Adjust color and size of onion button
  3758. * Bug 26500: Reposition circuit display relay icon for RTL locales
  3759. * Bug 26409: Remove spoofed locale implementation
  3760. * Bug 26189: Remove content-policy.js
  3761. * Bug 26544: Images are not centered anymore
  3762. * Bug 27129: Add locales ca, ga, id, is, nb
  3763. * Translations update
  3764. * Update Tor Launcher to 0.2.16.2
  3765. * Bug 26985: Help button icons missing
  3766. * Bug 25509: Improve the proxy help text
  3767. * Bug 27129: Add locales ca, ga, id, is, nb
  3768. * Translations update
  3769. * Update NoScript to 10.1.8.16
  3770. * Update meek to 0.31
  3771. * Bug 26477: Make meek extension compatible with ESR 60
  3772. * Bug 27082: Enable a limited UITour for user onboarding
  3773. * Bug 26961: New user onboarding
  3774. * Bug 14952+24553: Enable HTTP2 and AltSvc
  3775. * Bug 25735: Tor Browser stalls while loading Facebook login page
  3776. * Bug 17252: Enable TLS session identifiers with first-party isolation
  3777. * Bug 26353: Prevent speculative connects that violate first-party isolation
  3778. * Bug 24056: Use en-US strings in HTML forms if locale is spoofed to english
  3779. * Bug 26456: HTTP .onion sites inherit previous page's certificate information
  3780. * Bug 26321: Move 'New Identity', 'New Circuit' to File, hamburger menus
  3781. * Bug 26833: Backport Mozilla's bug 1473247
  3782. * Bug 26628: Backport Mozilla's bug 1470156
  3783. * Bug 26237: Clean up toolbar for ESR60-based Tor Browser
  3784. * Bug 26519: Avoid Firefox icons in ESR60
  3785. * Bug 26039: Load our preferences that modify extensions (fixup)
  3786. * Bug 26515: Update Tor Browser blog post URLs
  3787. * Bug 27129: Add locales ca, ga, id, is, nb
  3788. * Bug 26216: Fix broken MAR file generation
  3789. * Bug 26409: Remove spoofed locale implementation
  3790. * Bug 26603: Remove obsolete HTTP pipelining preferences
  3791. * Windows
  3792. * Bug 26514: Fix intermittent updater failures on Win64 (Error 19)
  3793. * Bug 26874: Fix UNC path restrictions failure in Tor Browser 8.0a9
  3794. * Bug 12968: Enable HEASLR in Windows x86_64 builds
  3795. * Update tbb-windows-installer to 0.4
  3796. * Bug 26355: Update tbb-windows-installer to check for Windows7+
  3797. * Bug 26355: Require Windows7+ for updates to Tor Browser 8
  3798. * OS X
  3799. * Bug 26795: Bump snowflake to 6077141f4a for bug 25600
  3800. * Linux
  3801. * Bug 25485: Unbreak Tor Browser on systems with newer libstdc++
  3802. * Bug 20866: Fix OpenGL software rendering on systems with newer libstdc++
  3803. * Bug 26951+18022: Fix execdesktop argument passing
  3804. * Bug 26795: Bump snowflake to 6077141f4a for bug 25600
  3805. * Build System
  3806. * All Platforms
  3807. * Bug 26410: Stop using old MAR format in the alpha series
  3808. * Bug 27020: RBM build fails with runc version 1.0.1
  3809. * Bug 26949: Use GitHub repository for STIX
  3810. * Bug 26773: Add --verbose to the ./mach build flag for firefox
  3811. * Bug 26569: Redirect pre-8.0a9 alpha users to a separate update directory
  3812. * Bug 26319: Don't package up Tor Browser in the `mach package` step
  3813. * OS X
  3814. * Bug 26489: Fix .app directory name in tools/dmg2mar
  3815. * Windows
  3816. * Bug 27152: Use mozilla/fxc2.git for the fxc2 repository
  3817. Tor Browser 8.0a9 -- June 27 2018
  3818. * All platforms
  3819. * Update Firefox to 60.1.0esr
  3820. * Update Tor to 0.3.4.2-alpha
  3821. * Update Libevent to 2.1.8
  3822. * Update Torbutton to 2.0.1
  3823. * Bug 26100: Adapt Torbutton to Firefox 60 ESR
  3824. * Bug 26430: New Torbutton icon
  3825. * Bug 24309: Move circuit display to the identity popup
  3826. * Bug 26128: Adapt security slider to the WebExtensions version of NoScript
  3827. * Bug 23247: Show security state of .onions
  3828. * Bug 26129: Show our about:tor page on startup
  3829. * Bug 26235: Hide new unusable items from help menu
  3830. * Bug 26058: Remove workaround for hiding 'sign in to sync' button
  3831. * Bug 20628: Add locales da, he, sv, and zh-TW
  3832. * Translations update
  3833. * Update Tor Launcher to 0.2.16.1
  3834. * Bug 25750: Update Tor Launcher to make it compatible with Firefox 60 ESR
  3835. * Bug 20890: Increase control port connection timeout
  3836. * Bug 26466: Remove sv-SE from tracking for releases
  3837. * Bug 20628: Add more locales to Tor Browser
  3838. * Translations update
  3839. * Update HTTPS Everywhere to 2018.6.21
  3840. * Update NoScript to 10.1.8.2
  3841. * Bug 25543: Rebase Tor Browser patches for ESR60
  3842. * Bug 23247: Show security state of .onions
  3843. * Bug 26039: Load our preferences that modify extensions
  3844. * Bug 17965: Isolate HPKP and HSTS to URL bar domain
  3845. * Bug 26365: Add potential AltSvc support
  3846. * Bug 9145: Fix broken hardware acceleration on Windows and enable it
  3847. * Bug 22756: Show Canvas prompt only after user interaction
  3848. * Bug 26045: Add new MAR signing keys
  3849. * Bug 22564: Hide Firefox Sync
  3850. * Bug 21484: Hide "What's New" link from About dialog
  3851. * Bug 25090: Disable updater telemetry
  3852. * Bug 18598: Disable WebSpeech API
  3853. * Bug 26127: Make sure Torbutton and Tor Launcher are not treated as legacy extensions
  3854. * Bug 26073: Migrate general.useragent.locale to intl.locale.requested
  3855. * Bug 20628: Make Tor Browser available in da, he, sv-SE, and zh-TW
  3856. * Bug 12927: Include Hebrew translation into Tor Browser
  3857. * Bug 21245: Add danish (da) translation
  3858. * Windows
  3859. * Bug 26239+24197: Enable content sandboxing for 64bit Windows builds
  3860. * Bug 22581: Fix shutdown crash
  3861. * Bug 26424: Disable UNC paths to prevent possible proxy bypasses
  3862. * Bug 26304: Update zlib to version 1.2.11
  3863. * OS X
  3864. * Bug 24052: Backport fix for bug 1412081 for better file:// handling
  3865. * Bug 24136: After loading file:// URLs clicking on links is broken on OS X
  3866. * Bug 24243: Tor Browser only renders HTML for local pages via file://
  3867. * Bug 24263: Tor Browser does not run extension scripts if loaded via about:debugging
  3868. * Bug 24632: Disable snowflake for now until its build is fixed
  3869. * Bug 26438: Remove broken seatbelt profiles
  3870. * Linux
  3871. * Bug 24052: Backport fix for bug 1412081 for better file:// handling
  3872. * Bug 24136: After loading file:// URLs clicking on links is broken on Linux
  3873. * Bug 24243: Tor Browser only renders HTML for local pages via file://
  3874. * Bug 24263: Tor Browser does not run extension scripts if loaded via about:debugging
  3875. * Bug 26153: Update selfrando to be compatible with Firefox 60 ESR
  3876. * Bug 22242: Remove RUNPATH in Linux binaries embedded by selfrando
  3877. * Bug 26354: Set SSE2 support as minimal requirement for Tor Browser 8
  3878. * Build System
  3879. * All Platforms
  3880. * Bug 26362: Use old MAR format for first ESR60-based alpha
  3881. * Clean up
  3882. * Windows
  3883. * Bug 26203: Adapt tor-browser-build/tor-browser for Windows
  3884. * Bug 26204: Bundle d3dcompiler_47.dll for Tor Browser 8
  3885. * Bug 26205: Don't build the uninstaller for Windows during Firefox compilation
  3886. * Bug 26206: Ship pthread related dll where needed
  3887. * Bug 26396: Build libwinpthread reproducible
  3888. * Bug 25837: Integrate fxc2 into our build setup for Windows builds
  3889. * Bug 25894: Get a rust cross-compiler for Windows
  3890. * Bug 25554: Bump mingw-w64 version for ESR 60
  3891. * Bug 23561: Fix nsis builds for Windows 64
  3892. * Bug 13469: Windows installer is missing many languages from NSIS file
  3893. * Bug 23231: Remove our STL Wrappers workaround for Windows 64bit
  3894. * Bug 26370: Don't copy msvcr100.dll and libssp-0.dll twice
  3895. * Bug 26476: Work around Tor Browser crashes due to fix for bug 1467041
  3896. * Bug 18287: Use SHA-2 signature for Tor Browser setup executables
  3897. * Bug 16472: Update Binutils to 2.26.1
  3898. * OS X
  3899. * Bug 24632: Update macOS toolchain for ESR 60
  3900. * Bug 9711: Build our own cctools for macOS cross-compilation
  3901. * Bug 25548: Update macOS SDK for Tor Browser builds to 10.11
  3902. * Bug 26003: Clean up our mozconfig-osx-x86_64 file
  3903. * Bug 26195: Use new cctools in our macosx-toolchain project
  3904. * Bug 25975: Get a rust cross-compiler for macOS
  3905. * Bug 26475: Disable Stylo to make macOS build reproducible
  3906. * Linux
  3907. * Bug 26073: Patch tor-browser-build for transition to ESR 60
  3908. * Bug 25540: Stop building and distributing sandboxed tor browser
  3909. * Bug 25481: Rust support for tor-browser and tor
  3910. * Bug 16472: Update Binutils to 2.26.1
  3911. Tor Browser 7.5.6 -- June 26 2018
  3912. * All platforms
  3913. * Update Firefox to 52.9.0esr
  3914. * Update Tor to 0.3.3.7
  3915. * Update Tor Launcher to 0.2.14.5
  3916. * Bug 20890: Increase control port connection timeout
  3917. * Update HTTPS Everywhere to 2018.6.21
  3918. * Bug 26451: Prevent HTTPS Everywhere from freezing the browser
  3919. * Update NoScript to 5.1.8.6
  3920. * Bug 21537: Mark .onion cookies as secure
  3921. * Bug 25938: Backport fix for cross-origin header leak (bug 1334776)
  3922. * Bug 25721: Backport patches from Mozilla's bug 1448771
  3923. * Bug 25147+25458: Sanitize HTML fragments for chrome documents
  3924. * Bug 26221: Backport fix for leak in SHA256 in nsHttpConnectionInfo.cpp
  3925. * Windows
  3926. * Bug 26424: Disable UNC paths to prevent possible proxy bypasses
  3927. Tor Browser 8.0a8 -- June 10 2018
  3928. * All platforms
  3929. * Update Firefox to 52.8.1esr
  3930. * Bug 26098: Remove amazon-meek
  3931. Tor Browser 7.5.5 -- June 10 2018
  3932. * All platforms
  3933. * Update Firefox to 52.8.1esr
  3934. * Bug 26098: Remove amazon-meek
  3935. Tor Browser 8.0a7 -- May 9 2018
  3936. * All platforms
  3937. * Update Firefox to 52.8.0esr
  3938. * Update Tor Launcher to 0.2.15.2
  3939. * Bug 25807: Change front domain to unbreak Moat
  3940. * Translations update
  3941. * Bug 25973: Backport off-by-one fix (bug 1352073)
  3942. * Bug 25938: Backport fix for cross-origin header leak (bug 1334776)
  3943. * Bug 25458: Fix broken UI customization
  3944. * Bug 25898: Make Youtube videos play automatically again
  3945. * Bug 25980: Improve backport of bug 1448771 (fixes broken Orfox build)
  3946. * OS X
  3947. * Bug 26010: Change Snowflake rendezvous to use the Azure domain front
  3948. * Linux
  3949. * Bug 26010: Change Snowflake rendezvous to use the Azure domain front
  3950. Tor Browser 7.5.4 -- May 9 2018
  3951. * All platforms
  3952. * Update Firefox to 52.8.0esr
  3953. * Update HTTPS Everywhere to 2018.4.11
  3954. * Update NoScript to 5.1.8.5
  3955. * Bug 23439: Exempt .onion domains from mixed content warnings
  3956. * Bug 22614: Make e10s/non-e10s Tor Browsers indistinguishable
  3957. * Bug 22659: Changes to `intl.accept.languages` get overwritten after restart
  3958. * Bug 25973: Backport off-by-one fix (bug 1352073)
  3959. * Bug 25020: Add a tbb_version.json file
  3960. Tor Browser 8.0a6 -- April 19 2018
  3961. * All platforms
  3962. * Update Tor to 0.3.3.5-rc
  3963. * Update OpenSSL to 1.0.2o
  3964. * Update Torbutton to 1.9.9.1
  3965. * Bug 25126: Make about:tor layout responsive
  3966. * Translations update
  3967. * Update HTTPS Everywhere to 2018.4.11
  3968. * Update NoScript to 5.1.8.5
  3969. * Bug 21537: Mark .onion cookies as secure
  3970. * Bug 21850: Update about:tbupdate handling for e10s
  3971. * Bug 25721: Backport patches from Mozilla's bug 1448771
  3972. * Linux
  3973. * Bug 20283: Tor Browser should run without a `/proc` filesystem.
  3974. * Windows
  3975. * Bug 13893: Make EMET compatible with Tor Browser
  3976. * Build System
  3977. * Windows
  3978. * Bug 25420: Update GCC to 6.4.0
  3979. * Bug 20302: Fix FTE compilation for Windows with GCC 6.4.0
  3980. * Linux
  3981. * Bug 25304: Update GCC to 6.4.0
  3982. Tor Browser 8.0a5 -- March 27 2018
  3983. * All platforms
  3984. * Update Firefox to 52.7.3esr
  3985. * Update HTTPS Everywhere to 2018.3.13
  3986. * Bug 23439: Exempt .onion domains from mixed content warnings
  3987. * OS X
  3988. * Update Snowflake
  3989. * Bug 21312+25579+25449: Fix crashes and memory/file descriptor leaks in go-webrtc
  3990. * Linux
  3991. * Update Snowflake
  3992. * Bug 21312+25579+25449: Fix crashes and memory/file descriptor leaks in go-webrtc
  3993. Tor Browser 7.5.3 -- March 26 2018
  3994. * All platforms
  3995. * Update Firefox to 52.7.3esr
  3996. * Update HTTPS Everywhere to 2018.3.13
  3997. * Bug 25339: Adapt build system for Python 3.6 based build procedure
  3998. Tor Browser 8.0a4 -- March 17 2018
  3999. * All platforms
  4000. * Update Firefox to 52.7.2esr
  4001. Tor Browser 7.5.2 -- March 17 2018
  4002. * All platforms
  4003. * Update Firefox to 52.7.2esr
  4004. Tor Browser 8.0a3 -- March 13 2018
  4005. * All platforms
  4006. * Update Firefox to 52.7.0esr
  4007. * Update Tor to 0.3.3.3-alpha
  4008. * Update Tor Launcher to 0.2.15.1
  4009. * Bug 23136: Moat integration (fetch bridges for the user)
  4010. * Translations update
  4011. * Update HTTPS Everywhere to 2018.2.26
  4012. * Bug 25339: Adapt build system for Python 3.6 based build procedure
  4013. * Bug 25356: Update obfs4proxy to v0.0.7
  4014. * Bug 25147: Sanitize HTML fragments created for chrome-privileged documents
  4015. * Windows
  4016. * Bug 25112: No sandboxing on 64-bit Windows <= Vista
  4017. Tor Browser 7.5.1 -- March 13 2018
  4018. * All platforms
  4019. * Update Firefox to 52.7.0esr
  4020. * Update Tor to 0.3.2.10
  4021. * Update Torbutton to 1.9.8.6
  4022. * Bug 24159: Version check does not deal with platform specific checks
  4023. * Bug 25016: Remove 2017 donation banner
  4024. * Translations update
  4025. * Update Tor Launcher to 0.2.14.4
  4026. * Bug 25089: Special characters are not escaped in proxy password
  4027. * Translations update
  4028. * Update NoScript to 5.1.8.4
  4029. * Bug 25356: Update obfs4proxy to v0.0.7
  4030. * Bug 25000: Add [System+Principal] to the NoScript whitelist
  4031. * Windows
  4032. * Bug 25112: Disable sandboxing on 64-bit Windows <= Vista
  4033. Tor Browser 8.0a2 -- February 23 2018
  4034. * All Platforms
  4035. * Update Tor to 0.3.3.2-alpha
  4036. * Update Torbutton to 1.9.9
  4037. * Bug 24159: Version check does not deal with platform specific checks
  4038. * Bug 25016: Remove 2017 donation banner
  4039. * Translations update
  4040. * Update Tor Launcher to 0.2.15
  4041. * Bug 25089: Special characters are not escaped in proxy password
  4042. * Translations update
  4043. * Update HTTPS Everywhere to 2018.1.29
  4044. * Update NoScript to 5.1.8.4
  4045. * Update meek to 0.29
  4046. * Bug 25215: Revert bug 18619 (we are not disabling IndexedDB any longer)
  4047. * Bug 19910: Rip out optimistic data socks handshake variant (#3875)
  4048. * Bug 22659: Changes to `intl.accept.languages` get overwritten after restart
  4049. * Bug 25000: Add [System+Principal] to the NoScript whitelist
  4050. * Bug 15599: Disable Range requests used by pdfjs as they are not isolated
  4051. * Bug 22614: Make e10s/non-e10s Tor Browsers indistinguishable
  4052. * Bug 13575: Disable randomised Firefox HTTP cache decay user tests
  4053. * Bug 25020: Add a tbb_version.json file
  4054. * Bug 24995: Include git hash in tor --version
  4055. * OS X
  4056. * Bug 22794: Don't open AF_INET/AF_INET6 sockets when AF_LOCAL is configured
  4057. * Linux
  4058. * Bug 22794: Don't open AF_INET/AF_INET6 sockets when AF_LOCAL is configured
  4059. * Windows:
  4060. * Bug 25266: PT config should include full names of executable files
  4061. * Build System
  4062. * Windows
  4063. * Bug 25111: Don't compile Yasm on our own anymore for Windows Tor Browser
  4064. Tor Browser 8.0a1 -- January 23 2018
  4065. * All Platforms
  4066. * Update Firefox to 52.6.0esr
  4067. * Update Tor to 0.3.2.9
  4068. * Update Torbutton to 1.9.8.5
  4069. * Bug 21245: Add da translation to Torbutton and keep track of it
  4070. * Bug 24702: Remove Mozilla text from banner
  4071. * Translations update
  4072. * Update Tor Launcher to 0.2.14.3
  4073. * Translations update
  4074. * Update HTTPS Everywhere to 2018.1.11
  4075. * Bug 24756: Add noisebridge01 obfs4 bridge configuration
  4076. * Bug 23916: Add new MAR signing key
  4077. * Bug 22548: Firefox downgrades VP9 videos to VP8 for some users
  4078. * Windows
  4079. * Bug 24197: Fix win64 sandbox compile issues
  4080. * Build System
  4081. * Windows
  4082. * Bug 18691: switch Windows builds from precise to jessie
  4083. * Linux
  4084. * Bug 23892: Include Firefox and Tor debug files in final build directory
  4085. * Bug 24842: include libasan.so.2 and libubsan.so.0 in debug builds
  4086. Tor Browser 7.5 -- January 23 2018
  4087. * All Platforms
  4088. * Update Firefox to 52.6.0esr
  4089. * Update Tor to 0.3.2.9
  4090. * Update OpenSSL to 1.0.2n
  4091. * Update Torbutton to 1.9.8.5
  4092. * Bug 21847: Update copy for security slider
  4093. * Bug 21245: Add da translation to Torbutton and keep track of it
  4094. * Bug 24702: Remove Mozilla text from banner
  4095. * Bug 10573: Replace deprecated nsILocalFile with nsIFile (code clean-up)
  4096. * Translations update
  4097. * Update Tor Launcher to 0.2.14.3
  4098. * Bug 23262: Implement integrated progress bar
  4099. * Bug 23261: implement configuration portion of new Tor Launcher UI
  4100. * Bug 24623: Revise "country that censors Tor" text
  4101. * Bug 24624: tbb-logo.svg may cause network access
  4102. * Bug 23240: Retrieve current bootstrap progress before showing progress bar
  4103. * Bug 24428: Bootstrap error message sometimes lost
  4104. * Bug 22232: Add README on use of bootstrap status messages
  4105. * Bug 10573: Replace deprecated nsILocalFile with nsIFile (code clean-up)
  4106. * Translations update
  4107. * Update HTTPS Everywhere to 2018.1.11
  4108. * Update NoScript to 5.1.8.3
  4109. * Bug 23104: CSS line-height reveals the platform Tor Browser is running on
  4110. * Bug 24398: Plugin-container process exhausts memory
  4111. * Bug 22501: Requests via javascript: violate FPI
  4112. * Bug 24756: Add noisebridge01 obfs4 bridge configuration
  4113. * Windows
  4114. * Bug 16010: Enable content sandboxing on Windows
  4115. * Bug 23230: Fix build error on Windows 64
  4116. * OS X
  4117. * Bug 24566: Avoid white flashes when opening dialogs in Tor Browser
  4118. * Bug 23025: Add some hardening flags to macOS build
  4119. * Linux
  4120. * Bug 23970: Make "Print to File" work with sandboxing enabled
  4121. * Bug 23016: "Print to File" is broken on some non-english Linux systems
  4122. * Bug 10089: Set middlemouse.contentLoadURL to false by default
  4123. * Bug 18101: Suppress upload file dialog proxy bypass (linux part)
  4124. * Android
  4125. * Bug 22084: Spoof network information API
  4126. * Build System
  4127. * All Platforms
  4128. * Switch from gitian/tor-browser-bundle to rbm/tor-browser-build
  4129. * Windows
  4130. * Bug 22563: Update mingw-w64 to fix W^X violations
  4131. * Bug 20929: Bump GCC version to 5.4.0
  4132. * Linux
  4133. * Bug 20929: Bump GCC version to 5.4.0
  4134. * Bug 23892: Include Firefox and Tor debug files in final build directory
  4135. * Bug 24842: include libasan.so.2 and libubsan.so.0 in debug builds
  4136. Tor Browser 7.5a10 -- December 19 2017
  4137. * All Platforms
  4138. * Update Tor to 0.3.2.7-rc
  4139. * Update OpenSSL to 1.0.2n
  4140. * Update Torbutton to 1.9.8.4
  4141. * Bug 21847: Update copy for security slider
  4142. * Bug 10573: Replace deprecated nsILocalFile with nsIFile (code clean-up)
  4143. * Translations update
  4144. * Update Tor Launcher to 0.2.14.2
  4145. * Bug 24623: Revise "country that censors Tor" text
  4146. * Bug 24428: Bootstrap error message sometimes lost
  4147. * Bug 24624: tbb-logo.svg may cause network access
  4148. * Bug 10573: Replace deprecated nsILocalFile with nsIFile (code clean-up)
  4149. * Translations update
  4150. * Update NoScript to 5.1.8.3
  4151. * Bug 23104: CSS line-height reveals the platform Tor Browser is running on
  4152. * Bug 24398: Plugin-container process exhausts memory
  4153. * OS X
  4154. * Bug 24566: Avoid white flashes when opening dialogs in Tor Browser
  4155. * Linux
  4156. * Bug 23970: Make "Print to File" work with sandboxing enabled
  4157. * Bug 23016: "Print to File" is broken on some non-english Linux systems
  4158. * Android
  4159. * Bug 22084: Spoof network information API
  4160. Tor Browser 7.5a9 -- December 09 2017
  4161. * All Platforms
  4162. * Update Firefox to 52.5.2esr
  4163. * Update Tor to 0.3.2.6-alpha
  4164. * Update HTTPS-Everywhere to 2017.12.6
  4165. * Update NoScript to 5.1.8.1
  4166. * Update sandboxed-tor-browser to 0.0.16
  4167. Tor Browser 7.0.11 -- December 09 2017
  4168. * All Platforms
  4169. * Update Firefox to 52.5.2esr
  4170. * Update Tor to 0.3.1.9
  4171. * Update HTTPS-Everywhere to 2017.12.6
  4172. * Update NoScript to 5.1.8.1
  4173. Tor Browser 7.5a8 -- November 15 2017
  4174. * All Platforms
  4175. * Update Firefox to 52.5.0esr
  4176. * Update Tor to 0.3.2.4-alpha
  4177. * Update Torbutton to 1.9.8.3
  4178. * Bug 23997: Add link to Tor Browser manual for de, nl, tr, vi
  4179. * Bug 23949: Fix donation banner display
  4180. * Update locales with translated banner
  4181. * Translations update
  4182. * Update Tor Launcher to 0.2.14.1
  4183. * Bug 23262: Implement integrated progress bar
  4184. * Bug 23261: implement configuration portion of new Tor Launcher UI
  4185. * Translations update
  4186. * Update HTTPS-Everywhere to 2017.10.30
  4187. * Update NoScript to 5.1.5
  4188. * Bug 23968: NoScript icon jumps to the right after update
  4189. * Update sandboxed-tor-browser to 0.0.15
  4190. * Windows
  4191. * Bug 20636+10026: Create 64bit Tor Browser for Windows
  4192. * Bug 24052: Block file:// redirects early
  4193. Tor Browser 7.0.10 -- November 14 2017
  4194. * All Platforms
  4195. * Update Firefox to 52.5.0esr
  4196. * Update Tor to 0.3.1.8
  4197. * Update Torbutton to 1.9.7.10
  4198. * Bug 23997: Add link to Tor Browser manual for de, nl, tr, vi
  4199. * Translations update
  4200. * Update HTTPS-Everywhere to 2017.10.30
  4201. * Bug 24178: Use make.sh for building HTTPS-Everywhere
  4202. * Update NoScript to 5.1.5
  4203. * Bug 23968: NoScript icon jumps to the right after update
  4204. * Windows
  4205. * Bug 23582: Enable the Windows DLL blocklist for mingw-w64 builds
  4206. * Bug 23396: Update the msvcr100.dll we ship
  4207. * Bug 24052: Block file:// redirects early
  4208. Tor Browser 7.5a7 -- November 4 2017
  4209. * OS X
  4210. * Bug 24052: Streamline handling of file:// resources
  4211. * Linux
  4212. * Bug 24052: Streamline handling of file:// resources
  4213. Tor Browser 7.0.9 -- November 3 2017
  4214. * OS X
  4215. * Bug 24052: Streamline handling of file:// resources
  4216. * Linux
  4217. * Bug 24052: Streamline handling of file:// resources
  4218. Tor Browser 7.0.8 -- October 25 2017
  4219. * All Platforms
  4220. * Update Torbutton to 1.9.7.9
  4221. * Bug 23949: Fix donation banner display
  4222. * Update locales with translated banner
  4223. * Translations update
  4224. Tor Browser 7.5a6 -- October 19 2017
  4225. * All Platforms
  4226. * Update Firefox to 52.4.1esr
  4227. * Update Tor to 0.3.2.2-alpha
  4228. * Update Torbutton to 1.9.8.2
  4229. * Bug 23887: Update banner locales and Mozilla text
  4230. * Translations update
  4231. * Update HTTPS-Everywhere to 2017.10.4
  4232. * Update NoScript to 5.1.2
  4233. * Bug 23723: Loading entities from NoScript .dtd files is blocked
  4234. * Bug 23724: NoScript update breaks Security Slider and its icon disappears
  4235. * Update sandboxed-tor-browser to 0.0.14
  4236. * Bug 23745: Tab crashes when using Tor Browser to access Google Drive
  4237. * Bug 23694: Update the detailsURL in update responses
  4238. * Bug 22501: Requests via javascript: violate FPI
  4239. * OS X
  4240. * Bug 23807: Tab crashes when playing video on High Sierra
  4241. * Bug 23025: Add some hardening flags to macOS build
  4242. Tor Browser 7.0.7 -- October 19 2017
  4243. * All Platforms
  4244. * Update Firefox to 52.4.1esr
  4245. * Update Torbutton to 1.9.7.8
  4246. * Bug 23887: Update banner locales and Mozilla text
  4247. * Bug 23526: Add 2017 Donation banner text
  4248. * Bug 23483: Donation banner on about:tor for 2017 (testing mode)
  4249. * Bug 22610: Avoid crashes when canceling external helper app related downloads
  4250. * Bug 22472: Fix FTP downloads when external helper app dialog is shown
  4251. * Bug 22471: Downloading pdf files via the PDF viewer download button is broken
  4252. * Bug 22618: Downloading pdf file via file:/// is stalling
  4253. * Translations update
  4254. * Update HTTPS-Everywhere to 2017.10.4
  4255. * Update NoScript to 5.1.2
  4256. * Bug 23723: Loading entities from NoScript .dtd files is blocked
  4257. * Bug 23724: NoScript update breaks Security Slider and its icon disappears
  4258. * Bug 23745: Tab crashes when using Tor Browser to access Google Drive
  4259. * Bug 22610: Avoid crashes when canceling external helper app related downloads
  4260. * Bug 22472: Fix FTP downloads when external helper app dialog is shown
  4261. * Bug 22471: Downloading pdf files via the PDF viewer download button is broken
  4262. * Bug 22618: Downloading pdf file via file:/// is stalling
  4263. * Bug 23694: Update the detailsURL in update responses
  4264. * OS X
  4265. * Bug 23807: Tab crashes when playing video on High Sierra
  4266. * Linux
  4267. * Bug 22692: Enable content sandboxing on Linux
  4268. Tor Browser 7.5a5 -- September 28 2017
  4269. * All Platforms
  4270. * Update Firefox to 52.4.0esr
  4271. * Update Tor to 0.3.2.1-alpha
  4272. * Update Torbutton to 1.9.8.1
  4273. * Bug 20375: Warn users after entering fullscreen mode
  4274. * Bug 22989: Fix dimensions of new windows on macOS
  4275. * Bug 23526: Add 2017 Donation banner text
  4276. * Bug 23483: Donation banner on about:tor for 2017 (testing mode)
  4277. * Translations update
  4278. * Update Tor Launcher to 0.2.13
  4279. * Bug 23240: Retrieve current bootstrap progress before showing progress bar
  4280. * Bug 22232: Add README on use of bootstrap status messages
  4281. * Translations update
  4282. * Update HTTPS-Everywhere to 2017.9.12
  4283. * Update NoScript to 5.0.10
  4284. * Update sandboxed-tor-browser to 0.0.13
  4285. * Bug 23393: Don't crash all tabs when closing one tab
  4286. * Bug 23166: Add new obfs4 bridge to the built-in ones
  4287. * Bug 23258: Fix broken HTTPS-Everywhere on higher security levels
  4288. * Bug 21270: NoScript settings break WebExtensions add-ons
  4289. * Bug 23104: CSS line-height reveals the platform Tor Browser is running on
  4290. * Windows
  4291. * Bug 16010: Enable content sandboxing on Windows
  4292. * Bug 23582: Enable the Windows DLL blocklist for mingw-w64 builds
  4293. * Bug 23396: Update the msvcr100.dll we ship
  4294. * Bug 23230: Fix build error on Windows 64
  4295. * OS X
  4296. * Bug 23404: Add missing Noto Sans Buginese font to the macOS whitelist
  4297. * Linux
  4298. * Bug 10089: Set middlemouse.contentLoadURL to false by default
  4299. * Bug 22692: Enable content sandboxing on Linux
  4300. * Bug 18101: Suppress upload file dialog proxy bypass (linux part)
  4301. * Build System
  4302. * All Platforms
  4303. * Switch from gitian/tor-browser-bundle to rbm/tor-browser-build
  4304. Tor Browser 7.0.6 -- September 28 2017
  4305. * All Platforms
  4306. * Update Firefox to 52.4.0esr
  4307. * Update Tor to 0.3.1.7
  4308. * Update Torbutton to 1.9.7.7
  4309. * Bug 22542: Security Settings window too small on macOS 10.12 (fixup)
  4310. * Bug 20375: Warn users after entering fullscreen mode
  4311. * Update HTTPS-Everywhere to 2017.9.12
  4312. * Update NoScript to 5.0.10
  4313. * Bug 21830: Copying large text from web console leaks to /tmp
  4314. * Bug 23393: Don't crash all tabs when closing one tab
  4315. * OS X
  4316. * Bug 23404: Add missing Noto Sans Buginese font to the macOS whitelist
  4317. Tor Browser 7.0.5 -- September 4 2017
  4318. * All Platforms
  4319. * Update Torbutton to 1.9.7.6
  4320. * Bug 22989: Fix dimensions of new windows on macOS
  4321. * Translations update
  4322. * Update HTTPS-Everywhere to 2017.8.31
  4323. * Update NoScript to 5.0.9
  4324. * Bug 23166: Add new obfs4 bridge to the built-in ones
  4325. * Bug 23258: Fix broken HTTPS-Everywhere on higher security levels
  4326. * Bug 21270: NoScript settings break WebExtensions add-ons
  4327. Tor Browser 7.5a4 -- August 9 2017
  4328. * All Platforms
  4329. * Update Firefox to 52.3.0esr
  4330. * Update Tor to 0.3.1.5-alpha
  4331. * Update OpenSSL to 1.0.2l
  4332. * Update Torbutton to 1.9.8
  4333. * Bug 22610: Avoid crashes when canceling external helper app related downloads
  4334. * Bug 22472: Fix FTP downloads when external helper app dialog is shown
  4335. * Bug 22471: Downloading pdf files via the PDF viewer download button is broken
  4336. * Bug 22618: Downloading pdf file via file:/// is stalling
  4337. * Bug 22542: Resize slider window to work without scrollbars
  4338. * Bug 21999: Fix display of language prompt in non-en-US locales
  4339. * Bug 18913: Don't let about:tor have chrome privileges
  4340. * Bug 22535: Search on about:tor discards search query
  4341. * Bug 21948: Going back to about:tor page gives "Address isn't valid" error
  4342. * Code clean-up
  4343. * Translations update
  4344. * Update Tor Launcher to 0.2.12.3
  4345. * Bug 22592: Default bridge settings are not removed
  4346. * Translations update
  4347. * Update HTTPS-Everywhere to 5.2.21
  4348. * Update NoScript to 5.0.8.1
  4349. * Bug 22362: Remove workaround for XSS related browser freezing
  4350. * Bug 22067: NoScript Click-to-Play bypass with embedded videos and audio
  4351. * Update sandboxed-tor-browser to 0.0.12
  4352. * Bug 22610: Avoid crashes when canceling external helper app related downloads
  4353. * Bug 22472: Fix FTP downloads when external helper app dialog is shown
  4354. * Bug 22471: Downloading pdf files via the PDF viewer download button is broken
  4355. * Bug 22618: Downloading pdf file via file:/// is stalling
  4356. * Bug 21321: Exempt .onions from HTTP related security warnings
  4357. * Bug 21830: Copying large text from web console leaks to /tmp
  4358. * Bug 22073: Disable GetAddons option on addons page
  4359. * Bug 22884: Fix broken about:tor page on higher security levels
  4360. * Bug 22829: Remove default obfs4 bridge riemann.
  4361. * Windows
  4362. * Bug 21617: Fix single RWX page on Windows (included in 52.3.0esr)
  4363. * OS X
  4364. * Bug 22831: Enable Snowflake for mac
  4365. * Linux
  4366. * Bug 22832: Don't include monthly timestamp in libwebrtc build output
  4367. * Bug 20848: Deploy Selfrando in 32bit Linux builds
  4368. * Build system
  4369. * Windows
  4370. * Bug 22563: Update mingw-w64 to fix W^X violations
  4371. * Bug 20929: Bump GCC version to 5.4.0
  4372. * Linux
  4373. * Bug 20929: Bump GCC version to 5.4.0
  4374. Tor Browser 7.0.4 -- August 8 2017
  4375. * All Platforms
  4376. * Update Firefox to 52.3.0esr
  4377. * Update Tor to 0.3.0.10
  4378. * Update Torbutton to 1.9.7.5
  4379. * Bug 21999: Fix display of language prompt in non-en-US locales
  4380. * Bug 18913: Don't let about:tor have chrome privileges
  4381. * Bug 22535: Search on about:tor discards search query
  4382. * Bug 21948: Going back to about:tor page gives "Address isn't valid" error
  4383. * Code clean-up
  4384. * Translations update
  4385. * Update Tor Launcher to 0.2.12.3
  4386. * Bug 22592: Default bridge settings are not removed
  4387. * Translations update
  4388. * Update HTTPS-Everywhere to 5.2.21
  4389. * Update NoScript to 5.0.8.1
  4390. * Bug 22362: Remove workaround for XSS related browser freezing
  4391. * Bug 22067: NoScript Click-to-Play bypass with embedded videos and audio
  4392. * Bug 21321: Exempt .onions from HTTP related security warnings
  4393. * Bug 22073: Disable GetAddons option on addons page
  4394. * Bug 22884: Fix broken about:tor page on higher security levels
  4395. * Windows
  4396. * Bug 22829: Remove default obfs4 bridge riemann.
  4397. * Bug 21617: Fix single RWX page on Windows (included in 52.3.0esr)
  4398. * OS X
  4399. * Bug 22829: Remove default obfs4 bridge riemann.
  4400. Tor Browser 7.5a3 -- July 28 2017
  4401. * Linux
  4402. * Bug 23044: Don't allow GIO supported protocols by default
  4403. Tor Browser 7.0.3 -- July 27 2017
  4404. * Linux
  4405. * Bug 23044: Don't allow GIO supported protocols by default
  4406. * Bug 22829: Remove default obfs4 bridge riemann.
  4407. Tor Browser 7.5a2 -- July 6 2017
  4408. * All Platforms
  4409. * Update Tor to 0.3.1.4-alpha
  4410. * Update HTTPS-Everywhere to 5.2.19
  4411. * Linux
  4412. * Update sandboxed-tor-browser to 0.0.9
  4413. Tor Browser 7.0.2 -- July 3 2017
  4414. * All Platforms
  4415. * Update Tor to 0.3.0.9, fixing bug #22753
  4416. * Update HTTPS-Everywhere to 5.2.19
  4417. Tor Browser 7.5a1 -- June 14 2017
  4418. * All Platforms
  4419. * Update Firefox to 52.2.0esr
  4420. * Update Tor to 0.3.1.3-alpha
  4421. * Update Torbutton to 1.9.7.4
  4422. * Bug 22542: Security Settings window too small on macOS 10.12
  4423. * Bug 22104: Adjust our content policy whitelist for ff52-esr
  4424. * Bug 22457: Allow resources loaded by view-source://
  4425. * Bug 21627: Ignore HTTP 304 responses when checking redirects
  4426. * Bug 22459: Adapt our use of the nsIContentPolicy to e10s mode
  4427. * Translations update
  4428. * Update Tor Launcher to 0.2.12.2
  4429. * Bug 22283: Linux 7.0a4 is broken after update due to unix: lines in torrc
  4430. * Translations update
  4431. * Update HTTPS-Everywhere to 5.2.18
  4432. * Update NoScript to 5.0.5
  4433. * Update sandboxed-tor-browser to 0.0.7
  4434. * Bug 22362: NoScript's XSS filter freezes the browser
  4435. * Bug 21766: Fix crash when the external application helper dialog is invoked
  4436. * Bug 21886: Download is stalled in non-e10s mode
  4437. * Bug 22333: Disable WebGL2 API for now
  4438. * Bug 21861: Disable additional mDNS code to avoid proxy bypasses
  4439. * Bug 21684: Don't expose navigator.AddonManager to content
  4440. * Bug 21431: Clean-up system extensions shipped in Firefox 52
  4441. * Bug 22320: Use preference name 'referer.hideOnionSource' everywhere
  4442. * Bug 16285: Don't ship ClearKey EME system and update EME preferences
  4443. * Bug 21972: about:support is partially broken
  4444. * Bug 21323: Enable Mixed Content Blocking
  4445. * Bug 22415: Fix format error in our pipeline patch
  4446. * Bug 21862: Rip out potentially unsafe Rust code
  4447. * Bug 16485: Improve about:cache page
  4448. * Bug 22462: Backport of patch for bug 1329521 to fix assertion failure
  4449. * Bug 22458: Fix broken `about:cache` page on higher security levels
  4450. * Bug 18531: Uncaught exception when opening ip-check.info
  4451. * Bug 18574: Uncaught exception when clicking items in Library
  4452. * Bug 22327: Isolate Page Info media previews to first party domain
  4453. * Bug 22452: Isolate tab list menuitem favicons to first party domain
  4454. * Bug 15555: View-source requests are not isolated by first party domain
  4455. * Bug 5293: Neuter fingerprinting with Battery API
  4456. * Bug 22429: Add IPv6 address for Lisbeth:443 obfs4 bridge
  4457. * Bug 22468: Add default obfs4 bridges frosty and dragon
  4458. * Windows
  4459. * Bug 22419: Prevent access to file://
  4460. * Bug 21617: Fix single RWX page on Windows
  4461. * OS X
  4462. * Bug 22558: Don't update OS X 10.7.x and 10.8.x users to Tor Browser 7.0
  4463. * Linux
  4464. * Bug 16285: Remove ClearKey related library stripping
  4465. * Bug 21852: Don't use jemalloc4 anymore
  4466. * Android
  4467. * Bug 19078: Disable RtspMediaResource stuff in Orfox
  4468. Tor Browser 7.0.1 -- June 13 2017
  4469. * All Platforms
  4470. * Update Firefox to 52.2.0esr
  4471. * Update Tor to 0.3.0.8
  4472. * Update Torbutton to 1.9.7.4
  4473. * Bug 22542: Security Settings window too small on macOS 10.12
  4474. * Update HTTPS-Everywhere to 5.2.18
  4475. * Bug 22362: NoScript's XSS filter freezes the browser
  4476. * OS X
  4477. * Bug 22558: Don't update OS X 10.7.x and 10.8.x users to Tor Browser 7.0
  4478. Tor Browser 7.0 -- June 7 2017
  4479. * All Platforms
  4480. * Update Firefox to 52.1.2esr
  4481. * Update Tor to 0.3.0.7
  4482. * Update Torbutton to 1.9.7.3
  4483. * Bug 22104: Adjust our content policy whitelist for ff52-esr
  4484. * Bug 22457: Allow resources loaded by view-source://
  4485. * Bug 21627: Ignore HTTP 304 responses when checking redirects
  4486. * Bug 22459: Adapt our use of the nsIContentPolicy to e10s mode
  4487. * Bug 21865: Update our JIT preferences in the security slider
  4488. * Bug 21747: Make 'New Tor Circuit for this Site' work in ESR52
  4489. * Bug 21745: Fix handling of catch-all circuit
  4490. * Bug 21547: Fix circuit display under e10s
  4491. * Bug 21268: e10s compatibility for New Identity
  4492. * Bug 21267: Remove window resize implementation for now
  4493. * Bug 21201: Make Torbutton multiprocess compatible
  4494. * Translations update
  4495. * Update Tor Launcher to 0.2.12.2
  4496. * Bug 22283: Linux 7.0a4 broken after update due to unix: lines in torrc
  4497. * Bug 20761: Don't ignore additional SocksPorts
  4498. * Bug 21920: Don't show locale selection dialog
  4499. * Bug 21546: Mark Tor Launcher as multiprocess compatible
  4500. * Bug 21264: Add a README file
  4501. * Translations update
  4502. * Update HTTPS-Everywhere to 5.2.17
  4503. * Update NoScript to 5.0.5
  4504. * Update Go to 1.8.3 (bug 22398)
  4505. * Bug 21962: Fix crash on about:addons page
  4506. * Bug 21766: Fix crash when the external application helper dialog is invoked
  4507. * Bug 21886: Download is stalled in non-e10s mode
  4508. * Bug 21778: Canvas prompt is not shown in Tor Browser based on ESR52
  4509. * Bug 21569: Add first-party domain to Permissions key
  4510. * Bug 22165: Don't allow collection of local IP addresses
  4511. * Bug 13017: Work around audio fingerprinting by disabling the Web Audio API
  4512. * Bug 10286: Disable Touch API and add fingerprinting resistance as fallback
  4513. * Bug 13612: Disable Social API
  4514. * Bug 10283: Disable SpeechSynthesis API
  4515. * Bug 22333: Disable WebGL2 API for now
  4516. * Bug 21861: Disable additional mDNS code to avoid proxy bypasses
  4517. * Bug 21684: Don't expose navigator.AddonManager to content
  4518. * Bug 21431: Clean-up system extensions shipped in Firefox 52
  4519. * Bug 22320: Use preference name 'referer.hideOnionSource' everywhere
  4520. * Bug 16285: Don't ship ClearKey EME system and update EME preferences
  4521. * Bug 21675: Spoof window.navigator.hardwareConcurrency
  4522. * Bug 21792: Suppress MediaError.message
  4523. * Bug 16337: Round times exposed by Animation API to nearest 100ms
  4524. * Bug 21972: about:support is partially broken
  4525. * Bug 21726: Keep Graphite support disabled
  4526. * Bug 21323: Enable Mixed Content Blocking
  4527. * Bug 21685: Disable remote new tab pages
  4528. * Bug 21790: Disable captive portal detection
  4529. * Bug 21686: Disable Microsoft Family Safety support
  4530. * Bug 22073: Make sure Mozilla's experiments are disabled
  4531. * Bug 21683: Disable newly added Safebrowsing capabilities
  4532. * Bug 22071: Disable Kinto-based blocklist update mechanism
  4533. * Bug 22415: Fix format error in our pipeline patch
  4534. * Bug 22072: Hide TLS error reporting checkbox
  4535. * Bug 20761: Don't ignore additional SocksPorts
  4536. * Bug 21862: Rip out potentially unsafe Rust code
  4537. * Bug 16485: Improve about:cache page
  4538. * Bug 22462: Backport of patch for bug 1329521 to fix assertion failure
  4539. * Bug 21340: Identify and backport new patches from Firefox
  4540. * Bug 22153: Fix broken feeds on higher security levels
  4541. * Bug 22025: Fix broken certificate error pages on higher security levels
  4542. * Bug 21887: Fix broken error pages on higher security levels
  4543. * Bug 22458: Fix broken `about:cache` page on higher security levels
  4544. * Bug 21876: Enable e10s by default on all supported platforms
  4545. * Bug 21876: Always use esr policies for e10s
  4546. * Bug 20905: Fix resizing issues after moving to a direct Firefox patch
  4547. * Bug 21875: Modal dialogs are maximized in ESR52 nightly builds
  4548. * Bug 21885: SVG is not disabled in Tor Browser based on ESR52
  4549. * Bug 17334: Hide Referer when leaving a .onion domain (improved patch)
  4550. * Bug 18531: Uncaught exception when opening ip-check.info
  4551. * Bug 18574: Uncaught exception when clicking items in Library
  4552. * Bug 22327: Isolate Page Info media previews to first party domain
  4553. * Bug 22452: Isolate tab list menuitem favicons to first party domain
  4554. * Bug 15555: View-source requests are not isolated by first party domain
  4555. * Bug 3246: Double-key cookies
  4556. * Bug 8842: Fix XML parsing error
  4557. * Bug 5293: Neuter fingerprinting with Battery API
  4558. * Bug 16886: 16886: "Add-on compatibility check dialog" contains Firefox logo
  4559. * Bug 19645: TBB zooms text when resizing browser window
  4560. * Bug 19192: Untrust Blue Coat CA
  4561. * Bug 19955: Avoid confusing warning that favicon load request got cancelled
  4562. * Bug 20005: Backport fixes for memory leaks investigation
  4563. * Bug 20755: ltn.com.tw is broken in Tor Browser
  4564. * Bug 21896: Commenting on website is broken due to CAPTCHA not being displayed
  4565. * Bug 20680: Rebase Tor Browser patches to 52 ESR
  4566. * Bug 22429: Add IPv6 address for Lisbeth:443 obfs4 bridge
  4567. * Bug 22468: Add default obfs4 bridges frosty and dragon
  4568. * Windows
  4569. * Bug 22419: Prevent access to file://
  4570. * Bug 12426: Make use of HeapEnableTerminationOnCorruption
  4571. * Bug 19316: Make sure our Windows updates can deal with the SSE2 requirement
  4572. * Bug 21868: Fix build bustage with FIREFOX_52_0_2esr_RELEASE for Windows
  4573. * OS X
  4574. * Bug 21940: Don't allow privilege escalation during update
  4575. * Bug 22044: Fix broken default search engine on macOS
  4576. * Bug 21879: Use our default bookmarks on OSX
  4577. * Bug 21779: Non-admin users can't access Tor Browser on macOS
  4578. * Bug 21723: Fix inconsistent generation of MOZ_MACBUNDLE_ID
  4579. * Bug 21724: Make Firefox and Tor Browser distinct macOS apps
  4580. * Bug 21931: Backport OSX SetupMacCommandLine updater fixes
  4581. * Bug 15910: Don't download GMPs via the local fallback
  4582. * Linux
  4583. * Bug 16285: Remove ClearKey related library stripping
  4584. * Bug 22041: Fix update error during update to 7.0a3
  4585. * Bug 22238: Fix use of hardened wrapper for Firefox build
  4586. * Bug 21907: Fix runtime error on CentOS 6
  4587. * Bug 15910: Don't download GMPs via the local fallback
  4588. * Android
  4589. * Bug 19078: Disable RtspMediaResource stuff in Orfox
  4590. * Build system
  4591. * Windows
  4592. * Bug 21837: Fix reproducibility of accessibility code for Windows
  4593. * Bug 21240: Create patches to fix mingw-w64 compilation of Firefox ESR 52
  4594. * Bug 21904: Bump mingw-w64 commit to help with sandbox compilation
  4595. * Bug 18831: Use own Yasm for Firefox cross-compilation
  4596. * OS X
  4597. * Bug 21328: Updating to clang 3.8.0
  4598. * Bug 21754: Remove old GCC toolchain and macOS SDK
  4599. * Bug 19783: Remove unused macOS helper scripts
  4600. * Bug 10369: Don't use old GCC toolchain anymore for utils
  4601. * Bug 21753: Replace our old GCC toolchain in PT descriptor
  4602. * Bug 18530: ESR52 based Tor Browser only runs on macOS 10.9+
  4603. * Bug 22328: Remove clang PIE wrappers
  4604. * Linux
  4605. * Bug 21930: NSS libraries are missing from mar-tools archive
  4606. * Bug 21239: Adapt Linux Firefox descriptor to ESR52 (use GTK2)
  4607. * Bug 21960: Linux bundles based on ESR 52 are not reproducible anymore
  4608. * Bug 21629: Fix broken ASan builds when switching to ESR 52
  4609. * Bug 22444: Use hardening-wrapper when building GCC
  4610. * Bug 22361: Fix hardening of libraries built in linux/gitian-utils.yml
  4611. Tor Browser 7.0a4 -- May 15 2017
  4612. * All Platforms
  4613. * Update Firefox to 52.1.1esr
  4614. * Update Tor to 0.3.0.6
  4615. * Update Tor Launcher to 0.2.12.1
  4616. * Bug 20761: Don't ignore additional SocksPorts
  4617. * Translation update
  4618. * Update HTTPS-Everywhere to 5.2.16
  4619. * Update NoScript to 5.0.4
  4620. * Bug 21962: Fix crash on about:addons page
  4621. * Bug 21778: Canvas prompt is not shown in Tor Browser based on ESR52
  4622. * Bug 21569: Add first-party domain to Permissions key
  4623. * Bug 22165: Don't allow collection of local IP addresses
  4624. * Bug 13017: Work around audio fingerprinting by disabling the Web Audio API
  4625. * Bug 10286: Disable Touch API and add fingerprinting resistance as fallback
  4626. * Bug 13612: Disable Social API
  4627. * Bug 10283: Disable SpeechSynthesis API
  4628. * Bug 21675: Spoof window.navigator.hardwareConcurrency
  4629. * Bug 21792: Suppress MediaError.message
  4630. * Bug 16337: Round times exposed by Animation API to nearest 100ms
  4631. * Bug 21726: Keep Graphite support disabled
  4632. * Bug 21685: Disable remote new tab pages
  4633. * Bug 21790: Disable captive portal detection
  4634. * Bug 21686: Disable Microsoft Family Safety support
  4635. * Bug 22073: Make sure Mozilla's experiments are disabled
  4636. * Bug 21683: Disable newly added Safebrowsing capabilities
  4637. * Bug 22071: Disable Kinto-based blocklist update mechanism
  4638. * Bug 22072: Hide TLS error reporting checkbox
  4639. * Bug 20761: Don't ignore additional SocksPorts
  4640. * Bug 21340: Identify and backport new patches from Firefox
  4641. * Bug 22153: Fix broken feeds on higher security levels
  4642. * Bug 22025: Fix broken certificate error pages on higher security levels
  4643. * Bug 21710: Upgrade Go to 1.8.1
  4644. * Mac
  4645. * Bug 21940: Don't allow privilege escalation during update
  4646. * Bug 22044: Fix broken default search engine on macOS
  4647. * Bug 21879: Use our default bookmarks on OSX
  4648. * Bug 21779: Non-admin users can't access Tor Browser on macOS
  4649. * Linux
  4650. * Bug 22041: Fix update error during update to 7.0a3
  4651. * Bug 22238: Fix use of hardened wrapper for Firefox build
  4652. * Bug 20683: Selfrando support for 64-bit Linux systems
  4653. Tor Browser 7.0a3 -- April 20 2017
  4654. * All Platforms
  4655. * Update Firefox to 52.1.0esr
  4656. * Tor to 0.3.0.5-rc
  4657. * Update Torbutton to 1.9.7.2
  4658. * Bug 21865: Update our JIT preferences in the security slider
  4659. * Bug 21747: Make 'New Tor Circuit for this Site' work in ESR52
  4660. * Bug 21745: Fix handling of catch-all circuit
  4661. * Bug 21547: Fix circuit display under e10s
  4662. * Bug 21268: e10s compatibility for New Identity
  4663. * Bug 21267: Remove window resize implementation for now
  4664. * Bug 21201: Make Torbutton multiprocess compatible
  4665. * Translations update
  4666. * Update Tor Launcher to 0.2.12
  4667. * Bug 21920: Don't show locale selection dialog
  4668. * Bug 21546: Mark Tor Launcher as multiprocess compatible
  4669. * Bug 21264: Add a README file
  4670. * Translations update
  4671. * Update HTTPS-Everywhere to 5.2.14
  4672. * Update NoScript to 5.0.2
  4673. * Update sandboxed-tor-browser to 0.0.6
  4674. * Bug 21764: Use bubblewrap's `--die-with-parent` when supported
  4675. * Fix e10s Web Content crash on systems with grsec kernels
  4676. * Bug 21928: Force a reinstall if an existing hardened bundle is present
  4677. * Bug 21929: Remove hardened/ASAN related code
  4678. * Bug 21927: Remove the ability to install/update the hardened bundle
  4679. * Bug 21244: Update the MAR signing key for 7.0
  4680. * Bug 21536: Remove asn's scramblesuit bridge from Tor Browser
  4681. * Add back the old release MAR signing key
  4682. * Add `prlimit64` to the firefox system call whitelist
  4683. * Fix compilation with Go 1.8
  4684. * Use Config.Clone() to clone TLS configs when available
  4685. * Update Go to 1.7.5 (bug 21709)
  4686. * Bug 21555+16450: Don't remove Authorization header on subdomains (e.g. Twitter)
  4687. * Bug 21887: Fix broken error pages on higher security levels
  4688. * Bug 21876: Enable e10s by default on all supported platforms
  4689. * Bug 21876: Always use esr policies for e10s
  4690. * Bug 20905: Fix resizing issues after moving to a direct Firefox patch
  4691. * Bug 21875: Modal dialogs are maximized in ESR52 nightly builds
  4692. * Bug 21885: SVG is not disabled in Tor Browser based on ESR52
  4693. * Bug 17334: Hide Referer when leaving a .onion domain (improved patch)
  4694. * Bug 3246: Double-key cookies
  4695. * Bug 8842: Fix XML parsing error
  4696. * Bug 16886: "Add-on compatibility check dialog" contains Firefox logo
  4697. * Bug 19192: Untrust Blue Coat CA
  4698. * Bug 19955: Avoid confusing warning that favicon load request got cancelled
  4699. * Bug 20005: Backport fixes for memory leaks investigation
  4700. * Bug 20755: ltn.com.tw is broken in Tor Browser
  4701. * Bug 21896: Commenting on website is broken due to CAPTCHA not being displayed
  4702. * Bug 20680: Rebase Tor Browser patches to 52 ESR
  4703. * Bug 21917: Add new obfs4 bridges
  4704. * Bug 21918: Move meek-amazon to d2cly7j4zqgua7.cloudfront.net backend
  4705. * Windows
  4706. * Bug 21795: Fix Tor Browser crashing on github.com
  4707. * Bug 12426: Make use of HeapEnableTerminationOnCorruption
  4708. * Bug 19316: Make sure our Windows updates can deal with the SSE2 requirement
  4709. * Bug 21868: Fix build bustage with FIREFOX_52_0_2esr_RELEASE for Windows
  4710. * OS X
  4711. * Bug 21723: Fix inconsistent generation of MOZ_MACBUNDLE_ID
  4712. * Bug 21724: Make Firefox and Tor Browser distinct macOS apps
  4713. * Bug 21931: Backport OSX SetupMacCommandLine updater fixes
  4714. * Bug 15910: Don't download GMPs via the local fallback
  4715. * Linux
  4716. * Bug 21907: Fix runtime error on CentOS 6
  4717. * Bug 21748: Fix broken Snowflake build and update bridge details
  4718. * Bug 21954: Snowflake breaks the 7.0a3 build
  4719. * Bug 15910: Don't download GMPs via the local fallback
  4720. * Build system
  4721. * Windows
  4722. * Bug 21837: Fix reproducibility of accessibility code for Windows
  4723. * Bug 21240: Create patches to fix mingw-w64 compilation of Firefox ESR 52
  4724. * Bug 21904: Bump mingw-w64 commit to help with sandbox compilation
  4725. * Bug 18831: Use own Yasm for Firefox cross-compilation
  4726. * OS X
  4727. * Bug 21328: Updating to clang 3.8.0
  4728. * Bug 21754: Remove old GCC toolchain and macOS SDK
  4729. * Bug 19783: Remove unused macOS helper scripts
  4730. * Bug 10369: Don't use old GCC toolchain anymore for utils
  4731. * Bug 21753: Replace our old GCC toolchain in PT descriptor
  4732. * Bug 18530: ESR52 based Tor Browser only runs on macOS 10.9+
  4733. * Linux
  4734. * Bug 21930: NSS libraries are missing from mar-tools archive
  4735. * Bug 21239: Adapt Linux Firefox descriptor to ESR52 (use GTK2)
  4736. * Bug 21960: Linux bundles based on ESR 52 are not reproducible anymore
  4737. * Bug 21629: Fix broken ASan builds when switching to ESR 52
  4738. Tor Browser 6.5.2 -- April 19 2017
  4739. * All Platforms
  4740. * Update Firefox to 45.9.0esr
  4741. * Update HTTPS-Everywhere to 5.2.14
  4742. * Update NoScript to 5.0.2
  4743. * Bug 21555+16450: Don't remove Authorization header on subdomains (e.g. Twitter)
  4744. * Bug 19316: Make sure our Windows updates can deal with the SSE2 requirement
  4745. * Bug 21917: Add new obfs4 bridges
  4746. * Bug 21918: Move meek-amazon to d2cly7j4zqgua7.cloudfront.net backend
  4747. * Windows
  4748. * Bug 21795: Fix Tor Browser crashing on github.com
  4749. Tor Browser 7.0a2-hardened -- March 7 2017
  4750. * All Platforms
  4751. * Update Firefox to 45.8.0esr
  4752. * Tor to 0.3.0.4-rc
  4753. * OpenSSL to 1.0.2k
  4754. * Update Torbutton to 1.9.7.1
  4755. * Bug 21396: Allow leaking of resource/chrome URIs (off by default)
  4756. * Bug 21574: Add link for zh manual and create manual links dynamically
  4757. * Bug 21330: Non-usable scrollbar appears in tor browser security settings
  4758. * Bug 21324: Don't update NoScript button with timer update
  4759. * Translation updates
  4760. * Update HTTPS-Everywhere to 5.2.11
  4761. * Bug 21514: Restore W^X JIT implementation removed from ESR45
  4762. * Bug 21536: Remove scramblesuit bridge
  4763. * Bug 21342: Move meek-azure to the meek.azureedge.net backend and cymrubridge02 bridge
  4764. * Bug 21326: Update the "Using a system-installed Tor" section in start script
  4765. * Build system
  4766. * Bug 17034: Use our built binutils and GCC for building tor
  4767. * Code clean-up
  4768. Tor Browser 7.0a2 -- March 7 2017
  4769. * All Platforms
  4770. * Update Firefox to 45.8.0esr
  4771. * Tor to 0.3.0.4-rc
  4772. * OpenSSL to 1.0.2k
  4773. * Update Torbutton to 1.9.7.1
  4774. * Bug 21396: Allow leaking of resource/chrome URIs (off by default)
  4775. * Bug 21574: Add link for zh manual and create manual links dynamically
  4776. * Bug 21330: Non-usable scrollbar appears in tor browser security settings
  4777. * Bug 21324: Don't update NoScript button with timer update
  4778. * Translation updates
  4779. * Update HTTPS-Everywhere to 5.2.11
  4780. * Bug 21514: Restore W^X JIT implementation removed from ESR45
  4781. * Bug 21536: Remove scramblesuit bridge
  4782. * Bug 21342: Move meek-azure to the meek.azureedge.net backend and cymrubridge02 bridge
  4783. * Bug 21348: Make snowflake only available on Linux for now
  4784. * Linux
  4785. * Bug 21326: Update the "Using a system-installed Tor" section in start script
  4786. * Build system
  4787. * OS X
  4788. * Bug 21343: Remove unused FTE related parts for macOS
  4789. * Linux
  4790. * Bug 17034: Use our built binutils and GCC for building tor
  4791. * Clean-up
  4792. Tor Browser 6.5.1 -- March 7 2017
  4793. * All Platforms
  4794. * Update Firefox to 45.8.0esr
  4795. * Tor to 0.2.9.10
  4796. * OpenSSL to 1.0.2k
  4797. * Update Torbutton to 1.9.6.14
  4798. * Bug 21396: Allow leaking of resource/chrome URIs (off by default)
  4799. * Bug 21574: Add link for zh manual and create manual links dynamically
  4800. * Bug 21330: Non-usable scrollbar appears in tor browser security settings
  4801. * Translation updates
  4802. * Update HTTPS-Everywhere to 5.2.11
  4803. * Bug 21514: Restore W^X JIT implementation removed from ESR45
  4804. * Bug 21536: Remove scramblesuit bridge
  4805. * Bug 21342: Move meek-azure to the meek.azureedge.net backend and cymrubridge02 bridge
  4806. * Linux
  4807. * Bug 21326: Update the "Using a system-installed Tor" section in start script
  4808. Tor Browser 7.0a1-hardened -- January 25 2017
  4809. * All Platforms
  4810. * Update Firefox to 45.7.0esr
  4811. * Tor to 0.3.0.2-alpha
  4812. * Update Torbutton to 1.9.7
  4813. * Bug 19898: Use DuckDuckGo on about:tor
  4814. * Bug 21091: Hide the update check menu entry when running under the sandbox
  4815. * Bug 21243: Add links to es, fr, and pt Tor Browser manual
  4816. * Bug 21194: Show snowflake in the circuit display
  4817. * Bug 21131: Remove 2016 donation banner
  4818. * Translation updates
  4819. * Update HTTPS-Everywhere to 5.2.9
  4820. * Update NoScript to 2.9.5.3
  4821. * Bug 20471: Allow javascript: links from HTTPS first party pages
  4822. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  4823. * Bug 20589: Add new MAR signing key
  4824. * Bug 20735: Add snowflake pluggable transport to alpha Linux builds
  4825. * Build system
  4826. * All platforms
  4827. * Bug 20927: Upgrade Go to 1.7.4
  4828. Tor Browser 7.0a1 -- January 25 2017
  4829. * All Platforms
  4830. * Update Firefox to 45.7.0esr
  4831. * Tor to 0.3.0.2-alpha
  4832. * Update Torbutton to 1.9.7
  4833. * Bug 19898: Use DuckDuckGo on about:tor
  4834. * Bug 21091: Hide the update check menu entry when running under the sandbox
  4835. * Bug 21243: Add links to es, fr, and pt Tor Browser manual
  4836. * Bug 21194: Show snowflake in the circuit display
  4837. * Bug 21131: Remove 2016 donation banner
  4838. * Translation updates
  4839. * Update HTTPS-Everywhere to 5.2.9
  4840. * Update NoScript to 2.9.5.3
  4841. * Bug 20471: Allow javascript: links from HTTPS first party pages
  4842. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  4843. * Bug 20589: Add new MAR signing key
  4844. * Windows
  4845. * Bug 20981: On Windows, check TZ for timezone first
  4846. * OS X
  4847. * Bug 20989: Browser sandbox profile is too restrictive on OSX 10.12.2
  4848. * Linux
  4849. * Update sandboxed-tor-browser to 0.0.3
  4850. * Bug 20735: Add snowflake pluggable transport to alpha Linux builds
  4851. * Build system
  4852. * All platforms
  4853. * Bug 20927: Upgrade Go to 1.7.4
  4854. * Linux
  4855. * Bug 21103: Update descriptors for sandboxed-tor-browser 0.0.3
  4856. Tor Browser 6.5 -- January 24 2017
  4857. * All Platforms
  4858. * Update Firefox to 45.7.0esr
  4859. * Tor to 0.2.9.9
  4860. * OpenSSL to 1.0.2j
  4861. * Update Torbutton to 1.9.6.12
  4862. * Bug 16622: Timezone spoofing moved to tor-browser.git
  4863. * Bug 17334: Move referrer spoofing for .onion domains into tor-browser.git
  4864. * Bug 8725: Block addon resource and url fingerprinting with nsIContentPolicy
  4865. * Bug 20701: Allow the directory listing stylesheet in the content policy
  4866. * Bug 19837: Whitelist internal URLs that Firefox requires for media
  4867. * Bug 19206: Avoid SOCKS auth and NEWNYM collisions when sharing a tor client
  4868. * Bug 19273: Improve external app launch handling and associated warnings
  4869. * Bug 15852: Remove/synchronize Torbutton SOCKS pref logic
  4870. * Bug 19733: GETINFO response parser doesn't handle AF_UNIX entries + IPv6
  4871. * Bug 17767: Make "JavaScript disabled" more visible in Security Slider
  4872. * Bug 20556: Use pt-BR strings from now on
  4873. * Bug 20614: Add links to Tor Browser User Manual
  4874. * Bug 20414: Fix non-rendering arrow on OS X
  4875. * Bug 20728: Fix bad preferences.xul dimensions
  4876. * Bug 19898: Use DuckDuckGo on about:tor
  4877. * Bug 21091: Hide the update check menu entry when running under the sandbox
  4878. * Bug 19459: Move resizing code to tor-browser.git
  4879. * Bug 20264: Change security slider to 3 options
  4880. * Bug 20347: Enhance security slider's custom mode
  4881. * Bug 20123: Disable remote jar on all security levels
  4882. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  4883. * Bug 17546: Add tooltips to explain our privacy checkboxes
  4884. * Bug 17904: Allow security settings dialog to resize
  4885. * Bug 18093: Remove 'Restore Defaults' button
  4886. * Bug 20373: Prevent redundant dialogs opening
  4887. * Bug 20318: Remove helpdesk link from about:tor
  4888. * Bug 21243: Add links for pt, es, and fr Tor Browser manuals
  4889. * Bug 20753: Remove obsolete StartPage locale strings
  4890. * Bug 21131: Remove 2016 donation banner
  4891. * Bug 18980: Remove obsolete toolbar button code
  4892. * Bug 18238: Remove unused Torbutton code and strings
  4893. * Bug 20388+20399+20394: Code clean-up
  4894. * Translation updates
  4895. * Update Tor Launcher to 0.2.10.3
  4896. * Bug 19568: Set CurProcD for Thunderbird/Instantbird
  4897. * Bug 19432: Remove special handling for Instantbird/Thunderbird
  4898. * Translation updates
  4899. * Update HTTPS-Everywhere to 5.2.9
  4900. * Update NoScript to 2.9.5.3
  4901. * Bug 16622: Spoof timezone with Firefox patch
  4902. * Bug 17334: Spoof referrer when leaving a .onion domain
  4903. * Bug 19273: Write C++ patch for external app launch handling
  4904. * Bug 19459: Size new windows to 1000x1000 or nearest 200x100 (Firefox patch)
  4905. * Bug 12523: Mark JIT pages as non-writable
  4906. * Bug 20123: Always block remote jar files
  4907. * Bug 19193: Reduce timing precision for AudioContext, HTMLMediaElement, and MediaStream
  4908. * Bug 19164: Remove support for SHA-1 HPKP pins
  4909. * Bug 19186: KeyboardEvents are only rounding to 100ms
  4910. * Bug 16998: Isolate preconnect requests to URL bar domain
  4911. * Bug 19478: Prevent millisecond resolution leaks in File API
  4912. * Bug 20471: Allow javascript: links from HTTPS first party pages
  4913. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  4914. * Bug 20707: Fix broken preferences tab in non-en-US alpha bundles
  4915. * Bug 20709: Fix wrong update URL in alpha bundles
  4916. * Bug 19481: Point the update URL to aus1.torproject.org
  4917. * Bug 20556: Start using pt-BR instead of pt-PT for Portuguese
  4918. * Bug 20442: Backport fix for local path disclosure after drag and drop
  4919. * Bug 20160: Backport fix for broken MP3-playback
  4920. * Bug 20043: Isolate SharedWorker script requests to first party
  4921. * Bug 18923: Add script to run all Tor Browser regression tests
  4922. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  4923. * Bug 19336+19835: Enhance about:tbupdate page
  4924. * Bug 20399+15852: Code clean-up
  4925. * Windows
  4926. * Bug 20981: On Windows, check TZ for timezone first
  4927. * Bug 18175: Maximizing window and restarting leads to non-rounded window size
  4928. * Bug 13437: Rounded inner window accidentally grows to non-rounded size
  4929. * OS X
  4930. * Bug 20590: Badly resized window due to security slider notification bar on OS X
  4931. * Bug 20439: Make the build PIE on OSX
  4932. * Linux
  4933. * Bug 20691: Updater breaks if unix domain sockets are used
  4934. * Bug 15953: Weird resizing dance on Tor Browser startup
  4935. * Build system
  4936. * All platforms
  4937. * Bug 20927: Upgrade Go to 1.7.4
  4938. * Bug 20583: Make the downloads.json file reproducible
  4939. * Bug 20133: Don't apply OpenSSL patch anymore
  4940. * Bug 19528: Set MOZ_BUILD_DATE based on Firefox version
  4941. * Bug 18291: Remove some uses of libfaketime
  4942. * Bug 18845: Make zip and tar helpers generate reproducible archives
  4943. * OS X
  4944. * Bug 20258: Make OS X Tor archive reproducible again
  4945. * Bug 20184: Make OS X builds reproducible (use clang for compiling tor)
  4946. * Bug 19856: Make OS X builds reproducible (getting libfaketime back)
  4947. * Bug 19410: Fix incremental updates by taking signatures into account
  4948. * Bug 20210: In dmg2mar, extract old mar file to copy permissions to the new one
  4949. Tor Browser 6.5a6-hardened -- December 14 2016
  4950. * All Platforms
  4951. * Update Firefox to 45.6.0esr
  4952. * Tor to 0.2.9.7-rc
  4953. * Update Torbutton to 1.9.6.9
  4954. * Bug 16622: Timezone spoofing moved to tor-browser.git
  4955. * Bug 20701: Allow the directory listing stylesheet in the content policy
  4956. * Bug 20556: Use pt-BR strings from now on
  4957. * Bug 20614: Add links to Tor Browser User Manual
  4958. * Bug 20414: Fix non-rendering arrow on OS X
  4959. * Bug 20728: Fix bad preferences.xul dimensions
  4960. * Bug 20318: Remove helpdesk link from about:tor
  4961. * Bug 20753: Remove obsolete StartPage locale strings
  4962. * Bug 20947: Donation banner improvements
  4963. * Translation updates
  4964. * Update HTTPS-Everywhere to 5.2.8
  4965. * Bug 16622: Spoof timezone with Firefox patch
  4966. * Bug 20707: Fix broken preferences tab in non-en-US alpha bundles
  4967. * Bug 20709: Fix wrong update URL in alpha bundles
  4968. * Bug 20556: Start using pt-BR instead of pt-PT for Portuguese
  4969. * Bug 20809: Use non-/html search engine URL for DuckDuckGo search plugins
  4970. * Bug 20837: Activate iat-mode for certain obfs4 bridges
  4971. * Bug 20838: Uncomment NX01 default obfs4 bridge
  4972. * Bug 20840: Rotate ports a third time for default obfs4 bridges
  4973. Tor Browser 6.5a6 -- December 14 2016
  4974. * All Platforms
  4975. * Update Firefox to 45.6.0esr
  4976. * Tor to 0.2.9.6-rc
  4977. * Update Torbutton to 1.9.6.8
  4978. * Bug 16622: Timezone spoofing moved to tor-browser.git
  4979. * Bug 20701: Allow the directory listing stylesheet in the content policy
  4980. * Bug 20556: Use pt-BR strings from now on
  4981. * Bug 20614: Add links to Tor Browser User Manual
  4982. * Bug 20414: Fix non-rendering arrow on OS X
  4983. * Bug 20728: Fix bad preferences.xul dimensions
  4984. * Bug 20318: Remove helpdesk link from about:tor
  4985. * Bug 20753: Remove obsolete StartPage locale strings
  4986. * Translation updates
  4987. * Update HTTPS-Everywhere to 5.2.8
  4988. * Bug 16622: Spoof timezone with Firefox patch
  4989. * Bug 20707: Fix broken preferences tab in non-en-US alpha bundles
  4990. * Bug 20709: Fix wrong update URL in alpha bundles
  4991. * Bug 20556: Start using pt-BR instead of pt-PT for Portuguese
  4992. * Bug 20809: Use non-/html search engine URL for DuckDuckGo search plugins
  4993. * Bug 20837: Activate iat-mode for certain obfs4 bridges
  4994. * Bug 20838: Uncomment NX01 default obfs4 bridge
  4995. * Bug 20840: Rotate ports a third time for default obfs4 bridges
  4996. * Linux
  4997. * Bug 20352: Integrate sandboxed-tor-browser into our Gitian build
  4998. * Bug 20758: Make Linux sandbox build deterministic
  4999. * Bug 10281: Use jemalloc4 and abort on redzone corruption
  5000. * OS X
  5001. * Bug 20121: Create Seatbelt profile(s) for Tor Browser
  5002. Tor Browser 6.0.8 -- December 13 2016
  5003. * All Platforms
  5004. * Update Firefox to 45.6.0esr
  5005. * Tor to 0.2.8.11
  5006. * Update Torbutton to 1.9.5.13
  5007. * Bug 20947: Donation banner improvements
  5008. * Update HTTPS-Everywhere to 5.2.8
  5009. * Bug 20809: Use non-/html search engine URL for DuckDuckGo search plugins
  5010. * Bug 20837: Activate iat-mode for certain obfs4 bridges
  5011. * Bug 20838: Uncomment NX01 default obfs4 bridge
  5012. * Bug 20840: Rotate ports a third time for default obfs4 bridges
  5013. Tor Browser 6.5a5-hardened -- December 1 2016
  5014. * All Platforms
  5015. * Update Firefox to 45.5.1esr
  5016. * Update NoScript to 2.9.5.2
  5017. * Linux
  5018. * Bug 20691: Updater breaks if unix domain sockets are used
  5019. Tor Browser 6.5a5 -- December 1 2016
  5020. * All Platforms
  5021. * Update Firefox to 45.5.1esr
  5022. * Update NoScript to 2.9.5.2
  5023. * Linux
  5024. * Bug 20691: Updater breaks if unix domain sockets are used
  5025. Tor Browser 6.0.7 -- November 30 2016
  5026. * All Platforms
  5027. * Update Firefox to 45.5.1esr
  5028. * Update NoScript to 2.9.5.2
  5029. Tor Browser 6.5a4-hardened -- November 16 2016
  5030. * All Platforms
  5031. * Update Firefox to 45.5.0esr
  5032. * Update Tor to 0.2.9.5-alpha
  5033. * Update OpenSSL to 1.0.2j
  5034. * Update Torbutton to 1.9.6.7
  5035. * Bug 20414: Add donation banner on about:tor for 2016 campaign
  5036. * Bug 20111: use Unix domain sockets for SOCKS port by default
  5037. * Bug 19459: Move resizing code to tor-browser.git
  5038. * Bug 20264: Change security slider to 3 options
  5039. * Bug 20347: Enhance security slider's custom mode
  5040. * Bug 20123: Disable remote jar on all security levels
  5041. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  5042. * Bug 17546: Add tooltips to explain our privacy checkboxes
  5043. * Bug 17904: Allow security settings dialog to resize
  5044. * Bug 18093: Remove 'Restore Defaults' button
  5045. * Bug 20373: Prevent redundant dialogs opening
  5046. * Bug 20388+20399+20394: Code clean-up
  5047. * Translation updates
  5048. * Update Tor Launcher to 0.2.11.1
  5049. * Bug 20111: use Unix domain sockets for SOCKS port by default
  5050. * Bug 20185: Avoid using Unix domain socket paths that are too long
  5051. * Bug 20429: Do not open progress window if tor doesn't get started
  5052. * Bug 19646: Wrong location for meek browser profile on OS X
  5053. * Translation updates
  5054. * Update HTTPS-Everywhere to 5.2.7
  5055. * Update meek to 0.25
  5056. * Bug 19646: Wrong location for meek browser profile on OS X
  5057. * Bug 20030: Shut down meek-http-helper cleanly if built with Go > 1.5.4
  5058. * Bug 20304: Support spaces and other special characters for SOCKS socket
  5059. * Bug 20490: Fix assertion failure due to fix for #20304
  5060. * Bug 19459: Size new windows to 1000x1000 or nearest 200x100 (Firefox patch)
  5061. * Bug 20442: Backport fix for local path disclosure after drag and drop
  5062. * Bug 20160: Backport fix for broken MP3-playback
  5063. * Bug 20043: Isolate SharedWorker script requests to first party
  5064. * Bug 20123: Always block remote jar files
  5065. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  5066. * Bug 19838: Add dgoulet's bridge and add another one commented out
  5067. * Bug 19481: Point the update URL to aus1.torproject.org
  5068. * Bug 20296: Rotate ports again for default obfs4 bridges
  5069. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  5070. * Bug 20399+15852: Code clean-up
  5071. * Bug 15953: Weird resizing dance on Tor Browser startup
  5072. * Build system
  5073. * All platforms
  5074. * Bug 20023: Upgrade Go to 1.7.3
  5075. * Bug 20583: Make the downloads.json file reproducible
  5076. Tor Browser 6.5a4 -- November 16 2016
  5077. * All Platforms
  5078. * Update Firefox to 45.5.0esr
  5079. * Update Tor to 0.2.9.5-alpha
  5080. * Update OpenSSL to 1.0.2j
  5081. * Update Torbutton to 1.9.6.7
  5082. * Bug 20414: Add donation banner on about:tor for 2016 campaign
  5083. * Bug 20111: use Unix domain sockets for SOCKS port by default
  5084. * Bug 19459: Move resizing code to tor-browser.git
  5085. * Bug 20264: Change security slider to 3 options
  5086. * Bug 20347: Enhance security slider's custom mode
  5087. * Bug 20123: Disable remote jar on all security levels
  5088. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  5089. * Bug 17546: Add tooltips to explain our privacy checkboxes
  5090. * Bug 17904: Allow security settings dialog to resize
  5091. * Bug 18093: Remove 'Restore Defaults' button
  5092. * Bug 20373: Prevent redundant dialogs opening
  5093. * Bug 20388+20399+20394: Code clean-up
  5094. * Translation updates
  5095. * Update Tor Launcher to 0.2.10.2
  5096. * Bug 20111: use Unix domain sockets for SOCKS port by default
  5097. * Bug 20185: Avoid using Unix domain socket paths that are too long
  5098. * Bug 20429: Do not open progress window if tor doesn't get started
  5099. * Bug 19646: Wrong location for meek browser profile on OS X
  5100. * Translation updates
  5101. * Update HTTPS-Everywhere to 5.2.7
  5102. * Update meek to 0.25
  5103. * Bug 19646: Wrong location for meek browser profile on OS X
  5104. * Bug 20030: Shut down meek-http-helper cleanly if built with Go > 1.5.4
  5105. * Bug 20304: Support spaces and other special characters for SOCKS socket
  5106. * Bug 20490: Fix assertion failure due to fix for #20304
  5107. * Bug 19459: Size new windows to 1000x1000 or nearest 200x100 (Firefox patch)
  5108. * Bug 20442: Backport fix for local path disclosure after drag and drop
  5109. * Bug 20160: Backport fix for broken MP3-playback
  5110. * Bug 20043: Isolate SharedWorker script requests to first party
  5111. * Bug 20123: Always block remote jar files
  5112. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  5113. * Bug 19838: Add dgoulet's bridge and add another one commented out
  5114. * Bug 19481: Point the update URL to aus1.torproject.org
  5115. * Bug 20296: Rotate ports again for default obfs4 bridges
  5116. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  5117. * Bug 20399+15852: Code clean-up
  5118. * Windows
  5119. * Bug 20342: Add tor-gencert.exe to expert bundle
  5120. * Bug 18175: Maximizing window and restarting leads to non-rounded window size
  5121. * Bug 13437: Rounded inner window accidentally grows to non-rounded size
  5122. * OS X
  5123. * Bug 20204: Windows don't drag on macOS Sierra anymore
  5124. * Bug 20250: Meek fails on macOS Sierra if built with Go < 1.7
  5125. * Bug 20590: Badly resized window due to security slider notification bar on OS X
  5126. * Bug 20439: Make the build PIE on OSX
  5127. * Linux
  5128. * Bug 15953: Weird resizing dance on Tor Browser startup
  5129. * Build system
  5130. * All platforms
  5131. * Bug 20023: Upgrade Go to 1.7.3
  5132. * Bug 20583: Make the downloads.json file reproducible
  5133. * OS X
  5134. * Bug 20258: Make OS X Tor archive reproducible again
  5135. * Bug 20184: Make OS X builds reproducible again
  5136. * Bug 20210: In dmg2mar, extract old mar file to copy permissions to the new one
  5137. Tor Browser 6.0.6 -- November 15
  5138. * All Platforms
  5139. * Update Firefox to 45.5.0esr
  5140. * Update Tor to 0.2.8.9
  5141. * Update OpenSSL to 1.0.1u
  5142. * Update Torbutton to 1.9.5.12
  5143. * Bug 20414: Add donation banner on about:tor for 2016 campaign
  5144. * Translation updates
  5145. * Update Tor Launcher to 0.2.9.4
  5146. * Bug 20429: Do not open progress window if tor doesn't get started
  5147. * Bug 19646: Wrong location for meek browser profile on OS X
  5148. * Update HTTPS-Everywhere to 5.2.7
  5149. * Update meek to 0.25
  5150. * Bug 19646: Wrong location for meek browser profile on OS X
  5151. * Bug 20030: Shut down meek-http-helper cleanly if built with Go > 1.5.4
  5152. * Bug 19838: Add dgoulet's bridge and add another one commented out
  5153. * Bug 20296: Rotate ports again for default obfs4 bridges
  5154. * Bug 19735: Switch default search engine to DuckDuckGo
  5155. * Bug 20118: Don't unpack HTTPS Everywhere anymore
  5156. * Windows
  5157. * Bug 20342: Add tor-gencert.exe to expert bundle
  5158. * OS X
  5159. * Bug 20204: Windows don't drag on macOS Sierra anymore
  5160. * Bug 20250: Meek fails on macOS Sierra if built with Go < 1.7
  5161. * Build system
  5162. * All platforms
  5163. * Bug 20023: Upgrade Go to 1.7.3
  5164. Tor Browser 6.5a3-hardened -- September 20 2016
  5165. * All Platforms
  5166. * Update Firefox to 45.4.0esr
  5167. * Update Tor to 0.2.9.2-alpha
  5168. * Update OpenSSL to 1.0.2h (bug 20095)
  5169. * Update Torbutton to 1.9.6.4
  5170. * Bug 17334: Move referrer spoofing for .onion domains into tor-browser.git
  5171. * Bug 17767: Make "JavaScript disabled" more visible in Security Slider
  5172. * Bug 19995: Clear site security settings during New Identity
  5173. * Bug 19906: "Maximizing Tor Browser" Notification can exist multiple times
  5174. * Bug 19837: Whitelist internal URLs that Firefox requires for media
  5175. * Bug 15852: Remove/synchronize Torbutton SOCKS pref logic
  5176. * Bug 19733: GETINFO response parser doesn't handle AF_UNIX entries + IPv6
  5177. * Bug 14271: Make Torbutton work with Unix Domain Socket option
  5178. * Translation updates
  5179. * Update Tor Launcher to 0.2.11
  5180. * Bug 14272: Make Tor Launcher work with Unix Domain Socket option
  5181. * Bug 19568: Set CurProcD for Thunderbird/Instantbird
  5182. * Bug 19432: Remove special handling for Instantbird/Thunderbird
  5183. * Translation updates
  5184. * Update HTTPS-Everywhere to 5.2.4
  5185. * Update NoScript to 2.9.0.14
  5186. * Bug 19851: Fix ASan error by upgrading GCC to 5.4.0
  5187. * Bug 17858: Fix creation of incremental MARs for hardened builds
  5188. * Bug 14273: Backport patches for Unix Domain Socket support
  5189. * Bug 19890: Disable installation of system addons
  5190. * Bug 17334: Spoof referrer when leaving a .onion domain
  5191. * Bug 20092: Rotate ports for default obfs4 bridges
  5192. * Bug 20040: Add update support for unpacked HTTPS Everywhere
  5193. * Bug 20118: Don't unpack HTTPS Everywhere anymore
  5194. * Bug 19336+19835: Enhance about:tbupdate page
  5195. * Build system
  5196. * All platforms
  5197. * Bug 20133: Don't apply OpenSSL patch anymore
  5198. * Bug 19528: Set MOZ_BUILD_DATE based on Firefox version
  5199. Tor Browser 6.5a3 -- September 20 2016
  5200. * All Platforms
  5201. * Update Firefox to 45.4.0esr
  5202. * Update Tor to 0.2.9.2-alpha
  5203. * Update OpenSSL to 1.0.2h (bug 20095)
  5204. * Update Torbutton to 1.9.6.4
  5205. * Bug 17334: Move referrer spoofing for .onion domains into tor-browser.git
  5206. * Bug 17767: Make "JavaScript disabled" more visible in Security Slider
  5207. * Bug 19995: Clear site security settings during New Identity
  5208. * Bug 19906: "Maximizing Tor Browser" Notification can exist multiple times
  5209. * Bug 19837: Whitelist internal URLs that Firefox requires for media
  5210. * Bug 15852: Remove/synchronize Torbutton SOCKS pref logic
  5211. * Bug 19733: GETINFO response parser doesn't handle AF_UNIX entries + IPv6
  5212. * Bug 14271: Make Torbutton work with Unix Domain Socket option
  5213. * Translation updates
  5214. * Update Tor Launcher to 0.2.10.1
  5215. * Bug 14272: Make Tor Launcher work with Unix Domain Socket option
  5216. * Bug 19568: Set CurProcD for Thunderbird/Instantbird
  5217. * Bug 19432: Remove special handling for Instantbird/Thunderbird
  5218. * Translation updates
  5219. * Update HTTPS-Everywhere to 5.2.4
  5220. * Update NoScript to 2.9.0.14
  5221. * Bug 14273: Backport patches for Unix Domain Socket support
  5222. * Bug 19890: Disable installation of system addons
  5223. * Bug 17334: Spoof referrer when leaving a .onion domain
  5224. * Bug 20092: Rotate ports for default obfs4 bridges
  5225. * Bug 20040: Add update support for unpacked HTTPS Everywhere
  5226. * Bug 20118: Don't unpack HTTPS Everywhere anymore
  5227. * Bug 19336+19835: Enhance about:tbupdate page
  5228. * Android
  5229. * Bug 19706: Store browser data in the app home directory
  5230. * Build system
  5231. * All platforms
  5232. * Bug 20133: Don't apply OpenSSL patch anymore
  5233. * Bug 19528: Set MOZ_BUILD_DATE based on Firefox version
  5234. * OS X
  5235. * Bug 19856: Make OS X builds reproducible again
  5236. * Bug 19410: Fix incremental updates by taking signatures into account
  5237. Tor Browser 6.0.5 -- September 16
  5238. * All Platforms
  5239. * Update Firefox to 45.4.0esr
  5240. * Update Tor to 0.2.8.7
  5241. * Update Torbutton to 1.9.5.7
  5242. * Bug 19995: Clear site security settings during New Identity
  5243. * Bug 19906: "Maximizing Tor Browser" Notification can exist multiple times
  5244. * Update HTTPS-Everywhere to 5.2.4
  5245. * Bug 20092: Rotate ports for default obfs4 bridges
  5246. * Bug 20040: Add update support for unpacked HTTPS Everywhere
  5247. * Windows
  5248. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  5249. * Linux
  5250. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  5251. * Android
  5252. * Bug 19706: Store browser data in the app home directory
  5253. * Build system
  5254. * All platforms
  5255. * Upgrade Go to 1.4.3
  5256. Tor Browser 6.0.4 -- August 16 2016
  5257. * All Platforms
  5258. * Update Tor to 0.2.8.6
  5259. * Update NoScript to 2.9.0.14
  5260. * Bug 19890: Disable installation of system addons
  5261. Tor Browser 6.5a2-hardened -- August 3 2016
  5262. * All Platforms
  5263. * Update Firefox to 45.3.0esr
  5264. * Update Tor to tor-0.2.8.5-rc
  5265. * Update Torbutton to 1.9.6.1
  5266. * Bug 19689: Use proper parent window for plugin prompt
  5267. * Bug 19206: Avoid SOCKS auth and NEWNYM collisions when sharing a tor client
  5268. * Bug 19417: Disable asm.js (but add code to clear on New Identity if enabled)
  5269. * Bug 19273: Improve external app launch handling and associated warnings
  5270. * Bug 8725: Block addon resource and url fingerprinting with nsIContentPolicy
  5271. * Update HTTPS-Everywhere to 5.2.1
  5272. * Update NoScript to 2.9.0.12
  5273. * Bug 17406: Include Selfrando into our hardened builds
  5274. * Bug 19417: Disable asmjs for now
  5275. * Bug 19715: Disable the meek-google pluggable transport option
  5276. * Bug 19714: Remove mercurius4 obfs4 bridge
  5277. * Bug 19585: Fix regression test for keyboard layout fingerprinting
  5278. * Bug 19515: Tor Browser is crashing in graphics code
  5279. * Bug 18513: Favicon requests can bypass New Identity
  5280. * Bug 19273: Write C++ patch for external app launch handling
  5281. * Bug 16998: Isolate preconnect requests to URL bar domain
  5282. * Bug 18923: Add script to run all Tor Browser regression tests
  5283. * Bug 19478: Prevent millisecond resolution leaks in File API
  5284. * Bug 19401: Fix broken PDF download button
  5285. * Bug 19411: Don't show update icon if a partial update failed
  5286. * Bug 19400: Back out GCC bug workaround to avoid asmjs crash
  5287. * Bug 19735: Switch default search engine to DuckDuckGo
  5288. * Bug 19276: Disable Xrender due to possible performance regressions
  5289. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  5290. * Build System
  5291. * All Platforms
  5292. * Bug 19703: Upgrade Go to 1.6.3
  5293. Tor Browser 6.5a2 -- August 3 2016
  5294. * All Platforms
  5295. * Update Firefox to 45.3.0esr
  5296. * Update Tor to tor-0.2.8.5-rc
  5297. * Update Torbutton to 1.9.6.1
  5298. * Bug 19689: Use proper parent window for plugin prompt
  5299. * Bug 19206: Avoid SOCKS auth and NEWNYM collisions when sharing a tor client
  5300. * Bug 19417: Disable asm.js (but add code to clear on New Identity if enabled)
  5301. * Bug 19273: Improve external app launch handling and associated warnings
  5302. * Bug 8725: Block addon resource and url fingerprinting with nsIContentPolicy
  5303. * Update HTTPS-Everywhere to 5.2.1
  5304. * Update NoScript to 2.9.0.12
  5305. * Bug 19417: Disable asmjs for now
  5306. * Bug 19715: Disable the meek-google pluggable transport option
  5307. * Bug 19714: Remove mercurius4 obfs4 bridge
  5308. * Bug 19585: Fix regression test for keyboard layout fingerprinting
  5309. * Bug 19515: Tor Browser is crashing in graphics code
  5310. * Bug 18513: Favicon requests can bypass New Identity
  5311. * Bug 19273: Write C++ patch for external app launch handling
  5312. * Bug 16998: Isolate preconnect requests to URL bar domain
  5313. * Bug 18923: Add script to run all Tor Browser regression tests
  5314. * Bug 19478: Prevent millisecond resolution leaks in File API
  5315. * Bug 19401: Fix broken PDF download button
  5316. * Bug 19411: Don't show update icon if a partial update failed
  5317. * Bug 19400: Back out GCC bug workaround to avoid asmjs crash
  5318. * Bug 19735: Switch default search engine to DuckDuckGo
  5319. * Windows
  5320. * Bug 19348: Adapt to more than one build target on Windows (fixes updates)
  5321. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  5322. * Linux
  5323. * Bug 19276: Disable Xrender due to possible performance regressions
  5324. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  5325. * OS X
  5326. * Bug 19269: Icon doesn't appear in Applications folder or Dock
  5327. * Android
  5328. * Bug 19484: Avoid compilation error when MOZ_UPDATER is not defined
  5329. * Build System
  5330. * All Platforms
  5331. * Bug 19703: Upgrade Go to 1.6.3
  5332. Tor Browser 6.0.3 -- August 2 2016
  5333. * All Platforms
  5334. * Update Firefox to 45.3.0esr
  5335. * Update Torbutton to 1.9.5.6
  5336. * Bug 19417: Disable asmjs for now
  5337. * Bug 19689: Use proper parent window for plugin prompt
  5338. * Update HTTPS-Everywhere to 5.2.1
  5339. * Update NoScript to 2.9.0.12
  5340. * Bug 19417: Disable asmjs for now
  5341. * Bug 19715: Disable the meek-google pluggable transport option
  5342. * Bug 19714: Remove mercurius4 obfs4 bridge
  5343. * Bug 19585: Fix regression test for keyboard layout fingerprinting
  5344. * Bug 19515: Tor Browser is crashing in graphics code
  5345. * Bug 18513: Favicon requests can bypass New Identity
  5346. * OS X
  5347. * Bug 19269: Icon doesn't appear in Applications folder or Dock
  5348. * Android
  5349. * Bug 19484: Avoid compilation error when MOZ_UPDATER is not defined
  5350. Tor Browser 6.0.2 -- June 21 2016
  5351. * All Platforms
  5352. * Update Torbutton to 1.9.5.5
  5353. * Bug 19417: Clear asmjscache
  5354. * Bug 19401: Fix broken PDF download button
  5355. * Bug 19411: Don't show update icon if a partial update failed
  5356. * Bug 19400: Back out GCC bug workaround to avoid asmjs crash
  5357. * Windows
  5358. * Bug 19348: Adapt to more than one build target on Windows (fixes updates)
  5359. * Linux
  5360. * Bug 19276: Disable Xrender due to possible performance regressions
  5361. Tor Browser 6.5a1-hardened -- June 8 2016
  5362. * All Platforms
  5363. * Update Firefox to 45.2.0esr
  5364. * Update Tor to 0.2.8.3-alpha
  5365. * Update Torbutton to 1.9.6
  5366. * Bug 18743: Pref to hide 'Sign in to Sync' button in hamburger menu
  5367. * Bug 18905: Hide unusable items from help menu
  5368. * Bug 17599: Provide shortcuts for New Identity and New Circuit
  5369. * Bug 18980: Remove obsolete toolbar button code
  5370. * Bug 18238: Remove unused Torbutton code and strings
  5371. * Translation updates
  5372. * Code clean-up
  5373. * Update Tor Launcher to 0.2.8.5
  5374. * Bug 18947: Tor Browser is not starting on OS X if put into /Applications
  5375. * Update HTTPS-Everywhere to 5.1.9
  5376. * Update meek to 0.22 (tag 0.22-18371-3)
  5377. * Bug 19121: The update.xml hash should get checked during update
  5378. * Bug 12523: Mark JIT pages as non-writable
  5379. * Bug 19193: Reduce timing precision for AudioContext, HTMLMediaElement, and MediaStream
  5380. * Bug 19164: Remove support for SHA-1 HPKP pins
  5381. * Bug 19186: KeyboardEvents are only rounding to 100ms
  5382. * Bug 18884: Don't build the loop extension
  5383. * Bug 19187: Backport fix for crash related to popup menus
  5384. * Bug 19212: Fix crash related to network panel in developer tools
  5385. * Bug 18703: Fix circuit isolation issues on Page Info dialog
  5386. * bug 19115: Tor Browser should not fall back to Bing as its search engine
  5387. * Bug 18915+19065: Use our search plugins in localized builds
  5388. * Bug 19176: Zip our language packs deterministically
  5389. * Bug 18811: Fix first-party isolation for blobs URLs in Workers
  5390. * Bug 18950: Disable or audit Reader View
  5391. * Bug 18886: Remove Pocket
  5392. * Bug 18619: Tor Browser reports "InvalidStateError" in browser console
  5393. * Bug 18945: Disable monitoring the connected state of Tor Browser users
  5394. * Bug 18855: Don't show error after add-on directory clean-up
  5395. * Bug 18885: Disable the option of logging TLS/SSL key material
  5396. * Bug 18770: SVGs should not show up on Page Info dialog when disabled
  5397. * Bug 18958: Spoof screen.orientation values
  5398. * Bug 19047: Disable Heartbeat prompts
  5399. * Bug 18914: Use English-only label in <isindex/> tags
  5400. * Bug 18996: Investigate server logging in esr45-based Tor Browser
  5401. * Bug 17790: Add unit tests for keyboard fingerprinting defenses
  5402. * Bug 18995: Regression test to ensure CacheStorage is disabled
  5403. * Bug 18912: Add automated tests for updater cert pinning
  5404. * Bug 16728: Add test cases for favicon isolation
  5405. * Bug 18976: Remove some FTE bridges
  5406. * Linux
  5407. * Bug 19189: Backport for working around a linker (gold) bug
  5408. * Build System
  5409. * All PLatforms
  5410. * Bug 18333: Upgrade Go to 1.6.2
  5411. * Bug 18919: Remove unused keys and unused dependencies
  5412. * Bug 18291: Remove some uses of libfaketime
  5413. * Bug 18845: Make zip and tar helpers generate reproducible archives
  5414. Tor Browser 6.5a1 -- June 8 2016
  5415. * All Platforms
  5416. * Update Firefox to 45.2.0esr
  5417. * Update Tor to 0.2.8.3-alpha
  5418. * Update Torbutton to 1.9.6
  5419. * Bug 18743: Pref to hide 'Sign in to Sync' button in hamburger menu
  5420. * Bug 18905: Hide unusable items from help menu
  5421. * Bug 17599: Provide shortcuts for New Identity and New Circuit
  5422. * Bug 18980: Remove obsolete toolbar button code
  5423. * Bug 18238: Remove unused Torbutton code and strings
  5424. * Translation updates
  5425. * Code clean-up
  5426. * Update Tor Launcher to 0.2.9.3
  5427. * Bug 18947: Tor Browser is not starting on OS X if put into /Applications
  5428. * Update HTTPS-Everywhere to 5.1.9
  5429. * Update meek to 0.22 (tag 0.22-18371-3)
  5430. * Bug 18904: Mac OS: meek-http-helper profile not updated
  5431. * Bug 19121: The update.xml hash should get checked during update
  5432. * Bug 12523: Mark JIT pages as non-writable
  5433. * Bug 19193: Reduce timing precision for AudioContext, HTMLMediaElement, and MediaStream
  5434. * Bug 19164: Remove support for SHA-1 HPKP pins
  5435. * Bug 19186: KeyboardEvents are only rounding to 100ms
  5436. * Bug 18884: Don't build the loop extension
  5437. * Bug 19187: Backport fix for crash related to popup menus
  5438. * Bug 19212: Fix crash related to network panel in developer tools
  5439. * Bug 18703: Fix circuit isolation issues on Page Info dialog
  5440. * bug 19115: Tor Browser should not fall back to Bing as its search engine
  5441. * Bug 18915+19065: Use our search plugins in localized builds
  5442. * Bug 19176: Zip our language packs deterministically
  5443. * Bug 18811: Fix first-party isolation for blobs URLs in Workers
  5444. * Bug 18950: Disable or audit Reader View
  5445. * Bug 18886: Remove Pocket
  5446. * Bug 18619: Tor Browser reports "InvalidStateError" in browser console
  5447. * Bug 18945: Disable monitoring the connected state of Tor Browser users
  5448. * Bug 18855: Don't show error after add-on directory clean-up
  5449. * Bug 18885: Disable the option of logging TLS/SSL key material
  5450. * Bug 18770: SVGs should not show up on Page Info dialog when disabled
  5451. * Bug 18958: Spoof screen.orientation values
  5452. * Bug 19047: Disable Heartbeat prompts
  5453. * Bug 18914: Use English-only label in <isindex/> tags
  5454. * Bug 18996: Investigate server logging in esr45-based Tor Browser
  5455. * Bug 17790: Add unit tests for keyboard fingerprinting defenses
  5456. * Bug 18995: Regression test to ensure CacheStorage is disabled
  5457. * Bug 18912: Add automated tests for updater cert pinning
  5458. * Bug 16728: Add test cases for favicon isolation
  5459. * Bug 18976: Remove some FTE bridges
  5460. * OS X
  5461. * Bug 18951: HTTPS-E is missing after update
  5462. * Bug 18904: meek-http-helper profile not updated
  5463. * Bug 18928: Upgrade is not smooth (requires another restart)
  5464. * Linux
  5465. * Bug 19189: Backport for working around a linker (gold) bug
  5466. * Build System
  5467. * All PLatforms
  5468. * Bug 18333: Upgrade Go to 1.6.2
  5469. * Bug 18919: Remove unused keys and unused dependencies
  5470. * Bug 18291: Remove some uses of libfaketime
  5471. * Bug 18845: Make zip and tar helpers generate reproducible archives
  5472. Tor Browser 6.0.1 -- June 7 2016
  5473. * All Platforms
  5474. * Update Firefox to 45.2.0esr
  5475. * Bug 18884: Don't build the loop extension
  5476. * Bug 19187: Backport fix for crash related to popup menus
  5477. * Bug 19212: Fix crash related to network panel in developer tools
  5478. * Linux
  5479. * Bug 19189: Backport for working around a linker (gold) bug
  5480. Tor Browser 6.0 -- May 30 2016
  5481. * All Platforms
  5482. * Update Firefox to 45.1.1esr
  5483. * Update OpenSSL to 1.0.1t
  5484. * Update Torbutton to 1.9.5.4
  5485. * Bug 18466: Make Torbutton compatible with Firefox ESR 45
  5486. * Bug 18743: Pref to hide 'Sign in to Sync' button in hamburger menu
  5487. * Bug 18905: Hide unusable items from help menu
  5488. * Bug 16017: Allow users to more easily set a non-tor SSH proxy
  5489. * Bug 17599: Provide shortcuts for New Identity and New Circuit
  5490. * Translation updates
  5491. * Code clean-up
  5492. * Update Tor Launcher to 0.2.9.3
  5493. * Bug 13252: Do not store data in the application bundle
  5494. * Bug 18947: Tor Browser is not starting on OS X if put into /Applications
  5495. * Bug 11773: Setup wizard UI flow improvements
  5496. * Translation updates
  5497. * Update HTTPS-Everywhere to 5.1.9
  5498. * Update meek to 0.22 (tag 0.22-18371-3)
  5499. * Bug 18371: Symlinks are incompatible with Gatekeeper signing
  5500. * Bug 18904: Mac OS: meek-http-helper profile not updated
  5501. * Bug 15197 and child tickets: Rebase Tor Browser patches to ESR 45
  5502. * Bug 18900: Fix broken updater on Linux
  5503. * Bug 19121: The update.xml hash should get checked during update
  5504. * Bug 18042: Disable SHA1 certificate support
  5505. * Bug 18821: Disable libmdns support for desktop and mobile
  5506. * Bug 18848: Disable additional welcome URL shown on first start
  5507. * Bug 14970: Exempt our extensions from signing requirement
  5508. * Bug 16328: Disable MediaDevices.enumerateDevices
  5509. * Bug 16673: Disable HTTP Alternative-Services
  5510. * Bug 17167: Disable Mozilla's tracking protection
  5511. * Bug 18603: Disable performance-based WebGL fingerprinting option
  5512. * Bug 18738: Disable Selfsupport and Unified Telemetry
  5513. * Bug 18799: Disable Network Tickler
  5514. * Bug 18800: Remove DNS lookup in lockfile code
  5515. * Bug 18801: Disable dom.push preferences
  5516. * Bug 18802: Remove the JS-based Flash VM (Shumway)
  5517. * Bug 18863: Disable MozTCPSocket explicitly
  5518. * Bug 15640: Place Canvas MediaStream behind site permission
  5519. * Bug 16326: Verify cache isolation for Request and Fetch APIs
  5520. * Bug 18741: Fix OCSP and favicon isolation for ESR 45
  5521. * Bug 16998: Disable <link rel="preconnect"> for now
  5522. * Bug 18898: Exempt the meek extension from the signing requirement as well
  5523. * Bug 18899: Don't copy Torbutton, TorLauncher, etc. into meek profile
  5524. * Bug 18890: Test importScripts() for cache and network isolation
  5525. * Bug 18886: Hide pocket menu items when Pocket is disabled
  5526. * Bug 18703: Fix circuit isolation issues on Page Info dialog
  5527. * bug 19115: Tor Browser should not fall back to Bing as its search engine
  5528. * Bug 18915+19065: Use our search plugins in localized builds
  5529. * Bug 19176: Zip our language packs deterministically
  5530. * Bug 18811: Fix first-party isolation for blobs URLs in Workers
  5531. * Bug 18950: Disable or audit Reader View
  5532. * Bug 18886: Remove Pocket
  5533. * Bug 18619: Tor Browser reports "InvalidStateError" in browser console
  5534. * Bug 18945: Disable monitoring the connected state of Tor Browser users
  5535. * Bug 18855: Don't show error after add-on directory clean-up
  5536. * Bug 18885: Disable the option of logging TLS/SSL key material
  5537. * Bug 18770: SVGs should not show up on Page Info dialog when disabled
  5538. * Bug 18958: Spoof screen.orientation values
  5539. * Bug 19047: Disable Heartbeat prompts
  5540. * Bug 18914: Use English-only label in <isindex/> tags
  5541. * Bug 18996: Investigate server logging in esr45-based Tor Browser
  5542. * Bug 17790: Add unit tests for keyboard fingerprinting defenses
  5543. * Bug 18995: Regression test to ensure CacheStorage is disabled
  5544. * Bug 18912: Add automated tests for updater cert pinning
  5545. * Bug 16728: Add test cases for favicon isolation
  5546. * Bug 18976: Remove some FTE bridges
  5547. * Windows
  5548. * Bug 13419: Support ICU in Windows builds
  5549. * Bug 16874: Fix broken https://sports.yahoo.com/dailyfantasy page
  5550. * Bug 18767: Context menu is broken on Windows in ESR 45 based Tor Browser
  5551. * OS X
  5552. * Bug 6540: Support OS X Gatekeeper
  5553. * Bug 13252: Tor Browser should not store data in the application bundle
  5554. * Bug 18951: HTTPS-E is missing after update
  5555. * Bug 18904: meek-http-helper profile not updated
  5556. * Bug 18928: Upgrade is not smooth (requires another restart)
  5557. * Build System
  5558. * All Platforms
  5559. * Bug 18127: Add LXC support for building with Debian guest VMs
  5560. * Bug 16224: Don't use BUILD_HOSTNAME anymore in Firefox builds
  5561. * Bug 18919: Remove unused keys and unused dependencies
  5562. * Windows
  5563. * Bug 17895: Use NSIS 2.51 for installer to avoid DLL hijacking
  5564. * Bug 18290: Bump mingw-w64 commit we use
  5565. * OS X
  5566. * Bug 18331: Update toolchain for Firefox 45 ESR
  5567. * Bug 18690: Switch to Debian Wheezy guest VMs
  5568. * Linux
  5569. * Bug 18699: Stripping fails due to obsolete Browser/components directory
  5570. * Bug 18698: Include libgconf2-dev for our Linux builds
  5571. * Bug 15578: Switch to Debian Wheezy guest VMs (10.04 LTS is EOL)
  5572. Tor Browser 6.0a5-hardened -- April 28 2016
  5573. * All Platforms
  5574. * Update Firefox to 45.1.0esr
  5575. * Update Tor to 0.2.8.2-alpha
  5576. * Update Torbutton to 1.9.5.3
  5577. * Bug 18466: Make Torbutton compatible with Firefox ESR 45
  5578. * Translation updates
  5579. * Update Tor Launcher to 0.2.8.4
  5580. * Bug 13252: Do not store data in the application bundle
  5581. * Bug 10534: Don't advertise the help desk directly anymore
  5582. * Translation updates
  5583. * Update HTTPS-Everywhere to 5.1.6
  5584. * Update NoScript to 2.9.0.11
  5585. * Update meek to 0.22 (tag 0.22-18371-2)
  5586. * Bug 18371: Symlinks are incompatible with Gatekeeper signing
  5587. * Bug 15197 and child tickets: Rebase Tor Browser patches to ESR 45
  5588. * Bug 18900: Fix broken updater on Linux
  5589. * Bug 18042: Disable SHA1 certificate support
  5590. * Bug 18821: Disable libmdns support for desktop and mobile
  5591. * Bug 18848: Disable additional welcome URL shown on first start
  5592. * Bug 14970: Exempt our extensions from signing requirement
  5593. * Bug 16328: Disable MediaDevices.enumerateDevices
  5594. * Bug 16673: Disable HTTP Alternative-Services
  5595. * Bug 17167: Disable Mozilla's tracking protection
  5596. * Bug 18603: Disable performance-based WebGL fingerprinting option
  5597. * Bug 18738: Disable Selfsupport and Unified Telemetry
  5598. * Bug 18799: Disable Network Tickler
  5599. * Bug 18800: Remove DNS lookup in lockfile code
  5600. * Bug 18801: Disable dom.push preferences
  5601. * Bug 18802: Remove the JS-based Flash VM (Shumway)
  5602. * Bug 18863: Disable MozTCPSocket explicitly
  5603. * Bug 15640: Place Canvas MediaStream behind site permission
  5604. * Bug 16326: Verify cache isolation for Request and Fetch APIs
  5605. * Bug 18741: Fix OCSP and favicon isolation for ESR 45
  5606. * Bug 16998: Disable <link rel="preconnect"> for now
  5607. * Bug 17506: Reenable building hardened Tor Browser with startup cache
  5608. * Bug 18898: Exempt the meek extension from the signing requirement as well
  5609. * Bug 18899: Don't copy Torbutton, TorLauncher, etc. into meek profile
  5610. * Bug 18890: Test importScripts() for cache and network isolation
  5611. * Bug 18726: Add new default obfs4 bridge (GreenBelt)
  5612. * Build System
  5613. * Bug 16224: Don't use BUILD_HOSTNAME anymore in Firefox builds
  5614. * Bug 18699: Stripping fails due to obsolete Browser/components directory
  5615. * Bug 18698: Include libgconf2-dev for our Linux builds
  5616. Tor Browser 6.0a5 -- April 28 2016
  5617. * All Platforms
  5618. * Update Firefox to 45.1.0esr
  5619. * Update Tor to 0.2.8.2-alpha
  5620. * Update Torbutton to 1.9.5.3
  5621. * Bug 18466: Make Torbutton compatible with Firefox ESR 45
  5622. * Translation updates
  5623. * Update Tor Launcher to 0.2.9.1
  5624. * Bug 13252: Do not store data in the application bundle
  5625. * Bug 10534: Don't advertise the help desk directly anymore
  5626. * Translation updates
  5627. * Update HTTPS-Everywhere to 5.1.6
  5628. * Update NoScript to 2.9.0.11
  5629. * Update meek to 0.22 (tag 0.22-18371-2)
  5630. * Bug 18371: Symlinks are incompatible with Gatekeeper signing
  5631. * Bug 15197 and child tickets: Rebase Tor Browser patches to ESR 45
  5632. * Bug 18900: Fix broken updater on Linux
  5633. * Bug 18042: Disable SHA1 certificate support
  5634. * Bug 18821: Disable libmdns support for desktop and mobile
  5635. * Bug 18848: Disable additional welcome URL shown on first start
  5636. * Bug 14970: Exempt our extensions from signing requirement
  5637. * Bug 16328: Disable MediaDevices.enumerateDevices
  5638. * Bug 16673: Disable HTTP Alternative-Services
  5639. * Bug 17167: Disable Mozilla's tracking protection
  5640. * Bug 18603: Disable performance-based WebGL fingerprinting option
  5641. * Bug 18738: Disable Selfsupport and Unified Telemetry
  5642. * Bug 18799: Disable Network Tickler
  5643. * Bug 18800: Remove DNS lookup in lockfile code
  5644. * Bug 18801: Disable dom.push preferences
  5645. * Bug 18802: Remove the JS-based Flash VM (Shumway)
  5646. * Bug 18863: Disable MozTCPSocket explicitly
  5647. * Bug 15640: Place Canvas MediaStream behind site permission
  5648. * Bug 16326: Verify cache isolation for Request and Fetch APIs
  5649. * Bug 18741: Fix OCSP and favicon isolation for ESR 45
  5650. * Bug 16998: Disable <link rel="preconnect"> for now
  5651. * Bug 18898: Exempt the meek extension from the signing requirement as well
  5652. * Bug 18899: Don't copy Torbutton, TorLauncher, etc. into meek profile
  5653. * Bug 18890: Test importScripts() for cache and network isolation
  5654. * Bug 18726: Add new default obfs4 bridge (GreenBelt)
  5655. * Windows
  5656. * Bug 13419: Support ICU in Windows builds
  5657. * Bug 16874: Fix broken https://sports.yahoo.com/dailyfantasy page
  5658. * Bug 18767: Context menu is broken on Windows in ESR 45 based Tor Browser
  5659. * OS X
  5660. * Bug 6540: Support OS X Gatekeeper
  5661. * Bug 13252: Tor Browser should not store data in the application bundle
  5662. * Build System
  5663. * All Platforms
  5664. * Bug 18127: Add LXC support for building with Debian guest VMs
  5665. * Bug 16224: Don't use BUILD_HOSTNAME anymore in Firefox builds
  5666. * Windows
  5667. * Bug 17895: Use NSIS 2.51 for installer to avoid DLL hijacking
  5668. * Bug 18290: Bump mingw-w64 commit we use
  5669. * OS X
  5670. * Bug 18331: Update toolchain for Firefox 45 ESR
  5671. * Bug 18690: Switch to Debian Wheezy guest VMs
  5672. * Linux
  5673. * Bug 18699: Stripping fails due to obsolete Browser/components directory
  5674. * Bug 18698: Include libgconf2-dev for our Linux builds
  5675. Tor Browser 5.5.5 -- April 26 2016
  5676. * All Platforms
  5677. * Update Firefox to 38.8.0esr
  5678. * Update Tor Launcher to 0.2.7.9
  5679. * Bug 10534: Don't advertise the help desk directly anymore
  5680. * Translation updates
  5681. * Update HTTPS-Everywhere to 5.1.6
  5682. * Update NoScript to 2.9.0.11
  5683. * Bug 18726: Add new default obfs4 bridge (GreenBelt)
  5684. Tor Browser 6.0a4-hardened -- March 17 2016
  5685. * All Platforms
  5686. * Update Firefox to 38.7.1esr
  5687. * Update Torbutton to 1.9.5.2
  5688. * Bug 18557: Exempt Graphite from the Security Slider
  5689. * Bug 18536: Make Mosaddegh and MaBishomarim available on port 80 and 443
  5690. Tor Browser 6.0a4 -- March 17 2016
  5691. * All Platforms
  5692. * Update Firefox to 38.7.1esr
  5693. * Update Torbutton to 1.9.5.2
  5694. * Bug 18557: Exempt Graphite from the Security Slider
  5695. * Bug 18536: Make Mosaddegh and MaBishomarim available on port 80 and 443
  5696. Tor Browser 5.5.4 -- March 16 2016
  5697. * All Platforms
  5698. * Update Firefox to 38.7.1esr
  5699. * Update Torbutton to 1.9.4.5
  5700. * Bug 18557: Exempt Graphite from the Security Slider
  5701. * Bug 18536: Make Mosaddegh and MaBishomarim available on port 80 and 443
  5702. Tor Browser 6.0a3-hardened -- March 8 2016
  5703. * All Platforms
  5704. * Update Firefox to 38.7.0esr
  5705. * Update Tor to 0.2.8.1-alpha
  5706. * Update OpenSSL to 1.0.1s
  5707. * Update NoScript to 2.9.0.4
  5708. * Update HTTPS Everywhere to 5.1.4
  5709. * Update Torbutton to 1.9.5.1
  5710. * Bug 16990: Don't mishandle multiline commands
  5711. * Bug 18144: about:tor update arrow position is wrong
  5712. * Bug 16725: Allow resizing with non-default homepage
  5713. * Bug 16917: Allow users to more easily set a non-tor SSH proxy
  5714. * Translation updates
  5715. * Bug 18030: Isolate favicon requests on Page Info dialog
  5716. * Bug 18297: Use separate Noto JP,KR,SC,TC fonts
  5717. * Bug 18170: Make sure the homepage is shown after an update as well
  5718. * Bug 16728: Add test cases for favicon isolation
  5719. * Windows
  5720. * Bug 18292: Disable staged updates on Windows
  5721. Tor Browser 6.0a3 -- March 8 2016
  5722. * All Platforms
  5723. * Update Firefox to 38.7.0esr
  5724. * Update Tor to 0.2.8.1-alpha
  5725. * Update OpenSSL to 1.0.1s
  5726. * Update NoScript to 2.9.0.4
  5727. * Update HTTPS Everywhere to 5.1.4
  5728. * Update Torbutton to 1.9.5.1
  5729. * Bug 16990: Don't mishandle multiline commands
  5730. * Bug 18144: about:tor update arrow position is wrong
  5731. * Bug 16725: Allow resizing with non-default homepage
  5732. * Bug 16917: Allow users to more easily set a non-tor SSH proxy
  5733. * Translation updates
  5734. * Bug 18030: Isolate favicon requests on Page Info dialog
  5735. * Bug 18297: Use separate Noto JP,KR,SC,TC fonts
  5736. * Bug 18170: Make sure the homepage is shown after an update as well
  5737. * Bug 16728: Add test cases for favicon isolation
  5738. * Windows
  5739. * Bug 18292: Disable staged updates on Windows
  5740. Tor Browser 5.5.3 -- March 8 2016
  5741. * All Platforms
  5742. * Update Firefox to 38.7.0esr
  5743. * Update OpenSSL to 1.0.1s
  5744. * Update NoScript to 2.9.0.4
  5745. * Update HTTPS Everywhere to 5.1.4
  5746. * Update Torbutton to 1.9.4.4
  5747. * Bug 16990: Don't mishandle multiline commands
  5748. * Bug 18144: about:tor update arrow position is wrong
  5749. * Bug 16725: Allow resizing with non-default homepage
  5750. * Translation updates
  5751. * Bug 18030: Isolate favicon requests on Page Info dialog
  5752. * Bug 18297: Use separate Noto JP,KR,SC,TC fonts
  5753. * Bug 18170: Make sure the homepage is shown after an update as well
  5754. * Windows
  5755. * Bug 18292: Disable staged updates on Windows
  5756. Tor Browser 6.0a2-hardened -- February 15 2016
  5757. * All Platforms
  5758. * Update Firefox to 38.6.1esr
  5759. * Update NoScript to 2.9.0.3
  5760. * Bug 18168: Don't clear an iframe's window.name (fix of #16620)
  5761. * Bug 18137: Add two new obfs4 default bridges
  5762. * Windows
  5763. * Bug 18169: Whitelist zh-CN UI font
  5764. * OSX
  5765. * Bug 18172: Add Emoji support
  5766. * Linux
  5767. * Bug 18172: Add Emoji support
  5768. * Build System
  5769. * Linux
  5770. * Bug 15578: Switch to Debian Wheezy guest VMs (10.04 LTS is EOL)
  5771. * Bug 18198: Building the hardened Tor Browser in a Debian Wheezy VM is broken
  5772. Tor Browser 6.0a2 -- February 15 2016
  5773. * All Platforms
  5774. * Update Firefox to 38.6.1esr
  5775. * Update NoScript to 2.9.0.3
  5776. * Bug 18168: Don't clear an iframe's window.name (fix of #16620)
  5777. * Bug 18137: Add two new obfs4 default bridges
  5778. * Windows
  5779. * Bug 18169: Whitelist zh-CN UI font
  5780. * OSX
  5781. * Bug 18172: Add Emoji support
  5782. * Linux
  5783. * Bug 18172: Add Emoji support
  5784. Tor Browser 5.5.2 -- February 12 2016
  5785. * All Platforms
  5786. * Update Firefox to 38.6.1esr
  5787. * Update NoScript to 2.9.0.3
  5788. Tor Browser 5.5.1 -- February 4 2016
  5789. * All Platforms
  5790. * Bug 18168: Don't clear an iframe's window.name (fix of #16620)
  5791. * Bug 18137: Add two new obfs4 default bridges
  5792. * Windows
  5793. * Bug 18169: Whitelist zh-CN UI font
  5794. * OS X
  5795. * Bug 18172: Add Emoji support
  5796. * Linux
  5797. * Bug 18172: Add Emoji support
  5798. Tor Browser 6.0a1-hardened -- January 27 2016
  5799. * All Platforms
  5800. * Update Firefox to 38.6.0esr
  5801. * Update NoScript to 2.9.0.2
  5802. * Update Torbutton to 1.9.5
  5803. * Bug 16990: Show circuit display for connections using multi-party channels
  5804. * Bug 18019: Avoid empty prompt shown after non-en-US update
  5805. * Bug 18004: Remove Tor fundraising donation banner
  5806. * Code cleanup
  5807. * Translation updates
  5808. * Update Tor Launcher to 0.2.8.3
  5809. * Bug 18113: Randomly permutate available default bridges of chosen type
  5810. * Bug 11773: Setup wizard UI flow improvements
  5811. * Translation updates
  5812. * Bug 17428: Remove Flashproxy
  5813. * Bug 18115+18104+18071+18091: Update/add new obfs4 bridge
  5814. * Bug 18072: Change recommended pluggable transport type to obfs4
  5815. * Bug 18008: Create a new MAR Signing key and bake it into Tor Browser
  5816. * Bug 16322: Use onion address for DuckDuckGo search engine
  5817. * Bug 17917: Changelog after update is empty if JS is disabled
  5818. * Bug 17790: Map the proper SHIFT characters to the digit keys (fix of #15646)
  5819. Tor Browser 6.0a1 -- January 27 2016
  5820. * All Platforms
  5821. * Update Firefox to 38.6.0esr
  5822. * Update NoScript to 2.9.0.2
  5823. * Update Torbutton to 1.9.5
  5824. * Bug 16990: Show circuit display for connections using multi-party channels
  5825. * Bug 18019: Avoid empty prompt shown after non-en-US update
  5826. * Bug 18004: Remove Tor fundraising donation banner
  5827. * Code cleanup
  5828. * Translation updates
  5829. * Update Tor Launcher to 0.2.9
  5830. * Bug 18113: Randomly permutate available default bridges of chosen type
  5831. * Bug 11773: Setup wizard UI flow improvements
  5832. * Translation updates
  5833. * Bug 17428: Remove Flashproxy
  5834. * Bug 18115+18104+18071+18091: Update/add new obfs4 bridge
  5835. * Bug 18072: Change recommended pluggable transport type to obfs4
  5836. * Bug 18008: Create a new MAR Signing key and bake it into Tor Browser
  5837. * Bug 16322: Use onion address for DuckDuckGo search engine
  5838. * Bug 17917: Changelog after update is empty if JS is disabled
  5839. * Bug 17790: Map the proper SHIFT characters to the digit keys (fix of #15646)
  5840. * Build System
  5841. * Linux
  5842. * Bug 15578: Switch to Debian Wheezy guest VMs (10.04 LTS is EOL)
  5843. Tor Browser 5.5 -- January 26 2016
  5844. * All Platforms
  5845. * Update Firefox to 38.6.0esr
  5846. * Update libevent to 2.0.22-stable
  5847. * Update NoScript to 2.9.0.2
  5848. * Update Torbutton to 1.9.4.3
  5849. * Bug 16990: Show circuit display for connections using multi-party channels
  5850. * Bug 18019: Avoid empty prompt shown after non-en-US update
  5851. * Bug 18004: Remove Tor fundraising donation banner
  5852. * Bug 16940: After update, load local change notes
  5853. * Bug 17108: Polish about:tor appearance
  5854. * Bug 17568: Clean up tor-control-port.js
  5855. * Bug 16620: Move window.name handling into a Firefox patch
  5856. * Bug 17351: Code cleanup
  5857. * Translation updates
  5858. * Update Tor Launcher to 0.2.7.8
  5859. * Bug 18113: Randomly permutate available default bridges of chosen type
  5860. * Bug 13313: Bundle a fixed set of fonts to defend against fingerprinting
  5861. * Bug 10140: Add new Tor Browser locale (Japanese)
  5862. * Bug 17428: Remove Flashproxy
  5863. * Bug 13512: Load a static tab with change notes after an update
  5864. * Bug 9659: Avoid loop due to optimistic data SOCKS code (fix of #3875)
  5865. * Bug 15564: Isolate SharedWorkers by first-party domain
  5866. * Bug 16940: After update, load local change notes
  5867. * Bug 17759: Apply whitelist to local fonts in @font-face (fix of #13313)
  5868. * Bug 17009: Shift and Alt keys leak physical keyboard layout (fix of #15646)
  5869. * Bug 17790: Map the proper SHIFT characters to the digit keys (fix of #15646)
  5870. * Bug 17369: Disable RC4 fallback
  5871. * Bug 17442: Remove custom updater certificate pinning
  5872. * Bug 16620: Move window.name handling into a Firefox patch
  5873. * Bug 17220: Support math symbols in font whitelist
  5874. * Bug 10599+17305: Include updater and build patches needed for hardened builds
  5875. * Bug 18115+18104+18071+18091: Update/add new obfs4 bridge
  5876. * Bug 18072: Change recommended pluggable transport type to obfs4
  5877. * Bug 18008: Create a new MAR Signing key and bake it into Tor Browser
  5878. * Bug 16322: Use onion address for DuckDuckGo search engine
  5879. * Bug 17917: Changelog after update is empty if JS is disabled
  5880. * Windows
  5881. * Bug 17250: Add localized font names to font whitelist
  5882. * Bug 16707: Allow more system fonts to get used on Windows
  5883. * Bug 13819: Ship expert bundles with console enabled
  5884. * Bug 17250: Fix broken Japanese fonts
  5885. * Bug 17870: Add intermediate certificate for authenticode signing
  5886. * OS X
  5887. * Bug 17122: Rename Japanese OS X bundle
  5888. * Bug 16707: Allow more system fonts to get used on OS X
  5889. * Bug 17661: Whitelist font .Helvetica Neue DeskInterface
  5890. * Linux
  5891. * Bug 16672: Don't use font whitelisting for Linux users
  5892. Tor Browser 5.5a6-hardened -- January 7 2016
  5893. * All Platforms
  5894. * Update NoScript to 2.9
  5895. * Update HTTPS Everywhere to 5.1.2
  5896. * Bug 17931: Tor Browser crashes in LogMessageToConsole()
  5897. * Bug 17875: Discourage editing of torrc-defaults
  5898. Tor Browser 5.5a6 -- January 7 2016
  5899. * All Platforms
  5900. * Update NoScript to 2.9
  5901. * Update HTTPS Everywhere to 5.1.2
  5902. * Bug 17931: Tor Browser crashes in LogMessageToConsole()
  5903. * Bug 17875: Discourage editing of torrc-defaults
  5904. * Bug 17870: Add intermediate certificate for authenticode signing
  5905. Tor Browser 5.0.7 -- January 7 2016
  5906. * All Platforms
  5907. * Update NoScript to 2.9
  5908. * Update HTTPS Everywhere to 5.1.2
  5909. * Bug 17931: Tor Browser crashes in LogMessageToConsole()
  5910. * Bug 17875: Discourage editing of torrc-defaults
  5911. Tor Browser 5.5a5-hardened -- December 18 2015
  5912. * All Platforms
  5913. * Update Firefox to 38.5.0esr
  5914. * Update Tor to 0.2.7.6
  5915. * Update OpenSSL to 1.0.1q
  5916. * Update NoScript to 2.7
  5917. * Update Torbutton to 1.9.4.2
  5918. * Bug 16940: After update, load local change notes
  5919. * Bug 16990: Avoid matching '250 ' to the end of node name
  5920. * Bug 17565: Tor fundraising campaign donation banner
  5921. * Bug 17770: Fix alignments on donation banner
  5922. * Bug 17792: Include donation banner in some non en-US Tor Browsers
  5923. * Bug 17108: Polish about:tor appearance
  5924. * Bug 17568: Clean up tor-control-port.js
  5925. * Translation updates
  5926. * Update Tor Launcher to 0.2.8.1
  5927. * Bug 17344: Enumerate available language packs for language prompt
  5928. * Code clean-up
  5929. * Translation updates
  5930. * Bug 12516: Compile Tor Browser with -fwrapv
  5931. * Bug 9659: Avoid loop due to optimistic data SOCKS code (fix of #3875)
  5932. * Bug 15564: Isolate SharedWorkers by first-party domain
  5933. * Bug 16940: After update, load local change notes
  5934. * Bug 17759: Apply whitelist to local fonts in @font-face (fix of #13313)
  5935. * Bug 17747: Add ndnop3 as new default obfs4 bridge
  5936. * Bug 17009: Shift and Alt keys leak physical keyboard layout (fix of #15646)
  5937. * Bug 17369: Disable RC4 fallback
  5938. * Bug 17442: Remove custom updater certificate pinning
  5939. * Bug 16863: Avoid confusing error when loop.enabled is false
  5940. * Bug 17502: Add a preference for hiding "Open with" on download dialog
  5941. * Bug 17446: Prevent canvas extraction by third parties (fixup of #6253)
  5942. * Bug 16441: Suppress "Reset Tor Browser" prompt
  5943. Tor Browser 5.5a5 -- December 18 2015
  5944. * All Platforms
  5945. * Update Firefox to 38.5.0esr
  5946. * Update Tor to 0.2.7.6
  5947. * Update OpenSSL to 1.0.1q
  5948. * Update NoScript to 2.7
  5949. * Update Torbutton to 1.9.4.2
  5950. * Bug 16940: After update, load local change notes
  5951. * Bug 16990: Avoid matching '250 ' to the end of node name
  5952. * Bug 17565: Tor fundraising campaign donation banner
  5953. * Bug 17770: Fix alignments on donation banner
  5954. * Bug 17792: Include donation banner in some non en-US Tor Browsers
  5955. * Bug 17108: Polish about:tor appearance
  5956. * Bug 17568: Clean up tor-control-port.js
  5957. * Translation updates
  5958. * Bug 9659: Avoid loop due to optimistic data SOCKS code (fix of #3875)
  5959. * Bug 15564: Isolate SharedWorkers by first-party domain
  5960. * Bug 16940: After update, load local change notes
  5961. * Bug 17759: Apply whitelist to local fonts in @font-face (fix of #13313)
  5962. * Bug 17747: Add ndnop3 as new default obfs4 bridge
  5963. * Bug 17009: Shift and Alt keys leak physical keyboard layout (fix of #15646)
  5964. * Bug 17369: Disable RC4 fallback
  5965. * Bug 17442: Remove custom updater certificate pinning
  5966. * Bug 16863: Avoid confusing error when loop.enabled is false
  5967. * Bug 17502: Add a preference for hiding "Open with" on download dialog
  5968. * Bug 17446: Prevent canvas extraction by third parties (fixup of #6253)
  5969. * Bug 16441: Suppress "Reset Tor Browser" prompt
  5970. * Windows
  5971. * Bug 13819: Ship expert bundles with console enabled
  5972. * Bug 17250: Fix broken Japanese fonts
  5973. * OS X
  5974. * Bug 17661: Whitelist font .Helvetica Neue DeskInterface
  5975. Tor Browser 5.0.6 -- December 18 2015
  5976. * All Platforms
  5977. * Bug 17877: Tor Browser 5.0.5 is using the wrong Mozilla build tag
  5978. Tor Browser 5.0.5 -- December 15 2015
  5979. * All Platforms
  5980. * Update Firefox to 38.5.0esr
  5981. * Update Tor to 0.2.7.6
  5982. * Update OpenSSL to 1.0.1q
  5983. * Update NoScript to 2.7
  5984. * Update HTTPS Everywhere to 5.1.1
  5985. * Update Torbutton to 1.9.3.7
  5986. * Bug 16990: Avoid matching '250 ' to the end of node name
  5987. * Bug 17565: Tor fundraising campaign donation banner
  5988. * Bug 17770: Fix alignments on donation banner
  5989. * Bug 17792: Include donation banner in some non en-US Tor Browsers
  5990. * Translation updates
  5991. * Bug 17207: Hide MIME types and plugins from websites
  5992. * Bug 16909+17383: Adapt to HTTPS-Everywhere build changes
  5993. * Bug 16863: Avoid confusing error when loop.enabled is false
  5994. * Bug 17502: Add a preference for hiding "Open with" on download dialog
  5995. * Bug 17446: Prevent canvas extraction by third parties (fixup of #6253)
  5996. * Bug 16441: Suppress "Reset Tor Browser" prompt
  5997. * Bug 17747: Add ndnop3 as new default obfs4 bridge
  5998. Tor Browser 5.5a4 -- November 3 2015
  5999. * All Platforms
  6000. * Update Firefox to 38.4.0esr
  6001. * Update Tor to 0.2.7.4-rc
  6002. * Update NoScript to 2.6.9.39
  6003. * Update HTTPS-Everywhere to 5.1.1
  6004. * Update Torbutton to 1.9.4.1
  6005. * Bug 9623: Spoof Referer when leaving a .onion domain
  6006. * Bug 16620: Remove old window.name handling code
  6007. * Bug 17164: Don't show text-select cursor on circuit display
  6008. * Bug 17351: Remove unused code
  6009. * Translation updates
  6010. * Bug 17207: Hide MIME types and plugins from websites
  6011. * Bug 16909+17383: Adapt to HTTPS-Everywhere build changes
  6012. * Bug 16620: Move window.name handling into a Firefox patch
  6013. * Bug 17220: Support math symbols in font whitelist
  6014. * Bug 10599+17305: Include updater and build patches needed for hardened builds
  6015. * Bug 17318: Remove dead ScrambleSuit bridge
  6016. * Bug 17428: Remove default Flashproxy bridges
  6017. * Bug 17473: Update meek-amazon fingerprint
  6018. * Windows
  6019. * Bug 17250: Add localized font names to font whitelist
  6020. * OS X
  6021. * Bug 17122: Rename Japanese OS X bundle
  6022. * Linux
  6023. * Bug 17329: Ensure that non-ASCII characters can be typed (fixup of #5926)
  6024. Tor Browser 5.0.4 -- November 3 2015
  6025. * All Platforms
  6026. * Update Firefox to 38.4.0esr
  6027. * Update NoScript to 2.6.9.39
  6028. * Update Torbutton to 1.9.3.5
  6029. * Bug 9623: Spoof Referer when leaving a .onion domain
  6030. * Bug 16735: about:tor should accommodate different fonts/font sizes
  6031. * Bug 16937: Don't translate the homepage/spellchecker dictionary string
  6032. * Bug 17164: Don't show text-select cursor on circuit display
  6033. * Bug 17351: Remove unused code
  6034. * Translation updates
  6035. * Bug 16937: Remove the en-US dictionary from non en-US Tor Browser bundles
  6036. * Bug 17318: Remove dead ScrambleSuit bridge
  6037. * Bug 17473: Update meek-amazon fingerprint
  6038. * Bug 16983: Isolate favicon requests caused by the tab list dropdown
  6039. * Bug 17102: Don't crash while opening a second Tor Browser
  6040. * Windows:
  6041. * Bug 16906: Don't depend on Windows crypto DLLs
  6042. * Linux:
  6043. * Bug 17329: Ensure that non-ASCII characters can be typed (fixup of #5926)
  6044. Tor Browser 5.5a3 -- September 22 2015
  6045. * All Platforms
  6046. * Update Firefox to 38.3.0esr
  6047. * Update libevent to 2.0.22-stable
  6048. * Update Torbutton to 1.9.4
  6049. * Bug 16937: Don't translate the homepage/spellchecker dictionary string
  6050. * Bug 16735: about:tor should accommodate different fonts/font sizes
  6051. * Bug 16887: Update intl.accept_languages value
  6052. * Bug 15493: Update circuit display on new circuit info
  6053. * Bug 16797: brandShorterName is missing from brand.properties
  6054. * Translation updates
  6055. * Bug 10140: Add new Tor Browser locale (Japanese)
  6056. * Bug 17102: Don't crash while opening a second Tor Browser
  6057. * Bug 16983: Isolate favicon requests caused by the tab list dropdown
  6058. * Bug 13512: Load a static tab with change notes after an update
  6059. * Bug 16937: Remove the en-US dictionary from non en-US Tor Browser bundles
  6060. * Bug 7446: Tor Browser should not "fix up" .onion domains (or any domains)
  6061. * Bug 16837: Disable Firefox Hotfix updates
  6062. * Bug 16855: Allow blobs to be downloaded on first-party pages (fixes mega.nz)
  6063. * Bug 16781: Allow saving pdf files in built-in pdf viewer
  6064. * Bug 16842: Restore Media tab on Page information dialog
  6065. * Bug 16727: Disable about:healthreport page
  6066. * Bug 16783: Normalize NoScript default whitelist
  6067. * Bug 16775: Fix preferences dialog with security slider set to "High"
  6068. * Bug 13579: Update download progress bar automatically
  6069. * Bug 15646: Reduce keyboard layout fingerprinting in KeyboardEvent
  6070. * Bug 17046: Event.timeStamp should not reveal startup time
  6071. * Bug 16872: Fix warnings when opening about:downloads
  6072. * Bug 17097: Fix intermittent crashes when using the print dialog
  6073. * Windows
  6074. * Bug 16906: Fix Mingw-w64 compilation/Don't depend on Windows crypto DLLs
  6075. * Bug 16707: Allow more system fonts to get used on Windows
  6076. * OS X
  6077. * Bug 16910: Update copyright year in OS X bundles
  6078. * Bug 16707: Allow more system fonts to get used on OS X
  6079. * Linux
  6080. * Bug 16672: Don't use font whitelisting for Linux users
  6081. Tor Browser 5.0.3 -- September 22 2015
  6082. * All Platforms
  6083. * Update Firefox to 38.3.0esr
  6084. * Update Torbutton to 1.9.3.4
  6085. * Bug 16887: Update intl.accept_languages value
  6086. * Bug 15493: Update circuit display on new circuit info
  6087. * Bug 16797: brandShorterName is missing from brand.properties
  6088. * Bug 14429: Make sure the automatic resizing is disabled
  6089. * Translation updates
  6090. * Bug 7446: Tor Browser should not "fix up" .onion domains (or any domains)
  6091. * Bug 16837: Disable Firefox Hotfix updates
  6092. * Bug 16855: Allow blobs to be downloaded on first-party pages (fixes mega.nz)
  6093. * Bug 16781: Allow saving pdf files in built-in pdf viewer
  6094. * Bug 16842: Restore Media tab on Page information dialog
  6095. * Bug 16727: Disable about:healthreport page
  6096. * Bug 16783: Normalize NoScript default whitelist
  6097. * Bug 16775: Fix preferences dialog with security slider set to "High"
  6098. * Bug 13579: Update download progress bar automatically
  6099. * Bug 15646: Reduce keyboard layout fingerprinting in KeyboardEvent
  6100. * Bug 17046: Event.timeStamp should not reveal startup time
  6101. * Bug 16872: Fix warnings when opening about:downloads
  6102. * Bug 17097: Fix intermittent crashes when using the print dialog
  6103. * Windows
  6104. * Bug 16906: Fix Mingw-w64 compilation breakage
  6105. * OS X
  6106. * Bug 16910: Update copyright year in OS X bundles
  6107. Tor Browser 5.5a2 -- August 28 2015
  6108. * All Platforms:
  6109. * Update Firefox to 38.2.1esr
  6110. * Update NoScript to 2.6.9.36
  6111. * Bug 16771: Fix crash on some websites due to blob URIs
  6112. * Linux
  6113. * Bug 16860: Avoid duplicate desktop icons on Gnome and Unity
  6114. Tor Browser 5.0.2 -- August 27 2015
  6115. * All Platforms
  6116. * Update Firefox to 38.2.1esr
  6117. * Update NoScript to 2.6.9.36
  6118. * Linux
  6119. * Bug 16860: Avoid duplicate icons on Unity and Gnome
  6120. Tor Browser 5.0.1 -- August 18 2015
  6121. * All Platforms
  6122. * Bug 16771: Fix crash on some websites due to blob URIs
  6123. Tor Browser 5.5a1 -- August 11 2015
  6124. * All Platforms
  6125. * Update Firefox to 38.2.0esr
  6126. * Update NoScript to 2.6.9.34
  6127. * Update Torbutton to 1.9.3.3
  6128. * Bug 16731: TBB 5.0 a3/a4 fails to download a file on right click
  6129. * Bug 16730: Reset NoScript whitelist on upgrade
  6130. * Bug 16722: Prevent "Tiles" feature from being enabled after upgrade
  6131. * Bug 16488: Remove "Sign in to Sync" from the browser menu (fixup)
  6132. * Bug 14429: Make sure the automatic resizing is enabled
  6133. * Translation updates
  6134. * Update Tor Launcher to 0.2.7.7
  6135. * Translation updates
  6136. * Bug 16730: Prevent NoScript from updating the default whitelist
  6137. * Bug 16715: Use ThreadsafeIsCallerChrome() instead of IsCallerChrome()
  6138. * Bug 16572: Verify cache isolation for XMLHttpRequests in Web Workers
  6139. * Bug 16311: Fix navigation timing in ESR 38
  6140. * Bug 15646: Prevent keyboard layout fingerprinting in KeyboardEvent (fixup)
  6141. * Bug 16672: Change font whitelists and configs for rendering issues (partial)
  6142. Tor Browser 5.0 -- August 11 2015
  6143. * All Platforms
  6144. * Update Firefox to 38.2.0esr
  6145. * Update OpenSSL to 1.0.1p
  6146. * Update HTTPS-Everywhere to 5.0.7
  6147. * Update NoScript to 2.6.9.34
  6148. * Update meek to 0.20
  6149. * Update Tor to 0.2.6.10 with patches:
  6150. * Bug 16674: Allow FQDNs ending with a single '.' in our SOCKS host name checks.
  6151. * Bug 16430: Allow DNS names with _ characters in them (fixes nytimes.com)
  6152. * Bug 15482: Don't allow circuits to change while a site is in use
  6153. * Update Torbutton to 1.9.3.2
  6154. * Bug 16731: TBB 5.0 a3/a4 fails to download a file on right click
  6155. * Bug 16730: Reset NoScript whitelist on upgrade
  6156. * Bug 16722: Prevent "Tiles" feature from being enabled after upgrade
  6157. * Bug 16488: Remove "Sign in to Sync" from the browser menu (fixup)
  6158. * Bug 16268: Show Tor Browser logo on About page
  6159. * Bug 16639: Check for Updates menu item can cause update download failure
  6160. * Bug 15781: Remove the sessionstore filter
  6161. * Bug 15656: Sync privacy.resistFingerprinting with Torbutton pref
  6162. * Bug 16427: Use internal update URL to block updates (instead of 127.0.0.1)
  6163. * Bug 16200: Update Cache API usage and prefs for FF38
  6164. * Bug 16357: Use Mozilla API to wipe permissions db
  6165. * Bug 14429: Make sure the automatic resizing is disabled
  6166. * Translation updates
  6167. * Update Tor Launcher to 0.2.7.7
  6168. * Bug 16428: Use internal update URL to block updates (instead of 127.0.0.1)
  6169. * Bug 15145: Visually distinguish "proxy" and "bridge" screens.
  6170. * Translation updates
  6171. * Bug 16730: Prevent NoScript from updating the default whitelist
  6172. * Bug 16715: Use ThreadsafeIsCallerChrome() instead of IsCallerChrome()
  6173. * Bug 16572: Verify cache isolation for XMLHttpRequests in Web Workers
  6174. * Bug 16884: Prefer IPv6 when supported by the current Tor exit
  6175. * Bug 16488: Remove "Sign in to Sync" from the browser menu
  6176. * Bug 16662: Enable network.http.spdy.* prefs in meek-http-helper
  6177. * Bug 15703: Isolate mediasource URIs and media streams to first party
  6178. * Bug 16429+16416: Isolate blob URIs to first party
  6179. * Bug 16632: Turn on the background updater and restart prompting
  6180. * Bug 16528: Prevent indexedDB Modernizr site breakage on Twitter and elsewhere
  6181. * Bug 16523: Fix in-browser JavaScript debugger
  6182. * Bug 16236: Windows updater: avoid writing to the registry
  6183. * Bug 16625: Fully disable network connection prediction
  6184. * Bug 16495: Fix SVG crash when security level is set to "High"
  6185. * Bug 13247: Fix meek profile error after bowser restarts
  6186. * Bug 16005: Relax WebGL minimal mode
  6187. * Bug 16300: Isolate Broadcast Channels to first party
  6188. * Bug 16439: Remove Roku screencasting code
  6189. * Bug 16285: Disabling EME bits
  6190. * Bug 16206: Enforce certificate pinning
  6191. * Bug 15910: Disable Gecko Media Plugins for now
  6192. * Bug 13670: Isolate OCSP requests by first party domain
  6193. * Bug 16448: Isolate favicon requests by first party
  6194. * Bug 7561: Disable FTP request caching
  6195. * Bug 6503: Fix single-word URL bar searching
  6196. * Bug 15526: ES6 page crashes Tor Browser
  6197. * Bug 16254: Disable GeoIP-based search results.
  6198. * Bug 16222: Disable WebIDE to prevent remote debugging and addon downloads.
  6199. * Bug 13024: Disable DOM Resource Timing API
  6200. * Bug 16340: Disable User Timing API
  6201. * Bug 14952: Disable HTTP/2
  6202. * Bug 1517: Reduce precision of time for Javascript
  6203. * Bug 13670: Ensure OCSP & favicons respect URL bar domain isolation
  6204. * Bug 16311: Fix navigation timing in ESR 38
  6205. * Windows
  6206. * Bug 16014: Staged update fails if meek is enabled
  6207. * Bug 16269: repeated add-on compatibility check after update (meek enabled)
  6208. * Mac OS
  6209. * Use OSX 10.7 SDK
  6210. * Bug 16253: Tor Browser menu on OS X is broken with ESR 38
  6211. * Bug 15773: Enable ICU on OS X
  6212. * Build System
  6213. * Bug 16351: Upgrade our toolchain to use GCC 5.1
  6214. * Bug 15772 and child tickets: Update build system for Firefox 38
  6215. * Bugs 15921+15922: Fix build errors during Mozilla Tryserver builds
  6216. * Bug 15864: rename sha256sums.txt to sha256sums-unsigned-build.txt
  6217. Tor Browser 5.0a4 -- August 3 2015
  6218. * All Platforms
  6219. * Update Tor to 0.2.7.2-alpha with patches:
  6220. * Bug 15482: Don't allow circuits to change while a site is in use
  6221. * Update OpenSSL to 1.0.1p
  6222. * Update HTTPS-Everywhere to 5.0.7
  6223. * Update NoScript to 2.6.9.31
  6224. * Update Torbutton to 1.9.3.1
  6225. * Bug 16268: Show Tor Browser logo on About page
  6226. * Bug 16639: Check for Updates menu item can cause update download failure
  6227. * Bug 15781: Remove the sessionstore filter
  6228. * Bug 15656: Sync privacy.resistFingerprinting with Torbutton pref
  6229. * Translation updates
  6230. * Bug 16884: Prefer IPv6 when supported by the current Tor exit
  6231. * Bug 16488: Remove "Sign in to Sync" from the browser menu
  6232. * Bug 13313: Bundle a fixed set of fonts to defend against fingerprinting
  6233. * Bug 16662: Enable network.http.spdy.* prefs in meek-http-helper
  6234. * Bug 15646: Prevent keyboard layout fingerprinting in KeyboardEvent (fixup)
  6235. * Bug 15703: Isolate mediasource URIs and media streams to first party
  6236. * Bug 16429+16416: Isolate blob URIs to first party
  6237. * Bug 16632: Turn on the background updater and restart prompting
  6238. * Bug 16528: Prevent indexedDB Modernizr site breakage on Twitter and elsewhere
  6239. * Bug 16523: Fix in-browser JavaScript debugger
  6240. * Bug 16236: Windows updater: avoid writing to the registry
  6241. * Bug 16005: Restrict WebGL minimal mode a bit (fixup)
  6242. * Bug 16625: Fully disable network connection prediction
  6243. * Bug 16495: Fix SVG crash when security level is set to "High"
  6244. * Build System
  6245. * Bug 15864: rename sha256sums.txt to sha256sums-unsigned-build.txt
  6246. Tor Browser 5.0a3 -- June 30 2015
  6247. * All Platforms
  6248. * Update Firefox to 38.1.0esr
  6249. * Update OpenSSL to 1.0.1o
  6250. * Update NoScript to 2.6.9.27
  6251. * Update meek to 0.20
  6252. * Tor patch backport
  6253. * Bug 16430: Allow DNS names with _ characters in them (fixes nytimes.com)
  6254. * Update Torbutton to 1.9.3.0
  6255. * Bug 16403: Set search parameters for Disconnect
  6256. * Bug 14429: Make sure the automatic resizing is disabled
  6257. * Bug 16427: Use internal update URL to block updates (instead of 127.0.0.1)
  6258. * Bug 16200: Update Cache API usage and prefs for FF38
  6259. * Bug 16357: Use Mozilla API to wipe permissions db
  6260. * Translation updates
  6261. * Update Tor Launcher to 0.2.7.6
  6262. * Bug 16428: Use internal update URL to block updates (instead of 127.0.0.1)
  6263. * Bug 15145: Visually distinguish "proxy" and "bridge" screens.
  6264. * Translation updates
  6265. * Bug 13247: Fix meek profile error after bowser restarts
  6266. * Bug 16397: Fix crash related to disabling SVG
  6267. * Bug 16403: Set search parameters for Disconnect
  6268. * Bug 16446: Update FTE bridge #1 fingerprint
  6269. * Bug 15646: Prevent keyboard layout fingerprinting in KeyboardEvent
  6270. * Bug 16005: Relax WebGL minimal mode
  6271. * Bug 16300: Isolate Broadcast Channels to first party
  6272. * Bug 16439: Remove Roku screencasting code
  6273. * Bug 16285: Disabling EME bits
  6274. * Bug 16206: Enforce certificate pinning
  6275. * Bug 15910: Disable GMPs for now
  6276. * Bug 13670: Isolate OCSP requests by first party domain
  6277. * Bug 16448: Isolate favicon requests by first party
  6278. * Bug 7561: Disable FTP request caching
  6279. * Bug 6503: Fix single-word URL bar searching
  6280. * Bug 15526: ES6 page crashes Tor Browser
  6281. * Bug 16254: Disable GeoIP-based search results.
  6282. * Bug 16222: Disable WebIDE to prevent remote debugging and addon downloads.
  6283. * Bug 13024: Disable DOM Resource Timing API
  6284. * Bug 16340: Disable User Timing API
  6285. * Bug 14952: Disable HTTP/2
  6286. * Mac OS
  6287. * Use OSX 10.7 SDK
  6288. * Bug 16253: Tor Browser menu on OS X is broken with ESR 38
  6289. * Build System
  6290. * Bug 16351: Upgrade our toolchain to use GCC 5.1
  6291. * Bug 15772 and child tickets: Update build system for Firefox 38
  6292. Tor Browser 4.5.3 -- June 30 2015
  6293. * All Platforms
  6294. * Update Firefox to 31.8.0esr
  6295. * Update OpenSSL to 1.0.1o
  6296. * Update NoScript to 2.6.9.27
  6297. * Update Torbutton to 1.9.2.8
  6298. * Bug 16403: Set search parameters for Disconnect
  6299. * Bug 14429: Make sure the automatic resizing is disabled
  6300. * Translation updates
  6301. * Bug 16397: Fix crash related to disabling SVG
  6302. * Bug 16403: Set search parameters for Disconnect
  6303. * Bug 16446: Update FTE bridge #1 fingerprint
  6304. * Tor patch backport
  6305. * Bug 16430: Allow DNS names with _ characters in them (fixes nytimes.com)
  6306. Tor Browser 5.0a2 -- June 15 2015
  6307. * All Platforms
  6308. * Update Tor to 0.2.7.1-alpha
  6309. * Update HTTPS-Everywhere to 5.0.5
  6310. * Update OpenSSL to 1.0.1n
  6311. * Update NoScript to 2.6.9.26
  6312. * Update meek to 0.19
  6313. * Update Torbutton to 1.9.2.7
  6314. * Bug 15984: Disabling Torbutton breaks the Add-ons Manager
  6315. * Bug 14429: Make sure the automatic resizing is enabled
  6316. * Translation updates
  6317. * Bug 16130: Defend against logjam attack
  6318. * Bug 15984: Disabling Torbutton breaks the Add-ons Manager
  6319. * Windows
  6320. * Bug 16014: Staged update fails if meek is enabled
  6321. * Bug 16269: repeated add-on compatibility check after update (meek enabled)
  6322. * Linux
  6323. * Bug 16026: Fix crash in GStreamer
  6324. * Bug 16083: Update comment in start-tor-browser
  6325. Tor Browser 4.5.2 -- June 15 2015
  6326. * All Platforms
  6327. * Update Tor to 0.2.6.9
  6328. * Update HTTPS-Everywhere to 5.0.5
  6329. * Update OpenSSL to 1.0.1n
  6330. * Update NoScript to 2.6.9.26
  6331. * Update Torbutton to 1.9.2.6
  6332. * Bug 15984: Disabling Torbutton breaks the Add-ons Manager
  6333. * Bug 14429: Make sure the automatic resizing is disabled
  6334. * Translation updates
  6335. * Bug 16130: Defend against logjam attack
  6336. * Bug 15984: Disabling Torbutton breaks the Add-ons Manager
  6337. * Linux
  6338. * Bug 16026: Fix crash in GStreamer
  6339. * Bug 16083: Update comment in start-tor-browser
  6340. Tor Browser 5.0a1 -- May 14 2015
  6341. * All Platforms
  6342. * Update Firefox to 31.7.0esr
  6343. * Update meek to 0.18
  6344. * Update Tor Launcher to 0.2.7.5
  6345. * Translation updates only
  6346. * Update Torbutton to 1.9.2.5
  6347. * Bug 15837: Show descriptions if unchecking custom mode
  6348. * Bug 15927: Force update of the NoScript UI when changing security level
  6349. * Bug 15915: Hide circuit display if it is disabled.
  6350. * Bug 14429: Improved automatic window resizing
  6351. * Translation updates
  6352. * Bug 15945: Disable NoScript's ClearClick protection for now
  6353. * Bug 15933: Isolate by base (top-level) domain name instead of FQDN
  6354. * Bug 15857: Fix file descriptor leak in updater that caused update failures
  6355. * Bug 15899: Fix errors with downloading and displaying PDFs
  6356. * Bug 15773: Enable ICU on OS X
  6357. * Bug 1517: Reduce precision of time for Javascript
  6358. * Bug 13670: Ensure OCSP & favicons respect URL bar domain isolation
  6359. * Bug 13875: Improve the spoofing of window.devicePixelRatio
  6360. * Windows
  6361. * Bug 15872: Fix meek pluggable transport startup issue with Windows 7
  6362. * Build System
  6363. * Bug 15947: Support Ubuntu 14.04 LXC hosts via LXC_EXECUTE=lxc-execute env var
  6364. * Bugs 15921+15922: Fix build errors during Mozilla Tryserver builds
  6365. Tor Browser 4.5.1 -- May 12 2015
  6366. * All Platforms
  6367. * Update Firefox to 31.7.0esr
  6368. * Update meek to 0.18
  6369. * Update Tor Launcher to 0.2.7.5
  6370. * Translation updates only
  6371. * Update Torbutton to 1.9.2.3
  6372. * Bug 15837: Show descriptions if unchecking custom mode
  6373. * Bug 15927: Force update of the NoScript UI when changing security level
  6374. * Bug 15915: Hide circuit display if it is disabled.
  6375. * Translation updates
  6376. * Bug 15945: Disable NoScript's ClearClick protection for now
  6377. * Bug 15933: Isolate by base (top-level) domain name instead of FQDN
  6378. * Bug 15857: Fix file descriptor leak in updater that caused update failures
  6379. * Bug 15899: Fix errors with downloading and displaying PDFs
  6380. * Windows
  6381. * Bug 15872: Fix meek pluggable transport startup issue with Windows 7
  6382. * Build System
  6383. * Bug 15947: Support Ubuntu 14.04 LXC hosts via LXC_EXECUTE=lxc-execute env var
  6384. * Bugs 15921+15922: Fix build errors during Mozilla Tryserver builds
  6385. Tor Browser 4.5 -- Apr 28 2015
  6386. * All Platforms
  6387. * Update Tor to 0.2.6.7 with additional patches:
  6388. * Bug 15482: Reset timestamp_dirty each time a SOCKSAuth circuit is used
  6389. * Update NoScript to 2.6.9.22
  6390. * Update HTTPS-Everywhere to 5.0.3
  6391. * Bug 15689: Resume building HTTPS-Everywhere from git tags
  6392. * Update meek to 0.17
  6393. * Update obfs4proxy to 0.0.5
  6394. * Update Tor Launcher to 0.2.7.4
  6395. * Bug 15704: Do not enable network if wizard is opened
  6396. * Bug 11879: Stop bootstrap if Cancel or Open Settings is clicked
  6397. * Bug 13576: Don't strip "bridge" from the middle of bridge lines
  6398. * Bug 15657: Display the host:port of any connection faiures in bootstrap
  6399. * Update Torbutton to 1.9.2.2
  6400. * Bug 15562: Bind SharedWorkers to thirdparty pref
  6401. * Bug 15533: Restore default security level when restoring defaults
  6402. * Bug 15510: Close Tor Circuit UI control port connections on New Identity
  6403. * Bug 15472: Make node text black in circuit status UI
  6404. * Bug 15502: Wipe blob URIs on New Identity
  6405. * Bug 15795: Some security slider prefs do not trigger custom checkbox
  6406. * Bug 14429: Disable automatic window resizing for now
  6407. * Bug 4100: Raise HTTP Keep-Alive back to 115 second default
  6408. * Bug 13875: Spoof window.devicePixelRatio to avoid DPI fingerprinting
  6409. * Bug 15411: Remove old (and unused) cacheDomain cache isolation mechanism
  6410. * Bugs 14716+13254: Fix issues with HTTP Auth usage and TLS connection info display
  6411. * Bug 15502: Isolate blob URI scope to URL domain; block WebWorker access
  6412. * Bug 15794: Crash on some pages with SVG images if SVG is disabled
  6413. * Bug 15562: Disable Javascript SharedWorkers due to third party tracking
  6414. * Bug 15757: Disable Mozilla video statistics API extensions
  6415. * Bug 15758: Disable Device Sensor APIs
  6416. * Linux
  6417. * Bug 15747: Improve start-tor-browser argument handling
  6418. * Bug 15672: Provide desktop app registration+unregistration for Linux
  6419. * Windows
  6420. * Bug 15539: Make installer exe signatures reproducibly removable
  6421. * Bug 10761: Fix instances of shutdown crashes
  6422. Tor Browser 4.5a5 -- Mar 31 2015
  6423. * All Platforms
  6424. * Update Firefox to 31.6.0esr
  6425. * Update OpenSSL to 1.0.1m
  6426. * Update Tor to 0.2.6.6
  6427. * Update NoScript to 2.6.9.19
  6428. * Update HTTPS-Everywhere to 5.0
  6429. * Update meek to 0.16
  6430. * Update Tor Launcher to 0.2.7.3
  6431. * Bug 13983: Directory search path fix for Tor Messanger+TorBirdy
  6432. * Update Torbutton to 1.9.1.0
  6433. * Bug 9387: "Security Slider 1.0"
  6434. * Include descriptions and tooltip hints for security levels
  6435. * Notify users that the security slider exists
  6436. * Flip slider so that "low" is on the bottom
  6437. * Make use of new SVG and MathML prefs
  6438. * Bug 13766: Set a 10 minute circuit lifespan for non-content requests
  6439. * Bug 15460: Ensure FTP urls use content-window circuit isolation
  6440. * Bug 13650: Clip initial window height to 1000px
  6441. * Bug 14429: Ensure windows can only be resized to 200x100px multiples
  6442. * Bug 15334: Display Cookie Protections menu if disk records are enabled
  6443. * Bug 14324: Show HS circuit in Tor circuit display
  6444. * Bug 15086: Handle RTL text in Tor circuit display
  6445. * Bug 15085: Fix about:tor RTL text alignment problems
  6446. * Bug 10216: Add a pref to disable the local tor control port test
  6447. * Bug 14937: Show meek and flashproxy bridges in tor circuit display
  6448. * Bugs 13891+15207: Fix exceptions/errors in circuit display with bridges
  6449. * Bug 13019: Change locale hiding pref to boolean
  6450. * Bug 7255: Warn users about maximizing windows
  6451. * Bug 14631: Improve profile access error msgs (strings).
  6452. * Pluggable Transport Dependency Updates:
  6453. * Bug 15448: Use golang 1.4.2 for meek and obs4proxy
  6454. * Bug 15265: Switch go.net repo to golang.org/x/net
  6455. * Bug 14937: Hard-code meek and flashproxy node fingerprints
  6456. * Bug 13019: Prevent Javascript from leaking system locale
  6457. * Bug 10280: Improved fix to prevent loading plugins into address space
  6458. * Bug 15406: Only include addons in incremental updates if they actually update
  6459. * Bug 15029: Don't prompt to include missing plugins
  6460. * Bug 12827: Create preference to disable SVG images (for security slider)
  6461. * Bug 13548: Create preference to disable MathML (for security slider)
  6462. * Bug 14631: Improve startup error messages for filesystem permissions issues
  6463. * Bug 15482: Don't allow circuits to change while a site is in use
  6464. * Linux
  6465. * Bug 13375: Create a hybrid GUI/desktop/shell launcher wrapper
  6466. * Bug 12468: Only print/write log messages if launched with --debug
  6467. * Windows
  6468. * Bug 3861: Begin signing Tor Browser for Windows the Windows way
  6469. * Bug 15201: Disable 'runas Administrator' codepaths in updater
  6470. * Bug 14688: Create shortcuts to desktop and start menu by default (optional)
  6471. Tor Browser 4.0.6 -- Mar 31 2015
  6472. * All Platforms
  6473. * Update Firefox to 31.6.0esr
  6474. * Update meek to 0.16
  6475. * Update OpenSSL to 1.0.1m
  6476. Tor Browser 4.0.5 -- Mar 23 2015
  6477. * All Platforms
  6478. * Update Firefox to 31.5.3esr
  6479. * Update Tor to 0.2.5.11
  6480. * Update NoScript to 2.6.9.19
  6481. Tor Browser 4.5a4 -- Feb 24 2015
  6482. * All Platforms
  6483. * Update Firefox to 31.5.0esr
  6484. * Update Tor to 0.2.6.3-alpha
  6485. * Update OpenSSL to 1.0.1l
  6486. * Update NoScript to 2.6.9.15
  6487. * Update obfs4proxy to 0.0.4
  6488. * Use obfs4proxy for ScrambleSuit bridges
  6489. * Update Torbutton to 1.9.0.0
  6490. * Bug 13882: Fix display of bridges after bridge settings have been changed
  6491. * Bug 5698: Use "Tor Browser" branding in "About Tor Browser" dialog
  6492. * Bug 10280: Strings and pref for preventing plugin initialization.
  6493. * Bug 14866: Show correct circuit when more than one exists for a given domain
  6494. * Bug 9442: Add New Circuit button to Torbutton menu
  6495. * Bug 9906: Warn users before closing all windows and performing new identity.
  6496. * Bug 8400: Prompt for restart if disk records are enabled/disabled.
  6497. * Bug 14630: Hide Torbutton's proxy settings tab.
  6498. * Bug 14632: Disable Cookie Manager until we get it working.
  6499. * Bug 11175: Remove "About Torbutton" from onion menu.
  6500. * Bug 13900: Remove remaining SafeCache code in favor of C++ patch
  6501. * Bug 14490: Use Disconnect search in about:tor search box
  6502. * Bug 14392: Don't steal input focus in about:tor search box
  6503. * Bug 11236: Don't set omnibox order in Torbutton (to prevent translation)
  6504. * Bug 13406: Stop directing users to download-easy.html.en on update
  6505. * Bug 9387: Handle "custom" mode better in Security Slider
  6506. * Bug 12430: Bind jar: pref to Security Slider
  6507. * Bug 14448: Restore Torbutton menu operation on non-English localizations
  6508. * Translation updates
  6509. * Update Tor Launcher to 0.2.7.2
  6510. * Bug 13271: Display Bridge Configuration wizard pane before Proxy pane
  6511. * Bug 14336: Fix navigation button display issues on some wizard panes
  6512. * Translation updates
  6513. * Bug 14203: Prevent meek from displaying an extra update notification
  6514. * Bug 14849: Remove new NoScript menu option to make permissions permanent
  6515. * Bug 14851: Set NoScript pref to disable permanent permissions
  6516. * Bug 14490: Make Disconnect the default omnibox search engine
  6517. * Bug 11236: Fix omnibox order for non-English builds
  6518. * Also remove Amazon, eBay and bing; add Youtube and Twitter
  6519. * Bug 10280: Don't load any plugins into the address space.
  6520. * Bug 14392: Make about:tor hide itself from the URL bar
  6521. * Bug 12430: Provide a preference to disable remote jar: urls
  6522. * Bug 13900: Remove 3rd party HTTP auth tokens via Firefox patch
  6523. * Bug 5698: Fix branding in "About Torbrowser" window
  6524. * Windows:
  6525. * Bug 13169: Don't use /dev/random on Windows for SSP
  6526. * Linux:
  6527. * Bug 13717: Make sure we use the bash shell on Linux
  6528. Tor Browser 4.0.4 -- Feb 24 2015
  6529. * All Platforms
  6530. * Update Firefox to 31.5.0esr
  6531. * Update OpenSSL to 1.0.1l
  6532. * Update NoScript to 2.6.9.15
  6533. * Update HTTPS-Everywhere to 4.0.3
  6534. * Bug 14203: Prevent meek from displaying an extra update notification
  6535. * Bug 14849: Remove new NoScript menu option to make permissions permanent
  6536. * Bug 14851: Set NoScript pref to disable permanent permissions
  6537. Tor Browser 4.5a3 -- Jan 19 2015
  6538. * All Platforms
  6539. * Update Firefox to 31.4.0esr
  6540. * Update Tor to 0.2.6.2-alpha
  6541. * Update NoScript to 2.6.9.10
  6542. * Update HTTPS Everywhere to 5.0development.2
  6543. * Update meek to 0.15
  6544. * Update Torbutton to 1.8.1.3
  6545. * Bug 13998: Handle changes in NoScript 2.6.9.8+
  6546. * Bug 14100: Option to hide NetworkSettings menuitem
  6547. * Bug 13079: Option to skip control port verification
  6548. * Bug 13835: Option to change default Tor Browser homepage
  6549. * Bug 11449: Fix new identity error if NoScript is not enabled
  6550. * Bug 13881: Localize strings for tor circuit display
  6551. * Bug 9387: Incorporate user feedback
  6552. * Bug 13671: Fixup for circuit display if bridges are used
  6553. * Translation updates
  6554. * Update Tor Launcher to 0.2.7.1
  6555. * Bug 14122: Hide logo if TOR_HIDE_BROWSER_LOGO set
  6556. * Translation updates
  6557. * Bug 13379: Sign our MAR files
  6558. * Bug 13788: Fix broken meek in 4.5-alpha series
  6559. * Bug 13439: No canvas prompt for content callers
  6560. Tor Browser 4.0.3 -- Jan 13 2015
  6561. * All Platforms
  6562. * Update Firefox to 31.4.0esr
  6563. * Update NoScript to 2.6.9.10
  6564. * Update meek to 0.15
  6565. * Update Tor Launcher to 0.2.7.0.2
  6566. * Translation updates only
  6567. Tor Browser 4.5-alpha-2 -- Dec 5 2014
  6568. * All Platforms
  6569. * Update Firefox to 31.3.0esr
  6570. * Update NoScript to 2.6.9.5
  6571. * Update HTTPS Everywhere to 5.0development.1
  6572. * Update Torbutton to 1.8.1.2
  6573. * Bug 13672: Make circuit display optional
  6574. * Bug 13671: Make bridges visible on circuit display
  6575. * Bug 9387: Incorporate user feedback
  6576. * Bug 13784: Remove third party authentication tokens
  6577. * Bug 13435: Remove our custom POODLE fix (fixed by Mozilla in ESR 31.3.0)
  6578. Tor Browser 4.0.2 -- Dec 2 2014
  6579. * All Platforms
  6580. * Update Firefox to 31.3.0esr
  6581. * Update NoScript to 2.6.9.5
  6582. * Update HTTPS Everywhere to 4.0.2
  6583. * Update Torbutton to 1.7.0.2
  6584. * Bug 13019: Synchronize locale spoofing pref with our Firefox patch
  6585. * Bug 13746: Properly link Torbutton UI to thirdparty pref.
  6586. * Bug 13742: Fix domain isolation for content cache and disk-enabled browsing mode
  6587. * Bug 5926: Prevent JS engine locale leaks (by setting the C library locale)
  6588. * Bug 13504: Remove unreliable/unreachable non-public bridges
  6589. * Bug 13435: Remove our custom POODLE fix
  6590. * Windows
  6591. * Bug 13443: Re-enable DirectShow; fix crash with mingw patch.
  6592. * Bug 13558: Fix crash on Windows XP during download folder changing
  6593. * Bug 13594: Fix update failure for Windows XP users
  6594. Tor Browser 4.5-alpha-1 -- Nov 14 2014
  6595. * All Platforms
  6596. * Bug 3455: Patch Firefox SOCKS and proxy filters to allow user+pass isolation
  6597. * Bug 11955: Backport HTTPS Certificate Pinning patches from Firefox 32
  6598. * Bug 13684: Backport Mozilla bug #1066190 (pinning issue fixed in Firefox 33)
  6599. * Bug 13019: Make JS engine use English locale if a pref is set by Torbutton
  6600. * Bug 13301: Prevent extensions incompatibility error after upgrades
  6601. * Bug 13460: Fix MSVC compilation issue
  6602. * Bug 13504: Remove stale bridges from default bridge set
  6603. * Bug 13742: Fix domain isolation for content cache and disk-enabled browsing mode
  6604. * Update Tor to 0.2.6.1-alpha
  6605. * Update NoScript to 2.6.9.3
  6606. * Update Torbutton to 1.8.1.1
  6607. * Bug 9387: Provide a "Security Slider" for vulnerability surface reduction
  6608. * Bug 13019: Synchronize locale spoofing pref with our Firefox patch
  6609. * Bug 3455: Use SOCKS user+pass to isolate all requests from the same url domain
  6610. * Bug 8641: Create browser UI to indicate current tab's Tor circuit IPs
  6611. * Bug 13651: Prevent circuit-status related UI hang.
  6612. * Bug 13666: Various circuit status UI fixes
  6613. * Bugs 13742+13751: Remove cache isolation code in favor of direct C++ patch
  6614. * Bug 13746: Properly update third party isolation pref if disabled from UI
  6615. * Bug 13586: Make meek use TLS session tickets (to look like stock Firefox).
  6616. * Bug 12903: Include obfs4proxy pluggable transport
  6617. * Windows
  6618. * Bug 13443: Re-enable DirectShow; fix crash with mingw patch.
  6619. * Bug 13558: Fix crash on Windows XP during download folder changing
  6620. * Bug 13091: Make app name "Tor Browser" instead of "Tor"
  6621. * Bug 13594: Fix update failure for Windows XP users
  6622. * Mac
  6623. * Bug 10138: Switch to 64bit builds for MacOS
  6624. Tor Browser 4.0.1 -- Oct 30 2014
  6625. * All Platforms
  6626. * Update Tor to 0.2.5.10
  6627. * Update NoScript to 2.6.9.3
  6628. * Bug 13301: Prevent extensions incompatibility error after upgrades
  6629. * Bug 13460: Fix MSVC compilation issue
  6630. * Windows
  6631. * Bug 13443: Disable DirectShow to prevent crashes on many sites
  6632. * Bug 13091: Make app name "Tor Browser" instead of "Tor"
  6633. Tor Browser 4.0 -- Oct 15 2014
  6634. * All Platforms
  6635. * Update Firefox to 31.2.0esr
  6636. * Update Torbutton to 1.7.0.1
  6637. * Bug 13378: Prevent addon reordering in toolbars on first-run.
  6638. * Bug 10751: Adapt Torbutton to ESR31's Australis UI.
  6639. * Bug 13138: ESR31-about:tor shows "Tor is not working"
  6640. * Bug 12947: Adapt session storage blocker to ESR 31.
  6641. * Bug 10716: Take care of drag/drop events in ESR 31.
  6642. * Bug 13366: Fix cert exemption dialog when disk storage is enabled.
  6643. * Update Tor Launcher to 0.2.7.0.1
  6644. * Translation updates only
  6645. * Udate fteproxy to 0.2.19
  6646. * Update NoScript to 2.6.9.1
  6647. * Bug 13416: Defend against new SSLv3 attack (poodle).
  6648. * Bug 13027: Spoof window.navigator useragent values in JS WebWorker threads
  6649. * Bug 13016: Hide CSS -moz-osx-font-smoothing values.
  6650. * Bug 13356: Meek and other symlinks missing after complete update.
  6651. * Bug 13025: Spoof screen orientation to landscape-primary.
  6652. * Bug 13346: Disable Firefox "slow to start" warnings and recordkeeping.
  6653. * Bug 13318: Minimize number of buttons on the browser toolbar.
  6654. * Bug 10715: Enable WebGL on Windows (still click-to-play via NoScript)
  6655. * Bug 13023: Disable the gamepad API.
  6656. * Bug 13021: Prompt before allowing Canvas isPointIn*() calls.
  6657. * Bug 12460: Several cross-compilation and gitian fixes (see child tickets)
  6658. * Bug 13186: Disable DOM Performance timers
  6659. * Bug 13028: Defense-in-depth checks for OCSP/Cert validation proxy usage
  6660. Tor Browser 4.0-alpha-3 -- Sep 24 2014
  6661. * All Platforms
  6662. * Update Tor to 0.2.5.8-rc
  6663. * Update Firefox to 24.8.1esr
  6664. * Update meek to 0.11
  6665. * Update NoScript to 2.6.8.42
  6666. * Update Torbutton to 1.6.12.3
  6667. * Bug 13091: Use "Tor Browser" everywhere
  6668. * Bug 10804: Workaround fix for some cases of startup hang
  6669. * Bug 13091: Use "Tor Browser" everywhere
  6670. * Bug 13049: Browser update failure (self.update is undefined)
  6671. * Bug 13047: Updater should not send Kernel and GTK version
  6672. * Bug 12998: Prevent intermediate certs from being written to disk
  6673. * Bug 13245: Prevent non-english TBBs from upgrading to english version.
  6674. * Linux:
  6675. * Bug 9150: Make RPATH unavailable on Tor binary.
  6676. * Bug 13031: Add full RELRO protection.
  6677. Tor Browser Bundle 3.6.6 -- Sep 24 2014
  6678. * All Platforms
  6679. * Update Tor to tor-0.2.4.24
  6680. * Update Firefox to 24.8.1esr
  6681. * Update NoScript to 2.6.8.42
  6682. * Update HTTPS Everywhere to 4.0.1
  6683. * Bug 12998: Prevent intermediate certs from being written to disk
  6684. * Update Torbutton to 1.6.12.3
  6685. * Bug 13091: Use "Tor Browser" everywhere
  6686. * Bug 10804: Workaround fix for some cases of startup hang
  6687. * Linux
  6688. * Bug 9150: Make RPATH unavailable on Tor binary.
  6689. Tor Browser Bundle 4.0-alpha-2 -- Sep 2 2014
  6690. * All Platforms
  6691. * Update Firefox to 24.8.0esr
  6692. * Update NoScript to 2.6.8.39
  6693. * Update Tor Launcher to 0.2.7.0
  6694. * Bug 11405: Remove firewall prompt from wizard.
  6695. * Bug 12895: Mention @riseup.net as a valid bridge request email address
  6696. * Bug 12444: Provide feedback when “Copy Tor Log” is clicked.
  6697. * Bug 11199: Improve error messages if Tor exits unexpectedly
  6698. * Update Torbutton to 1.6.12.1
  6699. * Bug 12684: New strings for canvas image extraction message
  6700. * Bug 8940: Move RecommendedTBBVersions file to www.torproject.org
  6701. * Bug 12684: Improve Canvas image extraction permissions prompt
  6702. * Bug 7265: Only prompt for first party canvas access. Log all scripts
  6703. that attempt to extract canvas images to Browser console.
  6704. * Bug 12974: Disable NTLM and Negotiate HTTP Auth
  6705. * Bug 2874: Remove Components.* from content access (regression)
  6706. * Bug 4234: Automatic Update support (off by default)
  6707. * Bug 9881: Open popups in new tabs by default
  6708. * Meek Pluggable Transport:
  6709. * Bug 12766: Use TLSv1.0 in meek-http-helper to blend in with Firefox 24
  6710. * Windows:
  6711. * Bug 10065: Enable DEP, ASLR, and SSP hardening options
  6712. * Linux:
  6713. * Bug 12103: Adding RELRO hardening back to browser binaries.
  6714. Tor Browser Bundle 3.6.5 -- Sep 2 2014
  6715. * All Platforms
  6716. * Update Firefox to 24.8.0esr
  6717. * Update NoScript to 2.6.8.39
  6718. * Update HTTPS Everywhere to 4.0.0
  6719. * Update Torbutton to 1.6.12.1
  6720. * Bug 12684: New strings for canvas image extraction message
  6721. * Bug 8940: Move RecommendedTBBVersions file to www.torproject.org
  6722. * Bug 9531: Workaround to avoid rare hangs during New Identity
  6723. * Bug 12684: Improve Canvas image extraction permissions prompt
  6724. * Bug 7265: Only prompt for first party canvas access. Log all scripts
  6725. that attempt to extract canvas images to Browser console.
  6726. * Bug 12974: Disable NTLM and Negotiate HTTP Auth
  6727. * Bug 2874: Remove Components.* from content access (regression)
  6728. * Bug 9881: Open popups in new tabs by default
  6729. * Linux:
  6730. * Bug 12103: Adding RELRO hardening back to browser binaries.
  6731. Tor Browser Bundle 4.0-alpha-1 -- Aug 8 2014
  6732. * All Platforms
  6733. * Ticket 10935: Include the Meek Pluggable Transport (version 0.10)
  6734. * Two modes of Meek are provided: Meek over Google and Meek over Amazon
  6735. * Update Firefox to 24.7.0esr
  6736. * Update Tor to 0.2.5.6-alpha
  6737. * Update OpenSSL to 1.0.1i
  6738. * Update NoScript to 2.6.8.36
  6739. * Script permissions now apply based on URL bar
  6740. * Update HTTPS Everywhere to 5.0development.0
  6741. * Update Torbutton to 1.6.12.0
  6742. * Bug 12221: Remove obsolete Javascript components from the toggle era
  6743. * Bug 10819: Bind new third party isolation pref to Torbutton security UI
  6744. * Bug 9268: Fix some window resizing corner cases with DPI and taskbar size.
  6745. * Bug 12680: Change Torbutton URL in about dialog.
  6746. * Bug 11472: Adjust about:tor font and logo positioning to avoid overlap
  6747. * Bug 9531: Workaround to avoid rare hangs during New Identity
  6748. * Update Tor Launcher to 0.2.6.2
  6749. * Bug 11199: Improve behavior if tor exits
  6750. * Bug 12451: Add option to hide TBB's logo
  6751. * Bug 11193: Change "Tor Browser Bundle" to "Tor Browser"
  6752. * Bug 11471: Ensure text fits the initial configuration dialog
  6753. * Bug 9516: Send Tor Launcher log messages to Browser Console
  6754. * Bug 11641: Reorganize bundle directory structure to mimic Firefox
  6755. * Bug 10819: Create a preference to enable/disable third party isolation
  6756. * Backported Tor Patches:
  6757. * Bug 11200: Fix a hang during bootstrap introduced in the initial
  6758. bug11200 patch.
  6759. * Linux:
  6760. * Bug 10178: Make it easier to set an alternate Tor control port and password
  6761. * Bug 11102: Set Window Class to "Tor Browser" to aid in Desktop navigation
  6762. * Bug 12249: Don't create PT debug files anymore
  6763. Tor Browser Bundle 3.6.4 -- Aug 8 2014
  6764. * All Platforms
  6765. * Update Tor to 0.2.4.23
  6766. * Update Tor launcher to 0.2.5.6
  6767. * Bug 9516: Show Tor log in TorBrowser's Browser Console
  6768. * Update OpenSSL to 1.0.1i
  6769. * Backported Tor Patches:
  6770. * Bug 11654: Properly apply the fix for malformed bug11156 log message
  6771. * Bug 11200: Fix a hang during bootstrap introduced in the initial
  6772. bug11200 patch.
  6773. * Update NoScript to 2.6.8.36
  6774. * Update Torbutton to 1.6.11.1
  6775. * Bug 11472: Adjust about:tor font and logo positioning to avoid overlap
  6776. * Bug 12680: Fix Torbutton about url.
  6777. Tor Browser Bundle 3.6.3 -- Jul 24 2014
  6778. * All Platforms
  6779. * Update Firefox to 24.7.0esr
  6780. * Update obfsproxy to 0.2.12
  6781. * Update FTE to 0.2.17
  6782. * Update NoScript to 2.6.8.33
  6783. * Update HTTPS Everywhere to 3.5.3
  6784. * Bug 12673: Update FTE bridges
  6785. * Update Torbutton to 1.6.11.0
  6786. * Bug 12221: Remove obsolete Javascript components from the toggle era
  6787. * Bug 10819: Bind new third party isolation pref to Torbutton security UI
  6788. * Bug 9268: Fix some window resizing corner cases with DPI and taskbar size.
  6789. * Linux:
  6790. * Bug 11102: Set Window Class to "Tor Browser" to aid in Desktop navigation
  6791. * Bug 12249: Don't create PT debug files anymore
  6792. Tor Browser Bundle 3.6.2 -- Jun 9 2014
  6793. * All Platforms
  6794. * Update Firefox to 24.6.0esr
  6795. * Update OpenSSL to 1.0.1h
  6796. * Update NoScript to 2.6.8.28
  6797. * Update Tor to 0.2.4.22
  6798. * Update Tor Launcher to 0.2.5.5
  6799. * Bug 10425: Provide geoip6 file location to Tor process
  6800. * Bug 11754: Remove untranslated locales that were dropped from Transifex
  6801. * Bug 11772: Set Proxy Type menu correctly after restart
  6802. * Bug 11699: Change &amp;#160 to &#160; in UI elements
  6803. * Update Torbutton to 1.6.10.0
  6804. * Bug 11510: about:tor should not report success if tor proxy is unreachable
  6805. * Bug 11783: Avoid b.webProgress error when double-clicking on New Identity
  6806. * Bug 11722: Add hidden pref to force remote Tor check
  6807. * Bug 11763: Fix pref dialog double-click race that caused settings to be reset
  6808. * Bug 11629: Support proxies with Pluggable Transports
  6809. * Updates FTEProxy to 0.2.15
  6810. * Updates obfsproxy to 0.2.9
  6811. * Backported Tor Patches:
  6812. * Bug 11654: Fix malformed log message in bug11156 patch.
  6813. * Bug 10425: Add in Tor's geoip6 files to the bundle distribution
  6814. * Bugs 11834 and 11835: Include Pluggable Transport documentation
  6815. * Bug 9701: Prevent ClipBoardCache from writing to disk.
  6816. * Bug 12146: Make the CONNECT Host header the same as the Request-URI.
  6817. * Bug 12212: Disable deprecated webaudio API
  6818. * Bug 11253: Turn on TLS 1.1 and 1.2.
  6819. * Bug 11817: Don't send startup time information to Mozilla.
  6820. Tor Browser Bundle 3.6.1 -- May 6 2014
  6821. * All Platforms
  6822. * Update HTTPS-Everywhere to 3.5.1
  6823. * Update NoScript to 2.6.8.22
  6824. * Bug 11658: Fix proxy configuration for non-Pluggable Transports users
  6825. * Backport Pending Tor Patches:
  6826. * Bug 8402: Allow Tor proxy configuration while PTs are present
  6827. * Note: The Pluggable Transports themselves have not been updated to
  6828. support proxy configuration yet.
  6829. Tor Browser Bundle 3.6 -- Apr 29 2014
  6830. * All Platforms
  6831. * Update Firefox to 24.5.0esr
  6832. * Update Tor Launcher to 0.2.5.4
  6833. * Bug #11482: Hide bridge settings prompt if no default bridges.
  6834. * Bug #11484: Show help button even if no default bridges.
  6835. * Update Torbutton to 1.6.9.0
  6836. * Bug 7439: Improve download warning dialog text.
  6837. * Bug 11384: Completely remove hidden toggle menu item.
  6838. * Update NoScript to 2.6.8.20
  6839. * Update fte transport to 0.2.13
  6840. * Backport Pending Tor Patches:
  6841. * Bug 11156: Additional obfsproxy startup error message fixes
  6842. * Bug 11586: Include license files for component software in Docs directory.
  6843. * Windows and Mac:
  6844. * Bug 9308: Prevent install path from leaking in some JS exceptions
  6845. on Mac and Windows builds
  6846. Tor Browser Bundle 3.6-beta-2 -- Apr 8 2014
  6847. * All Platforms
  6848. * Update OpenSSL to 1.0.1g
  6849. * Bug 9010: Add Turkish language support.
  6850. * Bug 9387 testing: Disable JS JIT, type inference, asmjs, and ion.
  6851. * Update fte transport to 0.2.12
  6852. * Update NoScript to 2.6.8.19
  6853. * Update Torbutton to 1.6.8.1
  6854. * Bug 11242: Fix improper "update needed" message after in-place upgrade.
  6855. * Bug 10398: Ease translation of about:tor page elements
  6856. * Update Tor Launcher to 0.2.5.3
  6857. * Bug 9665: Localize Tor's unreachable bridges bootstrap error
  6858. * Backport Pending Tor Patches:
  6859. * Bug 9665: Report a bootstrap error if all bridges are unreachable
  6860. * Bug 11200: Prevent spurious error message prior to enabling network.
  6861. * Linux:
  6862. * Bug 11190: Switch linux PT build process to python2
  6863. * Bug 10383: Enable NIST P224 and P256 accel support for 64bit builds.
  6864. * Windows:
  6865. * Bug 11286: Fix fte transport launch error
  6866. Tor Browser Bundle 3.5.4 -- Apr 7 2014
  6867. * All Platforms
  6868. * Update OpenSSL to 1.0.1g
  6869. Tor Browser Bundle 3.5.3 -- Mar 19 2014
  6870. * All Platforms
  6871. * Update Firefox to 24.4.0esr
  6872. * Update Torbutton to 1.6.7.0:
  6873. * Bug 9901: Fix browser freeze due to content type sniffing
  6874. * Bug 10611: Add Swedish (sv) to extra locales to update
  6875. * Update NoScript to 2.6.8.17
  6876. * Update Tor to 0.2.4.21
  6877. * Bug 10237: Disable the media cache to prevent disk leaks for videos
  6878. * Bug 10703: Force the default charset to avoid locale fingerprinting
  6879. * Bug 10104: Update gitian to fix LXC build issues (for non-KVM/VT builders)
  6880. * Linux:
  6881. * Bug 9353: Fix keyboard input on Ubuntu 13.10
  6882. * Bug 9896: Provide debug symbols for Tor Browser binary
  6883. * Bug 10472: Pass arguments to the browser from Linux startup script
  6884. Tor Browser Bundle 3.6-beta-1 -- Mar 17 2014
  6885. * All Platforms
  6886. * Update Firefox to 24.4.0esr
  6887. * Include Pluggable Transports by default:
  6888. * Obfsproxy3 0.2.4, Flashproxy 1.6, and FTE 0.2.6 are now included
  6889. * Update Tor Launcher to 0.2.5.1
  6890. * Bug 10418: Provide UI configuration for Pluggable Transports
  6891. * Bug 10604: Allow Tor status & error messages to be translated
  6892. * Bug 10894: Make bridge UI clear that helpdesk is a last resort for
  6893. bridges
  6894. * Bug 10610: Clarify wizard UI text describing obstacles/blocking
  6895. * Bug 11074: Support Tails use case (XULRunner and optional
  6896. customizations)
  6897. * Update Torbutton to 1.6.7.0:
  6898. * Bug 9901: Fix browser freeze due to content type sniffing
  6899. * Bug 10611: Add Swedish (sv) to extra locales to update
  6900. * Update NoScript to 2.6.8.17
  6901. * Update Tor to 0.2.4.21
  6902. * Backport Pending Tor Patches:
  6903. * Bug 5018: Don't launch Pluggable Transport helpers if not in use
  6904. * Bug 9229: Eliminate 60 second stall during bootstrap with some PTs
  6905. * Bug 11069: Detect and report Pluggable Transport bootstrap failures
  6906. * Bug 11156: Prevent spurious warning about missing pluggable transports
  6907. * Bug 10237: Disable the media cache to prevent disk leaks for videos
  6908. * Bug 10703: Force the default charset to avoid locale fingerprinting
  6909. * Bug 10104: Update gitian to fix LXC build issues (for non-KVM/VT builders)
  6910. * Mac:
  6911. * Bug 4261: Use DMG instead of ZIP for Mac packages
  6912. * Linux:
  6913. * Bug 9353: Fix keyboard input on Ubuntu 13.10
  6914. * Bug 9896: Provide debug symbols for Tor Browser binary
  6915. * Bug 10472: Pass arguments to the browser from Linux startup script
  6916. Tor Browser Bundle 3.5.2.1 -- Feb 14 2014
  6917. * All Platforms
  6918. * Bug 10895: Fix broken localized bundles
  6919. * Windows:
  6920. * Bug 10323: Remove unneeded gcc/libstdc++ libraries from dist
  6921. Tor Browser Bundle 3.5.2 -- Feb 8 2014
  6922. * All Platforms
  6923. * Rebase Tor Browser to Firefox 24.3.0ESR
  6924. * Bug 10419: Block content window connections to localhost
  6925. * Update Torbutton to 1.6.6.0
  6926. * Bug 10800: Prevent findbox exception and popup in New Identity
  6927. * Bug 10640: Fix about:tor's update pointer position for RTL languages.
  6928. * Bug 10095: Fix some cases where resolution is not a multiple of 200x100
  6929. * Bug 10374: Clear site permissions on New Identity
  6930. * Bug 9738: Fix for auto-maximizing on browser start
  6931. * Bug 10682: Workaround to really disable updates for Torbutton
  6932. * Bug 10419: Don't allow connections to localhost if Torbutton is toggled
  6933. * Bug 10140: Move Japanese to extra locales (not part of TBB dist)
  6934. * Bug 10687: Add Basque (eu) to extra locales (not part of TBB dist)
  6935. * Update Tor Launcher to 0.2.4.4
  6936. * Bug 10682: Workaround to really disable updates for Tor Launcher
  6937. * Update NoScript to 2.6.8.13
  6938. Tor Browser Bundle 3.5.1 -- Jan 22 2014
  6939. * All Platforms
  6940. * Bug 10447: Remove SocksListenAddress to allow multiple socks ports.
  6941. * Bug 10464: Remove addons.mozilla.org from NoScript whitelist
  6942. * Bug 10537: Build an Arabic version of TBB 3.5
  6943. * Update Torbutton to 1.6.5.5
  6944. * Bug 9486: Clear NoScript Temporary Permissions on New Identity
  6945. * Include Arabic translations
  6946. * Update Tor Launcher to 0.2.4.3
  6947. * Include Arabic translations
  6948. * Update Tor to 0.2.4.20
  6949. * Update OpenSSL to 1.0.1f
  6950. * Update NoScript to 2.6.8.12
  6951. * Update HTTPS-Everywhere to 3.4.5
  6952. * Windows
  6953. * Bug 9259: Enable Accessibility (screen reader) support
  6954. * Mac
  6955. * misc: Update bundle version field in Info.plist (for MacUpdates service)
  6956. Tor Browser Bundle 3.5 -- Dec 17 2013
  6957. * All Platforms
  6958. * Update Tor to 0.2.4.19
  6959. * Update Tor Launcher to 0.2.4.2
  6960. * Bug 10382: Fix a Tor Launcher hang on TBB exit
  6961. * Update Torbutton to 1.6.5.2
  6962. * Misc: Switch update download URL back to download-easy
  6963. Tor Browser Bundle 3.5rc1 -- Dec 12 2013
  6964. * All Platforms
  6965. * Update Firefox to 24.2.0esr
  6966. * Update NoScript to 2.6.8.7
  6967. * Update HTTPS-Everywhere to 3.4.4tbb (special TBB tag)
  6968. * Tag includes a patch to handle enabling/disabling Mixed Content Blocking
  6969. * Bug 5060: Disable health report service
  6970. * Bug 10367: Disable prompting about health report and Mozilla Sync
  6971. * Misc Prefs: Disable HTTPS-Everywhere first-run tooltips
  6972. * Misc Prefs: Disable layer acceleration to avoid crashes on Windows
  6973. * Misc Prefs: Disable Mixed Content Blocker pending backport of Mozilla Bug 878890
  6974. * Update Tor Launcher to 0.2.4.1
  6975. * Bug 10147: Adblock Plus interferes w/Tor Launcher dialog
  6976. * Bug 10201: FF ESR 24 hangs during exit on Mac OS
  6977. * Bug 9984: Support running Tor Launcher from InstantBird
  6978. * Misc: Support browser directory location API changes in Firefox 24
  6979. * Update Torbutton to 1.6.5.1
  6980. * Bug 10352: Clear FF24 Private Browsing Mode data during New Identity
  6981. * Bug 8167: Update cache isolation for FF24 API changes
  6982. * Bug 10201: FF ESR 24 hangs during exit on Mac OS
  6983. * Bug 10078: Properly clear crypto tokens during New Identity on FF24
  6984. * Bug 9454: Support changes to Private Browsing Mode and plugin APIs in FF24
  6985. * Linux
  6986. * Bug 10213; Use LD_LIBRARY_PATH (fixes launch issues on old Linux distros)
  6987. Tor Browser Bundle 3.0rc1 -- Nov 21 2013
  6988. * All Platforms:
  6989. * Update Firefox to 17.0.11esr
  6990. * Update Tor to 0.2.4.18-rc
  6991. * Remove unsupported PDF.JS addon from the bundle
  6992. * Bug #7277: TBB's Tor client will now omit its timestamp in the TLS handshake.
  6993. * Update Torbutton to 1.6.4.1
  6994. * Bug #10002: Make the TBB3.0 blog tag our update download URL for now
  6995. * Windows
  6996. * Bug #10102: Patch binutils to remove nondeterministic bytes in compiled binaries
  6997. * Linux
  6998. * Bug #10049: Fix architecture check to work from outside TBB's directory
  6999. * Bug #10126: Remove libz and firefox-bin, and strip unstripped binaries
  7000. * Misc: Disable Firefox updater during compile time (in addition to pref)
  7001. Tor Browser Bundle 3.0beta1 -- Oct 31 2013
  7002. * All Platforms:
  7003. * Update Firefox to 17.0.10esr
  7004. * Update NoScript to 2.6.8.2
  7005. * Update HTTPS-Everywhere to 3.4.2
  7006. * Bug #9114: Reorganize the bundle directory structure to ease future
  7007. autoupdates
  7008. * Bug #9173: Patch Tor Browser to auto-detect profile directory if
  7009. launched without the wrapper script.
  7010. * Bug #9012: Hide Tor Browser infobar for missing plugins.
  7011. * Bug #8364: Change the default entry page for the addons tab to the
  7012. installed addons page.
  7013. * Bug #9867: Make flash objects really be click-to-play if flash is enabled.
  7014. * Bug #8292: Make getFirstPartyURI log+handle errors internally to simplify
  7015. caller usage of the API
  7016. * Bug #3661: Remove polipo and privoxy from the banned ports list.
  7017. * misc: Fix a potential memory leak in the Image Cache isolation
  7018. * misc: Fix a potential crash if OS theme information is ever absent
  7019. * Update Tor-Launcher to 0.2.3.1-beta
  7020. * Bug #9114: Handle new directory structure
  7021. * misc: Tor Launcher now supports Thunderbird
  7022. * Update Torbutton to 1.6.4
  7023. * Bug #9224: Support multiple Tor socks ports for about:tor status check
  7024. * Bug #9587: Add TBB version number to about:tor
  7025. * Bug #9144: Workaround to handle missing translation properties
  7026. * Windows:
  7027. * Bug #9084: Fix startup crash on Windows XP.
  7028. * Linux:
  7029. * Bug #9487: Create detached debuginfo files for Linux Tor and Tor
  7030. Browser binaries.
  7031. Tor Browser Bundle 3.0alpha4 -- Sep 24 2013
  7032. * All Platforms:
  7033. * Bug #8751: Randomize TLS HELLO timestamp in HTTPS connections
  7034. * Bug #9790 (workaround): Temporarily re-enable JS-Ctypes for cache
  7035. isolation and SSL Observatory
  7036. * Update Firefox to 17.0.9esr
  7037. * Update Tor to 0.2.4.17-rc
  7038. * Update NoScript to 2.6.7.1
  7039. * Update Tor-Launcher to 0.2.2-alpha
  7040. * Bug #9675: Provide feedback mechanism for clock-skew and other early
  7041. startup issues
  7042. * Bug #9445: Allow user to enter bridges with or without 'bridge' keyword
  7043. * Bug #9593: Use UTF16 for Tor process launch to handle unicode paths.
  7044. * misc: Detect when Tor exits and display appropriate notification
  7045. * Update Torbutton to 1.6.2.1
  7046. * Bug 9492: Fix Torbutton logo on OSX and Windows (and related
  7047. initialization code)
  7048. * Bug 8839: Disable Google/Startpage search filters using Tor-specific urls
  7049. Tor Browser Bundle 3.0alpha3 -- Aug 01 2013
  7050. * All Platforms:
  7051. * Update Firefox to 17.0.8esr
  7052. * Update Tor to 0.2.4.15-rc
  7053. * Update HTTPS-Everywhere to 3.3.1
  7054. * Update NoScript to 2.6.6.9
  7055. * Improve build input fetching and authentication
  7056. * Bug #9283: Update NoScript prefs for usability.
  7057. * Bug #6152 (partial): Disable JSCtypes support at compile time
  7058. * Update Torbutton to 1.6.1
  7059. * Bug 8478: Change when window resize code fires to avoid rounding errors
  7060. * Bug 9331: Hack an update URL for the next TBB release
  7061. * Bug 9144: Change an aboutTor.dtd string so transifex will accept it
  7062. * Update Tor-Launcher to 0.2.1-alpha
  7063. * Bug #9128: Remove dependency on JSCtypes
  7064. * Windows
  7065. * Bug #9195: Disable download manager AV scanning (to prevent cloud
  7066. reporting+scanning of downloaded files)
  7067. * Mac:
  7068. * Bug #9173 (partial): Launch firefox-bin on MacOS instead of TorBrowser.app
  7069. (improves dock behavior).
  7070. Tor Browser Bundle 3.0alpha2 -- June 27 2013
  7071. * All Platforms:
  7072. * Update Firefox to 17.0.7esr
  7073. * Update Tor to 0.2.4.14-alpha
  7074. * Include Tor's GeoIP file
  7075. * This should fix custom torrc issues with country-based node
  7076. restrictions
  7077. * Fix several build determinism issues
  7078. * Include ChangeLog in bundles.
  7079. * Linux:
  7080. * Use Ubuntu's 'hardening-wrapper' to build our Linux binaries
  7081. * Windows:
  7082. * Fix many crash issues by disabling Direct2D support for now.
  7083. * Mac:
  7084. * Bug 8987: Disable TBB's 'Saved Application State' disk records on OSX 10.7+
  7085. Tor Browser Bundle 3.0alpha1 -- June 17 2013
  7086. * All Platforms:
  7087. * Remove Vidalia; Use the new Tor Launcher Firefox Addon instead
  7088. * Update Torbutton to 1.6.0
  7089. * bug 7494: Create a local home page for TBB as about:tor
  7090. * misc: Perform a control port test of proper Tor configuration by default.
  7091. Only use https://check.torproject.org if the control port is
  7092. unavailable.
  7093. * misc: Add an icon menu option for Tor Launcher's Network Settings
  7094. * misc: Add branding string overrides (primarily controls browser name and
  7095. homepage)
  7096. * Update HTTPS-Everywhere to 3.2.2
  7097. * Update NoScript to 2.6.6.6
  7098. * Update PDF.JS to 0.8.1
  7099. * Windows:
  7100. * Use MinGW-w64 (via Gitian) to cross-compile the bundles from Ubuntu
  7101. * Use TBB-Windows-Installer to guide Windows users through TBB extraction
  7102. * Temporarily disable WebGL and Accessibility support due to minor MinGW
  7103. issues
  7104. * Mac:
  7105. * Use 'Toolchain4' fork by Ray Donnelley to cross-compile the bundles from
  7106. Ubuntu