ChangeLog.txt 233 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082
  1. Tor Browser 9.0.2 -- December 3 2019
  2. * All Platforms
  3. * Update Firefox to 68.3.0esr
  4. * Bump NoScript to 11.0.9
  5. * Bug 32362: NoScript TRUSTED setting doesn't work
  6. * Bug 32429: Issues with about:blank and NoScript on .onion sites
  7. * Bump HTTPS Everywhere to 2019.11.7
  8. * Bug 27268: Preferences clean-up in Torbutton code
  9. * Translations update
  10. * Windows + OS X + Linux
  11. * Bug 32125: Fix circuit display for bridge without a fingerprint
  12. * Bug 32250: Backport enhanced letterboxing support (bug 1546832 and 1556017)
  13. * Windows
  14. * Bug 31989: Backport backout of old mingw-gcc patch
  15. * Bug 32616: Disable GetSecureOutputDirectoryPath() functionality
  16. * Android
  17. * Bug 32365: Localization is broken in Tor Browser 9 on Android
  18. * Build System
  19. * All Platforms
  20. * Bug 32413: Bump Go version to 1.12.13
  21. Tor Browser 9.5a3 -- December 3 2019
  22. * All Platforms
  23. * Update Firefox to 68.3.0esr
  24. * Bump NoScript to 11.0.9
  25. * Bug 32362: NoScript TRUSTED setting doesn't work
  26. * Bug 32429: Issues with about:blank and NoScript on .onion sites
  27. * Bug 32549: NoScript makes requests to sync-messages.invalid
  28. * Update HTTPS Everywhere to 2019.11.7
  29. * Bug 32618: Backport fixes from Mozilla bugs 1467970 and 1590526
  30. * Bug 32606: Set up default bridge at Georgetown University
  31. * Bug 30787: Add lt locale
  32. * Bug 30788: Add ms locale
  33. * Bug 30786: Add th locale
  34. * Translations update
  35. * Bug 28746: Remove torbutton isolation and fp prefs sync
  36. * Bug 28745: Assume always running in Tor Browser
  37. * Bug 30888: move torbutton_util.js to modules/utils.js
  38. * Bug 30851: Move default preferences to 000-tor-browser.js
  39. * Bug 28745: Remove torbutton.js unused code
  40. * Bug 32255: Missing ORIGIN header breaks CORS
  41. * Windows + OS X + Linux
  42. * Update Tor to 0.4.2.4-rc
  43. * Update Tor Launcher to 0.2.20.3
  44. * Bug 30787: Add lt locale
  45. * Bug 30788: Add ms locale
  46. * Bug 30786: Add th locale
  47. * Bug 30237: Improve TBB UI of hidden service client authorization
  48. * Android
  49. * Bug 32365: Localization is broken in Tor Browser 9 on Android
  50. * Bug 32405: Crash immediately after bootstrap on Android
  51. * OS X
  52. * Bug 32505: Tighten our rules in our entitlements file for macOS
  53. * Windows
  54. * Bug 32616: Disable GetSecureOutputDirectoryPath() functionality
  55. Tor Browser 9.0.2 -- December 3 2019
  56. * All Platforms
  57. * Update Firefox to 68.3.0esr
  58. * Bump NoScript to 11.0.9
  59. * Bug 32362: NoScript TRUSTED setting doesn't work
  60. * Bug 32429: Issues with about:blank and NoScript on .onion sites
  61. * Bug 32549: NoScript makes requests to sync-messages.invalid
  62. * Bump HTTPS Everywhere to 2019.11.7
  63. * Bug 27268: Preferences clean-up in Torbutton code
  64. * Translations update
  65. * Windows + OS X + Linux
  66. * Bug 32125: Fix circuit display for bridge without a fingerprint
  67. * Bug 32250: Backport enhanced letterboxing support (bug 1546832 and 1556017)
  68. * Windows
  69. * Bug 31989: Backport backout of old mingw-gcc patch
  70. * Bug 32616: Disable GetSecureOutputDirectoryPath() functionality
  71. * Android
  72. * Bug 32365: Localization is broken in Tor Browser 9 on Android
  73. * Build System
  74. * All Platforms
  75. * Bug 32413: Bump Go version to 1.12.13
  76. Tor Browser 9.5a2 -- November 11 2019
  77. * All Platforms
  78. * Update NoScript to 11.0.7
  79. * Bug 21004: Don't block JavaScript on onion services on medium security
  80. * Bug 27307: NoScript marks HTTP onions as not secure
  81. * Bug 30783: Fundraising banner for EOY 2019 campain
  82. * Bug 32321: Don't ping Mozilla for Man-in-the-Middle-detection
  83. * Bug 32318: Backport Mozilla's fix for bug 1534339
  84. * Bug 31573: Catch SessionStore.jsm exception
  85. * Bug 27268: Preferences clean-up
  86. * Windows + OS X + Linux
  87. * Update Tor to 0.4.2.3-alpha
  88. * Update Tor Launcher to 0.2.20.2
  89. * Bug 32164: Trim each received log line from tor
  90. * Translations update
  91. * Bug 32250: Backport enhanced letterboxing support (bug 1546832 and 1556017)
  92. * Bug 31803: Replaced about:debugging logo with flat version
  93. * Bug 31764: Fix for error when navigating via 'Paste and go'
  94. * Bug 32169: Fix TB9 Wikipedia address bar search
  95. * Bug 32210: Hide the tor pane when using a system tor
  96. * Bug 31658: Use builtin --panel-disabled-color for security level text
  97. * Bug 32188: Fix localization on about:preferences#tor
  98. * Bug 32184: Red dot is shown while downloading an update
  99. * Bug 27604: Fix broken Tor Browser after moving it to a different directory
  100. * Bug 32220: Improve the letterboxing experience
  101. * Bug 30683: Backport upstreamed fix from Mozilla (bug 1581537)
  102. * Android
  103. * Bug 32342: Crash when changing the browser locale
  104. * Bug 32303: Obfs4 is broken on Android Q
  105. * Build System
  106. * All Platforms
  107. * Bug 32413: Bump Go version to 1.12.13
  108. * Android
  109. * Bug 28803: Integrate building Pluggable Transports for Android
  110. Tor Browser 9.0.1 -- November 4 2019
  111. * All Platforms
  112. * Update NoScript to 11.0.4
  113. * Bug 21004: Don't block JavaScript on onion services on medium security
  114. * Bug 27307: NoScript marks HTTP onions as not secure
  115. * Bug 30783: Fundraising banner for EOY 2019 campain
  116. * Bug 32321: Don't ping Mozilla for Man-in-the-Middle-detection
  117. * Bug 27268: Preferences clean-up
  118. * Windows + OS X + Linux
  119. * Update Tor Launcher to 0.2.20.2
  120. * Bug 32164: Trim each received log line from tor
  121. * Translations update
  122. * Bug 31803: Replaced about:debugging logo with flat version
  123. * Bug 31764: Fix for error when navigating via 'Paste and go'
  124. * Bug 32169: Fix TB9 Wikipedia address bar search
  125. * Bug 32210: Hide the tor pane when using a system tor
  126. * Bug 31658: Use builtin --panel-disabled-color for security level text
  127. * Bug 32188: Fix localization on about:preferences#tor
  128. * Bug 32184: Red dot is shown while downloading an update
  129. * Android
  130. * Bug 32342: Crash when changing the browser locale
  131. Tor Browser 9.5a1 -- October 23 2019
  132. * All Platforms
  133. * Update Firefox to 68.2.0esr
  134. * Bug 31740: Remove some unnecessary RemoteSettings instances
  135. * Bug 30681: Set security.enterprise_roots.enabled to false
  136. * Bug 31144: Review network code changes for Firefox 68 ESR
  137. * Bug 21549: Enable WASM on standard security level
  138. * Windows + OS X + Linux
  139. * Update Tor Launcher to 0.2.20.1
  140. * Bug 32154: Custom bridge field only allows one line of input
  141. * Bug 32112: Fix bad & escaping in translations
  142. * Bug 31286: Update to tor settings related strings
  143. * Translations update
  144. * Bug 32125: Fix circuit display for bridge without a fingerprint
  145. * Bug 32076: Upgrade to goptlib v1.1.0
  146. * Bug 32061: Bump snowflake version to b4f4b29a03
  147. * Bug 32092: Fix Tor Browser Support link in preferences
  148. * Bug 32111: Fixed issue parsing user-provided bridge strings
  149. * Bug 31749: Fix security level panel spawning events
  150. * Bug 31920: Fix Security Level panel when its toolbar button moves to overflow
  151. * Bug 31748+31961: Fix 'Learn More' links in Security Level preferences and panel
  152. * Translations update
  153. * Windows
  154. * Bug 32132: Re-enable jemalloc for Windows users
  155. * Bug 31989: Backport backout of old mingw-gcc patch
  156. * Android
  157. * Bug 32097: Fix conflicts in mobile onboarding while rebasing to 68.2.0esr
  158. * Bug 26529: Notify user about possible proxy-bypass before opening external app
  159. * Build System
  160. * Android
  161. * Bug 30461: Clean up tor-android-service project
  162. Tor Browser 9.0 -- October 22 2019
  163. * All Platforms
  164. * Update Firefox to 68.2.0esr
  165. * Bug 31740: Remove some unnecessary RemoteSettings instances
  166. * Bug 13543: Spoof smooth and powerEfficient for Media Capabilities
  167. * Bug 28196: about:preferences is not properly translated anymore
  168. * Bug 19417: Disable asmjs on safer and safest security levels
  169. * Bug 30463: Explicitly disable MOZ_TELEMETRY_REPORTING
  170. * Bug 31935: Disable profile downgrade protection
  171. * Bug 16285: Disable DRM/EME on Android and drop Adobe CDM
  172. * Bug 31602: Remove Pocket indicators in UI and disable it
  173. * Bug 31914: Fix eslint linter error
  174. * Bug 30429: Rebase patches for Firefox 68 ESR
  175. * Bug 31144: Review network code changes for Firefox 68 ESR
  176. * Bug 10760: Integrate Torbutton into Tor Browser directly
  177. * Bug 25856: Remove XUL overlays from Torbutton
  178. * Bug 31322: Fix about:tor assertion failure debug builds
  179. * Bug 29430: Add support for meek_lite bridges to bridgeParser
  180. * Bug 28561: Migrate "About Tor Browser" dialog to tor-browser
  181. * Bug 30683: Prevent detection of locale via some *.properties
  182. * Bug 31298: Backport patch for #24056
  183. * Bug 9336: Odd wyswig schemes without isolation for browserspy.dk
  184. * Bug 27601: Browser notifications are not working anymore
  185. * Bug 30845: Make sure internal extensions are enabled
  186. * Bug 28896: Enable extensions in private browsing by default
  187. * Bug 31563: Reload search extensions if extensions.enabledScopes has changed
  188. * Bug 31396: Fix communication with NoScript for security settings
  189. * Bug 31142: Fix crash of tab and messing with about:newtab
  190. * Bug 29049: Backport JS Poison Patch
  191. * Bug 25214: Canvas data extraction on local pdf file should be allowed
  192. * Bug 30657: Locale is leaked via title of link tag on non-html page
  193. * Bug 31015: Disabling SVG hides UI icons in extensions
  194. * Bug 30681: Set security.enterprise_roots.enabled to false
  195. * Bug 30538: Unable to comment on The Independent Newspaper
  196. * Bug 31209: View PDF in Tor Browser is fuzzy
  197. * Translations update
  198. * Windows + OS X + Linux
  199. * Update Tor to 0.4.1.6
  200. * Update OpenSSL to 1.1.1d
  201. * Bug 31844: OpenSSL 1.1.1d fails to compile for some platforms/architectures
  202. * Update Tor Launcher to 0.2.20.1
  203. * Bug 28044: Integrate Tor Launcher into tor-browser
  204. * Bug 32154: Custom bridge field only allows one line of input
  205. * Bug 31286: New strings for about:preferences#tor
  206. * Bug 31303: Do not launch tor in browser toolbox
  207. * Bug 32112: Fix bad & escaping in translations
  208. * Bug 31491: Clean up the old meek http helper browser profiles
  209. * Bug 29197: Remove use of overlays
  210. * Bug 31300: Modify Tor Launcher so it is compatible with ESR68
  211. * Bug 31487: Modify moat client code so it is compatible with ESR68
  212. * Bug 31488: Moat: support a comma-separated list of transports
  213. * Bug 30468: Add mk locale
  214. * Bug 30469: Add ro locale
  215. * Bug 30319: Remove FTE bits
  216. * Translations update
  217. * Bug 32092: Fix Tor Browser Support link in preferences
  218. * Bug 32111: Fixed issue parsing user-provided bridge strings
  219. * Bug 31749: Fix security level panel spawning events
  220. * Bug 31920: Fix Security Level panel when its toolbar button moves to overflow
  221. * Bug 31748+31961: Fix 'Learn More' links in Security Level preferences and panel
  222. * Bug 28044: Integrate Tor Launcher into tor-browser
  223. * Bug 31059: Enable Letterboxing
  224. * Bug 30468: Add mk locale
  225. * Bug 30469: Add ro locale
  226. * Bug 29430: Use obfs4proxy's meek_lite with utls instead of meek
  227. * Bug 31251: Security Level button UI polish
  228. * Bug 31344: Register SecurityLevelPreference's 'unload' callback
  229. * Bug 31286: Provide network settings on about:preferences#tor
  230. * Bug 31886: Fix ko bundle bustage
  231. * Bug 31768: Update onboarding for Tor Browser 9
  232. * Bug 27511: Add new identity button to toolbar
  233. * Bug 31778: Support dark-theme for the Circuit Display UI
  234. * Bug 31910: Replace meek_lite with meek in circuit display
  235. * Bug 30504: Deal with New Identity related browser console errors
  236. * Bug 31929: Don't escape DTD entity in ar
  237. * Bug 31747: Some onboarding UI is always shown in English
  238. * Bug 32041: Replace = with real hamburguer icon ≡
  239. * Bug 30304: Browser locale can be obtained via DTD strings
  240. * Bug 31065: Set network.proxy.allow_hijacking_localhost to true
  241. * Bug 24653: Merge securityLevel.properties into torbutton.dtd
  242. * Bug 31164: Set up default bridge at Karlstad University
  243. * Bug 15563: Disable ServiceWorkers on all platforms
  244. * Bug 31598: Disable warning on window resize if letterboxing is enabled
  245. * Bug 31562: Fix circuit display for error pages
  246. * Bug 31575: Firefox is phoning home during start-up
  247. * Bug 31491: Clean up the old meek http helper browser profiles
  248. * Bug 26345: Hide tracking protection UI
  249. * Bug 31601: Disable recommended extensions again
  250. * Bug 30662: Don't show Firefox Home when opening new tabs
  251. * Bug 31457: Disable per-installation profiles
  252. * Bug 28822: Re-implement desktop onboarding for ESR 68
  253. * Windows
  254. * Bug 31942: Re-enable signature check for language packs
  255. * Bug 29013: Enable stack protection for Firefox on Windows
  256. * Bug 30800: ftp:// on Windows can be used to leak the system time zone
  257. * Bug 31547: Back out patch for Mozilla's bug 1574980
  258. * Bug 31141: Fix typo in font.system.whitelist
  259. * Bug 30319: Remove FTE bits
  260. * OS X
  261. * Bug 30126: Make Tor Browser compatible with macOS 10.15
  262. * Bug 31607: App menu items stop working on macOS
  263. * Bug 31955: On macOS avoid throwing inside nonBrowserWindowStartup()
  264. * Bug 29818: Adapt #13379 patch for 68esr
  265. * Bug 31464: Meek and moat are broken on macOS 10.9 with Go 1.12
  266. * Linux
  267. * Bug 31942: Re-enable signature check for language packs
  268. * Bug 31646: Update abicheck to require newer libstdc++.so.6
  269. * Bug 31968: Don't fail if /proc/cpuinfo is not readable
  270. * Bug 24755: Stop using a heredoc in start-tor-browser
  271. * Bug 31550: Put curly quotes inside single quotes
  272. * Bug 31394: Replace "-1" with "−1" in start-tor-browser.desktop
  273. * Bug 30319: Remove FTE bits
  274. * Android
  275. * Update Tor to 0.4.1.5
  276. * Bug 31010: Rebase mobile patches for Fennec 68
  277. * Bug 31010: Don't use addTrustedTab() on mobile
  278. * Bug 30607: Support Tor Browser running on Android Q
  279. * Bug 31192: Support x86_64 target on Android
  280. * Bug 30380: Cancel dormant by startup
  281. * Bug 30943: Show version number on mobile
  282. * Bug 31720: Enable website suggestions in address bar
  283. * Bug 31822: Security slider is not really visible on Android anymore
  284. * Bug 24920: Only create Private tabs in permanent Private Browsing Mode
  285. * Bug 31730: Revert aarch64-workaround against JIT-related crashes
  286. * Bug 32097: Fix conflicts in mobile onboarding while rebasing to 68.2.0esr
  287. * Build System
  288. * All Platforms
  289. * Bug 30585: Provide standalone clang 8 project across all platforms
  290. * Bug 30376: Use Rust 1.34 for Tor Browser 9
  291. * Bug 30490: Add cbindgen project for building Firefox 68 ESR/Fennec 68
  292. * Bug 30701: Add nodejs project for building Firefox 68 ESR/Fennec 68
  293. * Bug 31621: Fix node bug that makes large writes to stdout fail
  294. * Bug 30734: Add nasm project for building Firefox 68 ESR/Fennec 68
  295. * Bug 31293: Make sure the lo interface inside the containers is up
  296. * Bug 27493: Clean up mozconfig options
  297. * Bug 31308: Sync mozconfig files used in tor-browser over to tor-browser-build for esr68
  298. * Windows
  299. * Bug 29307: Use Stretch for cross-compiling for Windows
  300. * Bug 29731: Remove faketime for Windows builds
  301. * Bug 30322: Windows toolchain update for Firefox 68 ESR
  302. * Bug 28716: Create mingw-w64-clang toolchain
  303. * Bug 28238: Adapt firefox and fxc2 projects for Windows builds
  304. * Bug 28716: Optionally omit timestamp in PE header
  305. * Bug 31567: NS_tsnprintf() does not handle %s correctly on Windows
  306. * Bug 31458: Revert patch for #27503 and bump mingw-w64 revision used
  307. * Bug 9898: Provide clean fix for strcmpi issue in NSPR
  308. * Bug 29013: Enable stack protection support for Firefox on Windows
  309. * Bug 30384: Use 64bit containers to build 32bit Windows Tor Browser
  310. * Bug 31538: Windows bundles based on ESR 68 are not built reproducibly
  311. * Bug 31584: Clean up mingw-w64 project
  312. * Bug 31596: Bump mingw-w64 version to pick up fix for #31567
  313. * Bug 29187: Bump NSIS version to 3.04
  314. * Bug 31732: Windows nightly builds are busted due to mingw-w64 commit bump
  315. * Bug 29319: Remove FTE support for Windows
  316. * OS X
  317. * Bug 30323: MacOS toolchain update for Firefox 68 ESR
  318. * Bug 31467: Switch to clang for cctools project
  319. * Bug 31465: Adapt tor-browser-build projects for macOS notarization
  320. * Linux
  321. * Bug 31448: gold and lld break linking 32bit Linux bundles
  322. * Bug 31618: Linux32 builds of Tor Browser 9.0a6 are not matching
  323. * Bug 31450: Still use GCC for our ASan builds
  324. * Bug 30321: Linux toolchain update for Firefox ESR 68
  325. * Bug 30736: Install yasm from wheezy-backports
  326. * Bug 31447: Don't install Python just for Mach
  327. * Bug 30448: Strip Browser/gtk2/libmozgtk.so
  328. * Android
  329. * Bug 30324: Android toolchain update for Fennec 68
  330. * Bug 31173: Update android-toolchain project to match Firefox
  331. * Bug 31389: Update Android Firefox to build with Clang
  332. * Bug 31388: Update Rust project for Android
  333. * Bug 30665: Get Firefox 68 ESR working with latest android toolchain
  334. * Bug 30460: Update TOPL project to use Firefox 68 toolchain
  335. * Bug 30461: Update tor-android-service project to use Firefox 68 toolchain
  336. * Bug 28753: Use Gradle with --offline when building the browser part
  337. * Bug 31564: Make Android bundles based on ESR 68 reproducible
  338. * Bug 31981: Remove require-api.patch
  339. * Bug 31979: TOPL: Sort dependency list
  340. * Bug 30665: Remove unnecessary build patches for Firefox
  341. Tor Browser 9.0a8 -- October 14 2019
  342. * All Platforms
  343. * Bug 13543: Spoof smooth and powerEfficient for Media Capabilities
  344. * Bug 28196: about:preferences is not properly translated anymore
  345. * Bug 19417: Disable asmjs on safer and safest security levels
  346. * Bug 30463: Explicitly disable MOZ_TELEMETRY_REPORTING
  347. * Bug 31935: Disable profile downgrade protection
  348. * Bug 31811: Backport fix for bug 1554805
  349. * Bug 16285: Disable DRM/EME on Android and drop Adobe CDM
  350. * Bug 31602: Remove Pocket indicators in UI and disable it
  351. * Bug 31914: Fix eslint linter error
  352. * Translations update
  353. * Windows + OS X + Linux
  354. * Update Tor to 0.4.2.2-alpha
  355. * Update Tor Launcher to 0.2.19.5
  356. * Bug 31286: New strings for about:preferences#tor
  357. * Translations update
  358. * Bug 31286: Provide network settings on about:preferences#tor
  359. * Bug 31886: Fix ko bundle bustage
  360. * Bug 31768: Update onboarding for Tor Browser 9
  361. * Bug 27511: Add new identity button to toolbar
  362. * Bug 31778: Support dark-theme for the Circuit Display UI
  363. * Bug 31910: Replace meek_lite with meek in circuit display
  364. * Bug 30504: Deal with New Identity related browser console errors
  365. * Bug 31929: Don't escape DTD entity in ar
  366. * Bug 31747: Some onboarding UI is always shown in English
  367. * Bug 32041: Replace = with real hamburguer icon ≡
  368. * Windows
  369. * Bug 31942: Re-enable signature check for language packs
  370. * Bug 29013: Enable stack protection for Firefox on Windows
  371. * OS X
  372. * Bug 31607: App menu items stop working on macOS
  373. * Bug 31955: On macOS avoid throwing inside nonBrowserWindowStartup()
  374. * Linux
  375. * Bug 31942: Re-enable signature check for language packs
  376. * Bug 31968: Don't fail if /proc/cpuinfo is not readable
  377. * Bug 24755: Stop using a heredoc in start-tor-browser
  378. * Bug 31550: Put curly quotes inside single quotes
  379. * Android
  380. * Bug 31822: Security slider is not really visible on Android anymore
  381. * Build System
  382. * All Platforms
  383. * Bug 31293: Make sure the lo interface inside the containers is up
  384. * Windows
  385. * Bug 29013: Enable stack protection support for Firefox on Windows
  386. * Android
  387. * Bug 31564: Make Android bundles based on ESR 68 reproducible
  388. * Bug 31981: Remove require-api.patch
  389. * Bug 31979: TOPL: Sort dependency list
  390. * Bug 30665: Remove unnecessary build patches for Firefox
  391. Tor Browser 9.0a7 -- October 1 2019
  392. * All platforms
  393. * Bug 30304: Browser locale can be obtained via DTD strings
  394. * Bug 31065: Set network.proxy.allow_hijacking_localhost to true
  395. * Bug 24653: Merge securityLevel.properties into torbutton.dtd
  396. * Bug 31725: Pick up mk in Torbutton properly
  397. * Bug 31164: Set up default bridge at Karlstad University
  398. * Bug 15563: Disable ServiceWorkers on all platforms
  399. * Translations update
  400. * Windows + OS X + Linux
  401. * Update Tor to 0.4.2.1-alpha
  402. * Update OpenSSL to 1.1.1d
  403. * Bug 31844: OpenSSL 1.1.1d fails to compile for some platforms/architectures
  404. * Update Tor Launcher to 0.2.19.4
  405. * Bug 31303: Do not launch tor in browser toolbox
  406. * Bug 31491: Clean up the old meek http helper browser profiles
  407. * Translations update
  408. * Bug 31598: Disable warning on window resize if letterboxing is enabled
  409. * Bug 31562: Fix circuit display for error pages
  410. * Bug 31575: Firefox is phoning home during start-up
  411. * Bug 31491: Clean up the old meek http helper browser profiles
  412. * Bug 26345: Hide tracking protection UI
  413. * Bug 31601: Disable recommended extensions again
  414. * Bug 30662: Don't show Firefox Home when opening new tabs
  415. * Bug 31457: disable per-installation profiles
  416. * Bug 28822: Re-implement desktop onboarding for ESR 68
  417. * Bug 25483: Provide Snowflake based on Pion for Windows, macOS, and Linux
  418. * Windows
  419. * Bug 30800: ftp:// on Windows can be used to leak the system time zone
  420. * OS X
  421. * Bug 30126: Make Tor Browser on macOS compatible with Apple's notarization
  422. * Bug 31702: Backport Mozilla's bug 1578075
  423. * Linux
  424. * Bug 31646: Update abicheck to require newer libstdc++.so.6
  425. * Bug 31380: Snowflake does not start on older Linux systems
  426. * Android
  427. * Update Tor to 0.4.1.5
  428. * Bug 31192: Support x86_64 target on Android
  429. * Bug 30380: Cancel dormant by startup
  430. * Bug 30943: Show version number on mobile
  431. * Bug 31720: Enable website suggestions in address bar
  432. * Build System
  433. * All platforms
  434. * Bug 31621: Fix node bug that makes large writes to stdout fail
  435. * Bug 27493: Clean up mozconfig options
  436. * Bug 31308: Sync mozconfig files used in tor-browser over to tor-browser-build for esr68
  437. * Windows
  438. * Bug 30384: Use 64bit containers to build 32bit Windows Tor Browser
  439. * Bug 31538: Windows bundles based on ESR 68 are not built reproducibly
  440. * Bug 31584: Clean up mingw-w64 project
  441. * Bug 31596: Bump mingw-w64 version to pick up fix for #31567
  442. * Bug 29187: Bump NSIS version to 3.04
  443. * Bug 31732: Windows nightly builds are busted due to mingw-w64 commit bump
  444. * Linux
  445. * Bug 31448: gold and lld break linking 32bit Linux bundles
  446. * Bug 31618: linux32 builds of Tor Browser 9.0a6 are not matching
  447. * Bug 31450: Still use GCC for our ASan builds
  448. Tor Browser 8.5.6 -- September 9 2019
  449. * Android
  450. * Update Torbutton to 2.1.14
  451. * Bug 31616: Fix JIT related crashes on aarch64
  452. Tor Browser 9.0a6 -- September 4 2019
  453. * All platforms
  454. * Update Firefox to 68.1.0esr
  455. * Update NoScript to 11.0.3
  456. * Bug 26847: NoScript pops up a full-site window for XSS warning
  457. * Bug 31287: NoScript leaks browser locale
  458. * Bug 30429: Rebase patches for Firefox 68 ESR
  459. * Bug 10760: Integrate Torbutton into Tor Browser directly
  460. * Bug 25856: Remove XUL overlays from Torbutton
  461. * Bug 31322: Fix about:tor assertion failure debug builds
  462. * Bug 31520: Remove monthly giving banner from Tor Browser
  463. * Bug 29430: Add support for meek_lite bridges to bridgeParser
  464. * Bug 28561: Migrate "About Tor Browser" dialog to tor-browser
  465. * Bug 30683: Prevent detection of locale via some *.properties
  466. * Bug 31298: Backport patch for #24056
  467. * Bug 9336: Odd wyswig schemes without isolation for browserspy.dk
  468. * Bug 27601: Browser notifications are not working anymore
  469. * Bug 30845: Make sure internal extensions are enabled
  470. * Bug 28896: Enable extensions in private browsing by default
  471. * Bug 31563: Reload search extensions if extensions.enabledScopes has changed
  472. * Bug 31396: Fix communication with NoScript for security settings
  473. * Bug 31142: Fix crash of tab and messing with about:newtab
  474. * Bug 29049: Backport JS Poison Patch
  475. * Bug 25214: Canvas data extraction on local pdf file should be allowed
  476. * Bug 30657: Locale is leaked via title of link tag on non-html page
  477. * Bug 31015: Disabling SVG hides UI icons in extensions
  478. * Bug 30538: Unable to comment on The Independent Newspaper
  479. * Bug 31357: Retire Tom's default obfs4 bridge
  480. * Windows + OS X + Linux
  481. * Update Tor to 0.4.1.5
  482. * Update Tor Launcher to 0.2.19.3
  483. * Bug 29197: Remove use of overlays
  484. * Bug 31300: Modify Tor Launcher so it is compatible with ESR68
  485. * Bug 31487: Modify moat client code so it is compatible with ESR68
  486. * Bug 31488: Moat: support a comma-separated list of transports
  487. * Translations update
  488. * Bug 29430: Use obfs4proxy's meek_lite with utls instead of meek
  489. * Bug 31251: Security Level button UI polish
  490. * Bug 31344: Register SecurityLevelPreference's 'unload' callback
  491. * Bug 12774: Selecting meek in the browser UI is broken
  492. * Build System:
  493. * Bug 31465: Bump Go to 1.12.9
  494. * Windows
  495. * Bug 31547: Back out patch for Mozilla's bug 1574980
  496. * Bug 31141: Fix typo in font.system.whitelist
  497. * Backport fix for bug 1572844 to fix broken build
  498. * OS X
  499. * Bug 29818: Adapt #13379 patch for 68esr
  500. * Bug 31464: meek and moat are broken on macOS 10.9 with Go 1.12
  501. * Bug 31403: Bump snowflake commit to cd650fa009
  502. * Linux
  503. * Bug 31403: Bump snowflake commit to cd650fa009
  504. * Android
  505. * Bug 31010: Rebase mobile patches for Fennec 68
  506. * Bug 31010: Don't use addTrustedTab() on mobile
  507. * Bug 30607: Support Tor Browser running on Android Q
  508. * Build System:
  509. * All Platforms:
  510. * Bug 30585: Provide standalone clang 8 project across all platforms
  511. * Bug 30376: Use Rust 1.34 for Tor Browser 9
  512. * Bug 30490: Add cbindgen project for building Firefox 68 ESR/Fennec 68
  513. * Bug 30701: Add nodejs project for building Firefox 68 ESR/Fennec 68
  514. * Bug 30734: Add nasm project for building Firefox 68 ESR/Fennec 68
  515. * Windows
  516. * Bug 30322: Windows toolchain update for Firefox 68 ESR
  517. * Bug 28716: Create mingw-w64-clang toolchain
  518. * Bug 28238: Adapt firefox and fxc2 projects for Windows builds
  519. * Bug 28716: Optionally omit timestamp in PE header
  520. * Bug 31567: NS_tsnprintf() does not handle %s correctly on Windows
  521. * Bug 31458: Revert patch for #27503 and bump mingw-w64 revision used
  522. * Bug 9898: Provide clean fix for strcmpi issue in NSPR
  523. * OS X
  524. * Bug 30323: MacOS toolchain update for Firefox 68 ESR
  525. * Bug 31467: Switch to clang for cctools project
  526. * Bug 31465: Adapt tor-browser-build projects for macOS notarization
  527. * Linux
  528. * Bug 30321: Linux toolchain update for Firefox ESR 68
  529. * Bug 30736: Install yasm from wheezy-backports
  530. * Bug 31447: Don't install Python just for Mach
  531. * Bug 31394: Replace "-1" with "−1" in start-tor-browser.desktop.
  532. * Android
  533. * Bug 30324: Android toolchain update for Fennec 68
  534. * Bug 31173: Update android-toolchain project to match Firefox
  535. * Bug 31389: Update Android Firefox to build with Clang
  536. * Bug 31388: Update Rust project for Android
  537. * Bug 30665: Get Firefox 68 ESR working with latest android toolchain
  538. * Bug 30460: Update TOPL project to use Firefox 68 toolchain
  539. * Bug 30461: Update tor-android-service project to use Firefox 68 toolchain
  540. * Bug 28753: Use Gradle with --offline when building the browser part
  541. Tor Browser 8.5.5 -- September 3 2019
  542. * All platforms
  543. * Update Firefox to 60.9.0esr
  544. * Update Torbutton to 2.1.13
  545. * Bug 31520: Remove monthly giving banner from Tor Browser
  546. * Bug 31140: Do not enable IonMonkey on AARCH64
  547. * Translations update
  548. * Update NoScript to 11.0.3
  549. * Bug 26847: NoScript pops up a full-site window for XSS warning
  550. * Bug 31287: NoScript leaks browser locale
  551. * Bug 31357: Retire Tom's default obfs4 bridge
  552. * Windows + OS X + Linux
  553. * Update Tor to 0.4.1.5
  554. * Windows
  555. * Bug 31547: Back out patch for Mozilla's bug 1574980
  556. * Bug 27503: Provide full support for accessibility tools
  557. * Bug 30575: Don't allow enterprise policies in Tor Browser
  558. * Bug 31141: Fix typo in font.system.whitelist
  559. * Android
  560. * Bug 28119: Tor Browser for aarch64
  561. * Build System
  562. * All platforms
  563. * Bug 31465: Bump Go to 1.12.9
  564. Tor Browser 9.0a5 -- July 31 2019
  565. * Android
  566. * Bug 31260: Backport bug 1477259 for aarch64 support on Google Play
  567. Tor Browser 9.0a4 -- July 9 2019
  568. * All platforms
  569. * Update Firefox to 60.8.0esr
  570. * Update Torbutton to 2.2.1
  571. * Bug 30577: Add Fundraising Banner
  572. * Bug 31041: Stop syncing network.cookie.lifetimePolicy
  573. * Bug 30468: Add mk locale
  574. * Translations update
  575. * Update Tor Launcher to 0.2.19.2
  576. * Bug 30468: Add mk locale
  577. * Translations update
  578. * Update HTTPS Everywhere to 2019.6.27
  579. * Bug 31055+31058: Remove four default bridges
  580. * Bug 30849: Backport fixes for Mozilla's bug 1552627 and 1549833
  581. * Windows + OS X + Linux
  582. * Update Tor to 0.4.1.3-alpha
  583. * Bug 30468: Add mk locale
  584. * Bug 31059: Enable Letterboxing
  585. * Windows
  586. * Bug 27503: Provide full support for accessibility tools
  587. * Bug 30575: Don't allow enterprise policies in Tor Browser
  588. * OS X
  589. * Bug 30631: Blurry Tor Browser icon on macOS app switcher
  590. * Android
  591. * Bug 28119: Tor Browser for aarch64
  592. Tor Browser 8.5.4 -- July 9 2019
  593. * All platforms
  594. * Update Firefox to 60.8.0esr
  595. * Update Torbutton to 2.1.12
  596. * Bug 30577: Add Fundraising Banner
  597. * Bug 31041: Stop syncing network.cookie.lifetimePolicy
  598. * Translations update
  599. * Update HTTPS Everywhere to 2019.6.27
  600. * Bug 31055+31058: Remove four default bridges
  601. * Bug 30712: Backport fix for Mozilla's bug 1552993
  602. * Bug 30849: Backport fixes for Mozilla's bug 1552627 and 1549833
  603. * Windows + OS X + Linux
  604. * Update Tor to 0.4.0.5
  605. * Update OpenSSL to 1.0.2s
  606. * Bug 29045: Ensure that tor does not start up in dormant mode
  607. * OS X
  608. * Bug 30631: Blurry Tor Browser icon on macOS app switcher
  609. Tor Browser 9.0a3 -- June 24 2019
  610. * All platforms
  611. * Pick up fixes for Mozilla's bug 1544386 and 1560192
  612. * Update NoScript to 10.6.3
  613. * Bug 29904: NoScript blocks MP4 on higher security levels
  614. * Bug 30624+29043+29647: Prevent XSS protection from freezing the browser
  615. Tor Browser 8.5.3 -- June 21 2019
  616. * All platforms
  617. * Pick up fix for Mozilla's bug 1560192
  618. Tor Browser 8.5.2 -- June 19 2019
  619. * All platforms
  620. * Pick up fix for Mozilla's bug 1544386
  621. * Update NoScript to 10.6.3
  622. * Bug 29904: NoScript blocks MP4 on higher security levels
  623. * Bug 30624+29043+29647: Prevent XSS protection from freezing the browser
  624. Tor Browser 9.0a2 -- June 11 2019
  625. * All platforms
  626. * Update Torbutton to 2.2
  627. * Bug 30565: Sync nocertdb with privatebrowsing.autostart at startup
  628. * Bug 30469: Add ro translation
  629. * Translations update
  630. * Update NoScript to 10.6.2
  631. * Bug 29969: Remove workaround for Mozilla's bug 1532530
  632. * Update HTTPS Everywhere to 2019.5.13
  633. * Bug 30541: Disable WebGL readPixel() for web content
  634. * Bug 30712: Backport fix for Mozilla's bug 1552993
  635. * Bug 30469: Add locale ro
  636. * Windows + OS X + Linux
  637. * Update Tor to 0.4.1.2-alpha
  638. * Update OpenSSL to 1.1.1c
  639. * Update Tor Launcher to 0.2.19.1
  640. * Bug 30469: Add locale ro
  641. * Translations update
  642. * Bug 30639: Revert IPv6 support test
  643. * Bug 30560: Better match actual toolbar in onboarding toolbar graphic
  644. * Bug 30571: Correct more information URL for security settings
  645. * Linux
  646. * Bug 30451: Compile go-webrtc with a non executable stack
  647. * Android
  648. * Bug 24920: Only create Private tabs in permanent Private Browsing Mode
  649. * Bug 30635: Sync mobile default bridges list with desktop one
  650. * Build System
  651. * All platforms
  652. * Bug 30480: Check that signed tag contains expected tag name
  653. * Bug 30536: Update Go to 1.12.5
  654. * OS X
  655. * Bug 30491: Move our macOS builds to Debian Stretch
  656. * Linux
  657. * Bug 25930: Update GCC to 8.3.0 for our Linux builds
  658. Tor Browser 8.5.1 -- June 4 2019
  659. * All platforms
  660. * Update Torbutton to 2.1.10
  661. * Bug 30565: Sync nocertdb with privatebrowsing.autostart at startup
  662. * Bug 30464: Add WebGL to safer descriptions
  663. * Translations update
  664. * Update NoScript to 10.6.2
  665. * Bug 29969: Remove workaround for Mozilla's bug 1532530
  666. * Update HTTPS Everywhere to 2019.5.13
  667. * Bug 30541: Disable WebGL readPixel() for web content
  668. * Windows + OS X + Linux
  669. * Bug 30560: Better match actual toolbar in onboarding toolbar graphic
  670. * Bug 30571: Correct more information URL for security settings
  671. * Android
  672. * Bug 30635: Sync mobile default bridges list with desktop one
  673. * Build System
  674. * All platforms
  675. * Bug 30480: Check that signed tag contains expected tag name
  676. Tor Browser 9.0a1 -- May 21 2019
  677. * All platforms
  678. * Update Firefox to 60.7.0esr
  679. * Update Torbutton to 2.1.9
  680. * Bug 30069: Use slider and about:tor localizations
  681. * Bug 30115+27449+25145: Map browser + domain -> credentials to fix UI issues
  682. * Bug 30171: Don't sync cookie.cookieBehavior and firstparty.isolate
  683. * Bug 30425: Revert armagadd-on-2.0 changes
  684. * Bug 30497: Add Donate link to about:tor
  685. * Bug 30464: Add WebGL to safer descriptions
  686. * Translations update
  687. * Update HTTPS Everywhere to 2019.5.6.1
  688. * Bug 24622: Proper first-party isolation of s3.amazonaws.com
  689. * Bug 30425: Revert armagadd-on-2.0 changes
  690. * Windows + OS X + Linux
  691. * Update Tor Launcher to 0.2.19
  692. * Bug 28044: Integrate Tor Launcher into tor-browser
  693. * Bug 29627: Moat: add support for obfsproxy's meek_lite
  694. * Bug 30319: Remove FTE bits
  695. * Translations update
  696. * Bug 28044: Integrate Tor Launcher into tor-browser
  697. * Bug 30372: Backport letterboxing (bug 1538130)
  698. * Bug 28369: Stop shipping pingsender executable
  699. * Bug 30457: Remove defunct default bridges
  700. * Bug 29045: Ensure that tor does not start up in dormant mode
  701. * Bug 29641: Try to connect over IPv6 if needed
  702. * Windows
  703. * Bug 30319: Drop FTE releated bits
  704. * Bug 29319: Remove FTE support for Windows
  705. * OS X
  706. * Bug 30241: Bump snowflake version to d11e55aabe
  707. * Linux
  708. * Bug 30319: Drop FTE releated bits
  709. * Bug 30241: Bump snowflake version to d11e55aabe
  710. * Android
  711. * Bug 29982: Force single-pane UI on Tor Preferences
  712. * Bug 30086: Prevent Sync-related crashes on Android
  713. * Bug 30214: Kill background thread when Activity is null
  714. * Bug 30239: Render Fragments after crash
  715. * Bug 30136: Use 'Tor Browser' as brand name on mobile, too
  716. * Bug 30069: Use slider and about:tor localizations
  717. * Bug 30371: Stop hard-coding the content provider name in tor-android-service
  718. * Bug 30162: Tor Browser bootstrap process got stuck after interrupting it
  719. * Bug 30166: If specified, only use custom bridges for connecting
  720. * Bug 30518: Add SocksPort flags for consistency across platforms
  721. * Bug 30284: Fix broken start-up on KitKat devices
  722. * Bug 30489: Remove Unused Resources from tor-android-service
  723. * Build System
  724. * Windows
  725. * Bug 29307: Use Stretch for cross-compiling for Windows
  726. * Bug 29731: Remove faketime for Windows builds
  727. * Linux
  728. * Bug 30377: Remove selfrando from our build system
  729. * Bug 30448: Strip Browser/gtk2/libmozgtk.so
  730. * Android
  731. * Bug 29981: Add option to build without using containers
  732. * Bug 30169: Switch to our tor-android-service repo
  733. * Bug 30404: Remove Orbot Project
  734. * Bug 30280: Wrong SHA-256 sum for j2objc-annotations-1.1.jar
  735. Tor Browser 8.5 -- May 21 2019
  736. * All platforms
  737. * Update Firefox to 60.7.0esr
  738. * Update Torbutton to 2.1.8
  739. * Bug 25013: Integrate Torbutton into tor-browser for Android
  740. * Bug 27111: Update about:tor desktop version to work on mobile
  741. * Bug 22538+22513: Fix new circuit button for error pages
  742. * Bug 25145: Update circuit display when back button is pressed
  743. * Bug 27749: Opening about:config shows circuit from previous website
  744. * Bug 30115+27449+25145: Map browser+domain to credentials to fix circuit display
  745. * Bug 25702: Update Tor Browser icon to follow design guidelines
  746. * Bug 21805: Add click-to-play button for WebGL
  747. * Bug 28836: Links on about:tor are not clickable
  748. * Bug 30171: Don't sync cookie.cookieBehavior and firstparty.isolate
  749. * Bug 29825: Intelligently add new Security Level button to taskbar
  750. * Bug 29903: No WebGL click-to-play on the standard security level
  751. * Bug 27290: Remove WebGL pref for min capability mode
  752. * Bug 25658: Replace security slider with security level UI
  753. * Bug 28628: Change onboarding Security panel to open new Security Level panel
  754. * Bug 29440: Update about:tor when Tor Browser is updated
  755. * Bug 27478: Improved Torbutton icons for dark theme
  756. * Bug 29239: Don't ship the Torbutton .xpi on mobile
  757. * Bug 27484: Improve navigation within onboarding (strings)
  758. * Bug 29768: Introduce new features to users (strings)
  759. * Bug 28093: Update donation banner style to make it fit in small screens
  760. * Bug 28543: about:tor has scroll bar between widths 900px and 1000px
  761. * Bug 28039: Enable dump() if log method is 0
  762. * Bug 27701: Don't show App Blocker dialog on Android
  763. * Bug 28187: Change tor circuit icon to torbutton.svg
  764. * Bug 29943: Use locales in AB-CD scheme to match Mozilla
  765. * Bug 26498: Add locale: es-AR
  766. * Bug 28082: Add locales cs, el, hu, ka
  767. * Bug 29973: Remove remaining stopOpenSecuritySettingsObserver() pieces
  768. * Bug 28075: Tone down missing SOCKS credential warning
  769. * Bug 30425: Revert armagadd-on-2.0 changes
  770. * Bug 30497: Add Donate link to about:tor
  771. * Bug 30069: Use slider and about:tor localizations on mobile
  772. * Bug 21263: Remove outdated information from the README
  773. * Bug 28747: Remove NoScript (XPCOM) related unused code
  774. * Translations update
  775. * Code clean-up
  776. * Update HTTPS Everywhere to 2019.5.6.1
  777. * Bug 27290: Remove WebGL pref for min capability mode
  778. * Bug 29120: Enable media cache in memory
  779. * Bug 24622: Proper first-party isolation of s3.amazonaws.com
  780. * Bug 29082: Backport patches for bug 1469916
  781. * Bug 28711: Backport patches for bug 1474659
  782. * Bug 27828: "Check for Tor Browser update" doesn't seem to do anything
  783. * Bug 29028: Auto-decline most canvas warning prompts again
  784. * Bug 27919: Backport SSL status API
  785. * Bug 27597: Fix our debug builds
  786. * Bug 28082: Add locales cs, el, hu, ka
  787. * Bug 26498: Add locale: es-AR
  788. * Bug 29916: Make sure enterprise policies are disabled
  789. * Bug 29349: Remove network.http.spdy.* overrides from meek helper user.js
  790. * Bug 29327: TypeError: hostName is null on about:tor page
  791. * Bug 30425: Revert armagadd-on-2.0 changes
  792. * Windows + OS X + Linux
  793. * Update OpenSSL to 1.0.2r
  794. * Update Tor Launcher to 0.2.18.3
  795. * Bug 27994+25151: Use the new Tor Browser logo
  796. * Bug 29328: Account for Tor 0.4.0.x's revised bootstrap status reporting
  797. * Bug 22402: Improve "For assistance" link
  798. * Bug 27994: Use the new Tor Browser logo
  799. * Bug 25405: Cannot use Moat if a meek bridge is configured
  800. * Bug 27392: Update Moat URLs
  801. * Bug 28082: Add locales cs, el, hu, ka
  802. * Bug 26498: Add locale es-AR
  803. * Bug 28039: Enable dump() if log method is 0
  804. * Translations update
  805. * Bug 25702: Activity 1.1 Update Tor Browser icon to follow design guidelines
  806. * Bug 28111: Use Tor Browser icon in identity box
  807. * Bug 22343: Make 'Save Page As' obey first-party isolation
  808. * Bug 29768: Introduce new features to users
  809. * Bug 27484: Improve navigation within onboarding
  810. * Bug 25658+29554: Replace security slider with security level UI
  811. * Bug 25405: Cannot use Moat if a meek bridge is configured
  812. * Bug 28885: Notify users that update is downloading
  813. * Bug 29180: MAR download stalls when about dialog is opened
  814. * Bug 27485: Users are not taught how to open security-slider dialog
  815. * Bug 27486: Avoid about:blank tabs when opening onboarding pages
  816. * Bug 29440: Update about:tor when Tor Browser is updated
  817. * Bug 23359: WebExtensions icons are not shown on first start
  818. * Bug 28628: Change onboarding Security panel to open new Security Level panel
  819. * Bug 27905: Fix many occurrences of "Firefox" in about:preferences
  820. * Bug 28369: Stop shipping pingsender executable
  821. * Bug 30457: Remove defunct default bridges
  822. * Windows
  823. * Bug 27503: Improve screen reader accessibility
  824. * Bug 27865: Tor Browser 8.5a2 is crashing on Windows
  825. * Bug 22654: Firefox icon is shown for Tor Browser on Windows 10 start menu
  826. * Bug 28874: Bump mingw-w64 commit to fix WebGL crash
  827. * Bug 12885: Windows Jump Lists fail for Tor Browser
  828. * Bug 28618: Set MOZILLA_OFFICIAL for Windows build
  829. * Bug 21704: Abort install if CPU is missing SSE2 support
  830. * OS X
  831. * Bug 27623: Use MOZILLA_OFFICIAL for our builds
  832. * Linux
  833. * Bug 28022: Use `/usr/bin/env bash` for bash invocation
  834. * Bug 27623: Use MOZILLA_OFFICIAL for our builds
  835. * Android
  836. * Bug 5709: Ship Tor Browser for Android
  837. * Build System
  838. * All platforms
  839. * Bug 25623: Disable network during build
  840. * Bug 25876: Generate source tarballs during build
  841. * Bug 28685: Set Build ID based on Tor Browser version
  842. * Bug 29194: Set DEBIAN_FRONTEND=noninteractive
  843. * Bug 29167: Upgrade go to 1.11.5
  844. * Bug 29158: Install updated apt packages (CVE-2019-3462)
  845. * Bug 29097: Don't try to install python3.6-lxml for HTTPS Everywhere
  846. * Bug 27061: Enable verification of langpacks checksums
  847. * Windows
  848. * Bug 26148: Update binutils to 2.31.1
  849. * Bug 27320: Build certutil for Windows
  850. * OS X
  851. * Bug 27320: Build certutil for macOS
  852. * Linux
  853. * Bug 26323+29812: Build 32bit Linux bundles on 64bit Debian Wheezy
  854. * Bug 26148: Update binutils to 2.31.1
  855. * Bug 29758: Build firefox debug symbols for linux-i686
  856. * Bug 29966: Use archive.debian.org for Wheezy images
  857. * Bug 29183: Use linux-x86_64 langpacks on linux-x86_64
  858. * Android
  859. * Bug 29981: Add option to build without using containers
  860. Tor Browser 8.5a12 -- May 7 2019
  861. * All platforms
  862. * Update Torbutton to 2.1.7
  863. * Bug 30388: Make sure the updated intermediate certificate keeps working
  864. * Backport fixes for bug 1549010 and bug 1549061
  865. * Bug 30388: Make sure the updated intermediate certificate keeps working
  866. Tor Browser 8.0.9 -- May 7 2019
  867. * All platforms
  868. * Update Torbutton to 2.0.13
  869. * Bug 30388: Make sure the updated intermediate certificate keeps working
  870. * Backport fixes for bug 1549010 and bug 1549061
  871. * Bug 30388: Make sure the updated intermediate certificate keeps working
  872. * Update NoScript to 10.6.1
  873. * Bug 29872: XSS popup with DuckDuckGo search on about:tor
  874. Tor Browser 8.5a11 -- April 16 2019
  875. * All platforms
  876. * Update Torbutton to 2.1.6
  877. * Bug 22538+22513: Fix new circuit button for error pages
  878. * Bug 29825: Intelligently add new Security Level button to taskbar
  879. * Bug 29903: No WebGL click-to-play on the standard security level
  880. * Bug 27484: Improve navigation within onboarding (strings)
  881. * Bug 29768: Introduce new features to users (strings)
  882. * Bug 29943: Use locales in AB-CD scheme to match Mozilla
  883. * Bug 26498: Add locale: es-AR
  884. * Bug 29973: Remove remaining stopOpenSecuritySettingsObserver() pieces
  885. * Translations update
  886. * Update NoScript to 10.6.1
  887. * Bug 29872: XSS popup with DuckDuckGo search on about:tor
  888. * Bug 29916: Make sure enterprise policies are disabled
  889. * Bug 26498: Add locale: es-AR
  890. * Windows + OS X + Linux
  891. * Update Tor to 0.4.0.4-rc
  892. * Update Tor Launcher to 0.2.18.2
  893. * Bug 26498: Add locale es-AR
  894. * Translations update
  895. * Bug 29768: Introduce new features to users
  896. * Bug 27484: Improve navigation within onboarding
  897. * Bug 25658: Improve toolbar layout for new security settings
  898. * Windows
  899. * Bug 27503: Improve screen reader accessibility
  900. * Android
  901. * Bug 27609 (and child bugs): Use Tor Onion Proxy Library
  902. * Bug 29312: Bump Tor to 0.3.5.8
  903. * Bug 29859: Disable HLS support for now
  904. * Bug 28622: Update Tor Browser icon for mobile
  905. * Bug 29238: Prevent crash on Android after update
  906. * Bug 29982: Add additional safe guards against crashes during bootstrap
  907. * Bug 29906: Fix crash on older devices due to missing API
  908. * Bug 29858: Load onboarding panels after bootstrapping is done
  909. * Bug 28329: Improve bootstrapping experience
  910. * Bug 30016: Localize bootstrap-/bridge-related strings for mobile
  911. * Build System
  912. * All platforms
  913. * Bug 29868: Fix installation of python-future package
  914. * Bug 25623: Disable network during build
  915. * Linux
  916. * Bug 29966: Use archive.debian.org for Wheezy images
  917. * Android
  918. * Bug 30089: Use apksigner instead of jarsigner
  919. Tor Browser 8.5a10 -- March 24 2019
  920. * All platforms
  921. * Update Firefox to 60.6.1esr
  922. * Update NoScript to 10.2.4
  923. * Bug 29733: Work around Mozilla's bug 1532530
  924. Tor Browser 8.0.8 -- March 22 2019
  925. * All platforms
  926. * Update Firefox to 60.6.1esr
  927. * Update NoScript to 10.2.4
  928. * Bug 29733: Work around Mozilla's bug 1532530
  929. Tor Browser 8.5a9 -- March 20 2019
  930. * All platforms
  931. * Update Firefox to 60.6.0esr
  932. * Update Torbutton to 2.1.5
  933. * Bug 25658: Replace security slider with security level UI
  934. * Bug 28628: Change onboarding Security panel to open new Security Level panel
  935. * Bug 29440: Update about:tor when Tor Browser is updated
  936. * Bug 27478: Improved Torbutton icons for dark theme
  937. * Bug 29021: Tell NoScript it is running within Tor Browser
  938. * Bug 29239: Don't ship the Torbutton .xpi on mobile
  939. * Translations update
  940. * Bug 29120: Enable media cache in memory
  941. * Bug 29445: Enable support for enterprise policies
  942. * Windows + OS X + Linux
  943. * Update Tor to 0.4.0.2-alpha
  944. * Bug 29660: XMPP can not connect to SOCKS5 anymore
  945. * Update OpenSSL to 1.0.2r
  946. * Update Tor Launcher to 0.2.18.1
  947. * Bug 29328: Account for Tor 0.4.0.x's revised bootstrap status reporting
  948. * Bug 22402: Improve "For assistance" link
  949. * Translations update
  950. * Bug 25658+29554: Replace security slider with security level UI
  951. * Bug 28885: notify users that update is downloading
  952. * Bug 29180: MAR download stalls when about dialog is opened
  953. * Bug 27485: Users are not taught how to open security-slider dialog
  954. * Bug 27486: Avoid about:blank tabs when opening onboarding pages
  955. * Bug 29440: Update about:tor when Tor Browser is updated
  956. * Bug 23359: WebExtensions icons are not shown on first start
  957. * Bug 28628: Change onboarding Security panel to open new Security Level panel
  958. * Android
  959. * Bug 28329: Design Tor Browser for Android configuration UI
  960. * Bug 28802: Support PTs in Tor Browser for Android
  961. * Bug 29794: Update TBA built-in bridges
  962. * Bug 27210: Add support for x86 on Android
  963. * Bug 29809: Only ship tor binary for .apk architecture
  964. * Bug 29633: Don't ship pdnsd anymore
  965. * Bug 28708: about:tor is not the default homepage after upgrade
  966. * Bug 29626: Application name is now "Always-On Notifications"
  967. * Bug 29467: Backport fix for arc4random_buf bustage
  968. * Build System
  969. * All platforms
  970. * Bug 25876: Generate source tarballs during build
  971. * Bug 28685: Set Build ID based on Tor Browser version
  972. * Bug 29194: Set DEBIAN_FRONTEND=noninteractive
  973. * Linux
  974. * Bug 26323+29812: Build 32bit Linux bundles on 64bit Debian Wheezy
  975. * Bug 29758: Build firefox debug symbols for linux-i686
  976. * Android
  977. * Bug 29632: Use HTTPS for downloading Gradle
  978. Tor Browser 8.0.7 -- March 19 2019
  979. * All platforms
  980. * Update Firefox to 60.6.0esr
  981. * Update Tor to 0.3.5.8
  982. * Bug 29660: XMPP can not connect to SOCKS5 anymore
  983. * Update Torbutton to 2.0.11
  984. * Bug 29021: Tell NoScript it is running within Tor Browser
  985. * Windows
  986. * Bug 29081: Harden libwinpthread
  987. * Linux
  988. * Bug 27531: Add separate LD_LIBRARY_PATH for fteproxy
  989. Tor Browser 8.5a8 -- February 13 2019
  990. * All platforms
  991. * Update Firefox to 60.5.1esr
  992. * Update HTTPS Everywhere to 2019.1.31
  993. * Bug 29378: Remove 83.212.101.3 from default bridges
  994. * Bug 29349: Remove network.http.spdy.* overrides from meek helper user.js
  995. * Bug 29327: TypeError: hostName is null on about:tor page
  996. * Build System
  997. * All Platforms
  998. * Bug 29235: Build our own version of python3.6 for HTTPS Everywhere
  999. * Bug 29167: Upgrade go to 1.11.5
  1000. * Linux
  1001. * Bug 29183: Use linux-x86_64 langpacks on linux-x86_64
  1002. Tor Browser 8.0.6 -- February 12 2019
  1003. * All platforms
  1004. * Update Firefox to 60.5.1esr
  1005. * Update HTTPS Everywhere to 2019.1.31
  1006. * Bug 29378: Remove 83.212.101.3 from default bridges
  1007. * Build System
  1008. * All Platforms
  1009. * Bug 29235: Build our own version of python3.6 for HTTPS Everywhere
  1010. Tor Browser 8.5a7 -- January 29 2019
  1011. * All Platforms
  1012. * Update Firefox to 60.5.0esr
  1013. * Update Torbutton to 2.1.4
  1014. * Bug 25702: Update Tor Browser icon to follow design guidelines
  1015. * Bug 21805: Add click-to-play button for WebGL
  1016. * Bug 28836: Links on about:tor are not clickable
  1017. * Bug 29035: Clean up our donation campaign and add newsletter sign-up link
  1018. * Translations update
  1019. * Code clean-up
  1020. * Update HTTPS Everywhere to 2019.1.7
  1021. * Update NoScript to 10.2.1
  1022. * Bug 28873: Cascading of permissions is broken
  1023. * Bug 28720: Some videos are blocked outright on higher security levels
  1024. * Bug 29082: Backport patches for bug 1469916
  1025. * Bug 28711: Backport patches for bug 1474659
  1026. * Bug 27828: "Check for Tor Browser update" doesn't seem to do anything
  1027. * Bug 29028: Auto-decline most canvas warning prompts again
  1028. * Bug 27597: Fix our debug builds
  1029. * Windows
  1030. * Update Tor to 0.4.0.1-alpha
  1031. * Bug 25702: Activity 1.1 Update Tor Browser icon to follow design guidelines
  1032. * Bug 28111: Use Tor Browser icon in identity box
  1033. * Bug 22654: Firefox icon is shown for Tor Browser on Windows 10 start menu
  1034. * Bug 27503: Compile with accessibility support
  1035. * Bug 28874: Bump mingw-w64 commit to fix WebGL crash
  1036. * Bug 12885: Windows Jump Lists fail for Tor Browser
  1037. * Bug 28618: Set MOZILLA_OFFICIAL for Windows build
  1038. * OS X
  1039. * Update Tor to 0.4.0.1-alpha
  1040. * Bug 25702: Activity 1.1 Update Tor Browser icon to follow design guidelines
  1041. * Bug 28111: Use Tor Browser icon in identity box
  1042. * Linux
  1043. * Update Tor to 0.4.0.1-alpha
  1044. * Bug 25702: Activity 1.1 Update Tor Browser icon to follow design guidelines
  1045. * Bug 28111: Use Tor Browser icon in identity box
  1046. * Bug 27531: Fix crashing print dialog
  1047. * Android
  1048. * Bug 28705: Fix download crash on newer Android devices
  1049. * Bug 28814: Backport 1480079 to allow installing downloaded apps
  1050. * Build System
  1051. * All Platforms
  1052. * Bug 29158: Install updated apt packages (CVE-2019-3462)
  1053. * Bug 29097: Don't try to install python3.6-lxml for HTTPS Everywhere
  1054. * Windows
  1055. * Bug 26148: Update binutils to 2.31.1
  1056. * Bug 29081: Harden libwinpthread
  1057. * Linux
  1058. * Bug 26148: Update binutils to 2.31.1
  1059. * Android
  1060. * Bug 28752: Don't download tor-android-binary resources during build
  1061. Tor Browser 8.0.5 -- January 29 2019
  1062. * All platforms
  1063. * Update Firefox to 60.5.0esr
  1064. * Update Tor to 0.3.5.7
  1065. * Update Torbutton to 2.0.10
  1066. * Bug 29035: Clean up our donation campaign and add newsletter sign-up link
  1067. * Bug 27175: Add pref to allow users to persist custom noscript settings
  1068. * Update HTTPS Everywhere to 2019.1.7
  1069. * Update NoScript to 10.2.1
  1070. * Bug 28873: Cascading of permissions is broken
  1071. * Bug 28720: Some videos are blocked outright on higher security levels
  1072. * Bug 26540: Enabling pdfjs disableRange option prevents pdfs from loading
  1073. * Bug 28740: Adapt Windows navigator.platform value on 64-bit systems
  1074. * Bug 28695: Set default security.pki.name_matching_mode to enforce (3)
  1075. Tor Browser 8.5a6 -- December 11 2018
  1076. * All Platforms
  1077. * Update Firefox to 60.4.0esr
  1078. * Update Torbutton to 2.1.3
  1079. * Bug 28540: Use new text for 2018 donation banner
  1080. * Bug 27290: Remove WebGL pref for min capability mode
  1081. * Bug 28075: Tone down missing SOCKS credential warning
  1082. * Bug 28747: Remove NoScript (XPCOM) related unused code
  1083. * Translations update
  1084. * Bug 28608: Disable background HTTP response throttling
  1085. * Bug 28695: Set default security.pki.name_matching_mode to enforce (3)
  1086. * Bug 27290: Remove WebGL pref for min capability mode
  1087. * Bug 27919: Backport SSL status API
  1088. * Bug 25794: Disable pointer events
  1089. * Windows
  1090. * Update OpenSSL to 1.0.2q
  1091. * Bug 28740: Adapt Windows navigator.platform value on 64-bit systems
  1092. * OS X
  1093. * Update OpenSSL to 1.0.2q
  1094. * Linux
  1095. * Update OpenSSL to 1.0.2q
  1096. * Android
  1097. * Bug 26843: Multi-locale support for Tor Browser on Android
  1098. * Build System
  1099. * Android
  1100. * Bug 25164: Add .apk to our sha256sums unsigned build file
  1101. * Bug 28696: Make path to Gradle dependencies reproducible
  1102. * Bug 28697: Use pregenerated keystore and fix timestamp issues
  1103. Tor Browser 8.0.4 -- December 11 2018
  1104. * All platforms
  1105. * Update Firefox to 60.4.0esr
  1106. * Update Tor to 0.3.4.9
  1107. * Update OpenSSL to 1.0.2q
  1108. * Update Torbutton to 2.0.9
  1109. * Bug 28540: Use new text for 2018 donation banner
  1110. * Bug 28515: Use en-US for english Torbutton strings
  1111. * Translations update
  1112. * Update HTTPS Everywhere to 2018.10.31
  1113. * Update NoScript to 10.2.0
  1114. * Bug 1623: Block protocol handler enumeration (backport of fix for #680300)
  1115. * Bug 25794: Disable pointer events
  1116. * Bug 28608: Disable background HTTP response throttling
  1117. * Bug 28185: Add smallerRichard to Tor Browser
  1118. * Windows
  1119. * Bug 26381: about:tor page does not load on first start on Windows
  1120. * Bug 28657: Remove broken FTE bridge from Tor Browser
  1121. * OS X
  1122. * Bug 26263: App icon positioned incorrectly in macOS DMG installer window
  1123. * Bug 26475: Fix Stylo related reproducibility issue
  1124. * Linux
  1125. * Bug 26475: Fix Stylo related reproducibility issue
  1126. * Bug 28657: Remove broken FTE bridge from Tor Browser
  1127. * Build System
  1128. * All Platforms
  1129. * Bug 27218: Generate multiple Tor Browser bundles in parallel
  1130. Tor Browser 8.5a5 -- December 3 2018
  1131. * All Platforms
  1132. * Update Torbutton to 2.1.2
  1133. * Bug 25013: Integrate Torbutton into tor-browser for Android
  1134. * Bug 27111: Update about:tor desktop version to work on mobile
  1135. * Bug 28093: Update donation banner style to make it fit in small screens
  1136. * Bug 28543: about:tor has scroll bar between widths 900px and 1000px
  1137. * Bug 28039: Enable dump() if log method is 0
  1138. * Bug 27701: Don't show App Blocker dialog on Android
  1139. * Bug 28187: Change tor circuit icon to torbutton.svg
  1140. * Bug 28515: Use en-US for english Torbutton strings
  1141. * Translations update
  1142. * Update Tor Launcher to 0.2.18
  1143. * Bug 28039: Enable dump() if log method is 0
  1144. * Translations update
  1145. * Update HTTPS Everywhere to 2018.10.31
  1146. * Update NoScript to 10.2.0
  1147. * Bug 22343: Make 'Save Page As' obey first-party isolation
  1148. * Bug 26540: Enabling pdfjs disableRange option prevents pdfs from loading
  1149. * Windows
  1150. * Update Tor to 0.3.5.5-alpha
  1151. * Bug 28310: Don't build obfs4 with module versioning support
  1152. * Bug 27827: Update Go to 1.11.1
  1153. * Bug 28185: Add smallerRichard to Tor Browser
  1154. * Bug 28657: Remove broken FTE bridge from Tor Browser
  1155. * OS X
  1156. * Update Tor to 0.3.5.5-alpha
  1157. * Bug 28310: Don't build obfs4 with module versioning support
  1158. * Bug 27827: Update Go to 1.11.1
  1159. * Bug 27827: Build snowflake reproducibly
  1160. * Bug 28258: Don't look for webrtc headers under talk/
  1161. * Bug 28185: Add smallerRichard to Tor Browser
  1162. * Linux
  1163. * Update Tor to 0.3.5.5-alpha
  1164. * Bug 28310: Don't build obfs4 with module versioning support
  1165. * Bug 27827: Update Go to 1.11.1
  1166. * Bug 27827: Build snowflake reproducibly
  1167. * Bug 28258: Don't look for webrtc headers under talk/
  1168. * Bug 28185: Add smallerRichard to Tor Browser
  1169. * Bug 28657: Remove broken FTE bridge from Tor Browser
  1170. * Android
  1171. * Bug 28051: Fix up Orbot for inclusion into Tor Browser
  1172. * Bug 26690+25765: Port padlock states for .onion services to mobile
  1173. * Bug 28507: Delete private data in the browser startup
  1174. * Bug 27111+25013: Configure Tor Browser for mobile to load about:tor
  1175. * Bug 27256: Enable TouchEvents on Android
  1176. * Bug 28640: Use system add-on and distributed preferences
  1177. * Build System
  1178. * Bug 27977: Build Orbot inside tor-browser-build
  1179. * Bug 27443: Update Firefox RBM config and build for Android
  1180. * Bug 27439: Add android target for rust compiler
  1181. * Bug 28469: Fix unsupported libbacktrace in Rust 1.26
  1182. * Bug 28468: Modify Android toolchain to support Orbot
  1183. * Bug 28483: Modify Android Toolchain API Version
  1184. * Bug 28472: Add Android Makefile Rules
  1185. * Bug 28470: Add fetch gradle dependency script to common project
  1186. * Bug 28144: Update projects/tor-browser for Android
  1187. Tor Browser 8.5a4 -- October 23 2018
  1188. * All Platforms
  1189. * Update Firefox to 60.3.0esr
  1190. * Update Tor to 0.3.5.3-alpha
  1191. * Update Torbutton to 2.1.1
  1192. * Bug 23925+27959: Donation banner for year end 2018 campaign
  1193. * Bug 24172: Donation banner clobbers Tor Browser version string
  1194. * Bug 28082: Add locales cs, el, hu, ka
  1195. * Translations update
  1196. * Update Tor Launcher to 0.2.17
  1197. * Bug 27994+25151: Use the new Tor Browser logo
  1198. * Bug 28082: Add locales cs, el, hu, ka
  1199. * Translations update
  1200. * Update HTTPS Everywhere to 2018.9.19
  1201. * Update NoScript to 10.1.9.9
  1202. * Bug 1623: Block protocol handler enumeration (backport of fix for #680300)
  1203. * Bug 27905: Fix many occurrences of "Firefox" in about:preferences
  1204. * Bug 28082: Add locales cs, el, hu, ka
  1205. * Windows
  1206. * Bug 21704: Abort install if CPU is missing SSE2 support
  1207. * Bug 28002: Fix the precomplete file in the en-US installer
  1208. * OS X
  1209. * Bug 26263: App icon positioned incorrectly in macOS DMG installer window
  1210. * Bug 26475: Fix Stylo related reproducibility issue
  1211. * Linux
  1212. * Bug 26475: Fix Stylo related reproducibility issue
  1213. * Bug 28022: Use `/usr/bin/env bash` for bash invocation
  1214. * Android
  1215. * Backport of fixes for bug 1448014, 1458905, 1441345, and 1448305
  1216. * Build System
  1217. * All Platforms
  1218. * Bug 27218: Generate multiple Tor Browser bundles in parallel
  1219. * Windows
  1220. * Bug 27320: Build certutil for Windows
  1221. * OS X
  1222. * Bug 27320: Build certutil for macOS
  1223. Tor Browser 8.0.3 -- October 23 2018
  1224. * All platforms
  1225. * Update Firefox to 60.3.0esr
  1226. * Update Torbutton to 2.0.8
  1227. * Bug 23925+27959: Donation banner for year end 2018 campaign
  1228. * Bug 24172: Donation banner clobbers Tor Browser version string
  1229. * Bug 27760: Use new NoScript API for IPC and fix about:blank issue
  1230. * Translations update
  1231. * Update HTTPS Everywhere to 2018.9.19
  1232. * Update NoScript to 10.1.9.9
  1233. * Linux
  1234. * Bug 27546: Fix vertical scrollbar behavior in Tor Browser 8 with Gtk3
  1235. * Bug 27552: Use bundled dir on CentOS/RHEL 6
  1236. Tor Browser 8.5a3 -- October 4 2018
  1237. * All platforms
  1238. * Update Firefox to 60.2.1esr
  1239. * Backport fix for Mozilla bug 1493900 and 1493903
  1240. * Windows
  1241. * Bug 27865: Tor Browser 8.5a2 is crashing on Windows
  1242. * OS X
  1243. * Backport fix for Mozilla bug 1489785 for macOS 10.14 compatibility
  1244. Tor Browser 8.0.2 -- October 2 2018
  1245. * All platforms
  1246. * Update Firefox to 60.2.1esr
  1247. * Backport fix for Mozilla bug 1493900 and 1493903
  1248. * OS X
  1249. * Backport fix for Mozilla bug 1489785 for macOS 10.14 compatibility
  1250. Tor Browser 8.5a2 -- September 24 2018
  1251. * All platforms
  1252. * Update Tor to 0.3.5.2-alpha
  1253. * Update Torbutton to 2.1
  1254. * Bug 27097: Tor News signup banner
  1255. * Bug 27663: Add New Identity menuitem again
  1256. * Bug 27175: Add pref to allow users to persist custom noscript settings
  1257. * Bug 27760: Use new NoScript API for IPC and fix about:blank issue
  1258. * Bug 26624: Only block OBJECT on highest slider level
  1259. * Bug 26555: Don't show IP address for meek or snowflake
  1260. * Bug 27478: Torbutton icons for dark theme
  1261. * Bug 27506+14520: Move status version to upper left corner for RTL locales
  1262. * Bug 27558: Update the link to "Your Guard note may not change" text
  1263. * Bug 21263: Remove outdated information from the README
  1264. * Translations update
  1265. * Update Tor Launcher to 0.2.16.5
  1266. * Bug 27469: Adapt Moat URLs
  1267. * Translations update
  1268. * Clean-up
  1269. * Update NoScript to 10.1.9.6
  1270. * Bug 27763: Restrict Torbutton signing exemption to mobile
  1271. * Bug 26146: Spoof HTTP User-Agent header for desktop platforms
  1272. * Bug 27543: QR code is broken on web.whatsapp.com
  1273. * Bug 27264: Bookmark items are not visible on the boomark toolbar
  1274. * Bug 27535: Enable TLS 1.3 draft version
  1275. * Bug 27623: Use MOZILLA_OFFICIAL for our builds
  1276. * Backport of Mozilla bug 1490585, 1475775, and 1489744
  1277. * Windows:
  1278. * Bug 26381: about:tor page does not load on first start on Windows
  1279. * Linux:
  1280. * Bug 27546: Fix vertical scrollbar behavior in Tor Browser 8 with Gtk3
  1281. * Bug 27552: Use bundled dir on CentOS/RHEL 6
  1282. * Bug 26556: Fix broken Tor Browser icon path on Linux
  1283. Tor Browser 8.0.1 -- September 24 2018
  1284. * All platforms
  1285. * Update Tor to 0.3.4.8
  1286. * Update Torbutton to 2.0.7
  1287. * Bug 27097: Tor News signup banner
  1288. * Bug 27663: Add New Identity menuitem again
  1289. * Bug 26624: Only block OBJECT on highest slider level
  1290. * Bug 26555: Don't show IP address for meek or snowflake
  1291. * Bug 27478: Torbutton icons for dark theme
  1292. * Bug 27506+14520: Move status version to upper left corner for RTL locales
  1293. * Bug 27427: Fix NoScript IPC for about:blank by whitelisting messages
  1294. * Bug 27558: Update the link to "Your Guard note may not change" text
  1295. * Translations update
  1296. * Update Tor Launcher to 0.2.16.6
  1297. * Bug 27469: Adapt Moat URLs
  1298. * Translations update
  1299. * Clean-up
  1300. * Update NoScript to 10.1.9.6
  1301. * Bug 27763: Restrict Torbutton signing exemption to mobile
  1302. * Bug 26146: Spoof HTTP User-Agent header for desktop platforms
  1303. * Bug 27543: QR code is broken on web.whatsapp.com
  1304. * Bug 27264: Bookmark items are not visible on the boomark toolbar
  1305. * Bug 27535: Enable TLS 1.3 draft version
  1306. * Backport of Mozilla bug 1490585, 1475775, and 1489744
  1307. * OS X
  1308. * Bug 27482: Fix crash during start-up on macOS 10.9.x systems
  1309. * Linux
  1310. * Bug 26556: Fix broken Tor Browser icon path on Linux
  1311. Tor Browser 8.5a1 -- September 5 2018
  1312. * All platforms
  1313. * Update Firefox to 60.2.0esr
  1314. * Update Tor to 0.3.4.7-rc
  1315. * Update OpenSSL to 1.0.2p
  1316. * Update Torbutton to 2.0.6
  1317. * Bug 27401: Start listening for NoScript before it loads
  1318. * Bug 27276: Adapt to new NoScript messaging protocol
  1319. * Bug 26884: Use Torbutton to provide security slider on mobile
  1320. * Bug 26962: Circuit display onboarding
  1321. * Bug 26520: Fix sec slider/NoScript for TOR_SKIP_LAUNCH=1
  1322. * Bug 26490: Remove the security slider notification
  1323. * Bug 27301: Improve about:tor behavior and appearance
  1324. * Bug 27097: Add text for Tor News signup widget
  1325. * Bug 27214: Improve the onboarding text
  1326. * Translations update
  1327. * Update Tor Launcher to 0.2.16.4
  1328. * Bug 25405: Cannot use Moat if a meek bridge is configured
  1329. * Bug 27392: Update Moat URLs
  1330. * Translations update
  1331. * Update HTTPS Everywhere to 2018.8.22
  1332. * Update NoScript to 10.1.9.1
  1333. * Bug 26962: New feature onboarding
  1334. * Bug 27403: The onboarding bubble is not always displayed
  1335. * Bug 27283: Fix first-party isolation for UI tour
  1336. * Bug 27213: Update about:tbupdate to new (about:tor) layout
  1337. * Bug 26670: Make canvas permission prompt respect first-party isolation
  1338. * Bug 26561: .onion images are not displayed
  1339. * Bug 21787: Spoof en-US for date picker
  1340. * Bug 21607: Disable WebVR for now until it is properly audited
  1341. * Bug 21549: Disable wasm for now until it is properly audited
  1342. * Bug 26614: Disable Web Authentication API until it is properly audited
  1343. * Bug 27281: Enable Reader View mode again
  1344. * Bug 26114: Don't expose navigator.mozAddonManager to websites
  1345. * Bug 26048: Fix potentially confusing "restart to update" message
  1346. * Bug 27221: Purge startup cache if Tor Browser version changed
  1347. * Bug 26049: Reduce delay for showing update prompt to 1 hour
  1348. * Bug 25405: Cannot use Moat if a meek bridge is configured
  1349. * Bug 27268+27257+27262+26603: Preferences clean-up
  1350. * Windows
  1351. * Bug 26381: Work around endless loop during page load and about:tor not loading
  1352. * Bug 27411: Fix broken security slider and NoScript interaction on Windows
  1353. * Build System
  1354. * All Platforms
  1355. * Bug 27061: Enable verification of langpacks checksums
  1356. * Bug 27178+27179: Add support for xz compression in mar files
  1357. Tor Browser 8.0 -- September 5 2018
  1358. * All platforms
  1359. * Update Firefox to 60.2.0esr
  1360. * Update Tor to 0.3.3.9
  1361. * Update OpenSSL to 1.0.2p
  1362. * Update Libevent to 2.1.8
  1363. * Update Torbutton to 2.0.6
  1364. * Bug 26960: Implement new about:tor start page
  1365. * Bug 26961: Implement new user onboarding
  1366. * Bug 26962: Circuit display onboarding
  1367. * Bug 27301: Improve about:tor behavior and appearance
  1368. * Bug 27214: Improve the onboarding text
  1369. * Bug 26321: Move 'New Identity', 'New Circuit' to File, hamburger menus
  1370. * Bug 26100: Adapt Torbutton to Firefox 60 ESR
  1371. * Bug 26520: Fix sec slider/NoScript for TOR_SKIP_LAUNCH=1
  1372. * Bug 27401: Start listening for NoScript before it loads
  1373. * Bug 26430: New Torbutton icon
  1374. * Bug 24309: Move circuit display to the identity popup
  1375. * Bug 26884: Use Torbutton to provide security slider on mobile
  1376. * Bug 26128: Adapt security slider to the WebExtensions version of NoScript
  1377. * Bug 27276: Adapt to new NoScript messaging protocol
  1378. * Bug 23247: Show security state of .onions
  1379. * Bug 26129: Show our about:tor page on startup
  1380. * Bug 26235: Hide new unusable items from help menu
  1381. * Bug 26058: Remove workaround for hiding 'sign in to sync' button
  1382. * Bug 26590: Use new svg.disabled pref in security slider
  1383. * Bug 26655: Adjust color and size of onion button
  1384. * Bug 26500: Reposition circuit display relay icon for RTL locales
  1385. * Bug 26409: Remove spoofed locale implementation
  1386. * Bug 26189: Remove content-policy.js
  1387. * Bug 26544: Images are not centered anymore
  1388. * Bug 26490: Remove the security slider notification
  1389. * Bug 25126: Make about:tor layout responsive
  1390. * Bug 27097: Add text for Tor News signup widget
  1391. * Bug 21245: Add da translation to Torbutton and keep track of it
  1392. * Bug 27129+20628: Add locales ca, ga, id, is, nb, da, he, sv, and zh-TW
  1393. * Translations update
  1394. * Update Tor Launcher to 0.2.16.3
  1395. * Bug 23136: Moat integration (fetch bridges for the user)
  1396. * Bug 25750: Update Tor Launcher to make it compatible with Firefox 60 ESR
  1397. * Bug 26985: Help button icons missing
  1398. * Bug 25509: Improve the proxy help text
  1399. * Bug 26466: Remove sv-SE from tracking for releases
  1400. * Bug 27129+20628: Add locales ca, ga, id, is, nb, da, he, sv, and zh-TW
  1401. * Translations update
  1402. * Update HTTPS Everywhere to 2018.8.22
  1403. * Update NoScript to 10.1.9.1
  1404. * Update meek to 0.31
  1405. * Bug 26477: Make meek extension compatible with ESR 60
  1406. * Update obfs4proxy to v0.0.7 (bug 25356)
  1407. * Bug 27082: Enable a limited UITour for user onboarding
  1408. * Bug 26961: New user onboarding
  1409. * Bug 26962: New feature onboarding
  1410. * Bug 27403: The onboarding bubble is not always displayed
  1411. * Bug 27283: Fix first-party isolation for UI tour
  1412. * Bug 27213: Update about:tbupdate to new (about:tor) layout
  1413. * Bug 14952+24553: Enable HTTP2 and AltSvc
  1414. * Bug 25735: Tor Browser stalls while loading Facebook login page
  1415. * Bug 17252: Enable TLS session identifiers with first-party isolation
  1416. * Bug 26353: Prevent speculative connects that violate first-party isolation
  1417. * Bug 26670: Make canvas permission prompt respect first-party isolation
  1418. * Bug 24056: Use en-US strings in HTML forms if locale is spoofed to english
  1419. * Bug 26456: HTTP .onion sites inherit previous page's certificate information
  1420. * Bug 26561: .onion images are not displayed
  1421. * Bug 26321: Move 'New Identity', 'New Circuit' to File, hamburger menus
  1422. * Bug 26833: Backport Mozilla's bug 1473247
  1423. * Bug 26628: Backport Mozilla's bug 1470156
  1424. * Bug 26237: Clean up toolbar for ESR60-based Tor Browser
  1425. * Bug 26519: Avoid Firefox icons in ESR60
  1426. * Bug 26039: Load our preferences that modify extensions (fixup)
  1427. * Bug 26515: Update Tor Browser blog post URLs
  1428. * Bug 26216: Fix broken MAR file generation
  1429. * Bug 26409: Remove spoofed locale implementation
  1430. * Bug 25543: Rebase Tor Browser patches for ESR60
  1431. * Bug 23247: Show security state of .onions
  1432. * Bug 26039: Load our preferences that modify extensions
  1433. * Bug 17965: Isolate HPKP and HSTS to URL bar domain
  1434. * Bug 21787: Spoof en-US for date picker
  1435. * Bug 21607: Disable WebVR for now until it is properly audited
  1436. * Bug 21549: Disable wasm for now until it is properly audited
  1437. * Bug 26614: Disable Web Authentication API until it is properly audited
  1438. * Bug 27281: Enable Reader View mode again
  1439. * Bug 26114: Don't expose navigator.mozAddonManager to websites
  1440. * Bug 21850: Update about:tbupdate handling for e10s
  1441. * Bug 26048: Fix potentially confusing "restart to update" message
  1442. * Bug 27221: Purge startup cache if Tor Browser version changed
  1443. * Bug 26049: Reduce delay for showing update prompt to 1 hour
  1444. * Bug 26365: Add potential AltSvc support
  1445. * Bug 9145: Fix broken hardware acceleration on Windows and enable it
  1446. * Bug 26045: Add new MAR signing keys
  1447. * Bug 25215: Revert bug 18619 (we are not disabling IndexedDB any longer)
  1448. * Bug 19910: Rip out optimistic data socks handshake variant (#3875)
  1449. * Bug 22564: Hide Firefox Sync
  1450. * Bug 25090: Disable updater telemetry
  1451. * Bug 26127: Make sure Torbutton and Tor Launcher are not treated as legacy extensions
  1452. * Bug 13575: Disable randomised Firefox HTTP cache decay user tests
  1453. * Bug 22548: Firefox downgrades VP9 videos to VP8 for some users
  1454. * Bug 24995: Include git hash in tor --version
  1455. * Bug 27268+27257+27262+26603 : Preferences clean-up
  1456. * Bug 26073: Migrate general.useragent.locale to intl.locale.requested
  1457. * Bug 27129+20628: Make Tor Browser available in ca, ga, id, is, nb, da, he, sv, and zh-TW
  1458. * Bug 12927: Include Hebrew translation into Tor Browser
  1459. * Bug 21245: Add danish (da) translation
  1460. * Windows
  1461. * Bug 20636+10026: Create 64bit Tor Browser for Windows
  1462. * Bug 26239+24197: Enable content sandboxing for 64bit Windows builds
  1463. * Bug 26514: Fix intermittent updater failures on Win64 (Error 19)
  1464. * Bug 26874: Fix UNC path restrictions failure in Tor Browser 8.0a9
  1465. * Bug 12968: Enable HEASLR in Windows x86_64 builds
  1466. * Bug 26381: Work around endless loop during page load and about:tor not loading
  1467. * Bug 27411: Fix broken security slider and NoScript interaction on Windows
  1468. * Bug 22581: Fix shutdown crash
  1469. * Bug 25266: PT config should include full names of executable files
  1470. * Bug 26304: Update zlib to version 1.2.11
  1471. * Update tbb-windows-installer to 0.4
  1472. * Bug 26355: Update tbb-windows-installer to check for Windows7+
  1473. * Bug 26355: Require Windows7+ for updates to Tor Browser 8
  1474. * OS X
  1475. * Bug 24136: After loading file:// URLs clicking on links is broken on OS X
  1476. * Bug 24243: Tor Browser only renders HTML for local pages via file://
  1477. * Bug 24263: Tor Browser does not run extension scripts if loaded via about:debugging
  1478. * Bug 22794: Don't open AF_INET/AF_INET6 sockets when AF_LOCAL is configured
  1479. * Linux
  1480. * Bug 22794: Don't open AF_INET/AF_INET6 sockets when AF_LOCAL is configured
  1481. * Bug 25485: Unbreak Tor Browser on systems with newer libstdc++
  1482. * Bug 20866: Fix OpenGL software rendering on systems with newer libstdc++
  1483. * Bug 26951+18022: Fix execdesktop argument passing
  1484. * Bug 24136: After loading file:// URLs clicking on links is broken on Linux
  1485. * Bug 24243: Tor Browser only renders HTML for local pages via file://
  1486. * Bug 24263: Tor Browser does not run extension scripts if loaded via about:debugging
  1487. * Bug 20283: Tor Browser should run without a `/proc` filesystem.
  1488. * Bug 26354: Set SSE2 support as minimal requirement for Tor Browser 8
  1489. * Build System
  1490. * All Platforms
  1491. * Bug 26362+26410: Use old MAR format for first ESR60-based stable
  1492. * Bug 27020: RBM build fails with runc version 1.0.1
  1493. * Bug 26949: Use GitHub repository for STIX
  1494. * Bug 26773: Add --verbose to the ./mach build flag for firefox
  1495. * Bug 26319: Don't package up Tor Browser in the `mach package` step
  1496. * Bug 27178: Add support for xz compression in mar files
  1497. * Clean up
  1498. * Windows
  1499. * Bug 26203: Adapt tor-browser-build/tor-browser for Windows
  1500. * Bug 26204: Bundle d3dcompiler_47.dll for Tor Browser 8
  1501. * Bug 26205: Don't build the uninstaller for Windows during Firefox compilation
  1502. * Bug 26206: Ship pthread related dll where needed
  1503. * Bug 26396: Build libwinpthread reproducible
  1504. * Bug 25837: Integrate fxc2 into our build setup for Windows builds
  1505. * Bug 27152: Use mozilla/fxc2.git for the fxc2 repository
  1506. * Bug 25894: Get a rust cross-compiler for Windows
  1507. * Bug 25554: Bump mingw-w64 version for ESR 60
  1508. * Bug 23561: Fix nsis builds for Windows 64
  1509. * Bug 13469: Windows installer is missing many languages from NSIS file
  1510. * Bug 23231: Remove our STL Wrappers workaround for Windows 64bit
  1511. * Bug 26370: Don't copy msvcr100.dll and libssp-0.dll twice
  1512. * Bug 26476: Work around Tor Browser crashes due to fix for bug 1467041
  1513. * Bug 18287: Use SHA-2 signature for Tor Browser setup executables
  1514. * Bug 25420: Update GCC to 6.4.0
  1515. * Bug 16472: Update Binutils to 2.26.1
  1516. * Bug 20302: Fix FTE compilation for Windows with GCC 6.4.0
  1517. * Bug 25111: Don't compile Yasm on our own anymore for Windows Tor Browser
  1518. * Bug 18691: Switch Windows builds from precise to jessie
  1519. * OS X
  1520. * Bug 24632: Update macOS toolchain for ESR 60
  1521. * Bug 9711: Build our own cctools for macOS cross-compilation
  1522. * Bug 25548: Update macOS SDK for Tor Browser builds to 10.11
  1523. * Bug 26003: Clean up our mozconfig-osx-x86_64 file
  1524. * Bug 26195: Use new cctools in our macosx-toolchain project
  1525. * Bug 25975: Get a rust cross-compiler for macOS
  1526. * Bug 26475: Disable Stylo to make macOS build reproducible
  1527. * Bug 26489: Fix .app directory name in tools/dmg2mar
  1528. * Linux
  1529. * Bug 26073: Patch tor-browser-build for transition to ESR 60
  1530. * Bug 25481: Rust support for tor-browser and tor
  1531. * Bug 25304: Update GCC to 6.4.0
  1532. * Bug 16472: Update Binutils to 2.26.1
  1533. Tor Browser 8.0a10 -- August 20 2018
  1534. * All platforms
  1535. * Update Tor to 0.3.4.6-rc
  1536. * Update Torbutton to 2.0.2
  1537. * Bug 26960: Implement new about:tor start page
  1538. * Bug 26961: Implement new user onboarding
  1539. * Bug 26321: Move 'New Identity', 'New Circuit' to File, hamburger menus
  1540. * Bug 26590: Use new svg.disabled pref in security slider
  1541. * Bug 26655: Adjust color and size of onion button
  1542. * Bug 26500: Reposition circuit display relay icon for RTL locales
  1543. * Bug 26409: Remove spoofed locale implementation
  1544. * Bug 26189: Remove content-policy.js
  1545. * Bug 26544: Images are not centered anymore
  1546. * Bug 27129: Add locales ca, ga, id, is, nb
  1547. * Translations update
  1548. * Update Tor Launcher to 0.2.16.2
  1549. * Bug 26985: Help button icons missing
  1550. * Bug 25509: Improve the proxy help text
  1551. * Bug 27129: Add locales ca, ga, id, is, nb
  1552. * Translations update
  1553. * Update NoScript to 10.1.8.16
  1554. * Update meek to 0.31
  1555. * Bug 26477: Make meek extension compatible with ESR 60
  1556. * Bug 27082: Enable a limited UITour for user onboarding
  1557. * Bug 26961: New user onboarding
  1558. * Bug 14952+24553: Enable HTTP2 and AltSvc
  1559. * Bug 25735: Tor Browser stalls while loading Facebook login page
  1560. * Bug 17252: Enable TLS session identifiers with first-party isolation
  1561. * Bug 26353: Prevent speculative connects that violate first-party isolation
  1562. * Bug 24056: Use en-US strings in HTML forms if locale is spoofed to english
  1563. * Bug 26456: HTTP .onion sites inherit previous page's certificate information
  1564. * Bug 26321: Move 'New Identity', 'New Circuit' to File, hamburger menus
  1565. * Bug 26833: Backport Mozilla's bug 1473247
  1566. * Bug 26628: Backport Mozilla's bug 1470156
  1567. * Bug 26237: Clean up toolbar for ESR60-based Tor Browser
  1568. * Bug 26519: Avoid Firefox icons in ESR60
  1569. * Bug 26039: Load our preferences that modify extensions (fixup)
  1570. * Bug 26515: Update Tor Browser blog post URLs
  1571. * Bug 27129: Add locales ca, ga, id, is, nb
  1572. * Bug 26216: Fix broken MAR file generation
  1573. * Bug 26409: Remove spoofed locale implementation
  1574. * Bug 26603: Remove obsolete HTTP pipelining preferences
  1575. * Windows
  1576. * Bug 26514: Fix intermittent updater failures on Win64 (Error 19)
  1577. * Bug 26874: Fix UNC path restrictions failure in Tor Browser 8.0a9
  1578. * Bug 12968: Enable HEASLR in Windows x86_64 builds
  1579. * Update tbb-windows-installer to 0.4
  1580. * Bug 26355: Update tbb-windows-installer to check for Windows7+
  1581. * Bug 26355: Require Windows7+ for updates to Tor Browser 8
  1582. * OS X
  1583. * Bug 26795: Bump snowflake to 6077141f4a for bug 25600
  1584. * Linux
  1585. * Bug 25485: Unbreak Tor Browser on systems with newer libstdc++
  1586. * Bug 20866: Fix OpenGL software rendering on systems with newer libstdc++
  1587. * Bug 26951+18022: Fix execdesktop argument passing
  1588. * Bug 26795: Bump snowflake to 6077141f4a for bug 25600
  1589. * Build System
  1590. * All Platforms
  1591. * Bug 26410: Stop using old MAR format in the alpha series
  1592. * Bug 27020: RBM build fails with runc version 1.0.1
  1593. * Bug 26949: Use GitHub repository for STIX
  1594. * Bug 26773: Add --verbose to the ./mach build flag for firefox
  1595. * Bug 26569: Redirect pre-8.0a9 alpha users to a separate update directory
  1596. * Bug 26319: Don't package up Tor Browser in the `mach package` step
  1597. * OS X
  1598. * Bug 26489: Fix .app directory name in tools/dmg2mar
  1599. * Windows
  1600. * Bug 27152: Use mozilla/fxc2.git for the fxc2 repository
  1601. Tor Browser 8.0a9 -- June 27 2018
  1602. * All platforms
  1603. * Update Firefox to 60.1.0esr
  1604. * Update Tor to 0.3.4.2-alpha
  1605. * Update Libevent to 2.1.8
  1606. * Update Torbutton to 2.0.1
  1607. * Bug 26100: Adapt Torbutton to Firefox 60 ESR
  1608. * Bug 26430: New Torbutton icon
  1609. * Bug 24309: Move circuit display to the identity popup
  1610. * Bug 26128: Adapt security slider to the WebExtensions version of NoScript
  1611. * Bug 23247: Show security state of .onions
  1612. * Bug 26129: Show our about:tor page on startup
  1613. * Bug 26235: Hide new unusable items from help menu
  1614. * Bug 26058: Remove workaround for hiding 'sign in to sync' button
  1615. * Bug 20628: Add locales da, he, sv, and zh-TW
  1616. * Translations update
  1617. * Update Tor Launcher to 0.2.16.1
  1618. * Bug 25750: Update Tor Launcher to make it compatible with Firefox 60 ESR
  1619. * Bug 20890: Increase control port connection timeout
  1620. * Bug 26466: Remove sv-SE from tracking for releases
  1621. * Bug 20628: Add more locales to Tor Browser
  1622. * Translations update
  1623. * Update HTTPS Everywhere to 2018.6.21
  1624. * Update NoScript to 10.1.8.2
  1625. * Bug 25543: Rebase Tor Browser patches for ESR60
  1626. * Bug 23247: Show security state of .onions
  1627. * Bug 26039: Load our preferences that modify extensions
  1628. * Bug 17965: Isolate HPKP and HSTS to URL bar domain
  1629. * Bug 26365: Add potential AltSvc support
  1630. * Bug 9145: Fix broken hardware acceleration on Windows and enable it
  1631. * Bug 26045: Add new MAR signing keys
  1632. * Bug 22564: Hide Firefox Sync
  1633. * Bug 25090: Disable updater telemetry
  1634. * Bug 26127: Make sure Torbutton and Tor Launcher are not treated as legacy extensions
  1635. * Bug 26073: Migrate general.useragent.locale to intl.locale.requested
  1636. * Bug 20628: Make Tor Browser available in da, he, sv-SE, and zh-TW
  1637. * Bug 12927: Include Hebrew translation into Tor Browser
  1638. * Bug 21245: Add danish (da) translation
  1639. * Windows
  1640. * Bug 26239+24197: Enable content sandboxing for 64bit Windows builds
  1641. * Bug 22581: Fix shutdown crash
  1642. * Bug 26424: Disable UNC paths to prevent possible proxy bypasses
  1643. * Bug 26304: Update zlib to version 1.2.11
  1644. * OS X
  1645. * Bug 24052: Backport fix for bug 1412081 for better file:// handling
  1646. * Bug 24136: After loading file:// URLs clicking on links is broken on OS X
  1647. * Bug 24243: Tor Browser only renders HTML for local pages via file://
  1648. * Bug 24263: Tor Browser does not run extension scripts if loaded via about:debugging
  1649. * Bug 24632: Disable snowflake for now until its build is fixed
  1650. * Bug 26438: Remove broken seatbelt profiles
  1651. * Linux
  1652. * Bug 24052: Backport fix for bug 1412081 for better file:// handling
  1653. * Bug 24136: After loading file:// URLs clicking on links is broken on Linux
  1654. * Bug 24243: Tor Browser only renders HTML for local pages via file://
  1655. * Bug 24263: Tor Browser does not run extension scripts if loaded via about:debugging
  1656. * Bug 26153: Update selfrando to be compatible with Firefox 60 ESR
  1657. * Bug 22242: Remove RUNPATH in Linux binaries embedded by selfrando
  1658. * Bug 26354: Set SSE2 support as minimal requirement for Tor Browser 8
  1659. * Build System
  1660. * All Platforms
  1661. * Bug 26362: Use old MAR format for first ESR60-based alpha
  1662. * Clean up
  1663. * Windows
  1664. * Bug 26203: Adapt tor-browser-build/tor-browser for Windows
  1665. * Bug 26204: Bundle d3dcompiler_47.dll for Tor Browser 8
  1666. * Bug 26205: Don't build the uninstaller for Windows during Firefox compilation
  1667. * Bug 26206: Ship pthread related dll where needed
  1668. * Bug 26396: Build libwinpthread reproducible
  1669. * Bug 25837: Integrate fxc2 into our build setup for Windows builds
  1670. * Bug 25894: Get a rust cross-compiler for Windows
  1671. * Bug 25554: Bump mingw-w64 version for ESR 60
  1672. * Bug 23561: Fix nsis builds for Windows 64
  1673. * Bug 13469: Windows installer is missing many languages from NSIS file
  1674. * Bug 23231: Remove our STL Wrappers workaround for Windows 64bit
  1675. * Bug 26370: Don't copy msvcr100.dll and libssp-0.dll twice
  1676. * Bug 26476: Work around Tor Browser crashes due to fix for bug 1467041
  1677. * Bug 18287: Use SHA-2 signature for Tor Browser setup executables
  1678. * Bug 16472: Update Binutils to 2.26.1
  1679. * OS X
  1680. * Bug 24632: Update macOS toolchain for ESR 60
  1681. * Bug 9711: Build our own cctools for macOS cross-compilation
  1682. * Bug 25548: Update macOS SDK for Tor Browser builds to 10.11
  1683. * Bug 26003: Clean up our mozconfig-osx-x86_64 file
  1684. * Bug 26195: Use new cctools in our macosx-toolchain project
  1685. * Bug 25975: Get a rust cross-compiler for macOS
  1686. * Bug 26475: Disable Stylo to make macOS build reproducible
  1687. * Linux
  1688. * Bug 26073: Patch tor-browser-build for transition to ESR 60
  1689. * Bug 25540: Stop building and distributing sandboxed tor browser
  1690. * Bug 25481: Rust support for tor-browser and tor
  1691. * Bug 16472: Update Binutils to 2.26.1
  1692. Tor Browser 7.5.6 -- June 26 2018
  1693. * All platforms
  1694. * Update Firefox to 52.9.0esr
  1695. * Update Tor to 0.3.3.7
  1696. * Update Tor Launcher to 0.2.14.5
  1697. * Bug 20890: Increase control port connection timeout
  1698. * Update HTTPS Everywhere to 2018.6.21
  1699. * Bug 26451: Prevent HTTPS Everywhere from freezing the browser
  1700. * Update NoScript to 5.1.8.6
  1701. * Bug 21537: Mark .onion cookies as secure
  1702. * Bug 25938: Backport fix for cross-origin header leak (bug 1334776)
  1703. * Bug 25721: Backport patches from Mozilla's bug 1448771
  1704. * Bug 25147+25458: Sanitize HTML fragments for chrome documents
  1705. * Bug 26221: Backport fix for leak in SHA256 in nsHttpConnectionInfo.cpp
  1706. * Windows
  1707. * Bug 26424: Disable UNC paths to prevent possible proxy bypasses
  1708. Tor Browser 8.0a8 -- June 10 2018
  1709. * All platforms
  1710. * Update Firefox to 52.8.1esr
  1711. * Bug 26098: Remove amazon-meek
  1712. Tor Browser 7.5.5 -- June 10 2018
  1713. * All platforms
  1714. * Update Firefox to 52.8.1esr
  1715. * Bug 26098: Remove amazon-meek
  1716. Tor Browser 8.0a7 -- May 9 2018
  1717. * All platforms
  1718. * Update Firefox to 52.8.0esr
  1719. * Update Tor Launcher to 0.2.15.2
  1720. * Bug 25807: Change front domain to unbreak Moat
  1721. * Translations update
  1722. * Bug 25973: Backport off-by-one fix (bug 1352073)
  1723. * Bug 25938: Backport fix for cross-origin header leak (bug 1334776)
  1724. * Bug 25458: Fix broken UI customization
  1725. * Bug 25898: Make Youtube videos play automatically again
  1726. * Bug 25980: Improve backport of bug 1448771 (fixes broken Orfox build)
  1727. * OS X
  1728. * Bug 26010: Change Snowflake rendezvous to use the Azure domain front
  1729. * Linux
  1730. * Bug 26010: Change Snowflake rendezvous to use the Azure domain front
  1731. Tor Browser 7.5.4 -- May 9 2018
  1732. * All platforms
  1733. * Update Firefox to 52.8.0esr
  1734. * Update HTTPS Everywhere to 2018.4.11
  1735. * Update NoScript to 5.1.8.5
  1736. * Bug 23439: Exempt .onion domains from mixed content warnings
  1737. * Bug 22614: Make e10s/non-e10s Tor Browsers indistinguishable
  1738. * Bug 22659: Changes to `intl.accept.languages` get overwritten after restart
  1739. * Bug 25973: Backport off-by-one fix (bug 1352073)
  1740. * Bug 25020: Add a tbb_version.json file
  1741. Tor Browser 8.0a6 -- April 19 2018
  1742. * All platforms
  1743. * Update Tor to 0.3.3.5-rc
  1744. * Update OpenSSL to 1.0.2o
  1745. * Update Torbutton to 1.9.9.1
  1746. * Bug 25126: Make about:tor layout responsive
  1747. * Translations update
  1748. * Update HTTPS Everywhere to 2018.4.11
  1749. * Update NoScript to 5.1.8.5
  1750. * Bug 21537: Mark .onion cookies as secure
  1751. * Bug 21850: Update about:tbupdate handling for e10s
  1752. * Bug 25721: Backport patches from Mozilla's bug 1448771
  1753. * Linux
  1754. * Bug 20283: Tor Browser should run without a `/proc` filesystem.
  1755. * Windows
  1756. * Bug 13893: Make EMET compatible with Tor Browser
  1757. * Build System
  1758. * Windows
  1759. * Bug 25420: Update GCC to 6.4.0
  1760. * Bug 20302: Fix FTE compilation for Windows with GCC 6.4.0
  1761. * Linux
  1762. * Bug 25304: Update GCC to 6.4.0
  1763. Tor Browser 8.0a5 -- March 27 2018
  1764. * All platforms
  1765. * Update Firefox to 52.7.3esr
  1766. * Update HTTPS Everywhere to 2018.3.13
  1767. * Bug 23439: Exempt .onion domains from mixed content warnings
  1768. * OS X
  1769. * Update Snowflake
  1770. * Bug 21312+25579+25449: Fix crashes and memory/file descriptor leaks in go-webrtc
  1771. * Linux
  1772. * Update Snowflake
  1773. * Bug 21312+25579+25449: Fix crashes and memory/file descriptor leaks in go-webrtc
  1774. Tor Browser 7.5.3 -- March 26 2018
  1775. * All platforms
  1776. * Update Firefox to 52.7.3esr
  1777. * Update HTTPS Everywhere to 2018.3.13
  1778. * Bug 25339: Adapt build system for Python 3.6 based build procedure
  1779. Tor Browser 8.0a4 -- March 17 2018
  1780. * All platforms
  1781. * Update Firefox to 52.7.2esr
  1782. Tor Browser 7.5.2 -- March 17 2018
  1783. * All platforms
  1784. * Update Firefox to 52.7.2esr
  1785. Tor Browser 8.0a3 -- March 13 2018
  1786. * All platforms
  1787. * Update Firefox to 52.7.0esr
  1788. * Update Tor to 0.3.3.3-alpha
  1789. * Update Tor Launcher to 0.2.15.1
  1790. * Bug 23136: Moat integration (fetch bridges for the user)
  1791. * Translations update
  1792. * Update HTTPS Everywhere to 2018.2.26
  1793. * Bug 25339: Adapt build system for Python 3.6 based build procedure
  1794. * Bug 25356: Update obfs4proxy to v0.0.7
  1795. * Bug 25147: Sanitize HTML fragments created for chrome-privileged documents
  1796. * Windows
  1797. * Bug 25112: No sandboxing on 64-bit Windows <= Vista
  1798. Tor Browser 7.5.1 -- March 13 2018
  1799. * All platforms
  1800. * Update Firefox to 52.7.0esr
  1801. * Update Tor to 0.3.2.10
  1802. * Update Torbutton to 1.9.8.6
  1803. * Bug 24159: Version check does not deal with platform specific checks
  1804. * Bug 25016: Remove 2017 donation banner
  1805. * Translations update
  1806. * Update Tor Launcher to 0.2.14.4
  1807. * Bug 25089: Special characters are not escaped in proxy password
  1808. * Translations update
  1809. * Update NoScript to 5.1.8.4
  1810. * Bug 25356: Update obfs4proxy to v0.0.7
  1811. * Bug 25000: Add [System+Principal] to the NoScript whitelist
  1812. * Windows
  1813. * Bug 25112: Disable sandboxing on 64-bit Windows <= Vista
  1814. Tor Browser 8.0a2 -- February 23 2018
  1815. * All Platforms
  1816. * Update Tor to 0.3.3.2-alpha
  1817. * Update Torbutton to 1.9.9
  1818. * Bug 24159: Version check does not deal with platform specific checks
  1819. * Bug 25016: Remove 2017 donation banner
  1820. * Translations update
  1821. * Update Tor Launcher to 0.2.15
  1822. * Bug 25089: Special characters are not escaped in proxy password
  1823. * Translations update
  1824. * Update HTTPS Everywhere to 2018.1.29
  1825. * Update NoScript to 5.1.8.4
  1826. * Update meek to 0.29
  1827. * Bug 25215: Revert bug 18619 (we are not disabling IndexedDB any longer)
  1828. * Bug 19910: Rip out optimistic data socks handshake variant (#3875)
  1829. * Bug 22659: Changes to `intl.accept.languages` get overwritten after restart
  1830. * Bug 25000: Add [System+Principal] to the NoScript whitelist
  1831. * Bug 15599: Disable Range requests used by pdfjs as they are not isolated
  1832. * Bug 22614: Make e10s/non-e10s Tor Browsers indistinguishable
  1833. * Bug 13575: Disable randomised Firefox HTTP cache decay user tests
  1834. * Bug 25020: Add a tbb_version.json file
  1835. * Bug 24995: Include git hash in tor --version
  1836. * OS X
  1837. * Bug 22794: Don't open AF_INET/AF_INET6 sockets when AF_LOCAL is configured
  1838. * Linux
  1839. * Bug 22794: Don't open AF_INET/AF_INET6 sockets when AF_LOCAL is configured
  1840. * Windows:
  1841. * Bug 25266: PT config should include full names of executable files
  1842. * Build System
  1843. * Windows
  1844. * Bug 25111: Don't compile Yasm on our own anymore for Windows Tor Browser
  1845. Tor Browser 8.0a1 -- January 23 2018
  1846. * All Platforms
  1847. * Update Firefox to 52.6.0esr
  1848. * Update Tor to 0.3.2.9
  1849. * Update Torbutton to 1.9.8.5
  1850. * Bug 21245: Add da translation to Torbutton and keep track of it
  1851. * Bug 24702: Remove Mozilla text from banner
  1852. * Translations update
  1853. * Update Tor Launcher to 0.2.14.3
  1854. * Translations update
  1855. * Update HTTPS Everywhere to 2018.1.11
  1856. * Bug 24756: Add noisebridge01 obfs4 bridge configuration
  1857. * Bug 23916: Add new MAR signing key
  1858. * Bug 22548: Firefox downgrades VP9 videos to VP8 for some users
  1859. * Windows
  1860. * Bug 24197: Fix win64 sandbox compile issues
  1861. * Build System
  1862. * Windows
  1863. * Bug 18691: switch Windows builds from precise to jessie
  1864. * Linux
  1865. * Bug 23892: Include Firefox and Tor debug files in final build directory
  1866. * Bug 24842: include libasan.so.2 and libubsan.so.0 in debug builds
  1867. Tor Browser 7.5 -- January 23 2018
  1868. * All Platforms
  1869. * Update Firefox to 52.6.0esr
  1870. * Update Tor to 0.3.2.9
  1871. * Update OpenSSL to 1.0.2n
  1872. * Update Torbutton to 1.9.8.5
  1873. * Bug 21847: Update copy for security slider
  1874. * Bug 21245: Add da translation to Torbutton and keep track of it
  1875. * Bug 24702: Remove Mozilla text from banner
  1876. * Bug 10573: Replace deprecated nsILocalFile with nsIFile (code clean-up)
  1877. * Translations update
  1878. * Update Tor Launcher to 0.2.14.3
  1879. * Bug 23262: Implement integrated progress bar
  1880. * Bug 23261: implement configuration portion of new Tor Launcher UI
  1881. * Bug 24623: Revise "country that censors Tor" text
  1882. * Bug 24624: tbb-logo.svg may cause network access
  1883. * Bug 23240: Retrieve current bootstrap progress before showing progress bar
  1884. * Bug 24428: Bootstrap error message sometimes lost
  1885. * Bug 22232: Add README on use of bootstrap status messages
  1886. * Bug 10573: Replace deprecated nsILocalFile with nsIFile (code clean-up)
  1887. * Translations update
  1888. * Update HTTPS Everywhere to 2018.1.11
  1889. * Update NoScript to 5.1.8.3
  1890. * Bug 23104: CSS line-height reveals the platform Tor Browser is running on
  1891. * Bug 24398: Plugin-container process exhausts memory
  1892. * Bug 22501: Requests via javascript: violate FPI
  1893. * Bug 24756: Add noisebridge01 obfs4 bridge configuration
  1894. * Windows
  1895. * Bug 16010: Enable content sandboxing on Windows
  1896. * Bug 23230: Fix build error on Windows 64
  1897. * OS X
  1898. * Bug 24566: Avoid white flashes when opening dialogs in Tor Browser
  1899. * Bug 23025: Add some hardening flags to macOS build
  1900. * Linux
  1901. * Bug 23970: Make "Print to File" work with sandboxing enabled
  1902. * Bug 23016: "Print to File" is broken on some non-english Linux systems
  1903. * Bug 10089: Set middlemouse.contentLoadURL to false by default
  1904. * Bug 18101: Suppress upload file dialog proxy bypass (linux part)
  1905. * Android
  1906. * Bug 22084: Spoof network information API
  1907. * Build System
  1908. * All Platforms
  1909. * Switch from gitian/tor-browser-bundle to rbm/tor-browser-build
  1910. * Windows
  1911. * Bug 22563: Update mingw-w64 to fix W^X violations
  1912. * Bug 20929: Bump GCC version to 5.4.0
  1913. * Linux
  1914. * Bug 20929: Bump GCC version to 5.4.0
  1915. * Bug 23892: Include Firefox and Tor debug files in final build directory
  1916. * Bug 24842: include libasan.so.2 and libubsan.so.0 in debug builds
  1917. Tor Browser 7.5a10 -- December 19 2017
  1918. * All Platforms
  1919. * Update Tor to 0.3.2.7-rc
  1920. * Update OpenSSL to 1.0.2n
  1921. * Update Torbutton to 1.9.8.4
  1922. * Bug 21847: Update copy for security slider
  1923. * Bug 10573: Replace deprecated nsILocalFile with nsIFile (code clean-up)
  1924. * Translations update
  1925. * Update Tor Launcher to 0.2.14.2
  1926. * Bug 24623: Revise "country that censors Tor" text
  1927. * Bug 24428: Bootstrap error message sometimes lost
  1928. * Bug 24624: tbb-logo.svg may cause network access
  1929. * Bug 10573: Replace deprecated nsILocalFile with nsIFile (code clean-up)
  1930. * Translations update
  1931. * Update NoScript to 5.1.8.3
  1932. * Bug 23104: CSS line-height reveals the platform Tor Browser is running on
  1933. * Bug 24398: Plugin-container process exhausts memory
  1934. * OS X
  1935. * Bug 24566: Avoid white flashes when opening dialogs in Tor Browser
  1936. * Linux
  1937. * Bug 23970: Make "Print to File" work with sandboxing enabled
  1938. * Bug 23016: "Print to File" is broken on some non-english Linux systems
  1939. * Android
  1940. * Bug 22084: Spoof network information API
  1941. Tor Browser 7.5a9 -- December 09 2017
  1942. * All Platforms
  1943. * Update Firefox to 52.5.2esr
  1944. * Update Tor to 0.3.2.6-alpha
  1945. * Update HTTPS-Everywhere to 2017.12.6
  1946. * Update NoScript to 5.1.8.1
  1947. * Update sandboxed-tor-browser to 0.0.16
  1948. Tor Browser 7.0.11 -- December 09 2017
  1949. * All Platforms
  1950. * Update Firefox to 52.5.2esr
  1951. * Update Tor to 0.3.1.9
  1952. * Update HTTPS-Everywhere to 2017.12.6
  1953. * Update NoScript to 5.1.8.1
  1954. Tor Browser 7.5a8 -- November 15 2017
  1955. * All Platforms
  1956. * Update Firefox to 52.5.0esr
  1957. * Update Tor to 0.3.2.4-alpha
  1958. * Update Torbutton to 1.9.8.3
  1959. * Bug 23997: Add link to Tor Browser manual for de, nl, tr, vi
  1960. * Bug 23949: Fix donation banner display
  1961. * Update locales with translated banner
  1962. * Translations update
  1963. * Update Tor Launcher to 0.2.14.1
  1964. * Bug 23262: Implement integrated progress bar
  1965. * Bug 23261: implement configuration portion of new Tor Launcher UI
  1966. * Translations update
  1967. * Update HTTPS-Everywhere to 2017.10.30
  1968. * Update NoScript to 5.1.5
  1969. * Bug 23968: NoScript icon jumps to the right after update
  1970. * Update sandboxed-tor-browser to 0.0.15
  1971. * Windows
  1972. * Bug 20636+10026: Create 64bit Tor Browser for Windows
  1973. * Bug 24052: Block file:// redirects early
  1974. Tor Browser 7.0.10 -- November 14 2017
  1975. * All Platforms
  1976. * Update Firefox to 52.5.0esr
  1977. * Update Tor to 0.3.1.8
  1978. * Update Torbutton to 1.9.7.10
  1979. * Bug 23997: Add link to Tor Browser manual for de, nl, tr, vi
  1980. * Translations update
  1981. * Update HTTPS-Everywhere to 2017.10.30
  1982. * Bug 24178: Use make.sh for building HTTPS-Everywhere
  1983. * Update NoScript to 5.1.5
  1984. * Bug 23968: NoScript icon jumps to the right after update
  1985. * Windows
  1986. * Bug 23582: Enable the Windows DLL blocklist for mingw-w64 builds
  1987. * Bug 23396: Update the msvcr100.dll we ship
  1988. * Bug 24052: Block file:// redirects early
  1989. Tor Browser 7.5a7 -- November 4 2017
  1990. * OS X
  1991. * Bug 24052: Streamline handling of file:// resources
  1992. * Linux
  1993. * Bug 24052: Streamline handling of file:// resources
  1994. Tor Browser 7.0.9 -- November 3 2017
  1995. * OS X
  1996. * Bug 24052: Streamline handling of file:// resources
  1997. * Linux
  1998. * Bug 24052: Streamline handling of file:// resources
  1999. Tor Browser 7.0.8 -- October 25 2017
  2000. * All Platforms
  2001. * Update Torbutton to 1.9.7.9
  2002. * Bug 23949: Fix donation banner display
  2003. * Update locales with translated banner
  2004. * Translations update
  2005. Tor Browser 7.5a6 -- October 19 2017
  2006. * All Platforms
  2007. * Update Firefox to 52.4.1esr
  2008. * Update Tor to 0.3.2.2-alpha
  2009. * Update Torbutton to 1.9.8.2
  2010. * Bug 23887: Update banner locales and Mozilla text
  2011. * Translations update
  2012. * Update HTTPS-Everywhere to 2017.10.4
  2013. * Update NoScript to 5.1.2
  2014. * Bug 23723: Loading entities from NoScript .dtd files is blocked
  2015. * Bug 23724: NoScript update breaks Security Slider and its icon disappears
  2016. * Update sandboxed-tor-browser to 0.0.14
  2017. * Bug 23745: Tab crashes when using Tor Browser to access Google Drive
  2018. * Bug 23694: Update the detailsURL in update responses
  2019. * Bug 22501: Requests via javascript: violate FPI
  2020. * OS X
  2021. * Bug 23807: Tab crashes when playing video on High Sierra
  2022. * Bug 23025: Add some hardening flags to macOS build
  2023. Tor Browser 7.0.7 -- October 19 2017
  2024. * All Platforms
  2025. * Update Firefox to 52.4.1esr
  2026. * Update Torbutton to 1.9.7.8
  2027. * Bug 23887: Update banner locales and Mozilla text
  2028. * Bug 23526: Add 2017 Donation banner text
  2029. * Bug 23483: Donation banner on about:tor for 2017 (testing mode)
  2030. * Bug 22610: Avoid crashes when canceling external helper app related downloads
  2031. * Bug 22472: Fix FTP downloads when external helper app dialog is shown
  2032. * Bug 22471: Downloading pdf files via the PDF viewer download button is broken
  2033. * Bug 22618: Downloading pdf file via file:/// is stalling
  2034. * Translations update
  2035. * Update HTTPS-Everywhere to 2017.10.4
  2036. * Update NoScript to 5.1.2
  2037. * Bug 23723: Loading entities from NoScript .dtd files is blocked
  2038. * Bug 23724: NoScript update breaks Security Slider and its icon disappears
  2039. * Bug 23745: Tab crashes when using Tor Browser to access Google Drive
  2040. * Bug 22610: Avoid crashes when canceling external helper app related downloads
  2041. * Bug 22472: Fix FTP downloads when external helper app dialog is shown
  2042. * Bug 22471: Downloading pdf files via the PDF viewer download button is broken
  2043. * Bug 22618: Downloading pdf file via file:/// is stalling
  2044. * Bug 23694: Update the detailsURL in update responses
  2045. * OS X
  2046. * Bug 23807: Tab crashes when playing video on High Sierra
  2047. * Linux
  2048. * Bug 22692: Enable content sandboxing on Linux
  2049. Tor Browser 7.5a5 -- September 28 2017
  2050. * All Platforms
  2051. * Update Firefox to 52.4.0esr
  2052. * Update Tor to 0.3.2.1-alpha
  2053. * Update Torbutton to 1.9.8.1
  2054. * Bug 20375: Warn users after entering fullscreen mode
  2055. * Bug 22989: Fix dimensions of new windows on macOS
  2056. * Bug 23526: Add 2017 Donation banner text
  2057. * Bug 23483: Donation banner on about:tor for 2017 (testing mode)
  2058. * Translations update
  2059. * Update Tor Launcher to 0.2.13
  2060. * Bug 23240: Retrieve current bootstrap progress before showing progress bar
  2061. * Bug 22232: Add README on use of bootstrap status messages
  2062. * Translations update
  2063. * Update HTTPS-Everywhere to 2017.9.12
  2064. * Update NoScript to 5.0.10
  2065. * Update sandboxed-tor-browser to 0.0.13
  2066. * Bug 23393: Don't crash all tabs when closing one tab
  2067. * Bug 23166: Add new obfs4 bridge to the built-in ones
  2068. * Bug 23258: Fix broken HTTPS-Everywhere on higher security levels
  2069. * Bug 21270: NoScript settings break WebExtensions add-ons
  2070. * Bug 23104: CSS line-height reveals the platform Tor Browser is running on
  2071. * Windows
  2072. * Bug 16010: Enable content sandboxing on Windows
  2073. * Bug 23582: Enable the Windows DLL blocklist for mingw-w64 builds
  2074. * Bug 23396: Update the msvcr100.dll we ship
  2075. * Bug 23230: Fix build error on Windows 64
  2076. * OS X
  2077. * Bug 23404: Add missing Noto Sans Buginese font to the macOS whitelist
  2078. * Linux
  2079. * Bug 10089: Set middlemouse.contentLoadURL to false by default
  2080. * Bug 22692: Enable content sandboxing on Linux
  2081. * Bug 18101: Suppress upload file dialog proxy bypass (linux part)
  2082. * Build System
  2083. * All Platforms
  2084. * Switch from gitian/tor-browser-bundle to rbm/tor-browser-build
  2085. Tor Browser 7.0.6 -- September 28 2017
  2086. * All Platforms
  2087. * Update Firefox to 52.4.0esr
  2088. * Update Tor to 0.3.1.7
  2089. * Update Torbutton to 1.9.7.7
  2090. * Bug 22542: Security Settings window too small on macOS 10.12 (fixup)
  2091. * Bug 20375: Warn users after entering fullscreen mode
  2092. * Update HTTPS-Everywhere to 2017.9.12
  2093. * Update NoScript to 5.0.10
  2094. * Bug 21830: Copying large text from web console leaks to /tmp
  2095. * Bug 23393: Don't crash all tabs when closing one tab
  2096. * OS X
  2097. * Bug 23404: Add missing Noto Sans Buginese font to the macOS whitelist
  2098. Tor Browser 7.0.5 -- September 4 2017
  2099. * All Platforms
  2100. * Update Torbutton to 1.9.7.6
  2101. * Bug 22989: Fix dimensions of new windows on macOS
  2102. * Translations update
  2103. * Update HTTPS-Everywhere to 2017.8.31
  2104. * Update NoScript to 5.0.9
  2105. * Bug 23166: Add new obfs4 bridge to the built-in ones
  2106. * Bug 23258: Fix broken HTTPS-Everywhere on higher security levels
  2107. * Bug 21270: NoScript settings break WebExtensions add-ons
  2108. Tor Browser 7.5a4 -- August 9 2017
  2109. * All Platforms
  2110. * Update Firefox to 52.3.0esr
  2111. * Update Tor to 0.3.1.5-alpha
  2112. * Update OpenSSL to 1.0.2l
  2113. * Update Torbutton to 1.9.8
  2114. * Bug 22610: Avoid crashes when canceling external helper app related downloads
  2115. * Bug 22472: Fix FTP downloads when external helper app dialog is shown
  2116. * Bug 22471: Downloading pdf files via the PDF viewer download button is broken
  2117. * Bug 22618: Downloading pdf file via file:/// is stalling
  2118. * Bug 22542: Resize slider window to work without scrollbars
  2119. * Bug 21999: Fix display of language prompt in non-en-US locales
  2120. * Bug 18913: Don't let about:tor have chrome privileges
  2121. * Bug 22535: Search on about:tor discards search query
  2122. * Bug 21948: Going back to about:tor page gives "Address isn't valid" error
  2123. * Code clean-up
  2124. * Translations update
  2125. * Update Tor Launcher to 0.2.12.3
  2126. * Bug 22592: Default bridge settings are not removed
  2127. * Translations update
  2128. * Update HTTPS-Everywhere to 5.2.21
  2129. * Update NoScript to 5.0.8.1
  2130. * Bug 22362: Remove workaround for XSS related browser freezing
  2131. * Bug 22067: NoScript Click-to-Play bypass with embedded videos and audio
  2132. * Update sandboxed-tor-browser to 0.0.12
  2133. * Bug 22610: Avoid crashes when canceling external helper app related downloads
  2134. * Bug 22472: Fix FTP downloads when external helper app dialog is shown
  2135. * Bug 22471: Downloading pdf files via the PDF viewer download button is broken
  2136. * Bug 22618: Downloading pdf file via file:/// is stalling
  2137. * Bug 21321: Exempt .onions from HTTP related security warnings
  2138. * Bug 21830: Copying large text from web console leaks to /tmp
  2139. * Bug 22073: Disable GetAddons option on addons page
  2140. * Bug 22884: Fix broken about:tor page on higher security levels
  2141. * Bug 22829: Remove default obfs4 bridge riemann.
  2142. * Windows
  2143. * Bug 21617: Fix single RWX page on Windows (included in 52.3.0esr)
  2144. * OS X
  2145. * Bug 22831: Enable Snowflake for mac
  2146. * Linux
  2147. * Bug 22832: Don't include monthly timestamp in libwebrtc build output
  2148. * Bug 20848: Deploy Selfrando in 32bit Linux builds
  2149. * Build system
  2150. * Windows
  2151. * Bug 22563: Update mingw-w64 to fix W^X violations
  2152. * Bug 20929: Bump GCC version to 5.4.0
  2153. * Linux
  2154. * Bug 20929: Bump GCC version to 5.4.0
  2155. Tor Browser 7.0.4 -- August 8 2017
  2156. * All Platforms
  2157. * Update Firefox to 52.3.0esr
  2158. * Update Tor to 0.3.0.10
  2159. * Update Torbutton to 1.9.7.5
  2160. * Bug 21999: Fix display of language prompt in non-en-US locales
  2161. * Bug 18913: Don't let about:tor have chrome privileges
  2162. * Bug 22535: Search on about:tor discards search query
  2163. * Bug 21948: Going back to about:tor page gives "Address isn't valid" error
  2164. * Code clean-up
  2165. * Translations update
  2166. * Update Tor Launcher to 0.2.12.3
  2167. * Bug 22592: Default bridge settings are not removed
  2168. * Translations update
  2169. * Update HTTPS-Everywhere to 5.2.21
  2170. * Update NoScript to 5.0.8.1
  2171. * Bug 22362: Remove workaround for XSS related browser freezing
  2172. * Bug 22067: NoScript Click-to-Play bypass with embedded videos and audio
  2173. * Bug 21321: Exempt .onions from HTTP related security warnings
  2174. * Bug 22073: Disable GetAddons option on addons page
  2175. * Bug 22884: Fix broken about:tor page on higher security levels
  2176. * Windows
  2177. * Bug 22829: Remove default obfs4 bridge riemann.
  2178. * Bug 21617: Fix single RWX page on Windows (included in 52.3.0esr)
  2179. * OS X
  2180. * Bug 22829: Remove default obfs4 bridge riemann.
  2181. Tor Browser 7.5a3 -- July 28 2017
  2182. * Linux
  2183. * Bug 23044: Don't allow GIO supported protocols by default
  2184. Tor Browser 7.0.3 -- July 27 2017
  2185. * Linux
  2186. * Bug 23044: Don't allow GIO supported protocols by default
  2187. * Bug 22829: Remove default obfs4 bridge riemann.
  2188. Tor Browser 7.5a2 -- July 6 2017
  2189. * All Platforms
  2190. * Update Tor to 0.3.1.4-alpha
  2191. * Update HTTPS-Everywhere to 5.2.19
  2192. * Linux
  2193. * Update sandboxed-tor-browser to 0.0.9
  2194. Tor Browser 7.0.2 -- July 3 2017
  2195. * All Platforms
  2196. * Update Tor to 0.3.0.9, fixing bug #22753
  2197. * Update HTTPS-Everywhere to 5.2.19
  2198. Tor Browser 7.5a1 -- June 14 2017
  2199. * All Platforms
  2200. * Update Firefox to 52.2.0esr
  2201. * Update Tor to 0.3.1.3-alpha
  2202. * Update Torbutton to 1.9.7.4
  2203. * Bug 22542: Security Settings window too small on macOS 10.12
  2204. * Bug 22104: Adjust our content policy whitelist for ff52-esr
  2205. * Bug 22457: Allow resources loaded by view-source://
  2206. * Bug 21627: Ignore HTTP 304 responses when checking redirects
  2207. * Bug 22459: Adapt our use of the nsIContentPolicy to e10s mode
  2208. * Translations update
  2209. * Update Tor Launcher to 0.2.12.2
  2210. * Bug 22283: Linux 7.0a4 is broken after update due to unix: lines in torrc
  2211. * Translations update
  2212. * Update HTTPS-Everywhere to 5.2.18
  2213. * Update NoScript to 5.0.5
  2214. * Update sandboxed-tor-browser to 0.0.7
  2215. * Bug 22362: NoScript's XSS filter freezes the browser
  2216. * Bug 21766: Fix crash when the external application helper dialog is invoked
  2217. * Bug 21886: Download is stalled in non-e10s mode
  2218. * Bug 22333: Disable WebGL2 API for now
  2219. * Bug 21861: Disable additional mDNS code to avoid proxy bypasses
  2220. * Bug 21684: Don't expose navigator.AddonManager to content
  2221. * Bug 21431: Clean-up system extensions shipped in Firefox 52
  2222. * Bug 22320: Use preference name 'referer.hideOnionSource' everywhere
  2223. * Bug 16285: Don't ship ClearKey EME system and update EME preferences
  2224. * Bug 21972: about:support is partially broken
  2225. * Bug 21323: Enable Mixed Content Blocking
  2226. * Bug 22415: Fix format error in our pipeline patch
  2227. * Bug 21862: Rip out potentially unsafe Rust code
  2228. * Bug 16485: Improve about:cache page
  2229. * Bug 22462: Backport of patch for bug 1329521 to fix assertion failure
  2230. * Bug 22458: Fix broken `about:cache` page on higher security levels
  2231. * Bug 18531: Uncaught exception when opening ip-check.info
  2232. * Bug 18574: Uncaught exception when clicking items in Library
  2233. * Bug 22327: Isolate Page Info media previews to first party domain
  2234. * Bug 22452: Isolate tab list menuitem favicons to first party domain
  2235. * Bug 15555: View-source requests are not isolated by first party domain
  2236. * Bug 5293: Neuter fingerprinting with Battery API
  2237. * Bug 22429: Add IPv6 address for Lisbeth:443 obfs4 bridge
  2238. * Bug 22468: Add default obfs4 bridges frosty and dragon
  2239. * Windows
  2240. * Bug 22419: Prevent access to file://
  2241. * Bug 21617: Fix single RWX page on Windows
  2242. * OS X
  2243. * Bug 22558: Don't update OS X 10.7.x and 10.8.x users to Tor Browser 7.0
  2244. * Linux
  2245. * Bug 16285: Remove ClearKey related library stripping
  2246. * Bug 21852: Don't use jemalloc4 anymore
  2247. * Android
  2248. * Bug 19078: Disable RtspMediaResource stuff in Orfox
  2249. Tor Browser 7.0.1 -- June 13 2017
  2250. * All Platforms
  2251. * Update Firefox to 52.2.0esr
  2252. * Update Tor to 0.3.0.8
  2253. * Update Torbutton to 1.9.7.4
  2254. * Bug 22542: Security Settings window too small on macOS 10.12
  2255. * Update HTTPS-Everywhere to 5.2.18
  2256. * Bug 22362: NoScript's XSS filter freezes the browser
  2257. * OS X
  2258. * Bug 22558: Don't update OS X 10.7.x and 10.8.x users to Tor Browser 7.0
  2259. Tor Browser 7.0 -- June 7 2017
  2260. * All Platforms
  2261. * Update Firefox to 52.1.2esr
  2262. * Update Tor to 0.3.0.7
  2263. * Update Torbutton to 1.9.7.3
  2264. * Bug 22104: Adjust our content policy whitelist for ff52-esr
  2265. * Bug 22457: Allow resources loaded by view-source://
  2266. * Bug 21627: Ignore HTTP 304 responses when checking redirects
  2267. * Bug 22459: Adapt our use of the nsIContentPolicy to e10s mode
  2268. * Bug 21865: Update our JIT preferences in the security slider
  2269. * Bug 21747: Make 'New Tor Circuit for this Site' work in ESR52
  2270. * Bug 21745: Fix handling of catch-all circuit
  2271. * Bug 21547: Fix circuit display under e10s
  2272. * Bug 21268: e10s compatibility for New Identity
  2273. * Bug 21267: Remove window resize implementation for now
  2274. * Bug 21201: Make Torbutton multiprocess compatible
  2275. * Translations update
  2276. * Update Tor Launcher to 0.2.12.2
  2277. * Bug 22283: Linux 7.0a4 broken after update due to unix: lines in torrc
  2278. * Bug 20761: Don't ignore additional SocksPorts
  2279. * Bug 21920: Don't show locale selection dialog
  2280. * Bug 21546: Mark Tor Launcher as multiprocess compatible
  2281. * Bug 21264: Add a README file
  2282. * Translations update
  2283. * Update HTTPS-Everywhere to 5.2.17
  2284. * Update NoScript to 5.0.5
  2285. * Update Go to 1.8.3 (bug 22398)
  2286. * Bug 21962: Fix crash on about:addons page
  2287. * Bug 21766: Fix crash when the external application helper dialog is invoked
  2288. * Bug 21886: Download is stalled in non-e10s mode
  2289. * Bug 21778: Canvas prompt is not shown in Tor Browser based on ESR52
  2290. * Bug 21569: Add first-party domain to Permissions key
  2291. * Bug 22165: Don't allow collection of local IP addresses
  2292. * Bug 13017: Work around audio fingerprinting by disabling the Web Audio API
  2293. * Bug 10286: Disable Touch API and add fingerprinting resistance as fallback
  2294. * Bug 13612: Disable Social API
  2295. * Bug 10283: Disable SpeechSynthesis API
  2296. * Bug 22333: Disable WebGL2 API for now
  2297. * Bug 21861: Disable additional mDNS code to avoid proxy bypasses
  2298. * Bug 21684: Don't expose navigator.AddonManager to content
  2299. * Bug 21431: Clean-up system extensions shipped in Firefox 52
  2300. * Bug 22320: Use preference name 'referer.hideOnionSource' everywhere
  2301. * Bug 16285: Don't ship ClearKey EME system and update EME preferences
  2302. * Bug 21675: Spoof window.navigator.hardwareConcurrency
  2303. * Bug 21792: Suppress MediaError.message
  2304. * Bug 16337: Round times exposed by Animation API to nearest 100ms
  2305. * Bug 21972: about:support is partially broken
  2306. * Bug 21726: Keep Graphite support disabled
  2307. * Bug 21323: Enable Mixed Content Blocking
  2308. * Bug 21685: Disable remote new tab pages
  2309. * Bug 21790: Disable captive portal detection
  2310. * Bug 21686: Disable Microsoft Family Safety support
  2311. * Bug 22073: Make sure Mozilla's experiments are disabled
  2312. * Bug 21683: Disable newly added Safebrowsing capabilities
  2313. * Bug 22071: Disable Kinto-based blocklist update mechanism
  2314. * Bug 22415: Fix format error in our pipeline patch
  2315. * Bug 22072: Hide TLS error reporting checkbox
  2316. * Bug 20761: Don't ignore additional SocksPorts
  2317. * Bug 21862: Rip out potentially unsafe Rust code
  2318. * Bug 16485: Improve about:cache page
  2319. * Bug 22462: Backport of patch for bug 1329521 to fix assertion failure
  2320. * Bug 21340: Identify and backport new patches from Firefox
  2321. * Bug 22153: Fix broken feeds on higher security levels
  2322. * Bug 22025: Fix broken certificate error pages on higher security levels
  2323. * Bug 21887: Fix broken error pages on higher security levels
  2324. * Bug 22458: Fix broken `about:cache` page on higher security levels
  2325. * Bug 21876: Enable e10s by default on all supported platforms
  2326. * Bug 21876: Always use esr policies for e10s
  2327. * Bug 20905: Fix resizing issues after moving to a direct Firefox patch
  2328. * Bug 21875: Modal dialogs are maximized in ESR52 nightly builds
  2329. * Bug 21885: SVG is not disabled in Tor Browser based on ESR52
  2330. * Bug 17334: Hide Referer when leaving a .onion domain (improved patch)
  2331. * Bug 18531: Uncaught exception when opening ip-check.info
  2332. * Bug 18574: Uncaught exception when clicking items in Library
  2333. * Bug 22327: Isolate Page Info media previews to first party domain
  2334. * Bug 22452: Isolate tab list menuitem favicons to first party domain
  2335. * Bug 15555: View-source requests are not isolated by first party domain
  2336. * Bug 3246: Double-key cookies
  2337. * Bug 8842: Fix XML parsing error
  2338. * Bug 5293: Neuter fingerprinting with Battery API
  2339. * Bug 16886: 16886: "Add-on compatibility check dialog" contains Firefox logo
  2340. * Bug 19645: TBB zooms text when resizing browser window
  2341. * Bug 19192: Untrust Blue Coat CA
  2342. * Bug 19955: Avoid confusing warning that favicon load request got cancelled
  2343. * Bug 20005: Backport fixes for memory leaks investigation
  2344. * Bug 20755: ltn.com.tw is broken in Tor Browser
  2345. * Bug 21896: Commenting on website is broken due to CAPTCHA not being displayed
  2346. * Bug 20680: Rebase Tor Browser patches to 52 ESR
  2347. * Bug 22429: Add IPv6 address for Lisbeth:443 obfs4 bridge
  2348. * Bug 22468: Add default obfs4 bridges frosty and dragon
  2349. * Windows
  2350. * Bug 22419: Prevent access to file://
  2351. * Bug 12426: Make use of HeapEnableTerminationOnCorruption
  2352. * Bug 19316: Make sure our Windows updates can deal with the SSE2 requirement
  2353. * Bug 21868: Fix build bustage with FIREFOX_52_0_2esr_RELEASE for Windows
  2354. * OS X
  2355. * Bug 21940: Don't allow privilege escalation during update
  2356. * Bug 22044: Fix broken default search engine on macOS
  2357. * Bug 21879: Use our default bookmarks on OSX
  2358. * Bug 21779: Non-admin users can't access Tor Browser on macOS
  2359. * Bug 21723: Fix inconsistent generation of MOZ_MACBUNDLE_ID
  2360. * Bug 21724: Make Firefox and Tor Browser distinct macOS apps
  2361. * Bug 21931: Backport OSX SetupMacCommandLine updater fixes
  2362. * Bug 15910: Don't download GMPs via the local fallback
  2363. * Linux
  2364. * Bug 16285: Remove ClearKey related library stripping
  2365. * Bug 22041: Fix update error during update to 7.0a3
  2366. * Bug 22238: Fix use of hardened wrapper for Firefox build
  2367. * Bug 21907: Fix runtime error on CentOS 6
  2368. * Bug 15910: Don't download GMPs via the local fallback
  2369. * Android
  2370. * Bug 19078: Disable RtspMediaResource stuff in Orfox
  2371. * Build system
  2372. * Windows
  2373. * Bug 21837: Fix reproducibility of accessibility code for Windows
  2374. * Bug 21240: Create patches to fix mingw-w64 compilation of Firefox ESR 52
  2375. * Bug 21904: Bump mingw-w64 commit to help with sandbox compilation
  2376. * Bug 18831: Use own Yasm for Firefox cross-compilation
  2377. * OS X
  2378. * Bug 21328: Updating to clang 3.8.0
  2379. * Bug 21754: Remove old GCC toolchain and macOS SDK
  2380. * Bug 19783: Remove unused macOS helper scripts
  2381. * Bug 10369: Don't use old GCC toolchain anymore for utils
  2382. * Bug 21753: Replace our old GCC toolchain in PT descriptor
  2383. * Bug 18530: ESR52 based Tor Browser only runs on macOS 10.9+
  2384. * Bug 22328: Remove clang PIE wrappers
  2385. * Linux
  2386. * Bug 21930: NSS libraries are missing from mar-tools archive
  2387. * Bug 21239: Adapt Linux Firefox descriptor to ESR52 (use GTK2)
  2388. * Bug 21960: Linux bundles based on ESR 52 are not reproducible anymore
  2389. * Bug 21629: Fix broken ASan builds when switching to ESR 52
  2390. * Bug 22444: Use hardening-wrapper when building GCC
  2391. * Bug 22361: Fix hardening of libraries built in linux/gitian-utils.yml
  2392. Tor Browser 7.0a4 -- May 15 2017
  2393. * All Platforms
  2394. * Update Firefox to 52.1.1esr
  2395. * Update Tor to 0.3.0.6
  2396. * Update Tor Launcher to 0.2.12.1
  2397. * Bug 20761: Don't ignore additional SocksPorts
  2398. * Translation update
  2399. * Update HTTPS-Everywhere to 5.2.16
  2400. * Update NoScript to 5.0.4
  2401. * Bug 21962: Fix crash on about:addons page
  2402. * Bug 21778: Canvas prompt is not shown in Tor Browser based on ESR52
  2403. * Bug 21569: Add first-party domain to Permissions key
  2404. * Bug 22165: Don't allow collection of local IP addresses
  2405. * Bug 13017: Work around audio fingerprinting by disabling the Web Audio API
  2406. * Bug 10286: Disable Touch API and add fingerprinting resistance as fallback
  2407. * Bug 13612: Disable Social API
  2408. * Bug 10283: Disable SpeechSynthesis API
  2409. * Bug 21675: Spoof window.navigator.hardwareConcurrency
  2410. * Bug 21792: Suppress MediaError.message
  2411. * Bug 16337: Round times exposed by Animation API to nearest 100ms
  2412. * Bug 21726: Keep Graphite support disabled
  2413. * Bug 21685: Disable remote new tab pages
  2414. * Bug 21790: Disable captive portal detection
  2415. * Bug 21686: Disable Microsoft Family Safety support
  2416. * Bug 22073: Make sure Mozilla's experiments are disabled
  2417. * Bug 21683: Disable newly added Safebrowsing capabilities
  2418. * Bug 22071: Disable Kinto-based blocklist update mechanism
  2419. * Bug 22072: Hide TLS error reporting checkbox
  2420. * Bug 20761: Don't ignore additional SocksPorts
  2421. * Bug 21340: Identify and backport new patches from Firefox
  2422. * Bug 22153: Fix broken feeds on higher security levels
  2423. * Bug 22025: Fix broken certificate error pages on higher security levels
  2424. * Bug 21710: Upgrade Go to 1.8.1
  2425. * Mac
  2426. * Bug 21940: Don't allow privilege escalation during update
  2427. * Bug 22044: Fix broken default search engine on macOS
  2428. * Bug 21879: Use our default bookmarks on OSX
  2429. * Bug 21779: Non-admin users can't access Tor Browser on macOS
  2430. * Linux
  2431. * Bug 22041: Fix update error during update to 7.0a3
  2432. * Bug 22238: Fix use of hardened wrapper for Firefox build
  2433. * Bug 20683: Selfrando support for 64-bit Linux systems
  2434. Tor Browser 7.0a3 -- April 20 2017
  2435. * All Platforms
  2436. * Update Firefox to 52.1.0esr
  2437. * Tor to 0.3.0.5-rc
  2438. * Update Torbutton to 1.9.7.2
  2439. * Bug 21865: Update our JIT preferences in the security slider
  2440. * Bug 21747: Make 'New Tor Circuit for this Site' work in ESR52
  2441. * Bug 21745: Fix handling of catch-all circuit
  2442. * Bug 21547: Fix circuit display under e10s
  2443. * Bug 21268: e10s compatibility for New Identity
  2444. * Bug 21267: Remove window resize implementation for now
  2445. * Bug 21201: Make Torbutton multiprocess compatible
  2446. * Translations update
  2447. * Update Tor Launcher to 0.2.12
  2448. * Bug 21920: Don't show locale selection dialog
  2449. * Bug 21546: Mark Tor Launcher as multiprocess compatible
  2450. * Bug 21264: Add a README file
  2451. * Translations update
  2452. * Update HTTPS-Everywhere to 5.2.14
  2453. * Update NoScript to 5.0.2
  2454. * Update sandboxed-tor-browser to 0.0.6
  2455. * Bug 21764: Use bubblewrap's `--die-with-parent` when supported
  2456. * Fix e10s Web Content crash on systems with grsec kernels
  2457. * Bug 21928: Force a reinstall if an existing hardened bundle is present
  2458. * Bug 21929: Remove hardened/ASAN related code
  2459. * Bug 21927: Remove the ability to install/update the hardened bundle
  2460. * Bug 21244: Update the MAR signing key for 7.0
  2461. * Bug 21536: Remove asn's scramblesuit bridge from Tor Browser
  2462. * Add back the old release MAR signing key
  2463. * Add `prlimit64` to the firefox system call whitelist
  2464. * Fix compilation with Go 1.8
  2465. * Use Config.Clone() to clone TLS configs when available
  2466. * Update Go to 1.7.5 (bug 21709)
  2467. * Bug 21555+16450: Don't remove Authorization header on subdomains (e.g. Twitter)
  2468. * Bug 21887: Fix broken error pages on higher security levels
  2469. * Bug 21876: Enable e10s by default on all supported platforms
  2470. * Bug 21876: Always use esr policies for e10s
  2471. * Bug 20905: Fix resizing issues after moving to a direct Firefox patch
  2472. * Bug 21875: Modal dialogs are maximized in ESR52 nightly builds
  2473. * Bug 21885: SVG is not disabled in Tor Browser based on ESR52
  2474. * Bug 17334: Hide Referer when leaving a .onion domain (improved patch)
  2475. * Bug 3246: Double-key cookies
  2476. * Bug 8842: Fix XML parsing error
  2477. * Bug 16886: "Add-on compatibility check dialog" contains Firefox logo
  2478. * Bug 19192: Untrust Blue Coat CA
  2479. * Bug 19955: Avoid confusing warning that favicon load request got cancelled
  2480. * Bug 20005: Backport fixes for memory leaks investigation
  2481. * Bug 20755: ltn.com.tw is broken in Tor Browser
  2482. * Bug 21896: Commenting on website is broken due to CAPTCHA not being displayed
  2483. * Bug 20680: Rebase Tor Browser patches to 52 ESR
  2484. * Bug 21917: Add new obfs4 bridges
  2485. * Bug 21918: Move meek-amazon to d2cly7j4zqgua7.cloudfront.net backend
  2486. * Windows
  2487. * Bug 21795: Fix Tor Browser crashing on github.com
  2488. * Bug 12426: Make use of HeapEnableTerminationOnCorruption
  2489. * Bug 19316: Make sure our Windows updates can deal with the SSE2 requirement
  2490. * Bug 21868: Fix build bustage with FIREFOX_52_0_2esr_RELEASE for Windows
  2491. * OS X
  2492. * Bug 21723: Fix inconsistent generation of MOZ_MACBUNDLE_ID
  2493. * Bug 21724: Make Firefox and Tor Browser distinct macOS apps
  2494. * Bug 21931: Backport OSX SetupMacCommandLine updater fixes
  2495. * Bug 15910: Don't download GMPs via the local fallback
  2496. * Linux
  2497. * Bug 21907: Fix runtime error on CentOS 6
  2498. * Bug 21748: Fix broken Snowflake build and update bridge details
  2499. * Bug 21954: Snowflake breaks the 7.0a3 build
  2500. * Bug 15910: Don't download GMPs via the local fallback
  2501. * Build system
  2502. * Windows
  2503. * Bug 21837: Fix reproducibility of accessibility code for Windows
  2504. * Bug 21240: Create patches to fix mingw-w64 compilation of Firefox ESR 52
  2505. * Bug 21904: Bump mingw-w64 commit to help with sandbox compilation
  2506. * Bug 18831: Use own Yasm for Firefox cross-compilation
  2507. * OS X
  2508. * Bug 21328: Updating to clang 3.8.0
  2509. * Bug 21754: Remove old GCC toolchain and macOS SDK
  2510. * Bug 19783: Remove unused macOS helper scripts
  2511. * Bug 10369: Don't use old GCC toolchain anymore for utils
  2512. * Bug 21753: Replace our old GCC toolchain in PT descriptor
  2513. * Bug 18530: ESR52 based Tor Browser only runs on macOS 10.9+
  2514. * Linux
  2515. * Bug 21930: NSS libraries are missing from mar-tools archive
  2516. * Bug 21239: Adapt Linux Firefox descriptor to ESR52 (use GTK2)
  2517. * Bug 21960: Linux bundles based on ESR 52 are not reproducible anymore
  2518. * Bug 21629: Fix broken ASan builds when switching to ESR 52
  2519. Tor Browser 6.5.2 -- April 19 2017
  2520. * All Platforms
  2521. * Update Firefox to 45.9.0esr
  2522. * Update HTTPS-Everywhere to 5.2.14
  2523. * Update NoScript to 5.0.2
  2524. * Bug 21555+16450: Don't remove Authorization header on subdomains (e.g. Twitter)
  2525. * Bug 19316: Make sure our Windows updates can deal with the SSE2 requirement
  2526. * Bug 21917: Add new obfs4 bridges
  2527. * Bug 21918: Move meek-amazon to d2cly7j4zqgua7.cloudfront.net backend
  2528. * Windows
  2529. * Bug 21795: Fix Tor Browser crashing on github.com
  2530. Tor Browser 7.0a2-hardened -- March 7 2017
  2531. * All Platforms
  2532. * Update Firefox to 45.8.0esr
  2533. * Tor to 0.3.0.4-rc
  2534. * OpenSSL to 1.0.2k
  2535. * Update Torbutton to 1.9.7.1
  2536. * Bug 21396: Allow leaking of resource/chrome URIs (off by default)
  2537. * Bug 21574: Add link for zh manual and create manual links dynamically
  2538. * Bug 21330: Non-usable scrollbar appears in tor browser security settings
  2539. * Bug 21324: Don't update NoScript button with timer update
  2540. * Translation updates
  2541. * Update HTTPS-Everywhere to 5.2.11
  2542. * Bug 21514: Restore W^X JIT implementation removed from ESR45
  2543. * Bug 21536: Remove scramblesuit bridge
  2544. * Bug 21342: Move meek-azure to the meek.azureedge.net backend and cymrubridge02 bridge
  2545. * Bug 21326: Update the "Using a system-installed Tor" section in start script
  2546. * Build system
  2547. * Bug 17034: Use our built binutils and GCC for building tor
  2548. * Code clean-up
  2549. Tor Browser 7.0a2 -- March 7 2017
  2550. * All Platforms
  2551. * Update Firefox to 45.8.0esr
  2552. * Tor to 0.3.0.4-rc
  2553. * OpenSSL to 1.0.2k
  2554. * Update Torbutton to 1.9.7.1
  2555. * Bug 21396: Allow leaking of resource/chrome URIs (off by default)
  2556. * Bug 21574: Add link for zh manual and create manual links dynamically
  2557. * Bug 21330: Non-usable scrollbar appears in tor browser security settings
  2558. * Bug 21324: Don't update NoScript button with timer update
  2559. * Translation updates
  2560. * Update HTTPS-Everywhere to 5.2.11
  2561. * Bug 21514: Restore W^X JIT implementation removed from ESR45
  2562. * Bug 21536: Remove scramblesuit bridge
  2563. * Bug 21342: Move meek-azure to the meek.azureedge.net backend and cymrubridge02 bridge
  2564. * Bug 21348: Make snowflake only available on Linux for now
  2565. * Linux
  2566. * Bug 21326: Update the "Using a system-installed Tor" section in start script
  2567. * Build system
  2568. * OS X
  2569. * Bug 21343: Remove unused FTE related parts for macOS
  2570. * Linux
  2571. * Bug 17034: Use our built binutils and GCC for building tor
  2572. * Clean-up
  2573. Tor Browser 6.5.1 -- March 7 2017
  2574. * All Platforms
  2575. * Update Firefox to 45.8.0esr
  2576. * Tor to 0.2.9.10
  2577. * OpenSSL to 1.0.2k
  2578. * Update Torbutton to 1.9.6.14
  2579. * Bug 21396: Allow leaking of resource/chrome URIs (off by default)
  2580. * Bug 21574: Add link for zh manual and create manual links dynamically
  2581. * Bug 21330: Non-usable scrollbar appears in tor browser security settings
  2582. * Translation updates
  2583. * Update HTTPS-Everywhere to 5.2.11
  2584. * Bug 21514: Restore W^X JIT implementation removed from ESR45
  2585. * Bug 21536: Remove scramblesuit bridge
  2586. * Bug 21342: Move meek-azure to the meek.azureedge.net backend and cymrubridge02 bridge
  2587. * Linux
  2588. * Bug 21326: Update the "Using a system-installed Tor" section in start script
  2589. Tor Browser 7.0a1-hardened -- January 25 2017
  2590. * All Platforms
  2591. * Update Firefox to 45.7.0esr
  2592. * Tor to 0.3.0.2-alpha
  2593. * Update Torbutton to 1.9.7
  2594. * Bug 19898: Use DuckDuckGo on about:tor
  2595. * Bug 21091: Hide the update check menu entry when running under the sandbox
  2596. * Bug 21243: Add links to es, fr, and pt Tor Browser manual
  2597. * Bug 21194: Show snowflake in the circuit display
  2598. * Bug 21131: Remove 2016 donation banner
  2599. * Translation updates
  2600. * Update HTTPS-Everywhere to 5.2.9
  2601. * Update NoScript to 2.9.5.3
  2602. * Bug 20471: Allow javascript: links from HTTPS first party pages
  2603. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  2604. * Bug 20589: Add new MAR signing key
  2605. * Bug 20735: Add snowflake pluggable transport to alpha Linux builds
  2606. * Build system
  2607. * All platforms
  2608. * Bug 20927: Upgrade Go to 1.7.4
  2609. Tor Browser 7.0a1 -- January 25 2017
  2610. * All Platforms
  2611. * Update Firefox to 45.7.0esr
  2612. * Tor to 0.3.0.2-alpha
  2613. * Update Torbutton to 1.9.7
  2614. * Bug 19898: Use DuckDuckGo on about:tor
  2615. * Bug 21091: Hide the update check menu entry when running under the sandbox
  2616. * Bug 21243: Add links to es, fr, and pt Tor Browser manual
  2617. * Bug 21194: Show snowflake in the circuit display
  2618. * Bug 21131: Remove 2016 donation banner
  2619. * Translation updates
  2620. * Update HTTPS-Everywhere to 5.2.9
  2621. * Update NoScript to 2.9.5.3
  2622. * Bug 20471: Allow javascript: links from HTTPS first party pages
  2623. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  2624. * Bug 20589: Add new MAR signing key
  2625. * Windows
  2626. * Bug 20981: On Windows, check TZ for timezone first
  2627. * OS X
  2628. * Bug 20989: Browser sandbox profile is too restrictive on OSX 10.12.2
  2629. * Linux
  2630. * Update sandboxed-tor-browser to 0.0.3
  2631. * Bug 20735: Add snowflake pluggable transport to alpha Linux builds
  2632. * Build system
  2633. * All platforms
  2634. * Bug 20927: Upgrade Go to 1.7.4
  2635. * Linux
  2636. * Bug 21103: Update descriptors for sandboxed-tor-browser 0.0.3
  2637. Tor Browser 6.5 -- January 24 2017
  2638. * All Platforms
  2639. * Update Firefox to 45.7.0esr
  2640. * Tor to 0.2.9.9
  2641. * OpenSSL to 1.0.2j
  2642. * Update Torbutton to 1.9.6.12
  2643. * Bug 16622: Timezone spoofing moved to tor-browser.git
  2644. * Bug 17334: Move referrer spoofing for .onion domains into tor-browser.git
  2645. * Bug 8725: Block addon resource and url fingerprinting with nsIContentPolicy
  2646. * Bug 20701: Allow the directory listing stylesheet in the content policy
  2647. * Bug 19837: Whitelist internal URLs that Firefox requires for media
  2648. * Bug 19206: Avoid SOCKS auth and NEWNYM collisions when sharing a tor client
  2649. * Bug 19273: Improve external app launch handling and associated warnings
  2650. * Bug 15852: Remove/synchronize Torbutton SOCKS pref logic
  2651. * Bug 19733: GETINFO response parser doesn't handle AF_UNIX entries + IPv6
  2652. * Bug 17767: Make "JavaScript disabled" more visible in Security Slider
  2653. * Bug 20556: Use pt-BR strings from now on
  2654. * Bug 20614: Add links to Tor Browser User Manual
  2655. * Bug 20414: Fix non-rendering arrow on OS X
  2656. * Bug 20728: Fix bad preferences.xul dimensions
  2657. * Bug 19898: Use DuckDuckGo on about:tor
  2658. * Bug 21091: Hide the update check menu entry when running under the sandbox
  2659. * Bug 19459: Move resizing code to tor-browser.git
  2660. * Bug 20264: Change security slider to 3 options
  2661. * Bug 20347: Enhance security slider's custom mode
  2662. * Bug 20123: Disable remote jar on all security levels
  2663. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  2664. * Bug 17546: Add tooltips to explain our privacy checkboxes
  2665. * Bug 17904: Allow security settings dialog to resize
  2666. * Bug 18093: Remove 'Restore Defaults' button
  2667. * Bug 20373: Prevent redundant dialogs opening
  2668. * Bug 20318: Remove helpdesk link from about:tor
  2669. * Bug 21243: Add links for pt, es, and fr Tor Browser manuals
  2670. * Bug 20753: Remove obsolete StartPage locale strings
  2671. * Bug 21131: Remove 2016 donation banner
  2672. * Bug 18980: Remove obsolete toolbar button code
  2673. * Bug 18238: Remove unused Torbutton code and strings
  2674. * Bug 20388+20399+20394: Code clean-up
  2675. * Translation updates
  2676. * Update Tor Launcher to 0.2.10.3
  2677. * Bug 19568: Set CurProcD for Thunderbird/Instantbird
  2678. * Bug 19432: Remove special handling for Instantbird/Thunderbird
  2679. * Translation updates
  2680. * Update HTTPS-Everywhere to 5.2.9
  2681. * Update NoScript to 2.9.5.3
  2682. * Bug 16622: Spoof timezone with Firefox patch
  2683. * Bug 17334: Spoof referrer when leaving a .onion domain
  2684. * Bug 19273: Write C++ patch for external app launch handling
  2685. * Bug 19459: Size new windows to 1000x1000 or nearest 200x100 (Firefox patch)
  2686. * Bug 12523: Mark JIT pages as non-writable
  2687. * Bug 20123: Always block remote jar files
  2688. * Bug 19193: Reduce timing precision for AudioContext, HTMLMediaElement, and MediaStream
  2689. * Bug 19164: Remove support for SHA-1 HPKP pins
  2690. * Bug 19186: KeyboardEvents are only rounding to 100ms
  2691. * Bug 16998: Isolate preconnect requests to URL bar domain
  2692. * Bug 19478: Prevent millisecond resolution leaks in File API
  2693. * Bug 20471: Allow javascript: links from HTTPS first party pages
  2694. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  2695. * Bug 20707: Fix broken preferences tab in non-en-US alpha bundles
  2696. * Bug 20709: Fix wrong update URL in alpha bundles
  2697. * Bug 19481: Point the update URL to aus1.torproject.org
  2698. * Bug 20556: Start using pt-BR instead of pt-PT for Portuguese
  2699. * Bug 20442: Backport fix for local path disclosure after drag and drop
  2700. * Bug 20160: Backport fix for broken MP3-playback
  2701. * Bug 20043: Isolate SharedWorker script requests to first party
  2702. * Bug 18923: Add script to run all Tor Browser regression tests
  2703. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  2704. * Bug 19336+19835: Enhance about:tbupdate page
  2705. * Bug 20399+15852: Code clean-up
  2706. * Windows
  2707. * Bug 20981: On Windows, check TZ for timezone first
  2708. * Bug 18175: Maximizing window and restarting leads to non-rounded window size
  2709. * Bug 13437: Rounded inner window accidentally grows to non-rounded size
  2710. * OS X
  2711. * Bug 20590: Badly resized window due to security slider notification bar on OS X
  2712. * Bug 20439: Make the build PIE on OSX
  2713. * Linux
  2714. * Bug 20691: Updater breaks if unix domain sockets are used
  2715. * Bug 15953: Weird resizing dance on Tor Browser startup
  2716. * Build system
  2717. * All platforms
  2718. * Bug 20927: Upgrade Go to 1.7.4
  2719. * Bug 20583: Make the downloads.json file reproducible
  2720. * Bug 20133: Don't apply OpenSSL patch anymore
  2721. * Bug 19528: Set MOZ_BUILD_DATE based on Firefox version
  2722. * Bug 18291: Remove some uses of libfaketime
  2723. * Bug 18845: Make zip and tar helpers generate reproducible archives
  2724. * OS X
  2725. * Bug 20258: Make OS X Tor archive reproducible again
  2726. * Bug 20184: Make OS X builds reproducible (use clang for compiling tor)
  2727. * Bug 19856: Make OS X builds reproducible (getting libfaketime back)
  2728. * Bug 19410: Fix incremental updates by taking signatures into account
  2729. * Bug 20210: In dmg2mar, extract old mar file to copy permissions to the new one
  2730. Tor Browser 6.5a6-hardened -- December 14 2016
  2731. * All Platforms
  2732. * Update Firefox to 45.6.0esr
  2733. * Tor to 0.2.9.7-rc
  2734. * Update Torbutton to 1.9.6.9
  2735. * Bug 16622: Timezone spoofing moved to tor-browser.git
  2736. * Bug 20701: Allow the directory listing stylesheet in the content policy
  2737. * Bug 20556: Use pt-BR strings from now on
  2738. * Bug 20614: Add links to Tor Browser User Manual
  2739. * Bug 20414: Fix non-rendering arrow on OS X
  2740. * Bug 20728: Fix bad preferences.xul dimensions
  2741. * Bug 20318: Remove helpdesk link from about:tor
  2742. * Bug 20753: Remove obsolete StartPage locale strings
  2743. * Bug 20947: Donation banner improvements
  2744. * Translation updates
  2745. * Update HTTPS-Everywhere to 5.2.8
  2746. * Bug 16622: Spoof timezone with Firefox patch
  2747. * Bug 20707: Fix broken preferences tab in non-en-US alpha bundles
  2748. * Bug 20709: Fix wrong update URL in alpha bundles
  2749. * Bug 20556: Start using pt-BR instead of pt-PT for Portuguese
  2750. * Bug 20809: Use non-/html search engine URL for DuckDuckGo search plugins
  2751. * Bug 20837: Activate iat-mode for certain obfs4 bridges
  2752. * Bug 20838: Uncomment NX01 default obfs4 bridge
  2753. * Bug 20840: Rotate ports a third time for default obfs4 bridges
  2754. Tor Browser 6.5a6 -- December 14 2016
  2755. * All Platforms
  2756. * Update Firefox to 45.6.0esr
  2757. * Tor to 0.2.9.6-rc
  2758. * Update Torbutton to 1.9.6.8
  2759. * Bug 16622: Timezone spoofing moved to tor-browser.git
  2760. * Bug 20701: Allow the directory listing stylesheet in the content policy
  2761. * Bug 20556: Use pt-BR strings from now on
  2762. * Bug 20614: Add links to Tor Browser User Manual
  2763. * Bug 20414: Fix non-rendering arrow on OS X
  2764. * Bug 20728: Fix bad preferences.xul dimensions
  2765. * Bug 20318: Remove helpdesk link from about:tor
  2766. * Bug 20753: Remove obsolete StartPage locale strings
  2767. * Translation updates
  2768. * Update HTTPS-Everywhere to 5.2.8
  2769. * Bug 16622: Spoof timezone with Firefox patch
  2770. * Bug 20707: Fix broken preferences tab in non-en-US alpha bundles
  2771. * Bug 20709: Fix wrong update URL in alpha bundles
  2772. * Bug 20556: Start using pt-BR instead of pt-PT for Portuguese
  2773. * Bug 20809: Use non-/html search engine URL for DuckDuckGo search plugins
  2774. * Bug 20837: Activate iat-mode for certain obfs4 bridges
  2775. * Bug 20838: Uncomment NX01 default obfs4 bridge
  2776. * Bug 20840: Rotate ports a third time for default obfs4 bridges
  2777. * Linux
  2778. * Bug 20352: Integrate sandboxed-tor-browser into our Gitian build
  2779. * Bug 20758: Make Linux sandbox build deterministic
  2780. * Bug 10281: Use jemalloc4 and abort on redzone corruption
  2781. * OS X
  2782. * Bug 20121: Create Seatbelt profile(s) for Tor Browser
  2783. Tor Browser 6.0.8 -- December 13 2016
  2784. * All Platforms
  2785. * Update Firefox to 45.6.0esr
  2786. * Tor to 0.2.8.11
  2787. * Update Torbutton to 1.9.5.13
  2788. * Bug 20947: Donation banner improvements
  2789. * Update HTTPS-Everywhere to 5.2.8
  2790. * Bug 20809: Use non-/html search engine URL for DuckDuckGo search plugins
  2791. * Bug 20837: Activate iat-mode for certain obfs4 bridges
  2792. * Bug 20838: Uncomment NX01 default obfs4 bridge
  2793. * Bug 20840: Rotate ports a third time for default obfs4 bridges
  2794. Tor Browser 6.5a5-hardened -- December 1 2016
  2795. * All Platforms
  2796. * Update Firefox to 45.5.1esr
  2797. * Update NoScript to 2.9.5.2
  2798. * Linux
  2799. * Bug 20691: Updater breaks if unix domain sockets are used
  2800. Tor Browser 6.5a5 -- December 1 2016
  2801. * All Platforms
  2802. * Update Firefox to 45.5.1esr
  2803. * Update NoScript to 2.9.5.2
  2804. * Linux
  2805. * Bug 20691: Updater breaks if unix domain sockets are used
  2806. Tor Browser 6.0.7 -- November 30 2016
  2807. * All Platforms
  2808. * Update Firefox to 45.5.1esr
  2809. * Update NoScript to 2.9.5.2
  2810. Tor Browser 6.5a4-hardened -- November 16 2016
  2811. * All Platforms
  2812. * Update Firefox to 45.5.0esr
  2813. * Update Tor to 0.2.9.5-alpha
  2814. * Update OpenSSL to 1.0.2j
  2815. * Update Torbutton to 1.9.6.7
  2816. * Bug 20414: Add donation banner on about:tor for 2016 campaign
  2817. * Bug 20111: use Unix domain sockets for SOCKS port by default
  2818. * Bug 19459: Move resizing code to tor-browser.git
  2819. * Bug 20264: Change security slider to 3 options
  2820. * Bug 20347: Enhance security slider's custom mode
  2821. * Bug 20123: Disable remote jar on all security levels
  2822. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  2823. * Bug 17546: Add tooltips to explain our privacy checkboxes
  2824. * Bug 17904: Allow security settings dialog to resize
  2825. * Bug 18093: Remove 'Restore Defaults' button
  2826. * Bug 20373: Prevent redundant dialogs opening
  2827. * Bug 20388+20399+20394: Code clean-up
  2828. * Translation updates
  2829. * Update Tor Launcher to 0.2.11.1
  2830. * Bug 20111: use Unix domain sockets for SOCKS port by default
  2831. * Bug 20185: Avoid using Unix domain socket paths that are too long
  2832. * Bug 20429: Do not open progress window if tor doesn't get started
  2833. * Bug 19646: Wrong location for meek browser profile on OS X
  2834. * Translation updates
  2835. * Update HTTPS-Everywhere to 5.2.7
  2836. * Update meek to 0.25
  2837. * Bug 19646: Wrong location for meek browser profile on OS X
  2838. * Bug 20030: Shut down meek-http-helper cleanly if built with Go > 1.5.4
  2839. * Bug 20304: Support spaces and other special characters for SOCKS socket
  2840. * Bug 20490: Fix assertion failure due to fix for #20304
  2841. * Bug 19459: Size new windows to 1000x1000 or nearest 200x100 (Firefox patch)
  2842. * Bug 20442: Backport fix for local path disclosure after drag and drop
  2843. * Bug 20160: Backport fix for broken MP3-playback
  2844. * Bug 20043: Isolate SharedWorker script requests to first party
  2845. * Bug 20123: Always block remote jar files
  2846. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  2847. * Bug 19838: Add dgoulet's bridge and add another one commented out
  2848. * Bug 19481: Point the update URL to aus1.torproject.org
  2849. * Bug 20296: Rotate ports again for default obfs4 bridges
  2850. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  2851. * Bug 20399+15852: Code clean-up
  2852. * Bug 15953: Weird resizing dance on Tor Browser startup
  2853. * Build system
  2854. * All platforms
  2855. * Bug 20023: Upgrade Go to 1.7.3
  2856. * Bug 20583: Make the downloads.json file reproducible
  2857. Tor Browser 6.5a4 -- November 16 2016
  2858. * All Platforms
  2859. * Update Firefox to 45.5.0esr
  2860. * Update Tor to 0.2.9.5-alpha
  2861. * Update OpenSSL to 1.0.2j
  2862. * Update Torbutton to 1.9.6.7
  2863. * Bug 20414: Add donation banner on about:tor for 2016 campaign
  2864. * Bug 20111: use Unix domain sockets for SOCKS port by default
  2865. * Bug 19459: Move resizing code to tor-browser.git
  2866. * Bug 20264: Change security slider to 3 options
  2867. * Bug 20347: Enhance security slider's custom mode
  2868. * Bug 20123: Disable remote jar on all security levels
  2869. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  2870. * Bug 17546: Add tooltips to explain our privacy checkboxes
  2871. * Bug 17904: Allow security settings dialog to resize
  2872. * Bug 18093: Remove 'Restore Defaults' button
  2873. * Bug 20373: Prevent redundant dialogs opening
  2874. * Bug 20388+20399+20394: Code clean-up
  2875. * Translation updates
  2876. * Update Tor Launcher to 0.2.10.2
  2877. * Bug 20111: use Unix domain sockets for SOCKS port by default
  2878. * Bug 20185: Avoid using Unix domain socket paths that are too long
  2879. * Bug 20429: Do not open progress window if tor doesn't get started
  2880. * Bug 19646: Wrong location for meek browser profile on OS X
  2881. * Translation updates
  2882. * Update HTTPS-Everywhere to 5.2.7
  2883. * Update meek to 0.25
  2884. * Bug 19646: Wrong location for meek browser profile on OS X
  2885. * Bug 20030: Shut down meek-http-helper cleanly if built with Go > 1.5.4
  2886. * Bug 20304: Support spaces and other special characters for SOCKS socket
  2887. * Bug 20490: Fix assertion failure due to fix for #20304
  2888. * Bug 19459: Size new windows to 1000x1000 or nearest 200x100 (Firefox patch)
  2889. * Bug 20442: Backport fix for local path disclosure after drag and drop
  2890. * Bug 20160: Backport fix for broken MP3-playback
  2891. * Bug 20043: Isolate SharedWorker script requests to first party
  2892. * Bug 20123: Always block remote jar files
  2893. * Bug 20244: Move privacy checkboxes to about:preferences#privacy
  2894. * Bug 19838: Add dgoulet's bridge and add another one commented out
  2895. * Bug 19481: Point the update URL to aus1.torproject.org
  2896. * Bug 20296: Rotate ports again for default obfs4 bridges
  2897. * Bug 20651: DuckDuckGo does not work with JavaScript disabled
  2898. * Bug 20399+15852: Code clean-up
  2899. * Windows
  2900. * Bug 20342: Add tor-gencert.exe to expert bundle
  2901. * Bug 18175: Maximizing window and restarting leads to non-rounded window size
  2902. * Bug 13437: Rounded inner window accidentally grows to non-rounded size
  2903. * OS X
  2904. * Bug 20204: Windows don't drag on macOS Sierra anymore
  2905. * Bug 20250: Meek fails on macOS Sierra if built with Go < 1.7
  2906. * Bug 20590: Badly resized window due to security slider notification bar on OS X
  2907. * Bug 20439: Make the build PIE on OSX
  2908. * Linux
  2909. * Bug 15953: Weird resizing dance on Tor Browser startup
  2910. * Build system
  2911. * All platforms
  2912. * Bug 20023: Upgrade Go to 1.7.3
  2913. * Bug 20583: Make the downloads.json file reproducible
  2914. * OS X
  2915. * Bug 20258: Make OS X Tor archive reproducible again
  2916. * Bug 20184: Make OS X builds reproducible again
  2917. * Bug 20210: In dmg2mar, extract old mar file to copy permissions to the new one
  2918. Tor Browser 6.0.6 -- November 15
  2919. * All Platforms
  2920. * Update Firefox to 45.5.0esr
  2921. * Update Tor to 0.2.8.9
  2922. * Update OpenSSL to 1.0.1u
  2923. * Update Torbutton to 1.9.5.12
  2924. * Bug 20414: Add donation banner on about:tor for 2016 campaign
  2925. * Translation updates
  2926. * Update Tor Launcher to 0.2.9.4
  2927. * Bug 20429: Do not open progress window if tor doesn't get started
  2928. * Bug 19646: Wrong location for meek browser profile on OS X
  2929. * Update HTTPS-Everywhere to 5.2.7
  2930. * Update meek to 0.25
  2931. * Bug 19646: Wrong location for meek browser profile on OS X
  2932. * Bug 20030: Shut down meek-http-helper cleanly if built with Go > 1.5.4
  2933. * Bug 19838: Add dgoulet's bridge and add another one commented out
  2934. * Bug 20296: Rotate ports again for default obfs4 bridges
  2935. * Bug 19735: Switch default search engine to DuckDuckGo
  2936. * Bug 20118: Don't unpack HTTPS Everywhere anymore
  2937. * Windows
  2938. * Bug 20342: Add tor-gencert.exe to expert bundle
  2939. * OS X
  2940. * Bug 20204: Windows don't drag on macOS Sierra anymore
  2941. * Bug 20250: Meek fails on macOS Sierra if built with Go < 1.7
  2942. * Build system
  2943. * All platforms
  2944. * Bug 20023: Upgrade Go to 1.7.3
  2945. Tor Browser 6.5a3-hardened -- September 20 2016
  2946. * All Platforms
  2947. * Update Firefox to 45.4.0esr
  2948. * Update Tor to 0.2.9.2-alpha
  2949. * Update OpenSSL to 1.0.2h (bug 20095)
  2950. * Update Torbutton to 1.9.6.4
  2951. * Bug 17334: Move referrer spoofing for .onion domains into tor-browser.git
  2952. * Bug 17767: Make "JavaScript disabled" more visible in Security Slider
  2953. * Bug 19995: Clear site security settings during New Identity
  2954. * Bug 19906: "Maximizing Tor Browser" Notification can exist multiple times
  2955. * Bug 19837: Whitelist internal URLs that Firefox requires for media
  2956. * Bug 15852: Remove/synchronize Torbutton SOCKS pref logic
  2957. * Bug 19733: GETINFO response parser doesn't handle AF_UNIX entries + IPv6
  2958. * Bug 14271: Make Torbutton work with Unix Domain Socket option
  2959. * Translation updates
  2960. * Update Tor Launcher to 0.2.11
  2961. * Bug 14272: Make Tor Launcher work with Unix Domain Socket option
  2962. * Bug 19568: Set CurProcD for Thunderbird/Instantbird
  2963. * Bug 19432: Remove special handling for Instantbird/Thunderbird
  2964. * Translation updates
  2965. * Update HTTPS-Everywhere to 5.2.4
  2966. * Update NoScript to 2.9.0.14
  2967. * Bug 19851: Fix ASan error by upgrading GCC to 5.4.0
  2968. * Bug 17858: Fix creation of incremental MARs for hardened builds
  2969. * Bug 14273: Backport patches for Unix Domain Socket support
  2970. * Bug 19890: Disable installation of system addons
  2971. * Bug 17334: Spoof referrer when leaving a .onion domain
  2972. * Bug 20092: Rotate ports for default obfs4 bridges
  2973. * Bug 20040: Add update support for unpacked HTTPS Everywhere
  2974. * Bug 20118: Don't unpack HTTPS Everywhere anymore
  2975. * Bug 19336+19835: Enhance about:tbupdate page
  2976. * Build system
  2977. * All platforms
  2978. * Bug 20133: Don't apply OpenSSL patch anymore
  2979. * Bug 19528: Set MOZ_BUILD_DATE based on Firefox version
  2980. Tor Browser 6.5a3 -- September 20 2016
  2981. * All Platforms
  2982. * Update Firefox to 45.4.0esr
  2983. * Update Tor to 0.2.9.2-alpha
  2984. * Update OpenSSL to 1.0.2h (bug 20095)
  2985. * Update Torbutton to 1.9.6.4
  2986. * Bug 17334: Move referrer spoofing for .onion domains into tor-browser.git
  2987. * Bug 17767: Make "JavaScript disabled" more visible in Security Slider
  2988. * Bug 19995: Clear site security settings during New Identity
  2989. * Bug 19906: "Maximizing Tor Browser" Notification can exist multiple times
  2990. * Bug 19837: Whitelist internal URLs that Firefox requires for media
  2991. * Bug 15852: Remove/synchronize Torbutton SOCKS pref logic
  2992. * Bug 19733: GETINFO response parser doesn't handle AF_UNIX entries + IPv6
  2993. * Bug 14271: Make Torbutton work with Unix Domain Socket option
  2994. * Translation updates
  2995. * Update Tor Launcher to 0.2.10.1
  2996. * Bug 14272: Make Tor Launcher work with Unix Domain Socket option
  2997. * Bug 19568: Set CurProcD for Thunderbird/Instantbird
  2998. * Bug 19432: Remove special handling for Instantbird/Thunderbird
  2999. * Translation updates
  3000. * Update HTTPS-Everywhere to 5.2.4
  3001. * Update NoScript to 2.9.0.14
  3002. * Bug 14273: Backport patches for Unix Domain Socket support
  3003. * Bug 19890: Disable installation of system addons
  3004. * Bug 17334: Spoof referrer when leaving a .onion domain
  3005. * Bug 20092: Rotate ports for default obfs4 bridges
  3006. * Bug 20040: Add update support for unpacked HTTPS Everywhere
  3007. * Bug 20118: Don't unpack HTTPS Everywhere anymore
  3008. * Bug 19336+19835: Enhance about:tbupdate page
  3009. * Android
  3010. * Bug 19706: Store browser data in the app home directory
  3011. * Build system
  3012. * All platforms
  3013. * Bug 20133: Don't apply OpenSSL patch anymore
  3014. * Bug 19528: Set MOZ_BUILD_DATE based on Firefox version
  3015. * OS X
  3016. * Bug 19856: Make OS X builds reproducible again
  3017. * Bug 19410: Fix incremental updates by taking signatures into account
  3018. Tor Browser 6.0.5 -- September 16
  3019. * All Platforms
  3020. * Update Firefox to 45.4.0esr
  3021. * Update Tor to 0.2.8.7
  3022. * Update Torbutton to 1.9.5.7
  3023. * Bug 19995: Clear site security settings during New Identity
  3024. * Bug 19906: "Maximizing Tor Browser" Notification can exist multiple times
  3025. * Update HTTPS-Everywhere to 5.2.4
  3026. * Bug 20092: Rotate ports for default obfs4 bridges
  3027. * Bug 20040: Add update support for unpacked HTTPS Everywhere
  3028. * Windows
  3029. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  3030. * Linux
  3031. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  3032. * Android
  3033. * Bug 19706: Store browser data in the app home directory
  3034. * Build system
  3035. * All platforms
  3036. * Upgrade Go to 1.4.3
  3037. Tor Browser 6.0.4 -- August 16 2016
  3038. * All Platforms
  3039. * Update Tor to 0.2.8.6
  3040. * Update NoScript to 2.9.0.14
  3041. * Bug 19890: Disable installation of system addons
  3042. Tor Browser 6.5a2-hardened -- August 3 2016
  3043. * All Platforms
  3044. * Update Firefox to 45.3.0esr
  3045. * Update Tor to tor-0.2.8.5-rc
  3046. * Update Torbutton to 1.9.6.1
  3047. * Bug 19689: Use proper parent window for plugin prompt
  3048. * Bug 19206: Avoid SOCKS auth and NEWNYM collisions when sharing a tor client
  3049. * Bug 19417: Disable asm.js (but add code to clear on New Identity if enabled)
  3050. * Bug 19273: Improve external app launch handling and associated warnings
  3051. * Bug 8725: Block addon resource and url fingerprinting with nsIContentPolicy
  3052. * Update HTTPS-Everywhere to 5.2.1
  3053. * Update NoScript to 2.9.0.12
  3054. * Bug 17406: Include Selfrando into our hardened builds
  3055. * Bug 19417: Disable asmjs for now
  3056. * Bug 19715: Disable the meek-google pluggable transport option
  3057. * Bug 19714: Remove mercurius4 obfs4 bridge
  3058. * Bug 19585: Fix regression test for keyboard layout fingerprinting
  3059. * Bug 19515: Tor Browser is crashing in graphics code
  3060. * Bug 18513: Favicon requests can bypass New Identity
  3061. * Bug 19273: Write C++ patch for external app launch handling
  3062. * Bug 16998: Isolate preconnect requests to URL bar domain
  3063. * Bug 18923: Add script to run all Tor Browser regression tests
  3064. * Bug 19478: Prevent millisecond resolution leaks in File API
  3065. * Bug 19401: Fix broken PDF download button
  3066. * Bug 19411: Don't show update icon if a partial update failed
  3067. * Bug 19400: Back out GCC bug workaround to avoid asmjs crash
  3068. * Bug 19735: Switch default search engine to DuckDuckGo
  3069. * Bug 19276: Disable Xrender due to possible performance regressions
  3070. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  3071. * Build System
  3072. * All Platforms
  3073. * Bug 19703: Upgrade Go to 1.6.3
  3074. Tor Browser 6.5a2 -- August 3 2016
  3075. * All Platforms
  3076. * Update Firefox to 45.3.0esr
  3077. * Update Tor to tor-0.2.8.5-rc
  3078. * Update Torbutton to 1.9.6.1
  3079. * Bug 19689: Use proper parent window for plugin prompt
  3080. * Bug 19206: Avoid SOCKS auth and NEWNYM collisions when sharing a tor client
  3081. * Bug 19417: Disable asm.js (but add code to clear on New Identity if enabled)
  3082. * Bug 19273: Improve external app launch handling and associated warnings
  3083. * Bug 8725: Block addon resource and url fingerprinting with nsIContentPolicy
  3084. * Update HTTPS-Everywhere to 5.2.1
  3085. * Update NoScript to 2.9.0.12
  3086. * Bug 19417: Disable asmjs for now
  3087. * Bug 19715: Disable the meek-google pluggable transport option
  3088. * Bug 19714: Remove mercurius4 obfs4 bridge
  3089. * Bug 19585: Fix regression test for keyboard layout fingerprinting
  3090. * Bug 19515: Tor Browser is crashing in graphics code
  3091. * Bug 18513: Favicon requests can bypass New Identity
  3092. * Bug 19273: Write C++ patch for external app launch handling
  3093. * Bug 16998: Isolate preconnect requests to URL bar domain
  3094. * Bug 18923: Add script to run all Tor Browser regression tests
  3095. * Bug 19478: Prevent millisecond resolution leaks in File API
  3096. * Bug 19401: Fix broken PDF download button
  3097. * Bug 19411: Don't show update icon if a partial update failed
  3098. * Bug 19400: Back out GCC bug workaround to avoid asmjs crash
  3099. * Bug 19735: Switch default search engine to DuckDuckGo
  3100. * Windows
  3101. * Bug 19348: Adapt to more than one build target on Windows (fixes updates)
  3102. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  3103. * Linux
  3104. * Bug 19276: Disable Xrender due to possible performance regressions
  3105. * Bug 19725: Remove old updater files left on disk after upgrade to 6.x
  3106. * OS X
  3107. * Bug 19269: Icon doesn't appear in Applications folder or Dock
  3108. * Android
  3109. * Bug 19484: Avoid compilation error when MOZ_UPDATER is not defined
  3110. * Build System
  3111. * All Platforms
  3112. * Bug 19703: Upgrade Go to 1.6.3
  3113. Tor Browser 6.0.3 -- August 2 2016
  3114. * All Platforms
  3115. * Update Firefox to 45.3.0esr
  3116. * Update Torbutton to 1.9.5.6
  3117. * Bug 19417: Disable asmjs for now
  3118. * Bug 19689: Use proper parent window for plugin prompt
  3119. * Update HTTPS-Everywhere to 5.2.1
  3120. * Update NoScript to 2.9.0.12
  3121. * Bug 19417: Disable asmjs for now
  3122. * Bug 19715: Disable the meek-google pluggable transport option
  3123. * Bug 19714: Remove mercurius4 obfs4 bridge
  3124. * Bug 19585: Fix regression test for keyboard layout fingerprinting
  3125. * Bug 19515: Tor Browser is crashing in graphics code
  3126. * Bug 18513: Favicon requests can bypass New Identity
  3127. * OS X
  3128. * Bug 19269: Icon doesn't appear in Applications folder or Dock
  3129. * Android
  3130. * Bug 19484: Avoid compilation error when MOZ_UPDATER is not defined
  3131. Tor Browser 6.0.2 -- June 21 2016
  3132. * All Platforms
  3133. * Update Torbutton to 1.9.5.5
  3134. * Bug 19417: Clear asmjscache
  3135. * Bug 19401: Fix broken PDF download button
  3136. * Bug 19411: Don't show update icon if a partial update failed
  3137. * Bug 19400: Back out GCC bug workaround to avoid asmjs crash
  3138. * Windows
  3139. * Bug 19348: Adapt to more than one build target on Windows (fixes updates)
  3140. * Linux
  3141. * Bug 19276: Disable Xrender due to possible performance regressions
  3142. Tor Browser 6.5a1-hardened -- June 8 2016
  3143. * All Platforms
  3144. * Update Firefox to 45.2.0esr
  3145. * Update Tor to 0.2.8.3-alpha
  3146. * Update Torbutton to 1.9.6
  3147. * Bug 18743: Pref to hide 'Sign in to Sync' button in hamburger menu
  3148. * Bug 18905: Hide unusable items from help menu
  3149. * Bug 17599: Provide shortcuts for New Identity and New Circuit
  3150. * Bug 18980: Remove obsolete toolbar button code
  3151. * Bug 18238: Remove unused Torbutton code and strings
  3152. * Translation updates
  3153. * Code clean-up
  3154. * Update Tor Launcher to 0.2.8.5
  3155. * Bug 18947: Tor Browser is not starting on OS X if put into /Applications
  3156. * Update HTTPS-Everywhere to 5.1.9
  3157. * Update meek to 0.22 (tag 0.22-18371-3)
  3158. * Bug 19121: The update.xml hash should get checked during update
  3159. * Bug 12523: Mark JIT pages as non-writable
  3160. * Bug 19193: Reduce timing precision for AudioContext, HTMLMediaElement, and MediaStream
  3161. * Bug 19164: Remove support for SHA-1 HPKP pins
  3162. * Bug 19186: KeyboardEvents are only rounding to 100ms
  3163. * Bug 18884: Don't build the loop extension
  3164. * Bug 19187: Backport fix for crash related to popup menus
  3165. * Bug 19212: Fix crash related to network panel in developer tools
  3166. * Bug 18703: Fix circuit isolation issues on Page Info dialog
  3167. * bug 19115: Tor Browser should not fall back to Bing as its search engine
  3168. * Bug 18915+19065: Use our search plugins in localized builds
  3169. * Bug 19176: Zip our language packs deterministically
  3170. * Bug 18811: Fix first-party isolation for blobs URLs in Workers
  3171. * Bug 18950: Disable or audit Reader View
  3172. * Bug 18886: Remove Pocket
  3173. * Bug 18619: Tor Browser reports "InvalidStateError" in browser console
  3174. * Bug 18945: Disable monitoring the connected state of Tor Browser users
  3175. * Bug 18855: Don't show error after add-on directory clean-up
  3176. * Bug 18885: Disable the option of logging TLS/SSL key material
  3177. * Bug 18770: SVGs should not show up on Page Info dialog when disabled
  3178. * Bug 18958: Spoof screen.orientation values
  3179. * Bug 19047: Disable Heartbeat prompts
  3180. * Bug 18914: Use English-only label in <isindex/> tags
  3181. * Bug 18996: Investigate server logging in esr45-based Tor Browser
  3182. * Bug 17790: Add unit tests for keyboard fingerprinting defenses
  3183. * Bug 18995: Regression test to ensure CacheStorage is disabled
  3184. * Bug 18912: Add automated tests for updater cert pinning
  3185. * Bug 16728: Add test cases for favicon isolation
  3186. * Bug 18976: Remove some FTE bridges
  3187. * Linux
  3188. * Bug 19189: Backport for working around a linker (gold) bug
  3189. * Build System
  3190. * All PLatforms
  3191. * Bug 18333: Upgrade Go to 1.6.2
  3192. * Bug 18919: Remove unused keys and unused dependencies
  3193. * Bug 18291: Remove some uses of libfaketime
  3194. * Bug 18845: Make zip and tar helpers generate reproducible archives
  3195. Tor Browser 6.5a1 -- June 8 2016
  3196. * All Platforms
  3197. * Update Firefox to 45.2.0esr
  3198. * Update Tor to 0.2.8.3-alpha
  3199. * Update Torbutton to 1.9.6
  3200. * Bug 18743: Pref to hide 'Sign in to Sync' button in hamburger menu
  3201. * Bug 18905: Hide unusable items from help menu
  3202. * Bug 17599: Provide shortcuts for New Identity and New Circuit
  3203. * Bug 18980: Remove obsolete toolbar button code
  3204. * Bug 18238: Remove unused Torbutton code and strings
  3205. * Translation updates
  3206. * Code clean-up
  3207. * Update Tor Launcher to 0.2.9.3
  3208. * Bug 18947: Tor Browser is not starting on OS X if put into /Applications
  3209. * Update HTTPS-Everywhere to 5.1.9
  3210. * Update meek to 0.22 (tag 0.22-18371-3)
  3211. * Bug 18904: Mac OS: meek-http-helper profile not updated
  3212. * Bug 19121: The update.xml hash should get checked during update
  3213. * Bug 12523: Mark JIT pages as non-writable
  3214. * Bug 19193: Reduce timing precision for AudioContext, HTMLMediaElement, and MediaStream
  3215. * Bug 19164: Remove support for SHA-1 HPKP pins
  3216. * Bug 19186: KeyboardEvents are only rounding to 100ms
  3217. * Bug 18884: Don't build the loop extension
  3218. * Bug 19187: Backport fix for crash related to popup menus
  3219. * Bug 19212: Fix crash related to network panel in developer tools
  3220. * Bug 18703: Fix circuit isolation issues on Page Info dialog
  3221. * bug 19115: Tor Browser should not fall back to Bing as its search engine
  3222. * Bug 18915+19065: Use our search plugins in localized builds
  3223. * Bug 19176: Zip our language packs deterministically
  3224. * Bug 18811: Fix first-party isolation for blobs URLs in Workers
  3225. * Bug 18950: Disable or audit Reader View
  3226. * Bug 18886: Remove Pocket
  3227. * Bug 18619: Tor Browser reports "InvalidStateError" in browser console
  3228. * Bug 18945: Disable monitoring the connected state of Tor Browser users
  3229. * Bug 18855: Don't show error after add-on directory clean-up
  3230. * Bug 18885: Disable the option of logging TLS/SSL key material
  3231. * Bug 18770: SVGs should not show up on Page Info dialog when disabled
  3232. * Bug 18958: Spoof screen.orientation values
  3233. * Bug 19047: Disable Heartbeat prompts
  3234. * Bug 18914: Use English-only label in <isindex/> tags
  3235. * Bug 18996: Investigate server logging in esr45-based Tor Browser
  3236. * Bug 17790: Add unit tests for keyboard fingerprinting defenses
  3237. * Bug 18995: Regression test to ensure CacheStorage is disabled
  3238. * Bug 18912: Add automated tests for updater cert pinning
  3239. * Bug 16728: Add test cases for favicon isolation
  3240. * Bug 18976: Remove some FTE bridges
  3241. * OS X
  3242. * Bug 18951: HTTPS-E is missing after update
  3243. * Bug 18904: meek-http-helper profile not updated
  3244. * Bug 18928: Upgrade is not smooth (requires another restart)
  3245. * Linux
  3246. * Bug 19189: Backport for working around a linker (gold) bug
  3247. * Build System
  3248. * All PLatforms
  3249. * Bug 18333: Upgrade Go to 1.6.2
  3250. * Bug 18919: Remove unused keys and unused dependencies
  3251. * Bug 18291: Remove some uses of libfaketime
  3252. * Bug 18845: Make zip and tar helpers generate reproducible archives
  3253. Tor Browser 6.0.1 -- June 7 2016
  3254. * All Platforms
  3255. * Update Firefox to 45.2.0esr
  3256. * Bug 18884: Don't build the loop extension
  3257. * Bug 19187: Backport fix for crash related to popup menus
  3258. * Bug 19212: Fix crash related to network panel in developer tools
  3259. * Linux
  3260. * Bug 19189: Backport for working around a linker (gold) bug
  3261. Tor Browser 6.0 -- May 30 2016
  3262. * All Platforms
  3263. * Update Firefox to 45.1.1esr
  3264. * Update OpenSSL to 1.0.1t
  3265. * Update Torbutton to 1.9.5.4
  3266. * Bug 18466: Make Torbutton compatible with Firefox ESR 45
  3267. * Bug 18743: Pref to hide 'Sign in to Sync' button in hamburger menu
  3268. * Bug 18905: Hide unusable items from help menu
  3269. * Bug 16017: Allow users to more easily set a non-tor SSH proxy
  3270. * Bug 17599: Provide shortcuts for New Identity and New Circuit
  3271. * Translation updates
  3272. * Code clean-up
  3273. * Update Tor Launcher to 0.2.9.3
  3274. * Bug 13252: Do not store data in the application bundle
  3275. * Bug 18947: Tor Browser is not starting on OS X if put into /Applications
  3276. * Bug 11773: Setup wizard UI flow improvements
  3277. * Translation updates
  3278. * Update HTTPS-Everywhere to 5.1.9
  3279. * Update meek to 0.22 (tag 0.22-18371-3)
  3280. * Bug 18371: Symlinks are incompatible with Gatekeeper signing
  3281. * Bug 18904: Mac OS: meek-http-helper profile not updated
  3282. * Bug 15197 and child tickets: Rebase Tor Browser patches to ESR 45
  3283. * Bug 18900: Fix broken updater on Linux
  3284. * Bug 19121: The update.xml hash should get checked during update
  3285. * Bug 18042: Disable SHA1 certificate support
  3286. * Bug 18821: Disable libmdns support for desktop and mobile
  3287. * Bug 18848: Disable additional welcome URL shown on first start
  3288. * Bug 14970: Exempt our extensions from signing requirement
  3289. * Bug 16328: Disable MediaDevices.enumerateDevices
  3290. * Bug 16673: Disable HTTP Alternative-Services
  3291. * Bug 17167: Disable Mozilla's tracking protection
  3292. * Bug 18603: Disable performance-based WebGL fingerprinting option
  3293. * Bug 18738: Disable Selfsupport and Unified Telemetry
  3294. * Bug 18799: Disable Network Tickler
  3295. * Bug 18800: Remove DNS lookup in lockfile code
  3296. * Bug 18801: Disable dom.push preferences
  3297. * Bug 18802: Remove the JS-based Flash VM (Shumway)
  3298. * Bug 18863: Disable MozTCPSocket explicitly
  3299. * Bug 15640: Place Canvas MediaStream behind site permission
  3300. * Bug 16326: Verify cache isolation for Request and Fetch APIs
  3301. * Bug 18741: Fix OCSP and favicon isolation for ESR 45
  3302. * Bug 16998: Disable <link rel="preconnect"> for now
  3303. * Bug 18898: Exempt the meek extension from the signing requirement as well
  3304. * Bug 18899: Don't copy Torbutton, TorLauncher, etc. into meek profile
  3305. * Bug 18890: Test importScripts() for cache and network isolation
  3306. * Bug 18886: Hide pocket menu items when Pocket is disabled
  3307. * Bug 18703: Fix circuit isolation issues on Page Info dialog
  3308. * bug 19115: Tor Browser should not fall back to Bing as its search engine
  3309. * Bug 18915+19065: Use our search plugins in localized builds
  3310. * Bug 19176: Zip our language packs deterministically
  3311. * Bug 18811: Fix first-party isolation for blobs URLs in Workers
  3312. * Bug 18950: Disable or audit Reader View
  3313. * Bug 18886: Remove Pocket
  3314. * Bug 18619: Tor Browser reports "InvalidStateError" in browser console
  3315. * Bug 18945: Disable monitoring the connected state of Tor Browser users
  3316. * Bug 18855: Don't show error after add-on directory clean-up
  3317. * Bug 18885: Disable the option of logging TLS/SSL key material
  3318. * Bug 18770: SVGs should not show up on Page Info dialog when disabled
  3319. * Bug 18958: Spoof screen.orientation values
  3320. * Bug 19047: Disable Heartbeat prompts
  3321. * Bug 18914: Use English-only label in <isindex/> tags
  3322. * Bug 18996: Investigate server logging in esr45-based Tor Browser
  3323. * Bug 17790: Add unit tests for keyboard fingerprinting defenses
  3324. * Bug 18995: Regression test to ensure CacheStorage is disabled
  3325. * Bug 18912: Add automated tests for updater cert pinning
  3326. * Bug 16728: Add test cases for favicon isolation
  3327. * Bug 18976: Remove some FTE bridges
  3328. * Windows
  3329. * Bug 13419: Support ICU in Windows builds
  3330. * Bug 16874: Fix broken https://sports.yahoo.com/dailyfantasy page
  3331. * Bug 18767: Context menu is broken on Windows in ESR 45 based Tor Browser
  3332. * OS X
  3333. * Bug 6540: Support OS X Gatekeeper
  3334. * Bug 13252: Tor Browser should not store data in the application bundle
  3335. * Bug 18951: HTTPS-E is missing after update
  3336. * Bug 18904: meek-http-helper profile not updated
  3337. * Bug 18928: Upgrade is not smooth (requires another restart)
  3338. * Build System
  3339. * All Platforms
  3340. * Bug 18127: Add LXC support for building with Debian guest VMs
  3341. * Bug 16224: Don't use BUILD_HOSTNAME anymore in Firefox builds
  3342. * Bug 18919: Remove unused keys and unused dependencies
  3343. * Windows
  3344. * Bug 17895: Use NSIS 2.51 for installer to avoid DLL hijacking
  3345. * Bug 18290: Bump mingw-w64 commit we use
  3346. * OS X
  3347. * Bug 18331: Update toolchain for Firefox 45 ESR
  3348. * Bug 18690: Switch to Debian Wheezy guest VMs
  3349. * Linux
  3350. * Bug 18699: Stripping fails due to obsolete Browser/components directory
  3351. * Bug 18698: Include libgconf2-dev for our Linux builds
  3352. * Bug 15578: Switch to Debian Wheezy guest VMs (10.04 LTS is EOL)
  3353. Tor Browser 6.0a5-hardened -- April 28 2016
  3354. * All Platforms
  3355. * Update Firefox to 45.1.0esr
  3356. * Update Tor to 0.2.8.2-alpha
  3357. * Update Torbutton to 1.9.5.3
  3358. * Bug 18466: Make Torbutton compatible with Firefox ESR 45
  3359. * Translation updates
  3360. * Update Tor Launcher to 0.2.8.4
  3361. * Bug 13252: Do not store data in the application bundle
  3362. * Bug 10534: Don't advertise the help desk directly anymore
  3363. * Translation updates
  3364. * Update HTTPS-Everywhere to 5.1.6
  3365. * Update NoScript to 2.9.0.11
  3366. * Update meek to 0.22 (tag 0.22-18371-2)
  3367. * Bug 18371: Symlinks are incompatible with Gatekeeper signing
  3368. * Bug 15197 and child tickets: Rebase Tor Browser patches to ESR 45
  3369. * Bug 18900: Fix broken updater on Linux
  3370. * Bug 18042: Disable SHA1 certificate support
  3371. * Bug 18821: Disable libmdns support for desktop and mobile
  3372. * Bug 18848: Disable additional welcome URL shown on first start
  3373. * Bug 14970: Exempt our extensions from signing requirement
  3374. * Bug 16328: Disable MediaDevices.enumerateDevices
  3375. * Bug 16673: Disable HTTP Alternative-Services
  3376. * Bug 17167: Disable Mozilla's tracking protection
  3377. * Bug 18603: Disable performance-based WebGL fingerprinting option
  3378. * Bug 18738: Disable Selfsupport and Unified Telemetry
  3379. * Bug 18799: Disable Network Tickler
  3380. * Bug 18800: Remove DNS lookup in lockfile code
  3381. * Bug 18801: Disable dom.push preferences
  3382. * Bug 18802: Remove the JS-based Flash VM (Shumway)
  3383. * Bug 18863: Disable MozTCPSocket explicitly
  3384. * Bug 15640: Place Canvas MediaStream behind site permission
  3385. * Bug 16326: Verify cache isolation for Request and Fetch APIs
  3386. * Bug 18741: Fix OCSP and favicon isolation for ESR 45
  3387. * Bug 16998: Disable <link rel="preconnect"> for now
  3388. * Bug 17506: Reenable building hardened Tor Browser with startup cache
  3389. * Bug 18898: Exempt the meek extension from the signing requirement as well
  3390. * Bug 18899: Don't copy Torbutton, TorLauncher, etc. into meek profile
  3391. * Bug 18890: Test importScripts() for cache and network isolation
  3392. * Bug 18726: Add new default obfs4 bridge (GreenBelt)
  3393. * Build System
  3394. * Bug 16224: Don't use BUILD_HOSTNAME anymore in Firefox builds
  3395. * Bug 18699: Stripping fails due to obsolete Browser/components directory
  3396. * Bug 18698: Include libgconf2-dev for our Linux builds
  3397. Tor Browser 6.0a5 -- April 28 2016
  3398. * All Platforms
  3399. * Update Firefox to 45.1.0esr
  3400. * Update Tor to 0.2.8.2-alpha
  3401. * Update Torbutton to 1.9.5.3
  3402. * Bug 18466: Make Torbutton compatible with Firefox ESR 45
  3403. * Translation updates
  3404. * Update Tor Launcher to 0.2.9.1
  3405. * Bug 13252: Do not store data in the application bundle
  3406. * Bug 10534: Don't advertise the help desk directly anymore
  3407. * Translation updates
  3408. * Update HTTPS-Everywhere to 5.1.6
  3409. * Update NoScript to 2.9.0.11
  3410. * Update meek to 0.22 (tag 0.22-18371-2)
  3411. * Bug 18371: Symlinks are incompatible with Gatekeeper signing
  3412. * Bug 15197 and child tickets: Rebase Tor Browser patches to ESR 45
  3413. * Bug 18900: Fix broken updater on Linux
  3414. * Bug 18042: Disable SHA1 certificate support
  3415. * Bug 18821: Disable libmdns support for desktop and mobile
  3416. * Bug 18848: Disable additional welcome URL shown on first start
  3417. * Bug 14970: Exempt our extensions from signing requirement
  3418. * Bug 16328: Disable MediaDevices.enumerateDevices
  3419. * Bug 16673: Disable HTTP Alternative-Services
  3420. * Bug 17167: Disable Mozilla's tracking protection
  3421. * Bug 18603: Disable performance-based WebGL fingerprinting option
  3422. * Bug 18738: Disable Selfsupport and Unified Telemetry
  3423. * Bug 18799: Disable Network Tickler
  3424. * Bug 18800: Remove DNS lookup in lockfile code
  3425. * Bug 18801: Disable dom.push preferences
  3426. * Bug 18802: Remove the JS-based Flash VM (Shumway)
  3427. * Bug 18863: Disable MozTCPSocket explicitly
  3428. * Bug 15640: Place Canvas MediaStream behind site permission
  3429. * Bug 16326: Verify cache isolation for Request and Fetch APIs
  3430. * Bug 18741: Fix OCSP and favicon isolation for ESR 45
  3431. * Bug 16998: Disable <link rel="preconnect"> for now
  3432. * Bug 18898: Exempt the meek extension from the signing requirement as well
  3433. * Bug 18899: Don't copy Torbutton, TorLauncher, etc. into meek profile
  3434. * Bug 18890: Test importScripts() for cache and network isolation
  3435. * Bug 18726: Add new default obfs4 bridge (GreenBelt)
  3436. * Windows
  3437. * Bug 13419: Support ICU in Windows builds
  3438. * Bug 16874: Fix broken https://sports.yahoo.com/dailyfantasy page
  3439. * Bug 18767: Context menu is broken on Windows in ESR 45 based Tor Browser
  3440. * OS X
  3441. * Bug 6540: Support OS X Gatekeeper
  3442. * Bug 13252: Tor Browser should not store data in the application bundle
  3443. * Build System
  3444. * All Platforms
  3445. * Bug 18127: Add LXC support for building with Debian guest VMs
  3446. * Bug 16224: Don't use BUILD_HOSTNAME anymore in Firefox builds
  3447. * Windows
  3448. * Bug 17895: Use NSIS 2.51 for installer to avoid DLL hijacking
  3449. * Bug 18290: Bump mingw-w64 commit we use
  3450. * OS X
  3451. * Bug 18331: Update toolchain for Firefox 45 ESR
  3452. * Bug 18690: Switch to Debian Wheezy guest VMs
  3453. * Linux
  3454. * Bug 18699: Stripping fails due to obsolete Browser/components directory
  3455. * Bug 18698: Include libgconf2-dev for our Linux builds
  3456. Tor Browser 5.5.5 -- April 26 2016
  3457. * All Platforms
  3458. * Update Firefox to 38.8.0esr
  3459. * Update Tor Launcher to 0.2.7.9
  3460. * Bug 10534: Don't advertise the help desk directly anymore
  3461. * Translation updates
  3462. * Update HTTPS-Everywhere to 5.1.6
  3463. * Update NoScript to 2.9.0.11
  3464. * Bug 18726: Add new default obfs4 bridge (GreenBelt)
  3465. Tor Browser 6.0a4-hardened -- March 17 2016
  3466. * All Platforms
  3467. * Update Firefox to 38.7.1esr
  3468. * Update Torbutton to 1.9.5.2
  3469. * Bug 18557: Exempt Graphite from the Security Slider
  3470. * Bug 18536: Make Mosaddegh and MaBishomarim available on port 80 and 443
  3471. Tor Browser 6.0a4 -- March 17 2016
  3472. * All Platforms
  3473. * Update Firefox to 38.7.1esr
  3474. * Update Torbutton to 1.9.5.2
  3475. * Bug 18557: Exempt Graphite from the Security Slider
  3476. * Bug 18536: Make Mosaddegh and MaBishomarim available on port 80 and 443
  3477. Tor Browser 5.5.4 -- March 16 2016
  3478. * All Platforms
  3479. * Update Firefox to 38.7.1esr
  3480. * Update Torbutton to 1.9.4.5
  3481. * Bug 18557: Exempt Graphite from the Security Slider
  3482. * Bug 18536: Make Mosaddegh and MaBishomarim available on port 80 and 443
  3483. Tor Browser 6.0a3-hardened -- March 8 2016
  3484. * All Platforms
  3485. * Update Firefox to 38.7.0esr
  3486. * Update Tor to 0.2.8.1-alpha
  3487. * Update OpenSSL to 1.0.1s
  3488. * Update NoScript to 2.9.0.4
  3489. * Update HTTPS Everywhere to 5.1.4
  3490. * Update Torbutton to 1.9.5.1
  3491. * Bug 16990: Don't mishandle multiline commands
  3492. * Bug 18144: about:tor update arrow position is wrong
  3493. * Bug 16725: Allow resizing with non-default homepage
  3494. * Bug 16917: Allow users to more easily set a non-tor SSH proxy
  3495. * Translation updates
  3496. * Bug 18030: Isolate favicon requests on Page Info dialog
  3497. * Bug 18297: Use separate Noto JP,KR,SC,TC fonts
  3498. * Bug 18170: Make sure the homepage is shown after an update as well
  3499. * Bug 16728: Add test cases for favicon isolation
  3500. * Windows
  3501. * Bug 18292: Disable staged updates on Windows
  3502. Tor Browser 6.0a3 -- March 8 2016
  3503. * All Platforms
  3504. * Update Firefox to 38.7.0esr
  3505. * Update Tor to 0.2.8.1-alpha
  3506. * Update OpenSSL to 1.0.1s
  3507. * Update NoScript to 2.9.0.4
  3508. * Update HTTPS Everywhere to 5.1.4
  3509. * Update Torbutton to 1.9.5.1
  3510. * Bug 16990: Don't mishandle multiline commands
  3511. * Bug 18144: about:tor update arrow position is wrong
  3512. * Bug 16725: Allow resizing with non-default homepage
  3513. * Bug 16917: Allow users to more easily set a non-tor SSH proxy
  3514. * Translation updates
  3515. * Bug 18030: Isolate favicon requests on Page Info dialog
  3516. * Bug 18297: Use separate Noto JP,KR,SC,TC fonts
  3517. * Bug 18170: Make sure the homepage is shown after an update as well
  3518. * Bug 16728: Add test cases for favicon isolation
  3519. * Windows
  3520. * Bug 18292: Disable staged updates on Windows
  3521. Tor Browser 5.5.3 -- March 8 2016
  3522. * All Platforms
  3523. * Update Firefox to 38.7.0esr
  3524. * Update OpenSSL to 1.0.1s
  3525. * Update NoScript to 2.9.0.4
  3526. * Update HTTPS Everywhere to 5.1.4
  3527. * Update Torbutton to 1.9.4.4
  3528. * Bug 16990: Don't mishandle multiline commands
  3529. * Bug 18144: about:tor update arrow position is wrong
  3530. * Bug 16725: Allow resizing with non-default homepage
  3531. * Translation updates
  3532. * Bug 18030: Isolate favicon requests on Page Info dialog
  3533. * Bug 18297: Use separate Noto JP,KR,SC,TC fonts
  3534. * Bug 18170: Make sure the homepage is shown after an update as well
  3535. * Windows
  3536. * Bug 18292: Disable staged updates on Windows
  3537. Tor Browser 6.0a2-hardened -- February 15 2016
  3538. * All Platforms
  3539. * Update Firefox to 38.6.1esr
  3540. * Update NoScript to 2.9.0.3
  3541. * Bug 18168: Don't clear an iframe's window.name (fix of #16620)
  3542. * Bug 18137: Add two new obfs4 default bridges
  3543. * Windows
  3544. * Bug 18169: Whitelist zh-CN UI font
  3545. * OSX
  3546. * Bug 18172: Add Emoji support
  3547. * Linux
  3548. * Bug 18172: Add Emoji support
  3549. * Build System
  3550. * Linux
  3551. * Bug 15578: Switch to Debian Wheezy guest VMs (10.04 LTS is EOL)
  3552. * Bug 18198: Building the hardened Tor Browser in a Debian Wheezy VM is broken
  3553. Tor Browser 6.0a2 -- February 15 2016
  3554. * All Platforms
  3555. * Update Firefox to 38.6.1esr
  3556. * Update NoScript to 2.9.0.3
  3557. * Bug 18168: Don't clear an iframe's window.name (fix of #16620)
  3558. * Bug 18137: Add two new obfs4 default bridges
  3559. * Windows
  3560. * Bug 18169: Whitelist zh-CN UI font
  3561. * OSX
  3562. * Bug 18172: Add Emoji support
  3563. * Linux
  3564. * Bug 18172: Add Emoji support
  3565. Tor Browser 5.5.2 -- February 12 2016
  3566. * All Platforms
  3567. * Update Firefox to 38.6.1esr
  3568. * Update NoScript to 2.9.0.3
  3569. Tor Browser 5.5.1 -- February 4 2016
  3570. * All Platforms
  3571. * Bug 18168: Don't clear an iframe's window.name (fix of #16620)
  3572. * Bug 18137: Add two new obfs4 default bridges
  3573. * Windows
  3574. * Bug 18169: Whitelist zh-CN UI font
  3575. * OS X
  3576. * Bug 18172: Add Emoji support
  3577. * Linux
  3578. * Bug 18172: Add Emoji support
  3579. Tor Browser 6.0a1-hardened -- January 27 2016
  3580. * All Platforms
  3581. * Update Firefox to 38.6.0esr
  3582. * Update NoScript to 2.9.0.2
  3583. * Update Torbutton to 1.9.5
  3584. * Bug 16990: Show circuit display for connections using multi-party channels
  3585. * Bug 18019: Avoid empty prompt shown after non-en-US update
  3586. * Bug 18004: Remove Tor fundraising donation banner
  3587. * Code cleanup
  3588. * Translation updates
  3589. * Update Tor Launcher to 0.2.8.3
  3590. * Bug 18113: Randomly permutate available default bridges of chosen type
  3591. * Bug 11773: Setup wizard UI flow improvements
  3592. * Translation updates
  3593. * Bug 17428: Remove Flashproxy
  3594. * Bug 18115+18104+18071+18091: Update/add new obfs4 bridge
  3595. * Bug 18072: Change recommended pluggable transport type to obfs4
  3596. * Bug 18008: Create a new MAR Signing key and bake it into Tor Browser
  3597. * Bug 16322: Use onion address for DuckDuckGo search engine
  3598. * Bug 17917: Changelog after update is empty if JS is disabled
  3599. * Bug 17790: Map the proper SHIFT characters to the digit keys (fix of #15646)
  3600. Tor Browser 6.0a1 -- January 27 2016
  3601. * All Platforms
  3602. * Update Firefox to 38.6.0esr
  3603. * Update NoScript to 2.9.0.2
  3604. * Update Torbutton to 1.9.5
  3605. * Bug 16990: Show circuit display for connections using multi-party channels
  3606. * Bug 18019: Avoid empty prompt shown after non-en-US update
  3607. * Bug 18004: Remove Tor fundraising donation banner
  3608. * Code cleanup
  3609. * Translation updates
  3610. * Update Tor Launcher to 0.2.9
  3611. * Bug 18113: Randomly permutate available default bridges of chosen type
  3612. * Bug 11773: Setup wizard UI flow improvements
  3613. * Translation updates
  3614. * Bug 17428: Remove Flashproxy
  3615. * Bug 18115+18104+18071+18091: Update/add new obfs4 bridge
  3616. * Bug 18072: Change recommended pluggable transport type to obfs4
  3617. * Bug 18008: Create a new MAR Signing key and bake it into Tor Browser
  3618. * Bug 16322: Use onion address for DuckDuckGo search engine
  3619. * Bug 17917: Changelog after update is empty if JS is disabled
  3620. * Bug 17790: Map the proper SHIFT characters to the digit keys (fix of #15646)
  3621. * Build System
  3622. * Linux
  3623. * Bug 15578: Switch to Debian Wheezy guest VMs (10.04 LTS is EOL)
  3624. Tor Browser 5.5 -- January 26 2016
  3625. * All Platforms
  3626. * Update Firefox to 38.6.0esr
  3627. * Update libevent to 2.0.22-stable
  3628. * Update NoScript to 2.9.0.2
  3629. * Update Torbutton to 1.9.4.3
  3630. * Bug 16990: Show circuit display for connections using multi-party channels
  3631. * Bug 18019: Avoid empty prompt shown after non-en-US update
  3632. * Bug 18004: Remove Tor fundraising donation banner
  3633. * Bug 16940: After update, load local change notes
  3634. * Bug 17108: Polish about:tor appearance
  3635. * Bug 17568: Clean up tor-control-port.js
  3636. * Bug 16620: Move window.name handling into a Firefox patch
  3637. * Bug 17351: Code cleanup
  3638. * Translation updates
  3639. * Update Tor Launcher to 0.2.7.8
  3640. * Bug 18113: Randomly permutate available default bridges of chosen type
  3641. * Bug 13313: Bundle a fixed set of fonts to defend against fingerprinting
  3642. * Bug 10140: Add new Tor Browser locale (Japanese)
  3643. * Bug 17428: Remove Flashproxy
  3644. * Bug 13512: Load a static tab with change notes after an update
  3645. * Bug 9659: Avoid loop due to optimistic data SOCKS code (fix of #3875)
  3646. * Bug 15564: Isolate SharedWorkers by first-party domain
  3647. * Bug 16940: After update, load local change notes
  3648. * Bug 17759: Apply whitelist to local fonts in @font-face (fix of #13313)
  3649. * Bug 17009: Shift and Alt keys leak physical keyboard layout (fix of #15646)
  3650. * Bug 17790: Map the proper SHIFT characters to the digit keys (fix of #15646)
  3651. * Bug 17369: Disable RC4 fallback
  3652. * Bug 17442: Remove custom updater certificate pinning
  3653. * Bug 16620: Move window.name handling into a Firefox patch
  3654. * Bug 17220: Support math symbols in font whitelist
  3655. * Bug 10599+17305: Include updater and build patches needed for hardened builds
  3656. * Bug 18115+18104+18071+18091: Update/add new obfs4 bridge
  3657. * Bug 18072: Change recommended pluggable transport type to obfs4
  3658. * Bug 18008: Create a new MAR Signing key and bake it into Tor Browser
  3659. * Bug 16322: Use onion address for DuckDuckGo search engine
  3660. * Bug 17917: Changelog after update is empty if JS is disabled
  3661. * Windows
  3662. * Bug 17250: Add localized font names to font whitelist
  3663. * Bug 16707: Allow more system fonts to get used on Windows
  3664. * Bug 13819: Ship expert bundles with console enabled
  3665. * Bug 17250: Fix broken Japanese fonts
  3666. * Bug 17870: Add intermediate certificate for authenticode signing
  3667. * OS X
  3668. * Bug 17122: Rename Japanese OS X bundle
  3669. * Bug 16707: Allow more system fonts to get used on OS X
  3670. * Bug 17661: Whitelist font .Helvetica Neue DeskInterface
  3671. * Linux
  3672. * Bug 16672: Don't use font whitelisting for Linux users
  3673. Tor Browser 5.5a6-hardened -- January 7 2016
  3674. * All Platforms
  3675. * Update NoScript to 2.9
  3676. * Update HTTPS Everywhere to 5.1.2
  3677. * Bug 17931: Tor Browser crashes in LogMessageToConsole()
  3678. * Bug 17875: Discourage editing of torrc-defaults
  3679. Tor Browser 5.5a6 -- January 7 2016
  3680. * All Platforms
  3681. * Update NoScript to 2.9
  3682. * Update HTTPS Everywhere to 5.1.2
  3683. * Bug 17931: Tor Browser crashes in LogMessageToConsole()
  3684. * Bug 17875: Discourage editing of torrc-defaults
  3685. * Bug 17870: Add intermediate certificate for authenticode signing
  3686. Tor Browser 5.0.7 -- January 7 2016
  3687. * All Platforms
  3688. * Update NoScript to 2.9
  3689. * Update HTTPS Everywhere to 5.1.2
  3690. * Bug 17931: Tor Browser crashes in LogMessageToConsole()
  3691. * Bug 17875: Discourage editing of torrc-defaults
  3692. Tor Browser 5.5a5-hardened -- December 18 2015
  3693. * All Platforms
  3694. * Update Firefox to 38.5.0esr
  3695. * Update Tor to 0.2.7.6
  3696. * Update OpenSSL to 1.0.1q
  3697. * Update NoScript to 2.7
  3698. * Update Torbutton to 1.9.4.2
  3699. * Bug 16940: After update, load local change notes
  3700. * Bug 16990: Avoid matching '250 ' to the end of node name
  3701. * Bug 17565: Tor fundraising campaign donation banner
  3702. * Bug 17770: Fix alignments on donation banner
  3703. * Bug 17792: Include donation banner in some non en-US Tor Browsers
  3704. * Bug 17108: Polish about:tor appearance
  3705. * Bug 17568: Clean up tor-control-port.js
  3706. * Translation updates
  3707. * Update Tor Launcher to 0.2.8.1
  3708. * Bug 17344: Enumerate available language packs for language prompt
  3709. * Code clean-up
  3710. * Translation updates
  3711. * Bug 12516: Compile Tor Browser with -fwrapv
  3712. * Bug 9659: Avoid loop due to optimistic data SOCKS code (fix of #3875)
  3713. * Bug 15564: Isolate SharedWorkers by first-party domain
  3714. * Bug 16940: After update, load local change notes
  3715. * Bug 17759: Apply whitelist to local fonts in @font-face (fix of #13313)
  3716. * Bug 17747: Add ndnop3 as new default obfs4 bridge
  3717. * Bug 17009: Shift and Alt keys leak physical keyboard layout (fix of #15646)
  3718. * Bug 17369: Disable RC4 fallback
  3719. * Bug 17442: Remove custom updater certificate pinning
  3720. * Bug 16863: Avoid confusing error when loop.enabled is false
  3721. * Bug 17502: Add a preference for hiding "Open with" on download dialog
  3722. * Bug 17446: Prevent canvas extraction by third parties (fixup of #6253)
  3723. * Bug 16441: Suppress "Reset Tor Browser" prompt
  3724. Tor Browser 5.5a5 -- December 18 2015
  3725. * All Platforms
  3726. * Update Firefox to 38.5.0esr
  3727. * Update Tor to 0.2.7.6
  3728. * Update OpenSSL to 1.0.1q
  3729. * Update NoScript to 2.7
  3730. * Update Torbutton to 1.9.4.2
  3731. * Bug 16940: After update, load local change notes
  3732. * Bug 16990: Avoid matching '250 ' to the end of node name
  3733. * Bug 17565: Tor fundraising campaign donation banner
  3734. * Bug 17770: Fix alignments on donation banner
  3735. * Bug 17792: Include donation banner in some non en-US Tor Browsers
  3736. * Bug 17108: Polish about:tor appearance
  3737. * Bug 17568: Clean up tor-control-port.js
  3738. * Translation updates
  3739. * Bug 9659: Avoid loop due to optimistic data SOCKS code (fix of #3875)
  3740. * Bug 15564: Isolate SharedWorkers by first-party domain
  3741. * Bug 16940: After update, load local change notes
  3742. * Bug 17759: Apply whitelist to local fonts in @font-face (fix of #13313)
  3743. * Bug 17747: Add ndnop3 as new default obfs4 bridge
  3744. * Bug 17009: Shift and Alt keys leak physical keyboard layout (fix of #15646)
  3745. * Bug 17369: Disable RC4 fallback
  3746. * Bug 17442: Remove custom updater certificate pinning
  3747. * Bug 16863: Avoid confusing error when loop.enabled is false
  3748. * Bug 17502: Add a preference for hiding "Open with" on download dialog
  3749. * Bug 17446: Prevent canvas extraction by third parties (fixup of #6253)
  3750. * Bug 16441: Suppress "Reset Tor Browser" prompt
  3751. * Windows
  3752. * Bug 13819: Ship expert bundles with console enabled
  3753. * Bug 17250: Fix broken Japanese fonts
  3754. * OS X
  3755. * Bug 17661: Whitelist font .Helvetica Neue DeskInterface
  3756. Tor Browser 5.0.6 -- December 18 2015
  3757. * All Platforms
  3758. * Bug 17877: Tor Browser 5.0.5 is using the wrong Mozilla build tag
  3759. Tor Browser 5.0.5 -- December 15 2015
  3760. * All Platforms
  3761. * Update Firefox to 38.5.0esr
  3762. * Update Tor to 0.2.7.6
  3763. * Update OpenSSL to 1.0.1q
  3764. * Update NoScript to 2.7
  3765. * Update HTTPS Everywhere to 5.1.1
  3766. * Update Torbutton to 1.9.3.7
  3767. * Bug 16990: Avoid matching '250 ' to the end of node name
  3768. * Bug 17565: Tor fundraising campaign donation banner
  3769. * Bug 17770: Fix alignments on donation banner
  3770. * Bug 17792: Include donation banner in some non en-US Tor Browsers
  3771. * Translation updates
  3772. * Bug 17207: Hide MIME types and plugins from websites
  3773. * Bug 16909+17383: Adapt to HTTPS-Everywhere build changes
  3774. * Bug 16863: Avoid confusing error when loop.enabled is false
  3775. * Bug 17502: Add a preference for hiding "Open with" on download dialog
  3776. * Bug 17446: Prevent canvas extraction by third parties (fixup of #6253)
  3777. * Bug 16441: Suppress "Reset Tor Browser" prompt
  3778. * Bug 17747: Add ndnop3 as new default obfs4 bridge
  3779. Tor Browser 5.5a4 -- November 3 2015
  3780. * All Platforms
  3781. * Update Firefox to 38.4.0esr
  3782. * Update Tor to 0.2.7.4-rc
  3783. * Update NoScript to 2.6.9.39
  3784. * Update HTTPS-Everywhere to 5.1.1
  3785. * Update Torbutton to 1.9.4.1
  3786. * Bug 9623: Spoof Referer when leaving a .onion domain
  3787. * Bug 16620: Remove old window.name handling code
  3788. * Bug 17164: Don't show text-select cursor on circuit display
  3789. * Bug 17351: Remove unused code
  3790. * Translation updates
  3791. * Bug 17207: Hide MIME types and plugins from websites
  3792. * Bug 16909+17383: Adapt to HTTPS-Everywhere build changes
  3793. * Bug 16620: Move window.name handling into a Firefox patch
  3794. * Bug 17220: Support math symbols in font whitelist
  3795. * Bug 10599+17305: Include updater and build patches needed for hardened builds
  3796. * Bug 17318: Remove dead ScrambleSuit bridge
  3797. * Bug 17428: Remove default Flashproxy bridges
  3798. * Bug 17473: Update meek-amazon fingerprint
  3799. * Windows
  3800. * Bug 17250: Add localized font names to font whitelist
  3801. * OS X
  3802. * Bug 17122: Rename Japanese OS X bundle
  3803. * Linux
  3804. * Bug 17329: Ensure that non-ASCII characters can be typed (fixup of #5926)
  3805. Tor Browser 5.0.4 -- November 3 2015
  3806. * All Platforms
  3807. * Update Firefox to 38.4.0esr
  3808. * Update NoScript to 2.6.9.39
  3809. * Update Torbutton to 1.9.3.5
  3810. * Bug 9623: Spoof Referer when leaving a .onion domain
  3811. * Bug 16735: about:tor should accommodate different fonts/font sizes
  3812. * Bug 16937: Don't translate the homepage/spellchecker dictionary string
  3813. * Bug 17164: Don't show text-select cursor on circuit display
  3814. * Bug 17351: Remove unused code
  3815. * Translation updates
  3816. * Bug 16937: Remove the en-US dictionary from non en-US Tor Browser bundles
  3817. * Bug 17318: Remove dead ScrambleSuit bridge
  3818. * Bug 17473: Update meek-amazon fingerprint
  3819. * Bug 16983: Isolate favicon requests caused by the tab list dropdown
  3820. * Bug 17102: Don't crash while opening a second Tor Browser
  3821. * Windows:
  3822. * Bug 16906: Don't depend on Windows crypto DLLs
  3823. * Linux:
  3824. * Bug 17329: Ensure that non-ASCII characters can be typed (fixup of #5926)
  3825. Tor Browser 5.5a3 -- September 22 2015
  3826. * All Platforms
  3827. * Update Firefox to 38.3.0esr
  3828. * Update libevent to 2.0.22-stable
  3829. * Update Torbutton to 1.9.4
  3830. * Bug 16937: Don't translate the homepage/spellchecker dictionary string
  3831. * Bug 16735: about:tor should accommodate different fonts/font sizes
  3832. * Bug 16887: Update intl.accept_languages value
  3833. * Bug 15493: Update circuit display on new circuit info
  3834. * Bug 16797: brandShorterName is missing from brand.properties
  3835. * Translation updates
  3836. * Bug 10140: Add new Tor Browser locale (Japanese)
  3837. * Bug 17102: Don't crash while opening a second Tor Browser
  3838. * Bug 16983: Isolate favicon requests caused by the tab list dropdown
  3839. * Bug 13512: Load a static tab with change notes after an update
  3840. * Bug 16937: Remove the en-US dictionary from non en-US Tor Browser bundles
  3841. * Bug 7446: Tor Browser should not "fix up" .onion domains (or any domains)
  3842. * Bug 16837: Disable Firefox Hotfix updates
  3843. * Bug 16855: Allow blobs to be downloaded on first-party pages (fixes mega.nz)
  3844. * Bug 16781: Allow saving pdf files in built-in pdf viewer
  3845. * Bug 16842: Restore Media tab on Page information dialog
  3846. * Bug 16727: Disable about:healthreport page
  3847. * Bug 16783: Normalize NoScript default whitelist
  3848. * Bug 16775: Fix preferences dialog with security slider set to "High"
  3849. * Bug 13579: Update download progress bar automatically
  3850. * Bug 15646: Reduce keyboard layout fingerprinting in KeyboardEvent
  3851. * Bug 17046: Event.timeStamp should not reveal startup time
  3852. * Bug 16872: Fix warnings when opening about:downloads
  3853. * Bug 17097: Fix intermittent crashes when using the print dialog
  3854. * Windows
  3855. * Bug 16906: Fix Mingw-w64 compilation/Don't depend on Windows crypto DLLs
  3856. * Bug 16707: Allow more system fonts to get used on Windows
  3857. * OS X
  3858. * Bug 16910: Update copyright year in OS X bundles
  3859. * Bug 16707: Allow more system fonts to get used on OS X
  3860. * Linux
  3861. * Bug 16672: Don't use font whitelisting for Linux users
  3862. Tor Browser 5.0.3 -- September 22 2015
  3863. * All Platforms
  3864. * Update Firefox to 38.3.0esr
  3865. * Update Torbutton to 1.9.3.4
  3866. * Bug 16887: Update intl.accept_languages value
  3867. * Bug 15493: Update circuit display on new circuit info
  3868. * Bug 16797: brandShorterName is missing from brand.properties
  3869. * Bug 14429: Make sure the automatic resizing is disabled
  3870. * Translation updates
  3871. * Bug 7446: Tor Browser should not "fix up" .onion domains (or any domains)
  3872. * Bug 16837: Disable Firefox Hotfix updates
  3873. * Bug 16855: Allow blobs to be downloaded on first-party pages (fixes mega.nz)
  3874. * Bug 16781: Allow saving pdf files in built-in pdf viewer
  3875. * Bug 16842: Restore Media tab on Page information dialog
  3876. * Bug 16727: Disable about:healthreport page
  3877. * Bug 16783: Normalize NoScript default whitelist
  3878. * Bug 16775: Fix preferences dialog with security slider set to "High"
  3879. * Bug 13579: Update download progress bar automatically
  3880. * Bug 15646: Reduce keyboard layout fingerprinting in KeyboardEvent
  3881. * Bug 17046: Event.timeStamp should not reveal startup time
  3882. * Bug 16872: Fix warnings when opening about:downloads
  3883. * Bug 17097: Fix intermittent crashes when using the print dialog
  3884. * Windows
  3885. * Bug 16906: Fix Mingw-w64 compilation breakage
  3886. * OS X
  3887. * Bug 16910: Update copyright year in OS X bundles
  3888. Tor Browser 5.5a2 -- August 28 2015
  3889. * All Platforms:
  3890. * Update Firefox to 38.2.1esr
  3891. * Update NoScript to 2.6.9.36
  3892. * Bug 16771: Fix crash on some websites due to blob URIs
  3893. * Linux
  3894. * Bug 16860: Avoid duplicate desktop icons on Gnome and Unity
  3895. Tor Browser 5.0.2 -- August 27 2015
  3896. * All Platforms
  3897. * Update Firefox to 38.2.1esr
  3898. * Update NoScript to 2.6.9.36
  3899. * Linux
  3900. * Bug 16860: Avoid duplicate icons on Unity and Gnome
  3901. Tor Browser 5.0.1 -- August 18 2015
  3902. * All Platforms
  3903. * Bug 16771: Fix crash on some websites due to blob URIs
  3904. Tor Browser 5.5a1 -- August 11 2015
  3905. * All Platforms
  3906. * Update Firefox to 38.2.0esr
  3907. * Update NoScript to 2.6.9.34
  3908. * Update Torbutton to 1.9.3.3
  3909. * Bug 16731: TBB 5.0 a3/a4 fails to download a file on right click
  3910. * Bug 16730: Reset NoScript whitelist on upgrade
  3911. * Bug 16722: Prevent "Tiles" feature from being enabled after upgrade
  3912. * Bug 16488: Remove "Sign in to Sync" from the browser menu (fixup)
  3913. * Bug 14429: Make sure the automatic resizing is enabled
  3914. * Translation updates
  3915. * Update Tor Launcher to 0.2.7.7
  3916. * Translation updates
  3917. * Bug 16730: Prevent NoScript from updating the default whitelist
  3918. * Bug 16715: Use ThreadsafeIsCallerChrome() instead of IsCallerChrome()
  3919. * Bug 16572: Verify cache isolation for XMLHttpRequests in Web Workers
  3920. * Bug 16311: Fix navigation timing in ESR 38
  3921. * Bug 15646: Prevent keyboard layout fingerprinting in KeyboardEvent (fixup)
  3922. * Bug 16672: Change font whitelists and configs for rendering issues (partial)
  3923. Tor Browser 5.0 -- August 11 2015
  3924. * All Platforms
  3925. * Update Firefox to 38.2.0esr
  3926. * Update OpenSSL to 1.0.1p
  3927. * Update HTTPS-Everywhere to 5.0.7
  3928. * Update NoScript to 2.6.9.34
  3929. * Update meek to 0.20
  3930. * Update Tor to 0.2.6.10 with patches:
  3931. * Bug 16674: Allow FQDNs ending with a single '.' in our SOCKS host name checks.
  3932. * Bug 16430: Allow DNS names with _ characters in them (fixes nytimes.com)
  3933. * Bug 15482: Don't allow circuits to change while a site is in use
  3934. * Update Torbutton to 1.9.3.2
  3935. * Bug 16731: TBB 5.0 a3/a4 fails to download a file on right click
  3936. * Bug 16730: Reset NoScript whitelist on upgrade
  3937. * Bug 16722: Prevent "Tiles" feature from being enabled after upgrade
  3938. * Bug 16488: Remove "Sign in to Sync" from the browser menu (fixup)
  3939. * Bug 16268: Show Tor Browser logo on About page
  3940. * Bug 16639: Check for Updates menu item can cause update download failure
  3941. * Bug 15781: Remove the sessionstore filter
  3942. * Bug 15656: Sync privacy.resistFingerprinting with Torbutton pref
  3943. * Bug 16427: Use internal update URL to block updates (instead of 127.0.0.1)
  3944. * Bug 16200: Update Cache API usage and prefs for FF38
  3945. * Bug 16357: Use Mozilla API to wipe permissions db
  3946. * Bug 14429: Make sure the automatic resizing is disabled
  3947. * Translation updates
  3948. * Update Tor Launcher to 0.2.7.7
  3949. * Bug 16428: Use internal update URL to block updates (instead of 127.0.0.1)
  3950. * Bug 15145: Visually distinguish "proxy" and "bridge" screens.
  3951. * Translation updates
  3952. * Bug 16730: Prevent NoScript from updating the default whitelist
  3953. * Bug 16715: Use ThreadsafeIsCallerChrome() instead of IsCallerChrome()
  3954. * Bug 16572: Verify cache isolation for XMLHttpRequests in Web Workers
  3955. * Bug 16884: Prefer IPv6 when supported by the current Tor exit
  3956. * Bug 16488: Remove "Sign in to Sync" from the browser menu
  3957. * Bug 16662: Enable network.http.spdy.* prefs in meek-http-helper
  3958. * Bug 15703: Isolate mediasource URIs and media streams to first party
  3959. * Bug 16429+16416: Isolate blob URIs to first party
  3960. * Bug 16632: Turn on the background updater and restart prompting
  3961. * Bug 16528: Prevent indexedDB Modernizr site breakage on Twitter and elsewhere
  3962. * Bug 16523: Fix in-browser JavaScript debugger
  3963. * Bug 16236: Windows updater: avoid writing to the registry
  3964. * Bug 16625: Fully disable network connection prediction
  3965. * Bug 16495: Fix SVG crash when security level is set to "High"
  3966. * Bug 13247: Fix meek profile error after bowser restarts
  3967. * Bug 16005: Relax WebGL minimal mode
  3968. * Bug 16300: Isolate Broadcast Channels to first party
  3969. * Bug 16439: Remove Roku screencasting code
  3970. * Bug 16285: Disabling EME bits
  3971. * Bug 16206: Enforce certificate pinning
  3972. * Bug 15910: Disable Gecko Media Plugins for now
  3973. * Bug 13670: Isolate OCSP requests by first party domain
  3974. * Bug 16448: Isolate favicon requests by first party
  3975. * Bug 7561: Disable FTP request caching
  3976. * Bug 6503: Fix single-word URL bar searching
  3977. * Bug 15526: ES6 page crashes Tor Browser
  3978. * Bug 16254: Disable GeoIP-based search results.
  3979. * Bug 16222: Disable WebIDE to prevent remote debugging and addon downloads.
  3980. * Bug 13024: Disable DOM Resource Timing API
  3981. * Bug 16340: Disable User Timing API
  3982. * Bug 14952: Disable HTTP/2
  3983. * Bug 1517: Reduce precision of time for Javascript
  3984. * Bug 13670: Ensure OCSP & favicons respect URL bar domain isolation
  3985. * Bug 16311: Fix navigation timing in ESR 38
  3986. * Windows
  3987. * Bug 16014: Staged update fails if meek is enabled
  3988. * Bug 16269: repeated add-on compatibility check after update (meek enabled)
  3989. * Mac OS
  3990. * Use OSX 10.7 SDK
  3991. * Bug 16253: Tor Browser menu on OS X is broken with ESR 38
  3992. * Bug 15773: Enable ICU on OS X
  3993. * Build System
  3994. * Bug 16351: Upgrade our toolchain to use GCC 5.1
  3995. * Bug 15772 and child tickets: Update build system for Firefox 38
  3996. * Bugs 15921+15922: Fix build errors during Mozilla Tryserver builds
  3997. * Bug 15864: rename sha256sums.txt to sha256sums-unsigned-build.txt
  3998. Tor Browser 5.0a4 -- August 3 2015
  3999. * All Platforms
  4000. * Update Tor to 0.2.7.2-alpha with patches:
  4001. * Bug 15482: Don't allow circuits to change while a site is in use
  4002. * Update OpenSSL to 1.0.1p
  4003. * Update HTTPS-Everywhere to 5.0.7
  4004. * Update NoScript to 2.6.9.31
  4005. * Update Torbutton to 1.9.3.1
  4006. * Bug 16268: Show Tor Browser logo on About page
  4007. * Bug 16639: Check for Updates menu item can cause update download failure
  4008. * Bug 15781: Remove the sessionstore filter
  4009. * Bug 15656: Sync privacy.resistFingerprinting with Torbutton pref
  4010. * Translation updates
  4011. * Bug 16884: Prefer IPv6 when supported by the current Tor exit
  4012. * Bug 16488: Remove "Sign in to Sync" from the browser menu
  4013. * Bug 13313: Bundle a fixed set of fonts to defend against fingerprinting
  4014. * Bug 16662: Enable network.http.spdy.* prefs in meek-http-helper
  4015. * Bug 15646: Prevent keyboard layout fingerprinting in KeyboardEvent (fixup)
  4016. * Bug 15703: Isolate mediasource URIs and media streams to first party
  4017. * Bug 16429+16416: Isolate blob URIs to first party
  4018. * Bug 16632: Turn on the background updater and restart prompting
  4019. * Bug 16528: Prevent indexedDB Modernizr site breakage on Twitter and elsewhere
  4020. * Bug 16523: Fix in-browser JavaScript debugger
  4021. * Bug 16236: Windows updater: avoid writing to the registry
  4022. * Bug 16005: Restrict WebGL minimal mode a bit (fixup)
  4023. * Bug 16625: Fully disable network connection prediction
  4024. * Bug 16495: Fix SVG crash when security level is set to "High"
  4025. * Build System
  4026. * Bug 15864: rename sha256sums.txt to sha256sums-unsigned-build.txt
  4027. Tor Browser 5.0a3 -- June 30 2015
  4028. * All Platforms
  4029. * Update Firefox to 38.1.0esr
  4030. * Update OpenSSL to 1.0.1o
  4031. * Update NoScript to 2.6.9.27
  4032. * Update meek to 0.20
  4033. * Tor patch backport
  4034. * Bug 16430: Allow DNS names with _ characters in them (fixes nytimes.com)
  4035. * Update Torbutton to 1.9.3.0
  4036. * Bug 16403: Set search parameters for Disconnect
  4037. * Bug 14429: Make sure the automatic resizing is disabled
  4038. * Bug 16427: Use internal update URL to block updates (instead of 127.0.0.1)
  4039. * Bug 16200: Update Cache API usage and prefs for FF38
  4040. * Bug 16357: Use Mozilla API to wipe permissions db
  4041. * Translation updates
  4042. * Update Tor Launcher to 0.2.7.6
  4043. * Bug 16428: Use internal update URL to block updates (instead of 127.0.0.1)
  4044. * Bug 15145: Visually distinguish "proxy" and "bridge" screens.
  4045. * Translation updates
  4046. * Bug 13247: Fix meek profile error after bowser restarts
  4047. * Bug 16397: Fix crash related to disabling SVG
  4048. * Bug 16403: Set search parameters for Disconnect
  4049. * Bug 16446: Update FTE bridge #1 fingerprint
  4050. * Bug 15646: Prevent keyboard layout fingerprinting in KeyboardEvent
  4051. * Bug 16005: Relax WebGL minimal mode
  4052. * Bug 16300: Isolate Broadcast Channels to first party
  4053. * Bug 16439: Remove Roku screencasting code
  4054. * Bug 16285: Disabling EME bits
  4055. * Bug 16206: Enforce certificate pinning
  4056. * Bug 15910: Disable GMPs for now
  4057. * Bug 13670: Isolate OCSP requests by first party domain
  4058. * Bug 16448: Isolate favicon requests by first party
  4059. * Bug 7561: Disable FTP request caching
  4060. * Bug 6503: Fix single-word URL bar searching
  4061. * Bug 15526: ES6 page crashes Tor Browser
  4062. * Bug 16254: Disable GeoIP-based search results.
  4063. * Bug 16222: Disable WebIDE to prevent remote debugging and addon downloads.
  4064. * Bug 13024: Disable DOM Resource Timing API
  4065. * Bug 16340: Disable User Timing API
  4066. * Bug 14952: Disable HTTP/2
  4067. * Mac OS
  4068. * Use OSX 10.7 SDK
  4069. * Bug 16253: Tor Browser menu on OS X is broken with ESR 38
  4070. * Build System
  4071. * Bug 16351: Upgrade our toolchain to use GCC 5.1
  4072. * Bug 15772 and child tickets: Update build system for Firefox 38
  4073. Tor Browser 4.5.3 -- June 30 2015
  4074. * All Platforms
  4075. * Update Firefox to 31.8.0esr
  4076. * Update OpenSSL to 1.0.1o
  4077. * Update NoScript to 2.6.9.27
  4078. * Update Torbutton to 1.9.2.8
  4079. * Bug 16403: Set search parameters for Disconnect
  4080. * Bug 14429: Make sure the automatic resizing is disabled
  4081. * Translation updates
  4082. * Bug 16397: Fix crash related to disabling SVG
  4083. * Bug 16403: Set search parameters for Disconnect
  4084. * Bug 16446: Update FTE bridge #1 fingerprint
  4085. * Tor patch backport
  4086. * Bug 16430: Allow DNS names with _ characters in them (fixes nytimes.com)
  4087. Tor Browser 5.0a2 -- June 15 2015
  4088. * All Platforms
  4089. * Update Tor to 0.2.7.1-alpha
  4090. * Update HTTPS-Everywhere to 5.0.5
  4091. * Update OpenSSL to 1.0.1n
  4092. * Update NoScript to 2.6.9.26
  4093. * Update meek to 0.19
  4094. * Update Torbutton to 1.9.2.7
  4095. * Bug 15984: Disabling Torbutton breaks the Add-ons Manager
  4096. * Bug 14429: Make sure the automatic resizing is enabled
  4097. * Translation updates
  4098. * Bug 16130: Defend against logjam attack
  4099. * Bug 15984: Disabling Torbutton breaks the Add-ons Manager
  4100. * Windows
  4101. * Bug 16014: Staged update fails if meek is enabled
  4102. * Bug 16269: repeated add-on compatibility check after update (meek enabled)
  4103. * Linux
  4104. * Bug 16026: Fix crash in GStreamer
  4105. * Bug 16083: Update comment in start-tor-browser
  4106. Tor Browser 4.5.2 -- June 15 2015
  4107. * All Platforms
  4108. * Update Tor to 0.2.6.9
  4109. * Update HTTPS-Everywhere to 5.0.5
  4110. * Update OpenSSL to 1.0.1n
  4111. * Update NoScript to 2.6.9.26
  4112. * Update Torbutton to 1.9.2.6
  4113. * Bug 15984: Disabling Torbutton breaks the Add-ons Manager
  4114. * Bug 14429: Make sure the automatic resizing is disabled
  4115. * Translation updates
  4116. * Bug 16130: Defend against logjam attack
  4117. * Bug 15984: Disabling Torbutton breaks the Add-ons Manager
  4118. * Linux
  4119. * Bug 16026: Fix crash in GStreamer
  4120. * Bug 16083: Update comment in start-tor-browser
  4121. Tor Browser 5.0a1 -- May 14 2015
  4122. * All Platforms
  4123. * Update Firefox to 31.7.0esr
  4124. * Update meek to 0.18
  4125. * Update Tor Launcher to 0.2.7.5
  4126. * Translation updates only
  4127. * Update Torbutton to 1.9.2.5
  4128. * Bug 15837: Show descriptions if unchecking custom mode
  4129. * Bug 15927: Force update of the NoScript UI when changing security level
  4130. * Bug 15915: Hide circuit display if it is disabled.
  4131. * Bug 14429: Improved automatic window resizing
  4132. * Translation updates
  4133. * Bug 15945: Disable NoScript's ClearClick protection for now
  4134. * Bug 15933: Isolate by base (top-level) domain name instead of FQDN
  4135. * Bug 15857: Fix file descriptor leak in updater that caused update failures
  4136. * Bug 15899: Fix errors with downloading and displaying PDFs
  4137. * Bug 15773: Enable ICU on OS X
  4138. * Bug 1517: Reduce precision of time for Javascript
  4139. * Bug 13670: Ensure OCSP & favicons respect URL bar domain isolation
  4140. * Bug 13875: Improve the spoofing of window.devicePixelRatio
  4141. * Windows
  4142. * Bug 15872: Fix meek pluggable transport startup issue with Windows 7
  4143. * Build System
  4144. * Bug 15947: Support Ubuntu 14.04 LXC hosts via LXC_EXECUTE=lxc-execute env var
  4145. * Bugs 15921+15922: Fix build errors during Mozilla Tryserver builds
  4146. Tor Browser 4.5.1 -- May 12 2015
  4147. * All Platforms
  4148. * Update Firefox to 31.7.0esr
  4149. * Update meek to 0.18
  4150. * Update Tor Launcher to 0.2.7.5
  4151. * Translation updates only
  4152. * Update Torbutton to 1.9.2.3
  4153. * Bug 15837: Show descriptions if unchecking custom mode
  4154. * Bug 15927: Force update of the NoScript UI when changing security level
  4155. * Bug 15915: Hide circuit display if it is disabled.
  4156. * Translation updates
  4157. * Bug 15945: Disable NoScript's ClearClick protection for now
  4158. * Bug 15933: Isolate by base (top-level) domain name instead of FQDN
  4159. * Bug 15857: Fix file descriptor leak in updater that caused update failures
  4160. * Bug 15899: Fix errors with downloading and displaying PDFs
  4161. * Windows
  4162. * Bug 15872: Fix meek pluggable transport startup issue with Windows 7
  4163. * Build System
  4164. * Bug 15947: Support Ubuntu 14.04 LXC hosts via LXC_EXECUTE=lxc-execute env var
  4165. * Bugs 15921+15922: Fix build errors during Mozilla Tryserver builds
  4166. Tor Browser 4.5 -- Apr 28 2015
  4167. * All Platforms
  4168. * Update Tor to 0.2.6.7 with additional patches:
  4169. * Bug 15482: Reset timestamp_dirty each time a SOCKSAuth circuit is used
  4170. * Update NoScript to 2.6.9.22
  4171. * Update HTTPS-Everywhere to 5.0.3
  4172. * Bug 15689: Resume building HTTPS-Everywhere from git tags
  4173. * Update meek to 0.17
  4174. * Update obfs4proxy to 0.0.5
  4175. * Update Tor Launcher to 0.2.7.4
  4176. * Bug 15704: Do not enable network if wizard is opened
  4177. * Bug 11879: Stop bootstrap if Cancel or Open Settings is clicked
  4178. * Bug 13576: Don't strip "bridge" from the middle of bridge lines
  4179. * Bug 15657: Display the host:port of any connection faiures in bootstrap
  4180. * Update Torbutton to 1.9.2.2
  4181. * Bug 15562: Bind SharedWorkers to thirdparty pref
  4182. * Bug 15533: Restore default security level when restoring defaults
  4183. * Bug 15510: Close Tor Circuit UI control port connections on New Identity
  4184. * Bug 15472: Make node text black in circuit status UI
  4185. * Bug 15502: Wipe blob URIs on New Identity
  4186. * Bug 15795: Some security slider prefs do not trigger custom checkbox
  4187. * Bug 14429: Disable automatic window resizing for now
  4188. * Bug 4100: Raise HTTP Keep-Alive back to 115 second default
  4189. * Bug 13875: Spoof window.devicePixelRatio to avoid DPI fingerprinting
  4190. * Bug 15411: Remove old (and unused) cacheDomain cache isolation mechanism
  4191. * Bugs 14716+13254: Fix issues with HTTP Auth usage and TLS connection info display
  4192. * Bug 15502: Isolate blob URI scope to URL domain; block WebWorker access
  4193. * Bug 15794: Crash on some pages with SVG images if SVG is disabled
  4194. * Bug 15562: Disable Javascript SharedWorkers due to third party tracking
  4195. * Bug 15757: Disable Mozilla video statistics API extensions
  4196. * Bug 15758: Disable Device Sensor APIs
  4197. * Linux
  4198. * Bug 15747: Improve start-tor-browser argument handling
  4199. * Bug 15672: Provide desktop app registration+unregistration for Linux
  4200. * Windows
  4201. * Bug 15539: Make installer exe signatures reproducibly removable
  4202. * Bug 10761: Fix instances of shutdown crashes
  4203. Tor Browser 4.5a5 -- Mar 31 2015
  4204. * All Platforms
  4205. * Update Firefox to 31.6.0esr
  4206. * Update OpenSSL to 1.0.1m
  4207. * Update Tor to 0.2.6.6
  4208. * Update NoScript to 2.6.9.19
  4209. * Update HTTPS-Everywhere to 5.0
  4210. * Update meek to 0.16
  4211. * Update Tor Launcher to 0.2.7.3
  4212. * Bug 13983: Directory search path fix for Tor Messanger+TorBirdy
  4213. * Update Torbutton to 1.9.1.0
  4214. * Bug 9387: "Security Slider 1.0"
  4215. * Include descriptions and tooltip hints for security levels
  4216. * Notify users that the security slider exists
  4217. * Flip slider so that "low" is on the bottom
  4218. * Make use of new SVG and MathML prefs
  4219. * Bug 13766: Set a 10 minute circuit lifespan for non-content requests
  4220. * Bug 15460: Ensure FTP urls use content-window circuit isolation
  4221. * Bug 13650: Clip initial window height to 1000px
  4222. * Bug 14429: Ensure windows can only be resized to 200x100px multiples
  4223. * Bug 15334: Display Cookie Protections menu if disk records are enabled
  4224. * Bug 14324: Show HS circuit in Tor circuit display
  4225. * Bug 15086: Handle RTL text in Tor circuit display
  4226. * Bug 15085: Fix about:tor RTL text alignment problems
  4227. * Bug 10216: Add a pref to disable the local tor control port test
  4228. * Bug 14937: Show meek and flashproxy bridges in tor circuit display
  4229. * Bugs 13891+15207: Fix exceptions/errors in circuit display with bridges
  4230. * Bug 13019: Change locale hiding pref to boolean
  4231. * Bug 7255: Warn users about maximizing windows
  4232. * Bug 14631: Improve profile access error msgs (strings).
  4233. * Pluggable Transport Dependency Updates:
  4234. * Bug 15448: Use golang 1.4.2 for meek and obs4proxy
  4235. * Bug 15265: Switch go.net repo to golang.org/x/net
  4236. * Bug 14937: Hard-code meek and flashproxy node fingerprints
  4237. * Bug 13019: Prevent Javascript from leaking system locale
  4238. * Bug 10280: Improved fix to prevent loading plugins into address space
  4239. * Bug 15406: Only include addons in incremental updates if they actually update
  4240. * Bug 15029: Don't prompt to include missing plugins
  4241. * Bug 12827: Create preference to disable SVG images (for security slider)
  4242. * Bug 13548: Create preference to disable MathML (for security slider)
  4243. * Bug 14631: Improve startup error messages for filesystem permissions issues
  4244. * Bug 15482: Don't allow circuits to change while a site is in use
  4245. * Linux
  4246. * Bug 13375: Create a hybrid GUI/desktop/shell launcher wrapper
  4247. * Bug 12468: Only print/write log messages if launched with --debug
  4248. * Windows
  4249. * Bug 3861: Begin signing Tor Browser for Windows the Windows way
  4250. * Bug 15201: Disable 'runas Administrator' codepaths in updater
  4251. * Bug 14688: Create shortcuts to desktop and start menu by default (optional)
  4252. Tor Browser 4.0.6 -- Mar 31 2015
  4253. * All Platforms
  4254. * Update Firefox to 31.6.0esr
  4255. * Update meek to 0.16
  4256. * Update OpenSSL to 1.0.1m
  4257. Tor Browser 4.0.5 -- Mar 23 2015
  4258. * All Platforms
  4259. * Update Firefox to 31.5.3esr
  4260. * Update Tor to 0.2.5.11
  4261. * Update NoScript to 2.6.9.19
  4262. Tor Browser 4.5a4 -- Feb 24 2015
  4263. * All Platforms
  4264. * Update Firefox to 31.5.0esr
  4265. * Update Tor to 0.2.6.3-alpha
  4266. * Update OpenSSL to 1.0.1l
  4267. * Update NoScript to 2.6.9.15
  4268. * Update obfs4proxy to 0.0.4
  4269. * Use obfs4proxy for ScrambleSuit bridges
  4270. * Update Torbutton to 1.9.0.0
  4271. * Bug 13882: Fix display of bridges after bridge settings have been changed
  4272. * Bug 5698: Use "Tor Browser" branding in "About Tor Browser" dialog
  4273. * Bug 10280: Strings and pref for preventing plugin initialization.
  4274. * Bug 14866: Show correct circuit when more than one exists for a given domain
  4275. * Bug 9442: Add New Circuit button to Torbutton menu
  4276. * Bug 9906: Warn users before closing all windows and performing new identity.
  4277. * Bug 8400: Prompt for restart if disk records are enabled/disabled.
  4278. * Bug 14630: Hide Torbutton's proxy settings tab.
  4279. * Bug 14632: Disable Cookie Manager until we get it working.
  4280. * Bug 11175: Remove "About Torbutton" from onion menu.
  4281. * Bug 13900: Remove remaining SafeCache code in favor of C++ patch
  4282. * Bug 14490: Use Disconnect search in about:tor search box
  4283. * Bug 14392: Don't steal input focus in about:tor search box
  4284. * Bug 11236: Don't set omnibox order in Torbutton (to prevent translation)
  4285. * Bug 13406: Stop directing users to download-easy.html.en on update
  4286. * Bug 9387: Handle "custom" mode better in Security Slider
  4287. * Bug 12430: Bind jar: pref to Security Slider
  4288. * Bug 14448: Restore Torbutton menu operation on non-English localizations
  4289. * Translation updates
  4290. * Update Tor Launcher to 0.2.7.2
  4291. * Bug 13271: Display Bridge Configuration wizard pane before Proxy pane
  4292. * Bug 14336: Fix navigation button display issues on some wizard panes
  4293. * Translation updates
  4294. * Bug 14203: Prevent meek from displaying an extra update notification
  4295. * Bug 14849: Remove new NoScript menu option to make permissions permanent
  4296. * Bug 14851: Set NoScript pref to disable permanent permissions
  4297. * Bug 14490: Make Disconnect the default omnibox search engine
  4298. * Bug 11236: Fix omnibox order for non-English builds
  4299. * Also remove Amazon, eBay and bing; add Youtube and Twitter
  4300. * Bug 10280: Don't load any plugins into the address space.
  4301. * Bug 14392: Make about:tor hide itself from the URL bar
  4302. * Bug 12430: Provide a preference to disable remote jar: urls
  4303. * Bug 13900: Remove 3rd party HTTP auth tokens via Firefox patch
  4304. * Bug 5698: Fix branding in "About Torbrowser" window
  4305. * Windows:
  4306. * Bug 13169: Don't use /dev/random on Windows for SSP
  4307. * Linux:
  4308. * Bug 13717: Make sure we use the bash shell on Linux
  4309. Tor Browser 4.0.4 -- Feb 24 2015
  4310. * All Platforms
  4311. * Update Firefox to 31.5.0esr
  4312. * Update OpenSSL to 1.0.1l
  4313. * Update NoScript to 2.6.9.15
  4314. * Update HTTPS-Everywhere to 4.0.3
  4315. * Bug 14203: Prevent meek from displaying an extra update notification
  4316. * Bug 14849: Remove new NoScript menu option to make permissions permanent
  4317. * Bug 14851: Set NoScript pref to disable permanent permissions
  4318. Tor Browser 4.5a3 -- Jan 19 2015
  4319. * All Platforms
  4320. * Update Firefox to 31.4.0esr
  4321. * Update Tor to 0.2.6.2-alpha
  4322. * Update NoScript to 2.6.9.10
  4323. * Update HTTPS Everywhere to 5.0development.2
  4324. * Update meek to 0.15
  4325. * Update Torbutton to 1.8.1.3
  4326. * Bug 13998: Handle changes in NoScript 2.6.9.8+
  4327. * Bug 14100: Option to hide NetworkSettings menuitem
  4328. * Bug 13079: Option to skip control port verification
  4329. * Bug 13835: Option to change default Tor Browser homepage
  4330. * Bug 11449: Fix new identity error if NoScript is not enabled
  4331. * Bug 13881: Localize strings for tor circuit display
  4332. * Bug 9387: Incorporate user feedback
  4333. * Bug 13671: Fixup for circuit display if bridges are used
  4334. * Translation updates
  4335. * Update Tor Launcher to 0.2.7.1
  4336. * Bug 14122: Hide logo if TOR_HIDE_BROWSER_LOGO set
  4337. * Translation updates
  4338. * Bug 13379: Sign our MAR files
  4339. * Bug 13788: Fix broken meek in 4.5-alpha series
  4340. * Bug 13439: No canvas prompt for content callers
  4341. Tor Browser 4.0.3 -- Jan 13 2015
  4342. * All Platforms
  4343. * Update Firefox to 31.4.0esr
  4344. * Update NoScript to 2.6.9.10
  4345. * Update meek to 0.15
  4346. * Update Tor Launcher to 0.2.7.0.2
  4347. * Translation updates only
  4348. Tor Browser 4.5-alpha-2 -- Dec 5 2014
  4349. * All Platforms
  4350. * Update Firefox to 31.3.0esr
  4351. * Update NoScript to 2.6.9.5
  4352. * Update HTTPS Everywhere to 5.0development.1
  4353. * Update Torbutton to 1.8.1.2
  4354. * Bug 13672: Make circuit display optional
  4355. * Bug 13671: Make bridges visible on circuit display
  4356. * Bug 9387: Incorporate user feedback
  4357. * Bug 13784: Remove third party authentication tokens
  4358. * Bug 13435: Remove our custom POODLE fix (fixed by Mozilla in ESR 31.3.0)
  4359. Tor Browser 4.0.2 -- Dec 2 2014
  4360. * All Platforms
  4361. * Update Firefox to 31.3.0esr
  4362. * Update NoScript to 2.6.9.5
  4363. * Update HTTPS Everywhere to 4.0.2
  4364. * Update Torbutton to 1.7.0.2
  4365. * Bug 13019: Synchronize locale spoofing pref with our Firefox patch
  4366. * Bug 13746: Properly link Torbutton UI to thirdparty pref.
  4367. * Bug 13742: Fix domain isolation for content cache and disk-enabled browsing mode
  4368. * Bug 5926: Prevent JS engine locale leaks (by setting the C library locale)
  4369. * Bug 13504: Remove unreliable/unreachable non-public bridges
  4370. * Bug 13435: Remove our custom POODLE fix
  4371. * Windows
  4372. * Bug 13443: Re-enable DirectShow; fix crash with mingw patch.
  4373. * Bug 13558: Fix crash on Windows XP during download folder changing
  4374. * Bug 13594: Fix update failure for Windows XP users
  4375. Tor Browser 4.5-alpha-1 -- Nov 14 2014
  4376. * All Platforms
  4377. * Bug 3455: Patch Firefox SOCKS and proxy filters to allow user+pass isolation
  4378. * Bug 11955: Backport HTTPS Certificate Pinning patches from Firefox 32
  4379. * Bug 13684: Backport Mozilla bug #1066190 (pinning issue fixed in Firefox 33)
  4380. * Bug 13019: Make JS engine use English locale if a pref is set by Torbutton
  4381. * Bug 13301: Prevent extensions incompatibility error after upgrades
  4382. * Bug 13460: Fix MSVC compilation issue
  4383. * Bug 13504: Remove stale bridges from default bridge set
  4384. * Bug 13742: Fix domain isolation for content cache and disk-enabled browsing mode
  4385. * Update Tor to 0.2.6.1-alpha
  4386. * Update NoScript to 2.6.9.3
  4387. * Update Torbutton to 1.8.1.1
  4388. * Bug 9387: Provide a "Security Slider" for vulnerability surface reduction
  4389. * Bug 13019: Synchronize locale spoofing pref with our Firefox patch
  4390. * Bug 3455: Use SOCKS user+pass to isolate all requests from the same url domain
  4391. * Bug 8641: Create browser UI to indicate current tab's Tor circuit IPs
  4392. * Bug 13651: Prevent circuit-status related UI hang.
  4393. * Bug 13666: Various circuit status UI fixes
  4394. * Bugs 13742+13751: Remove cache isolation code in favor of direct C++ patch
  4395. * Bug 13746: Properly update third party isolation pref if disabled from UI
  4396. * Bug 13586: Make meek use TLS session tickets (to look like stock Firefox).
  4397. * Bug 12903: Include obfs4proxy pluggable transport
  4398. * Windows
  4399. * Bug 13443: Re-enable DirectShow; fix crash with mingw patch.
  4400. * Bug 13558: Fix crash on Windows XP during download folder changing
  4401. * Bug 13091: Make app name "Tor Browser" instead of "Tor"
  4402. * Bug 13594: Fix update failure for Windows XP users
  4403. * Mac
  4404. * Bug 10138: Switch to 64bit builds for MacOS
  4405. Tor Browser 4.0.1 -- Oct 30 2014
  4406. * All Platforms
  4407. * Update Tor to 0.2.5.10
  4408. * Update NoScript to 2.6.9.3
  4409. * Bug 13301: Prevent extensions incompatibility error after upgrades
  4410. * Bug 13460: Fix MSVC compilation issue
  4411. * Windows
  4412. * Bug 13443: Disable DirectShow to prevent crashes on many sites
  4413. * Bug 13091: Make app name "Tor Browser" instead of "Tor"
  4414. Tor Browser 4.0 -- Oct 15 2014
  4415. * All Platforms
  4416. * Update Firefox to 31.2.0esr
  4417. * Update Torbutton to 1.7.0.1
  4418. * Bug 13378: Prevent addon reordering in toolbars on first-run.
  4419. * Bug 10751: Adapt Torbutton to ESR31's Australis UI.
  4420. * Bug 13138: ESR31-about:tor shows "Tor is not working"
  4421. * Bug 12947: Adapt session storage blocker to ESR 31.
  4422. * Bug 10716: Take care of drag/drop events in ESR 31.
  4423. * Bug 13366: Fix cert exemption dialog when disk storage is enabled.
  4424. * Update Tor Launcher to 0.2.7.0.1
  4425. * Translation updates only
  4426. * Udate fteproxy to 0.2.19
  4427. * Update NoScript to 2.6.9.1
  4428. * Bug 13416: Defend against new SSLv3 attack (poodle).
  4429. * Bug 13027: Spoof window.navigator useragent values in JS WebWorker threads
  4430. * Bug 13016: Hide CSS -moz-osx-font-smoothing values.
  4431. * Bug 13356: Meek and other symlinks missing after complete update.
  4432. * Bug 13025: Spoof screen orientation to landscape-primary.
  4433. * Bug 13346: Disable Firefox "slow to start" warnings and recordkeeping.
  4434. * Bug 13318: Minimize number of buttons on the browser toolbar.
  4435. * Bug 10715: Enable WebGL on Windows (still click-to-play via NoScript)
  4436. * Bug 13023: Disable the gamepad API.
  4437. * Bug 13021: Prompt before allowing Canvas isPointIn*() calls.
  4438. * Bug 12460: Several cross-compilation and gitian fixes (see child tickets)
  4439. * Bug 13186: Disable DOM Performance timers
  4440. * Bug 13028: Defense-in-depth checks for OCSP/Cert validation proxy usage
  4441. Tor Browser 4.0-alpha-3 -- Sep 24 2014
  4442. * All Platforms
  4443. * Update Tor to 0.2.5.8-rc
  4444. * Update Firefox to 24.8.1esr
  4445. * Update meek to 0.11
  4446. * Update NoScript to 2.6.8.42
  4447. * Update Torbutton to 1.6.12.3
  4448. * Bug 13091: Use "Tor Browser" everywhere
  4449. * Bug 10804: Workaround fix for some cases of startup hang
  4450. * Bug 13091: Use "Tor Browser" everywhere
  4451. * Bug 13049: Browser update failure (self.update is undefined)
  4452. * Bug 13047: Updater should not send Kernel and GTK version
  4453. * Bug 12998: Prevent intermediate certs from being written to disk
  4454. * Bug 13245: Prevent non-english TBBs from upgrading to english version.
  4455. * Linux:
  4456. * Bug 9150: Make RPATH unavailable on Tor binary.
  4457. * Bug 13031: Add full RELRO protection.
  4458. Tor Browser Bundle 3.6.6 -- Sep 24 2014
  4459. * All Platforms
  4460. * Update Tor to tor-0.2.4.24
  4461. * Update Firefox to 24.8.1esr
  4462. * Update NoScript to 2.6.8.42
  4463. * Update HTTPS Everywhere to 4.0.1
  4464. * Bug 12998: Prevent intermediate certs from being written to disk
  4465. * Update Torbutton to 1.6.12.3
  4466. * Bug 13091: Use "Tor Browser" everywhere
  4467. * Bug 10804: Workaround fix for some cases of startup hang
  4468. * Linux
  4469. * Bug 9150: Make RPATH unavailable on Tor binary.
  4470. Tor Browser Bundle 4.0-alpha-2 -- Sep 2 2014
  4471. * All Platforms
  4472. * Update Firefox to 24.8.0esr
  4473. * Update NoScript to 2.6.8.39
  4474. * Update Tor Launcher to 0.2.7.0
  4475. * Bug 11405: Remove firewall prompt from wizard.
  4476. * Bug 12895: Mention @riseup.net as a valid bridge request email address
  4477. * Bug 12444: Provide feedback when “Copy Tor Log” is clicked.
  4478. * Bug 11199: Improve error messages if Tor exits unexpectedly
  4479. * Update Torbutton to 1.6.12.1
  4480. * Bug 12684: New strings for canvas image extraction message
  4481. * Bug 8940: Move RecommendedTBBVersions file to www.torproject.org
  4482. * Bug 12684: Improve Canvas image extraction permissions prompt
  4483. * Bug 7265: Only prompt for first party canvas access. Log all scripts
  4484. that attempt to extract canvas images to Browser console.
  4485. * Bug 12974: Disable NTLM and Negotiate HTTP Auth
  4486. * Bug 2874: Remove Components.* from content access (regression)
  4487. * Bug 4234: Automatic Update support (off by default)
  4488. * Bug 9881: Open popups in new tabs by default
  4489. * Meek Pluggable Transport:
  4490. * Bug 12766: Use TLSv1.0 in meek-http-helper to blend in with Firefox 24
  4491. * Windows:
  4492. * Bug 10065: Enable DEP, ASLR, and SSP hardening options
  4493. * Linux:
  4494. * Bug 12103: Adding RELRO hardening back to browser binaries.
  4495. Tor Browser Bundle 3.6.5 -- Sep 2 2014
  4496. * All Platforms
  4497. * Update Firefox to 24.8.0esr
  4498. * Update NoScript to 2.6.8.39
  4499. * Update HTTPS Everywhere to 4.0.0
  4500. * Update Torbutton to 1.6.12.1
  4501. * Bug 12684: New strings for canvas image extraction message
  4502. * Bug 8940: Move RecommendedTBBVersions file to www.torproject.org
  4503. * Bug 9531: Workaround to avoid rare hangs during New Identity
  4504. * Bug 12684: Improve Canvas image extraction permissions prompt
  4505. * Bug 7265: Only prompt for first party canvas access. Log all scripts
  4506. that attempt to extract canvas images to Browser console.
  4507. * Bug 12974: Disable NTLM and Negotiate HTTP Auth
  4508. * Bug 2874: Remove Components.* from content access (regression)
  4509. * Bug 9881: Open popups in new tabs by default
  4510. * Linux:
  4511. * Bug 12103: Adding RELRO hardening back to browser binaries.
  4512. Tor Browser Bundle 4.0-alpha-1 -- Aug 8 2014
  4513. * All Platforms
  4514. * Ticket 10935: Include the Meek Pluggable Transport (version 0.10)
  4515. * Two modes of Meek are provided: Meek over Google and Meek over Amazon
  4516. * Update Firefox to 24.7.0esr
  4517. * Update Tor to 0.2.5.6-alpha
  4518. * Update OpenSSL to 1.0.1i
  4519. * Update NoScript to 2.6.8.36
  4520. * Script permissions now apply based on URL bar
  4521. * Update HTTPS Everywhere to 5.0development.0
  4522. * Update Torbutton to 1.6.12.0
  4523. * Bug 12221: Remove obsolete Javascript components from the toggle era
  4524. * Bug 10819: Bind new third party isolation pref to Torbutton security UI
  4525. * Bug 9268: Fix some window resizing corner cases with DPI and taskbar size.
  4526. * Bug 12680: Change Torbutton URL in about dialog.
  4527. * Bug 11472: Adjust about:tor font and logo positioning to avoid overlap
  4528. * Bug 9531: Workaround to avoid rare hangs during New Identity
  4529. * Update Tor Launcher to 0.2.6.2
  4530. * Bug 11199: Improve behavior if tor exits
  4531. * Bug 12451: Add option to hide TBB's logo
  4532. * Bug 11193: Change "Tor Browser Bundle" to "Tor Browser"
  4533. * Bug 11471: Ensure text fits the initial configuration dialog
  4534. * Bug 9516: Send Tor Launcher log messages to Browser Console
  4535. * Bug 11641: Reorganize bundle directory structure to mimic Firefox
  4536. * Bug 10819: Create a preference to enable/disable third party isolation
  4537. * Backported Tor Patches:
  4538. * Bug 11200: Fix a hang during bootstrap introduced in the initial
  4539. bug11200 patch.
  4540. * Linux:
  4541. * Bug 10178: Make it easier to set an alternate Tor control port and password
  4542. * Bug 11102: Set Window Class to "Tor Browser" to aid in Desktop navigation
  4543. * Bug 12249: Don't create PT debug files anymore
  4544. Tor Browser Bundle 3.6.4 -- Aug 8 2014
  4545. * All Platforms
  4546. * Update Tor to 0.2.4.23
  4547. * Update Tor launcher to 0.2.5.6
  4548. * Bug 9516: Show Tor log in TorBrowser's Browser Console
  4549. * Update OpenSSL to 1.0.1i
  4550. * Backported Tor Patches:
  4551. * Bug 11654: Properly apply the fix for malformed bug11156 log message
  4552. * Bug 11200: Fix a hang during bootstrap introduced in the initial
  4553. bug11200 patch.
  4554. * Update NoScript to 2.6.8.36
  4555. * Update Torbutton to 1.6.11.1
  4556. * Bug 11472: Adjust about:tor font and logo positioning to avoid overlap
  4557. * Bug 12680: Fix Torbutton about url.
  4558. Tor Browser Bundle 3.6.3 -- Jul 24 2014
  4559. * All Platforms
  4560. * Update Firefox to 24.7.0esr
  4561. * Update obfsproxy to 0.2.12
  4562. * Update FTE to 0.2.17
  4563. * Update NoScript to 2.6.8.33
  4564. * Update HTTPS Everywhere to 3.5.3
  4565. * Bug 12673: Update FTE bridges
  4566. * Update Torbutton to 1.6.11.0
  4567. * Bug 12221: Remove obsolete Javascript components from the toggle era
  4568. * Bug 10819: Bind new third party isolation pref to Torbutton security UI
  4569. * Bug 9268: Fix some window resizing corner cases with DPI and taskbar size.
  4570. * Linux:
  4571. * Bug 11102: Set Window Class to "Tor Browser" to aid in Desktop navigation
  4572. * Bug 12249: Don't create PT debug files anymore
  4573. Tor Browser Bundle 3.6.2 -- Jun 9 2014
  4574. * All Platforms
  4575. * Update Firefox to 24.6.0esr
  4576. * Update OpenSSL to 1.0.1h
  4577. * Update NoScript to 2.6.8.28
  4578. * Update Tor to 0.2.4.22
  4579. * Update Tor Launcher to 0.2.5.5
  4580. * Bug 10425: Provide geoip6 file location to Tor process
  4581. * Bug 11754: Remove untranslated locales that were dropped from Transifex
  4582. * Bug 11772: Set Proxy Type menu correctly after restart
  4583. * Bug 11699: Change &amp;#160 to &#160; in UI elements
  4584. * Update Torbutton to 1.6.10.0
  4585. * Bug 11510: about:tor should not report success if tor proxy is unreachable
  4586. * Bug 11783: Avoid b.webProgress error when double-clicking on New Identity
  4587. * Bug 11722: Add hidden pref to force remote Tor check
  4588. * Bug 11763: Fix pref dialog double-click race that caused settings to be reset
  4589. * Bug 11629: Support proxies with Pluggable Transports
  4590. * Updates FTEProxy to 0.2.15
  4591. * Updates obfsproxy to 0.2.9
  4592. * Backported Tor Patches:
  4593. * Bug 11654: Fix malformed log message in bug11156 patch.
  4594. * Bug 10425: Add in Tor's geoip6 files to the bundle distribution
  4595. * Bugs 11834 and 11835: Include Pluggable Transport documentation
  4596. * Bug 9701: Prevent ClipBoardCache from writing to disk.
  4597. * Bug 12146: Make the CONNECT Host header the same as the Request-URI.
  4598. * Bug 12212: Disable deprecated webaudio API
  4599. * Bug 11253: Turn on TLS 1.1 and 1.2.
  4600. * Bug 11817: Don't send startup time information to Mozilla.
  4601. Tor Browser Bundle 3.6.1 -- May 6 2014
  4602. * All Platforms
  4603. * Update HTTPS-Everywhere to 3.5.1
  4604. * Update NoScript to 2.6.8.22
  4605. * Bug 11658: Fix proxy configuration for non-Pluggable Transports users
  4606. * Backport Pending Tor Patches:
  4607. * Bug 8402: Allow Tor proxy configuration while PTs are present
  4608. * Note: The Pluggable Transports themselves have not been updated to
  4609. support proxy configuration yet.
  4610. Tor Browser Bundle 3.6 -- Apr 29 2014
  4611. * All Platforms
  4612. * Update Firefox to 24.5.0esr
  4613. * Update Tor Launcher to 0.2.5.4
  4614. * Bug #11482: Hide bridge settings prompt if no default bridges.
  4615. * Bug #11484: Show help button even if no default bridges.
  4616. * Update Torbutton to 1.6.9.0
  4617. * Bug 7439: Improve download warning dialog text.
  4618. * Bug 11384: Completely remove hidden toggle menu item.
  4619. * Update NoScript to 2.6.8.20
  4620. * Update fte transport to 0.2.13
  4621. * Backport Pending Tor Patches:
  4622. * Bug 11156: Additional obfsproxy startup error message fixes
  4623. * Bug 11586: Include license files for component software in Docs directory.
  4624. * Windows and Mac:
  4625. * Bug 9308: Prevent install path from leaking in some JS exceptions
  4626. on Mac and Windows builds
  4627. Tor Browser Bundle 3.6-beta-2 -- Apr 8 2014
  4628. * All Platforms
  4629. * Update OpenSSL to 1.0.1g
  4630. * Bug 9010: Add Turkish language support.
  4631. * Bug 9387 testing: Disable JS JIT, type inference, asmjs, and ion.
  4632. * Update fte transport to 0.2.12
  4633. * Update NoScript to 2.6.8.19
  4634. * Update Torbutton to 1.6.8.1
  4635. * Bug 11242: Fix improper "update needed" message after in-place upgrade.
  4636. * Bug 10398: Ease translation of about:tor page elements
  4637. * Update Tor Launcher to 0.2.5.3
  4638. * Bug 9665: Localize Tor's unreachable bridges bootstrap error
  4639. * Backport Pending Tor Patches:
  4640. * Bug 9665: Report a bootstrap error if all bridges are unreachable
  4641. * Bug 11200: Prevent spurious error message prior to enabling network.
  4642. * Linux:
  4643. * Bug 11190: Switch linux PT build process to python2
  4644. * Bug 10383: Enable NIST P224 and P256 accel support for 64bit builds.
  4645. * Windows:
  4646. * Bug 11286: Fix fte transport launch error
  4647. Tor Browser Bundle 3.5.4 -- Apr 7 2014
  4648. * All Platforms
  4649. * Update OpenSSL to 1.0.1g
  4650. Tor Browser Bundle 3.5.3 -- Mar 19 2014
  4651. * All Platforms
  4652. * Update Firefox to 24.4.0esr
  4653. * Update Torbutton to 1.6.7.0:
  4654. * Bug 9901: Fix browser freeze due to content type sniffing
  4655. * Bug 10611: Add Swedish (sv) to extra locales to update
  4656. * Update NoScript to 2.6.8.17
  4657. * Update Tor to 0.2.4.21
  4658. * Bug 10237: Disable the media cache to prevent disk leaks for videos
  4659. * Bug 10703: Force the default charset to avoid locale fingerprinting
  4660. * Bug 10104: Update gitian to fix LXC build issues (for non-KVM/VT builders)
  4661. * Linux:
  4662. * Bug 9353: Fix keyboard input on Ubuntu 13.10
  4663. * Bug 9896: Provide debug symbols for Tor Browser binary
  4664. * Bug 10472: Pass arguments to the browser from Linux startup script
  4665. Tor Browser Bundle 3.6-beta-1 -- Mar 17 2014
  4666. * All Platforms
  4667. * Update Firefox to 24.4.0esr
  4668. * Include Pluggable Transports by default:
  4669. * Obfsproxy3 0.2.4, Flashproxy 1.6, and FTE 0.2.6 are now included
  4670. * Update Tor Launcher to 0.2.5.1
  4671. * Bug 10418: Provide UI configuration for Pluggable Transports
  4672. * Bug 10604: Allow Tor status & error messages to be translated
  4673. * Bug 10894: Make bridge UI clear that helpdesk is a last resort for
  4674. bridges
  4675. * Bug 10610: Clarify wizard UI text describing obstacles/blocking
  4676. * Bug 11074: Support Tails use case (XULRunner and optional
  4677. customizations)
  4678. * Update Torbutton to 1.6.7.0:
  4679. * Bug 9901: Fix browser freeze due to content type sniffing
  4680. * Bug 10611: Add Swedish (sv) to extra locales to update
  4681. * Update NoScript to 2.6.8.17
  4682. * Update Tor to 0.2.4.21
  4683. * Backport Pending Tor Patches:
  4684. * Bug 5018: Don't launch Pluggable Transport helpers if not in use
  4685. * Bug 9229: Eliminate 60 second stall during bootstrap with some PTs
  4686. * Bug 11069: Detect and report Pluggable Transport bootstrap failures
  4687. * Bug 11156: Prevent spurious warning about missing pluggable transports
  4688. * Bug 10237: Disable the media cache to prevent disk leaks for videos
  4689. * Bug 10703: Force the default charset to avoid locale fingerprinting
  4690. * Bug 10104: Update gitian to fix LXC build issues (for non-KVM/VT builders)
  4691. * Mac:
  4692. * Bug 4261: Use DMG instead of ZIP for Mac packages
  4693. * Linux:
  4694. * Bug 9353: Fix keyboard input on Ubuntu 13.10
  4695. * Bug 9896: Provide debug symbols for Tor Browser binary
  4696. * Bug 10472: Pass arguments to the browser from Linux startup script
  4697. Tor Browser Bundle 3.5.2.1 -- Feb 14 2014
  4698. * All Platforms
  4699. * Bug 10895: Fix broken localized bundles
  4700. * Windows:
  4701. * Bug 10323: Remove unneeded gcc/libstdc++ libraries from dist
  4702. Tor Browser Bundle 3.5.2 -- Feb 8 2014
  4703. * All Platforms
  4704. * Rebase Tor Browser to Firefox 24.3.0ESR
  4705. * Bug 10419: Block content window connections to localhost
  4706. * Update Torbutton to 1.6.6.0
  4707. * Bug 10800: Prevent findbox exception and popup in New Identity
  4708. * Bug 10640: Fix about:tor's update pointer position for RTL languages.
  4709. * Bug 10095: Fix some cases where resolution is not a multiple of 200x100
  4710. * Bug 10374: Clear site permissions on New Identity
  4711. * Bug 9738: Fix for auto-maximizing on browser start
  4712. * Bug 10682: Workaround to really disable updates for Torbutton
  4713. * Bug 10419: Don't allow connections to localhost if Torbutton is toggled
  4714. * Bug 10140: Move Japanese to extra locales (not part of TBB dist)
  4715. * Bug 10687: Add Basque (eu) to extra locales (not part of TBB dist)
  4716. * Update Tor Launcher to 0.2.4.4
  4717. * Bug 10682: Workaround to really disable updates for Tor Launcher
  4718. * Update NoScript to 2.6.8.13
  4719. Tor Browser Bundle 3.5.1 -- Jan 22 2014
  4720. * All Platforms
  4721. * Bug 10447: Remove SocksListenAddress to allow multiple socks ports.
  4722. * Bug 10464: Remove addons.mozilla.org from NoScript whitelist
  4723. * Bug 10537: Build an Arabic version of TBB 3.5
  4724. * Update Torbutton to 1.6.5.5
  4725. * Bug 9486: Clear NoScript Temporary Permissions on New Identity
  4726. * Include Arabic translations
  4727. * Update Tor Launcher to 0.2.4.3
  4728. * Include Arabic translations
  4729. * Update Tor to 0.2.4.20
  4730. * Update OpenSSL to 1.0.1f
  4731. * Update NoScript to 2.6.8.12
  4732. * Update HTTPS-Everywhere to 3.4.5
  4733. * Windows
  4734. * Bug 9259: Enable Accessibility (screen reader) support
  4735. * Mac
  4736. * misc: Update bundle version field in Info.plist (for MacUpdates service)
  4737. Tor Browser Bundle 3.5 -- Dec 17 2013
  4738. * All Platforms
  4739. * Update Tor to 0.2.4.19
  4740. * Update Tor Launcher to 0.2.4.2
  4741. * Bug 10382: Fix a Tor Launcher hang on TBB exit
  4742. * Update Torbutton to 1.6.5.2
  4743. * Misc: Switch update download URL back to download-easy
  4744. Tor Browser Bundle 3.5rc1 -- Dec 12 2013
  4745. * All Platforms
  4746. * Update Firefox to 24.2.0esr
  4747. * Update NoScript to 2.6.8.7
  4748. * Update HTTPS-Everywhere to 3.4.4tbb (special TBB tag)
  4749. * Tag includes a patch to handle enabling/disabling Mixed Content Blocking
  4750. * Bug 5060: Disable health report service
  4751. * Bug 10367: Disable prompting about health report and Mozilla Sync
  4752. * Misc Prefs: Disable HTTPS-Everywhere first-run tooltips
  4753. * Misc Prefs: Disable layer acceleration to avoid crashes on Windows
  4754. * Misc Prefs: Disable Mixed Content Blocker pending backport of Mozilla Bug 878890
  4755. * Update Tor Launcher to 0.2.4.1
  4756. * Bug 10147: Adblock Plus interferes w/Tor Launcher dialog
  4757. * Bug 10201: FF ESR 24 hangs during exit on Mac OS
  4758. * Bug 9984: Support running Tor Launcher from InstantBird
  4759. * Misc: Support browser directory location API changes in Firefox 24
  4760. * Update Torbutton to 1.6.5.1
  4761. * Bug 10352: Clear FF24 Private Browsing Mode data during New Identity
  4762. * Bug 8167: Update cache isolation for FF24 API changes
  4763. * Bug 10201: FF ESR 24 hangs during exit on Mac OS
  4764. * Bug 10078: Properly clear crypto tokens during New Identity on FF24
  4765. * Bug 9454: Support changes to Private Browsing Mode and plugin APIs in FF24
  4766. * Linux
  4767. * Bug 10213; Use LD_LIBRARY_PATH (fixes launch issues on old Linux distros)
  4768. Tor Browser Bundle 3.0rc1 -- Nov 21 2013
  4769. * All Platforms:
  4770. * Update Firefox to 17.0.11esr
  4771. * Update Tor to 0.2.4.18-rc
  4772. * Remove unsupported PDF.JS addon from the bundle
  4773. * Bug #7277: TBB's Tor client will now omit its timestamp in the TLS handshake.
  4774. * Update Torbutton to 1.6.4.1
  4775. * Bug #10002: Make the TBB3.0 blog tag our update download URL for now
  4776. * Windows
  4777. * Bug #10102: Patch binutils to remove nondeterministic bytes in compiled binaries
  4778. * Linux
  4779. * Bug #10049: Fix architecture check to work from outside TBB's directory
  4780. * Bug #10126: Remove libz and firefox-bin, and strip unstripped binaries
  4781. * Misc: Disable Firefox updater during compile time (in addition to pref)
  4782. Tor Browser Bundle 3.0beta1 -- Oct 31 2013
  4783. * All Platforms:
  4784. * Update Firefox to 17.0.10esr
  4785. * Update NoScript to 2.6.8.2
  4786. * Update HTTPS-Everywhere to 3.4.2
  4787. * Bug #9114: Reorganize the bundle directory structure to ease future
  4788. autoupdates
  4789. * Bug #9173: Patch Tor Browser to auto-detect profile directory if
  4790. launched without the wrapper script.
  4791. * Bug #9012: Hide Tor Browser infobar for missing plugins.
  4792. * Bug #8364: Change the default entry page for the addons tab to the
  4793. installed addons page.
  4794. * Bug #9867: Make flash objects really be click-to-play if flash is enabled.
  4795. * Bug #8292: Make getFirstPartyURI log+handle errors internally to simplify
  4796. caller usage of the API
  4797. * Bug #3661: Remove polipo and privoxy from the banned ports list.
  4798. * misc: Fix a potential memory leak in the Image Cache isolation
  4799. * misc: Fix a potential crash if OS theme information is ever absent
  4800. * Update Tor-Launcher to 0.2.3.1-beta
  4801. * Bug #9114: Handle new directory structure
  4802. * misc: Tor Launcher now supports Thunderbird
  4803. * Update Torbutton to 1.6.4
  4804. * Bug #9224: Support multiple Tor socks ports for about:tor status check
  4805. * Bug #9587: Add TBB version number to about:tor
  4806. * Bug #9144: Workaround to handle missing translation properties
  4807. * Windows:
  4808. * Bug #9084: Fix startup crash on Windows XP.
  4809. * Linux:
  4810. * Bug #9487: Create detached debuginfo files for Linux Tor and Tor
  4811. Browser binaries.
  4812. Tor Browser Bundle 3.0alpha4 -- Sep 24 2013
  4813. * All Platforms:
  4814. * Bug #8751: Randomize TLS HELLO timestamp in HTTPS connections
  4815. * Bug #9790 (workaround): Temporarily re-enable JS-Ctypes for cache
  4816. isolation and SSL Observatory
  4817. * Update Firefox to 17.0.9esr
  4818. * Update Tor to 0.2.4.17-rc
  4819. * Update NoScript to 2.6.7.1
  4820. * Update Tor-Launcher to 0.2.2-alpha
  4821. * Bug #9675: Provide feedback mechanism for clock-skew and other early
  4822. startup issues
  4823. * Bug #9445: Allow user to enter bridges with or without 'bridge' keyword
  4824. * Bug #9593: Use UTF16 for Tor process launch to handle unicode paths.
  4825. * misc: Detect when Tor exits and display appropriate notification
  4826. * Update Torbutton to 1.6.2.1
  4827. * Bug 9492: Fix Torbutton logo on OSX and Windows (and related
  4828. initialization code)
  4829. * Bug 8839: Disable Google/Startpage search filters using Tor-specific urls
  4830. Tor Browser Bundle 3.0alpha3 -- Aug 01 2013
  4831. * All Platforms:
  4832. * Update Firefox to 17.0.8esr
  4833. * Update Tor to 0.2.4.15-rc
  4834. * Update HTTPS-Everywhere to 3.3.1
  4835. * Update NoScript to 2.6.6.9
  4836. * Improve build input fetching and authentication
  4837. * Bug #9283: Update NoScript prefs for usability.
  4838. * Bug #6152 (partial): Disable JSCtypes support at compile time
  4839. * Update Torbutton to 1.6.1
  4840. * Bug 8478: Change when window resize code fires to avoid rounding errors
  4841. * Bug 9331: Hack an update URL for the next TBB release
  4842. * Bug 9144: Change an aboutTor.dtd string so transifex will accept it
  4843. * Update Tor-Launcher to 0.2.1-alpha
  4844. * Bug #9128: Remove dependency on JSCtypes
  4845. * Windows
  4846. * Bug #9195: Disable download manager AV scanning (to prevent cloud
  4847. reporting+scanning of downloaded files)
  4848. * Mac:
  4849. * Bug #9173 (partial): Launch firefox-bin on MacOS instead of TorBrowser.app
  4850. (improves dock behavior).
  4851. Tor Browser Bundle 3.0alpha2 -- June 27 2013
  4852. * All Platforms:
  4853. * Update Firefox to 17.0.7esr
  4854. * Update Tor to 0.2.4.14-alpha
  4855. * Include Tor's GeoIP file
  4856. * This should fix custom torrc issues with country-based node
  4857. restrictions
  4858. * Fix several build determinism issues
  4859. * Include ChangeLog in bundles.
  4860. * Linux:
  4861. * Use Ubuntu's 'hardening-wrapper' to build our Linux binaries
  4862. * Windows:
  4863. * Fix many crash issues by disabling Direct2D support for now.
  4864. * Mac:
  4865. * Bug 8987: Disable TBB's 'Saved Application State' disk records on OSX 10.7+
  4866. Tor Browser Bundle 3.0alpha1 -- June 17 2013
  4867. * All Platforms:
  4868. * Remove Vidalia; Use the new Tor Launcher Firefox Addon instead
  4869. * Update Torbutton to 1.6.0
  4870. * bug 7494: Create a local home page for TBB as about:tor
  4871. * misc: Perform a control port test of proper Tor configuration by default.
  4872. Only use https://check.torproject.org if the control port is
  4873. unavailable.
  4874. * misc: Add an icon menu option for Tor Launcher's Network Settings
  4875. * misc: Add branding string overrides (primarily controls browser name and
  4876. homepage)
  4877. * Update HTTPS-Everywhere to 3.2.2
  4878. * Update NoScript to 2.6.6.6
  4879. * Update PDF.JS to 0.8.1
  4880. * Windows:
  4881. * Use MinGW-w64 (via Gitian) to cross-compile the bundles from Ubuntu
  4882. * Use TBB-Windows-Installer to guide Windows users through TBB extraction
  4883. * Temporarily disable WebGL and Accessibility support due to minor MinGW
  4884. issues
  4885. * Mac:
  4886. * Use 'Toolchain4' fork by Ray Donnelley to cross-compile the bundles from
  4887. Ubuntu