CHANGES 321 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198
  1. Changes with nginx 1.26.3 05 Feb 2025
  2. *) Security: insufficient check in virtual servers handling with TLSv1.3
  3. SNI allowed to reuse SSL sessions in a different virtual server, to
  4. bypass client SSL certificates verification (CVE-2025-23419).
  5. *) Bugfix: in the ngx_http_mp4_module.
  6. Thanks to Nils Bars.
  7. *) Workaround: "gzip filter failed to use preallocated memory" alerts
  8. appeared in logs when using zlib-ng.
  9. *) Bugfix: nginx could not build libatomic library using the library
  10. sources if the --with-libatomic=DIR option was used.
  11. *) Bugfix: nginx now ignores QUIC version negotiation packets from
  12. clients.
  13. *) Bugfix: nginx could not be built on Solaris 10 and earlier with the
  14. ngx_http_v3_module.
  15. *) Bugfixes in HTTP/3.
  16. Changes with nginx 1.26.2 14 Aug 2024
  17. *) Security: processing of a specially crafted mp4 file by the
  18. ngx_http_mp4_module might cause a worker process crash
  19. (CVE-2024-7347).
  20. Thanks to Nils Bars.
  21. Changes with nginx 1.26.1 29 May 2024
  22. *) Security: when using HTTP/3, processing of a specially crafted QUIC
  23. session might cause a worker process crash, worker process memory
  24. disclosure on systems with MTU larger than 4096 bytes, or might have
  25. potential other impact (CVE-2024-32760, CVE-2024-31079,
  26. CVE-2024-35200, CVE-2024-34161).
  27. Thanks to Nils Bars of CISPA.
  28. *) Bugfix: reduced memory consumption for long-lived requests if "gzip",
  29. "gunzip", "ssi", "sub_filter", or "grpc_pass" directives are used.
  30. *) Bugfix: nginx could not be built by gcc 14 if the --with-libatomic
  31. option was used.
  32. Thanks to Edgar Bonet.
  33. *) Bugfix: in HTTP/3.
  34. Changes with nginx 1.26.0 23 Apr 2024
  35. *) 1.26.x stable branch.
  36. Changes with nginx 1.25.5 16 Apr 2024
  37. *) Feature: virtual servers in the stream module.
  38. *) Feature: the ngx_stream_pass_module.
  39. *) Feature: the "deferred", "accept_filter", and "setfib" parameters of
  40. the "listen" directive in the stream module.
  41. *) Feature: cache line size detection for some architectures.
  42. Thanks to Piotr Sikora.
  43. *) Feature: support for Homebrew on Apple Silicon.
  44. Thanks to Piotr Sikora.
  45. *) Bugfix: Windows cross-compilation bugfixes and improvements.
  46. Thanks to Piotr Sikora.
  47. *) Bugfix: unexpected connection closure while using 0-RTT in QUIC.
  48. Thanks to Vladimir Khomutov.
  49. Changes with nginx 1.25.4 14 Feb 2024
  50. *) Security: when using HTTP/3 a segmentation fault might occur in a
  51. worker process while processing a specially crafted QUIC session
  52. (CVE-2024-24989, CVE-2024-24990).
  53. *) Bugfix: connections with pending AIO operations might be closed
  54. prematurely during graceful shutdown of old worker processes.
  55. *) Bugfix: socket leak alerts no longer logged when fast shutdown was
  56. requested after graceful shutdown of old worker processes.
  57. *) Bugfix: a socket descriptor error, a socket leak, or a segmentation
  58. fault in a worker process (for SSL proxying) might occur if AIO was
  59. used in a subrequest.
  60. *) Bugfix: a segmentation fault might occur in a worker process if SSL
  61. proxying was used along with the "image_filter" directive and errors
  62. with code 415 were redirected with the "error_page" directive.
  63. *) Bugfixes and improvements in HTTP/3.
  64. Changes with nginx 1.25.3 24 Oct 2023
  65. *) Change: improved detection of misbehaving clients when using HTTP/2.
  66. *) Feature: startup speedup when using a large number of locations.
  67. Thanks to Yusuke Nojima.
  68. *) Bugfix: a segmentation fault might occur in a worker process when
  69. using HTTP/2 without SSL; the bug had appeared in 1.25.1.
  70. *) Bugfix: the "Status" backend response header line with an empty
  71. reason phrase was handled incorrectly.
  72. *) Bugfix: memory leak during reconfiguration when using the PCRE2
  73. library.
  74. Thanks to ZhenZhong Wu.
  75. *) Bugfixes and improvements in HTTP/3.
  76. Changes with nginx 1.25.2 15 Aug 2023
  77. *) Feature: path MTU discovery when using HTTP/3.
  78. *) Feature: TLS_AES_128_CCM_SHA256 cipher suite support when using
  79. HTTP/3.
  80. *) Change: now nginx uses appname "nginx" when loading OpenSSL
  81. configuration.
  82. *) Change: now nginx does not try to load OpenSSL configuration if the
  83. --with-openssl option was used to built OpenSSL and the OPENSSL_CONF
  84. environment variable is not set.
  85. *) Bugfix: in the $body_bytes_sent variable when using HTTP/3.
  86. *) Bugfix: in HTTP/3.
  87. Changes with nginx 1.25.1 13 Jun 2023
  88. *) Feature: the "http2" directive, which enables HTTP/2 on a per-server
  89. basis; the "http2" parameter of the "listen" directive is now
  90. deprecated.
  91. *) Change: HTTP/2 server push support has been removed.
  92. *) Change: the deprecated "ssl" directive is not supported anymore.
  93. *) Bugfix: in HTTP/3 when using OpenSSL.
  94. Changes with nginx 1.25.0 23 May 2023
  95. *) Feature: experimental HTTP/3 support.
  96. Changes with nginx 1.23.4 28 Mar 2023
  97. *) Change: now TLSv1.3 protocol is enabled by default.
  98. *) Change: now nginx issues a warning if protocol parameters of a
  99. listening socket are redefined.
  100. *) Change: now nginx closes connections with lingering if pipelining was
  101. used by the client.
  102. *) Feature: byte ranges support in the ngx_http_gzip_static_module.
  103. *) Bugfix: port ranges in the "listen" directive did not work; the bug
  104. had appeared in 1.23.3.
  105. Thanks to Valentin Bartenev.
  106. *) Bugfix: incorrect location might be chosen to process a request if a
  107. prefix location longer than 255 characters was used in the
  108. configuration.
  109. *) Bugfix: non-ASCII characters in file names on Windows were not
  110. supported by the ngx_http_autoindex_module, the ngx_http_dav_module,
  111. and the "include" directive.
  112. *) Change: the logging level of the "data length too long", "length too
  113. short", "bad legacy version", "no shared signature algorithms", "bad
  114. digest length", "missing sigalgs extension", "encrypted length too
  115. long", "bad length", "bad key update", "mixed handshake and non
  116. handshake data", "ccs received early", "data between ccs and
  117. finished", "packet length too long", "too many warn alerts", "record
  118. too small", and "got a fin before a ccs" SSL errors has been lowered
  119. from "crit" to "info".
  120. *) Bugfix: a socket leak might occur when using HTTP/2 and the
  121. "error_page" directive to redirect errors with code 400.
  122. *) Bugfix: messages about logging to syslog errors did not contain
  123. information that the errors happened while logging to syslog.
  124. Thanks to Safar Safarly.
  125. *) Workaround: "gzip filter failed to use preallocated memory" alerts
  126. appeared in logs when using zlib-ng.
  127. *) Bugfix: in the mail proxy server.
  128. Changes with nginx 1.23.3 13 Dec 2022
  129. *) Bugfix: an error might occur when reading PROXY protocol version 2
  130. header with large number of TLVs.
  131. *) Bugfix: a segmentation fault might occur in a worker process if SSI
  132. was used to process subrequests created by other modules.
  133. Thanks to Ciel Zhao.
  134. *) Workaround: when a hostname used in the "listen" directive resolves
  135. to multiple addresses, nginx now ignores duplicates within these
  136. addresses.
  137. *) Bugfix: nginx might hog CPU during unbuffered proxying if SSL
  138. connections to backends were used.
  139. Changes with nginx 1.23.2 19 Oct 2022
  140. *) Security: processing of a specially crafted mp4 file by the
  141. ngx_http_mp4_module might cause a worker process crash, worker
  142. process memory disclosure, or might have potential other impact
  143. (CVE-2022-41741, CVE-2022-41742).
  144. *) Feature: the "$proxy_protocol_tlv_..." variables.
  145. *) Feature: TLS session tickets encryption keys are now automatically
  146. rotated when using shared memory in the "ssl_session_cache"
  147. directive.
  148. *) Change: the logging level of the "bad record type" SSL errors has
  149. been lowered from "crit" to "info".
  150. Thanks to Murilo Andrade.
  151. *) Change: now when using shared memory in the "ssl_session_cache"
  152. directive the "could not allocate new session" errors are logged at
  153. the "warn" level instead of "alert" and not more often than once per
  154. second.
  155. *) Bugfix: nginx/Windows could not be built with OpenSSL 3.0.x.
  156. *) Bugfix: in logging of the PROXY protocol errors.
  157. Thanks to Sergey Brester.
  158. *) Workaround: shared memory from the "ssl_session_cache" directive was
  159. spent on sessions using TLS session tickets when using TLSv1.3 with
  160. OpenSSL.
  161. *) Workaround: timeout specified with the "ssl_session_timeout"
  162. directive did not work when using TLSv1.3 with OpenSSL or BoringSSL.
  163. Changes with nginx 1.23.1 19 Jul 2022
  164. *) Feature: memory usage optimization in configurations with SSL
  165. proxying.
  166. *) Feature: looking up of IPv4 addresses while resolving now can be
  167. disabled with the "ipv4=off" parameter of the "resolver" directive.
  168. *) Change: the logging level of the "bad key share", "bad extension",
  169. "bad cipher", and "bad ecpoint" SSL errors has been lowered from
  170. "crit" to "info".
  171. *) Bugfix: while returning byte ranges nginx did not remove the
  172. "Content-Range" header line if it was present in the original backend
  173. response.
  174. *) Bugfix: a proxied response might be truncated during reconfiguration
  175. on Linux; the bug had appeared in 1.17.5.
  176. Changes with nginx 1.23.0 21 Jun 2022
  177. *) Change in internal API: now header lines are represented as linked
  178. lists.
  179. *) Change: now nginx combines arbitrary header lines with identical
  180. names when sending to FastCGI, SCGI, and uwsgi backends, in the
  181. $r->header_in() method of the ngx_http_perl_module, and during lookup
  182. of the "$http_...", "$sent_http_...", "$sent_trailer_...",
  183. "$upstream_http_...", and "$upstream_trailer_..." variables.
  184. *) Bugfix: if there were multiple "Vary" header lines in the backend
  185. response, nginx only used the last of them when caching.
  186. *) Bugfix: if there were multiple "WWW-Authenticate" header lines in the
  187. backend response and errors with code 401 were intercepted or the
  188. "auth_request" directive was used, nginx only sent the first of the
  189. header lines to the client.
  190. *) Change: the logging level of the "application data after close
  191. notify" SSL errors has been lowered from "crit" to "info".
  192. *) Bugfix: connections might hang if nginx was built on Linux 2.6.17 or
  193. newer, but was used on systems without EPOLLRDHUP support, notably
  194. with epoll emulation layers; the bug had appeared in 1.17.5.
  195. Thanks to Marcus Ball.
  196. *) Bugfix: nginx did not cache the response if the "Expires" response
  197. header line disabled caching, but following "Cache-Control" header
  198. line enabled caching.
  199. Changes with nginx 1.21.6 25 Jan 2022
  200. *) Bugfix: when using EPOLLEXCLUSIVE on Linux client connections were
  201. unevenly distributed among worker processes.
  202. *) Bugfix: nginx returned the "Connection: keep-alive" header line in
  203. responses during graceful shutdown of old worker processes.
  204. *) Bugfix: in the "ssl_session_ticket_key" when using TLSv1.3.
  205. Changes with nginx 1.21.5 28 Dec 2021
  206. *) Change: now nginx is built with the PCRE2 library by default.
  207. *) Change: now nginx always uses sendfile(SF_NODISKIO) on FreeBSD.
  208. *) Feature: support for sendfile(SF_NOCACHE) on FreeBSD.
  209. *) Feature: the $ssl_curve variable.
  210. *) Bugfix: connections might hang when using HTTP/2 without SSL with the
  211. "sendfile" and "aio" directives.
  212. Changes with nginx 1.21.4 02 Nov 2021
  213. *) Change: support for NPN instead of ALPN to establish HTTP/2
  214. connections has been removed.
  215. *) Change: now nginx rejects SSL connections if ALPN is used by the
  216. client, but no supported protocols can be negotiated.
  217. *) Change: the default value of the "sendfile_max_chunk" directive was
  218. changed to 2 megabytes.
  219. *) Feature: the "proxy_half_close" directive in the stream module.
  220. *) Feature: the "ssl_alpn" directive in the stream module.
  221. *) Feature: the $ssl_alpn_protocol variable.
  222. *) Feature: support for SSL_sendfile() when using OpenSSL 3.0.
  223. *) Feature: the "mp4_start_key_frame" directive in the
  224. ngx_http_mp4_module.
  225. Thanks to Tracey Jaquith.
  226. *) Bugfix: in the $content_length variable when using chunked transfer
  227. encoding.
  228. *) Bugfix: after receiving a response with incorrect length from a
  229. proxied backend nginx might nevertheless cache the connection.
  230. Thanks to Awdhesh Mathpal.
  231. *) Bugfix: invalid headers from backends were logged at the "info" level
  232. instead of "error"; the bug had appeared in 1.21.1.
  233. *) Bugfix: requests might hang when using HTTP/2 and the "aio_write"
  234. directive.
  235. Changes with nginx 1.21.3 07 Sep 2021
  236. *) Change: optimization of client request body reading when using
  237. HTTP/2.
  238. *) Bugfix: in request body filters internal API when using HTTP/2 and
  239. buffering of the data being processed.
  240. Changes with nginx 1.21.2 31 Aug 2021
  241. *) Change: now nginx rejects HTTP/1.0 requests with the
  242. "Transfer-Encoding" header line.
  243. *) Change: export ciphers are no longer supported.
  244. *) Feature: OpenSSL 3.0 compatibility.
  245. *) Feature: the "Auth-SSL-Protocol" and "Auth-SSL-Cipher" header lines
  246. are now passed to the mail proxy authentication server.
  247. Thanks to Rob Mueller.
  248. *) Feature: request body filters API now permits buffering of the data
  249. being processed.
  250. *) Bugfix: backend SSL connections in the stream module might hang after
  251. an SSL handshake.
  252. *) Bugfix: the security level, which is available in OpenSSL 1.1.0 or
  253. newer, did not affect loading of the server certificates when set
  254. with "@SECLEVEL=N" in the "ssl_ciphers" directive.
  255. *) Bugfix: SSL connections with gRPC backends might hang if select,
  256. poll, or /dev/poll methods were used.
  257. *) Bugfix: when using HTTP/2 client request body was always written to
  258. disk if the "Content-Length" header line was not present in the
  259. request.
  260. Changes with nginx 1.21.1 06 Jul 2021
  261. *) Change: now nginx always returns an error for the CONNECT method.
  262. *) Change: now nginx always returns an error if both "Content-Length"
  263. and "Transfer-Encoding" header lines are present in the request.
  264. *) Change: now nginx always returns an error if spaces or control
  265. characters are used in the request line.
  266. *) Change: now nginx always returns an error if spaces or control
  267. characters are used in a header name.
  268. *) Change: now nginx always returns an error if spaces or control
  269. characters are used in the "Host" request header line.
  270. *) Change: optimization of configuration testing when using many
  271. listening sockets.
  272. *) Bugfix: nginx did not escape """, "<", ">", "\", "^", "`", "{", "|",
  273. and "}" characters when proxying with changed URI.
  274. *) Bugfix: SSL variables might be empty when used in logs; the bug had
  275. appeared in 1.19.5.
  276. *) Bugfix: keepalive connections with gRPC backends might not be closed
  277. after receiving a GOAWAY frame.
  278. *) Bugfix: reduced memory consumption for long-lived requests when
  279. proxying with more than 64 buffers.
  280. Changes with nginx 1.21.0 25 May 2021
  281. *) Security: 1-byte memory overwrite might occur during DNS server
  282. response processing if the "resolver" directive was used, allowing an
  283. attacker who is able to forge UDP packets from the DNS server to
  284. cause worker process crash or, potentially, arbitrary code execution
  285. (CVE-2021-23017).
  286. *) Feature: variables support in the "proxy_ssl_certificate",
  287. "proxy_ssl_certificate_key" "grpc_ssl_certificate",
  288. "grpc_ssl_certificate_key", "uwsgi_ssl_certificate", and
  289. "uwsgi_ssl_certificate_key" directives.
  290. *) Feature: the "max_errors" directive in the mail proxy module.
  291. *) Feature: the mail proxy module supports POP3 and IMAP pipelining.
  292. *) Feature: the "fastopen" parameter of the "listen" directive in the
  293. stream module.
  294. Thanks to Anbang Wen.
  295. *) Bugfix: special characters were not escaped during automatic redirect
  296. with appended trailing slash.
  297. *) Bugfix: connections with clients in the mail proxy module might be
  298. closed unexpectedly when using SMTP pipelining.
  299. Changes with nginx 1.19.10 13 Apr 2021
  300. *) Change: the default value of the "keepalive_requests" directive was
  301. changed to 1000.
  302. *) Feature: the "keepalive_time" directive.
  303. *) Feature: the $connection_time variable.
  304. *) Workaround: "gzip filter failed to use preallocated memory" alerts
  305. appeared in logs when using zlib-ng.
  306. Changes with nginx 1.19.9 30 Mar 2021
  307. *) Bugfix: nginx could not be built with the mail proxy module, but
  308. without the ngx_mail_ssl_module; the bug had appeared in 1.19.8.
  309. *) Bugfix: "upstream sent response body larger than indicated content
  310. length" errors might occur when working with gRPC backends; the bug
  311. had appeared in 1.19.1.
  312. *) Bugfix: nginx might not close a connection till keepalive timeout
  313. expiration if the connection was closed by the client while
  314. discarding the request body.
  315. *) Bugfix: nginx might not detect that a connection was already closed
  316. by the client when waiting for auth_delay or limit_req delay, or when
  317. working with backends.
  318. *) Bugfix: in the eventport method.
  319. Changes with nginx 1.19.8 09 Mar 2021
  320. *) Feature: flags in the "proxy_cookie_flags" directive can now contain
  321. variables.
  322. *) Feature: the "proxy_protocol" parameter of the "listen" directive,
  323. the "proxy_protocol" and "set_real_ip_from" directives in mail proxy.
  324. *) Bugfix: HTTP/2 connections were immediately closed when using
  325. "keepalive_timeout 0"; the bug had appeared in 1.19.7.
  326. *) Bugfix: some errors were logged as unknown if nginx was built with
  327. glibc 2.32.
  328. *) Bugfix: in the eventport method.
  329. Changes with nginx 1.19.7 16 Feb 2021
  330. *) Change: connections handling in HTTP/2 has been changed to better
  331. match HTTP/1.x; the "http2_recv_timeout", "http2_idle_timeout", and
  332. "http2_max_requests" directives have been removed, the
  333. "keepalive_timeout" and "keepalive_requests" directives should be
  334. used instead.
  335. *) Change: the "http2_max_field_size" and "http2_max_header_size"
  336. directives have been removed, the "large_client_header_buffers"
  337. directive should be used instead.
  338. *) Feature: now, if free worker connections are exhausted, nginx starts
  339. closing not only keepalive connections, but also connections in
  340. lingering close.
  341. *) Bugfix: "zero size buf in output" alerts might appear in logs if an
  342. upstream server returned an incorrect response during unbuffered
  343. proxying; the bug had appeared in 1.19.1.
  344. *) Bugfix: HEAD requests were handled incorrectly if the "return"
  345. directive was used with the "image_filter" or "xslt_stylesheet"
  346. directives.
  347. *) Bugfix: in the "add_trailer" directive.
  348. Changes with nginx 1.19.6 15 Dec 2020
  349. *) Bugfix: "no live upstreams" errors if a "server" inside "upstream"
  350. block was marked as "down".
  351. *) Bugfix: a segmentation fault might occur in a worker process if HTTPS
  352. was used; the bug had appeared in 1.19.5.
  353. *) Bugfix: nginx returned the 400 response on requests like
  354. "GET http://example.com?args HTTP/1.0".
  355. *) Bugfix: in the ngx_http_flv_module and ngx_http_mp4_module.
  356. Thanks to Chris Newton.
  357. Changes with nginx 1.19.5 24 Nov 2020
  358. *) Feature: the -e switch.
  359. *) Feature: the same source files can now be specified in different
  360. modules while building addon modules.
  361. *) Bugfix: SSL shutdown did not work when lingering close was used.
  362. *) Bugfix: "upstream sent frame for closed stream" errors might occur
  363. when working with gRPC backends.
  364. *) Bugfix: in request body filters internal API.
  365. Changes with nginx 1.19.4 27 Oct 2020
  366. *) Feature: the "ssl_conf_command", "proxy_ssl_conf_command",
  367. "grpc_ssl_conf_command", and "uwsgi_ssl_conf_command" directives.
  368. *) Feature: the "ssl_reject_handshake" directive.
  369. *) Feature: the "proxy_smtp_auth" directive in mail proxy.
  370. Changes with nginx 1.19.3 29 Sep 2020
  371. *) Feature: the ngx_stream_set_module.
  372. *) Feature: the "proxy_cookie_flags" directive.
  373. *) Feature: the "userid_flags" directive.
  374. *) Bugfix: the "stale-if-error" cache control extension was erroneously
  375. applied if backend returned a response with status code 500, 502,
  376. 503, 504, 403, 404, or 429.
  377. *) Bugfix: "[crit] cache file ... has too long header" messages might
  378. appear in logs if caching was used and the backend returned responses
  379. with the "Vary" header line.
  380. *) Workaround: "[crit] SSL_write() failed" messages might appear in logs
  381. when using OpenSSL 1.1.1.
  382. *) Bugfix: "SSL_shutdown() failed (SSL: ... bad write retry)" messages
  383. might appear in logs; the bug had appeared in 1.19.2.
  384. *) Bugfix: a segmentation fault might occur in a worker process when
  385. using HTTP/2 if errors with code 400 were redirected to a proxied
  386. location using the "error_page" directive.
  387. *) Bugfix: socket leak when using HTTP/2 and subrequests in the njs
  388. module.
  389. Changes with nginx 1.19.2 11 Aug 2020
  390. *) Change: now nginx starts closing keepalive connections before all
  391. free worker connections are exhausted, and logs a warning about this
  392. to the error log.
  393. *) Change: optimization of client request body reading when using
  394. chunked transfer encoding.
  395. *) Bugfix: memory leak if the "ssl_ocsp" directive was used.
  396. *) Bugfix: "zero size buf in output" alerts might appear in logs if a
  397. FastCGI server returned an incorrect response; the bug had appeared
  398. in 1.19.1.
  399. *) Bugfix: a segmentation fault might occur in a worker process if
  400. different large_client_header_buffers sizes were used in different
  401. virtual servers.
  402. *) Bugfix: SSL shutdown might not work.
  403. *) Bugfix: "SSL_shutdown() failed (SSL: ... bad write retry)" messages
  404. might appear in logs.
  405. *) Bugfix: in the ngx_http_slice_module.
  406. *) Bugfix: in the ngx_http_xslt_filter_module.
  407. Changes with nginx 1.19.1 07 Jul 2020
  408. *) Change: the "lingering_close", "lingering_time", and
  409. "lingering_timeout" directives now work when using HTTP/2.
  410. *) Change: now extra data sent by a backend are always discarded.
  411. *) Change: now after receiving a too short response from a FastCGI
  412. server nginx tries to send the available part of the response to the
  413. client, and then closes the client connection.
  414. *) Change: now after receiving a response with incorrect length from a
  415. gRPC backend nginx stops response processing with an error.
  416. *) Feature: the "min_free" parameter of the "proxy_cache_path",
  417. "fastcgi_cache_path", "scgi_cache_path", and "uwsgi_cache_path"
  418. directives.
  419. Thanks to Adam Bambuch.
  420. *) Bugfix: nginx did not delete unix domain listen sockets during
  421. graceful shutdown on the SIGQUIT signal.
  422. *) Bugfix: zero length UDP datagrams were not proxied.
  423. *) Bugfix: proxying to uwsgi backends using SSL might not work.
  424. Thanks to Guanzhong Chen.
  425. *) Bugfix: in error handling when using the "ssl_ocsp" directive.
  426. *) Bugfix: on XFS and NFS file systems disk cache size might be
  427. calculated incorrectly.
  428. *) Bugfix: "negative size buf in writer" alerts might appear in logs if
  429. a memcached server returned a malformed response.
  430. Changes with nginx 1.19.0 26 May 2020
  431. *) Feature: client certificate validation with OCSP.
  432. *) Bugfix: "upstream sent frame for closed stream" errors might occur
  433. when working with gRPC backends.
  434. *) Bugfix: OCSP stapling might not work if the "resolver" directive was
  435. not specified.
  436. *) Bugfix: connections with incorrect HTTP/2 preface were not logged.
  437. Changes with nginx 1.17.10 14 Apr 2020
  438. *) Feature: the "auth_delay" directive.
  439. Changes with nginx 1.17.9 03 Mar 2020
  440. *) Change: now nginx does not allow several "Host" request header lines.
  441. *) Bugfix: nginx ignored additional "Transfer-Encoding" request header
  442. lines.
  443. *) Bugfix: socket leak when using HTTP/2.
  444. *) Bugfix: a segmentation fault might occur in a worker process if OCSP
  445. stapling was used.
  446. *) Bugfix: in the ngx_http_mp4_module.
  447. *) Bugfix: nginx used status code 494 instead of 400 if errors with code
  448. 494 were redirected with the "error_page" directive.
  449. *) Bugfix: socket leak when using subrequests in the njs module and the
  450. "aio" directive.
  451. Changes with nginx 1.17.8 21 Jan 2020
  452. *) Feature: variables support in the "grpc_pass" directive.
  453. *) Bugfix: a timeout might occur while handling pipelined requests in an
  454. SSL connection; the bug had appeared in 1.17.5.
  455. *) Bugfix: in the "debug_points" directive when using HTTP/2.
  456. Thanks to Daniil Bondarev.
  457. Changes with nginx 1.17.7 24 Dec 2019
  458. *) Bugfix: a segmentation fault might occur on start or during
  459. reconfiguration if the "rewrite" directive with an empty replacement
  460. string was used in the configuration.
  461. *) Bugfix: a segmentation fault might occur in a worker process if the
  462. "break" directive was used with the "alias" directive or with the
  463. "proxy_pass" directive with a URI.
  464. *) Bugfix: the "Location" response header line might contain garbage if
  465. the request URI was rewritten to the one containing a null character.
  466. *) Bugfix: requests with bodies were handled incorrectly when returning
  467. redirections with the "error_page" directive; the bug had appeared in
  468. 0.7.12.
  469. *) Bugfix: socket leak when using HTTP/2.
  470. *) Bugfix: a timeout might occur while handling pipelined requests in an
  471. SSL connection; the bug had appeared in 1.17.5.
  472. *) Bugfix: in the ngx_http_dav_module.
  473. Changes with nginx 1.17.6 19 Nov 2019
  474. *) Feature: the $proxy_protocol_server_addr and
  475. $proxy_protocol_server_port variables.
  476. *) Feature: the "limit_conn_dry_run" directive.
  477. *) Feature: the $limit_req_status and $limit_conn_status variables.
  478. Changes with nginx 1.17.5 22 Oct 2019
  479. *) Feature: now nginx uses ioctl(FIONREAD), if available, to avoid
  480. reading from a fast connection for a long time.
  481. *) Bugfix: incomplete escaped characters at the end of the request URI
  482. were ignored.
  483. *) Bugfix: "/." and "/.." at the end of the request URI were not
  484. normalized.
  485. *) Bugfix: in the "merge_slashes" directive.
  486. *) Bugfix: in the "ignore_invalid_headers" directive.
  487. Thanks to Alan Kemp.
  488. *) Bugfix: nginx could not be built with MinGW-w64 gcc 8.1 or newer.
  489. Changes with nginx 1.17.4 24 Sep 2019
  490. *) Change: better detection of incorrect client behavior in HTTP/2.
  491. *) Change: in handling of not fully read client request body when
  492. returning errors in HTTP/2.
  493. *) Bugfix: the "worker_shutdown_timeout" directive might not work when
  494. using HTTP/2.
  495. *) Bugfix: a segmentation fault might occur in a worker process when
  496. using HTTP/2 and the "proxy_request_buffering" directive.
  497. *) Bugfix: the ECONNABORTED error log level was "crit" instead of
  498. "error" on Windows when using SSL.
  499. *) Bugfix: nginx ignored extra data when using chunked transfer
  500. encoding.
  501. *) Bugfix: nginx always returned the 500 error if the "return" directive
  502. was used and an error occurred during reading client request body.
  503. *) Bugfix: in memory allocation error handling.
  504. Changes with nginx 1.17.3 13 Aug 2019
  505. *) Security: when using HTTP/2 a client might cause excessive memory
  506. consumption and CPU usage (CVE-2019-9511, CVE-2019-9513,
  507. CVE-2019-9516).
  508. *) Bugfix: "zero size buf" alerts might appear in logs when using
  509. gzipping; the bug had appeared in 1.17.2.
  510. *) Bugfix: a segmentation fault might occur in a worker process if the
  511. "resolver" directive was used in SMTP proxy.
  512. Changes with nginx 1.17.2 23 Jul 2019
  513. *) Change: minimum supported zlib version is 1.2.0.4.
  514. Thanks to Ilya Leoshkevich.
  515. *) Change: the $r->internal_redirect() embedded perl method now expects
  516. escaped URIs.
  517. *) Feature: it is now possible to switch to a named location using the
  518. $r->internal_redirect() embedded perl method.
  519. *) Bugfix: in error handling in embedded perl.
  520. *) Bugfix: a segmentation fault might occur on start or during
  521. reconfiguration if hash bucket size larger than 64 kilobytes was used
  522. in the configuration.
  523. *) Bugfix: nginx might hog CPU during unbuffered proxying and when
  524. proxying WebSocket connections if the select, poll, or /dev/poll
  525. methods were used.
  526. *) Bugfix: in the ngx_http_xslt_filter_module.
  527. *) Bugfix: in the ngx_http_ssi_filter_module.
  528. Changes with nginx 1.17.1 25 Jun 2019
  529. *) Feature: the "limit_req_dry_run" directive.
  530. *) Feature: when using the "hash" directive inside the "upstream" block
  531. an empty hash key now triggers round-robin balancing.
  532. Thanks to Niklas Keller.
  533. *) Bugfix: a segmentation fault might occur in a worker process if
  534. caching was used along with the "image_filter" directive, and errors
  535. with code 415 were redirected with the "error_page" directive; the
  536. bug had appeared in 1.11.10.
  537. *) Bugfix: a segmentation fault might occur in a worker process if
  538. embedded perl was used; the bug had appeared in 1.7.3.
  539. Changes with nginx 1.17.0 21 May 2019
  540. *) Feature: variables support in the "limit_rate" and "limit_rate_after"
  541. directives.
  542. *) Feature: variables support in the "proxy_upload_rate" and
  543. "proxy_download_rate" directives in the stream module.
  544. *) Change: minimum supported OpenSSL version is 0.9.8.
  545. *) Change: now the postpone filter is always built.
  546. *) Bugfix: the "include" directive did not work inside the "if" and
  547. "limit_except" blocks.
  548. *) Bugfix: in byte ranges processing.
  549. Changes with nginx 1.15.12 16 Apr 2019
  550. *) Bugfix: a segmentation fault might occur in a worker process if
  551. variables were used in the "ssl_certificate" or "ssl_certificate_key"
  552. directives and OCSP stapling was enabled.
  553. Changes with nginx 1.15.11 09 Apr 2019
  554. *) Bugfix: in the "ssl_stapling_file" directive on Windows.
  555. Changes with nginx 1.15.10 26 Mar 2019
  556. *) Change: when using a hostname in the "listen" directive nginx now
  557. creates listening sockets for all addresses the hostname resolves to
  558. (previously, only the first address was used).
  559. *) Feature: port ranges in the "listen" directive.
  560. *) Feature: loading of SSL certificates and secret keys from variables.
  561. *) Workaround: the $ssl_server_name variable might be empty when using
  562. OpenSSL 1.1.1.
  563. *) Bugfix: nginx/Windows could not be built with Visual Studio 2015 or
  564. newer; the bug had appeared in 1.15.9.
  565. Changes with nginx 1.15.9 26 Feb 2019
  566. *) Feature: variables support in the "ssl_certificate" and
  567. "ssl_certificate_key" directives.
  568. *) Feature: the "poll" method is now available on Windows when using
  569. Windows Vista or newer.
  570. *) Bugfix: if the "select" method was used on Windows and an error
  571. occurred while establishing a backend connection, nginx waited for
  572. the connection establishment timeout to expire.
  573. *) Bugfix: the "proxy_upload_rate" and "proxy_download_rate" directives
  574. in the stream module worked incorrectly when proxying UDP datagrams.
  575. Changes with nginx 1.15.8 25 Dec 2018
  576. *) Feature: the $upstream_bytes_sent variable.
  577. Thanks to Piotr Sikora.
  578. *) Feature: new directives in vim syntax highlighting scripts.
  579. Thanks to Gena Makhomed.
  580. *) Bugfix: in the "proxy_cache_background_update" directive.
  581. *) Bugfix: in the "geo" directive when using unix domain listen sockets.
  582. *) Workaround: the "ignoring stale global SSL error ... bad length"
  583. alerts might appear in logs when using the "ssl_early_data" directive
  584. with OpenSSL.
  585. *) Bugfix: in nginx/Windows.
  586. *) Bugfix: in the ngx_http_autoindex_module on 32-bit platforms.
  587. Changes with nginx 1.15.7 27 Nov 2018
  588. *) Feature: the "proxy_requests" directive in the stream module.
  589. *) Feature: the "delay" parameter of the "limit_req" directive.
  590. Thanks to Vladislav Shabanov and Peter Shchuchkin.
  591. *) Bugfix: memory leak on errors during reconfiguration.
  592. *) Bugfix: in the $upstream_response_time, $upstream_connect_time, and
  593. $upstream_header_time variables.
  594. *) Bugfix: a segmentation fault might occur in a worker process if the
  595. ngx_http_mp4_module was used on 32-bit platforms.
  596. Changes with nginx 1.15.6 06 Nov 2018
  597. *) Security: when using HTTP/2 a client might cause excessive memory
  598. consumption (CVE-2018-16843) and CPU usage (CVE-2018-16844).
  599. *) Security: processing of a specially crafted mp4 file with the
  600. ngx_http_mp4_module might result in worker process memory disclosure
  601. (CVE-2018-16845).
  602. *) Feature: the "proxy_socket_keepalive", "fastcgi_socket_keepalive",
  603. "grpc_socket_keepalive", "memcached_socket_keepalive",
  604. "scgi_socket_keepalive", and "uwsgi_socket_keepalive" directives.
  605. *) Bugfix: if nginx was built with OpenSSL 1.1.0 and used with OpenSSL
  606. 1.1.1, the TLS 1.3 protocol was always enabled.
  607. *) Bugfix: working with gRPC backends might result in excessive memory
  608. consumption.
  609. Changes with nginx 1.15.5 02 Oct 2018
  610. *) Bugfix: a segmentation fault might occur in a worker process when
  611. using OpenSSL 1.1.0h or newer; the bug had appeared in 1.15.4.
  612. *) Bugfix: of minor potential bugs.
  613. Changes with nginx 1.15.4 25 Sep 2018
  614. *) Feature: now the "ssl_early_data" directive can be used with OpenSSL.
  615. *) Bugfix: in the ngx_http_uwsgi_module.
  616. Thanks to Chris Caputo.
  617. *) Bugfix: connections with some gRPC backends might not be cached when
  618. using the "keepalive" directive.
  619. *) Bugfix: a socket leak might occur when using the "error_page"
  620. directive to redirect early request processing errors, notably errors
  621. with code 400.
  622. *) Bugfix: the "return" directive did not change the response code when
  623. returning errors if the request was redirected by the "error_page"
  624. directive.
  625. *) Bugfix: standard error pages and responses of the
  626. ngx_http_autoindex_module module used the "bgcolor" attribute, and
  627. might be displayed incorrectly when using custom color settings in
  628. browsers.
  629. Thanks to Nova DasSarma.
  630. *) Change: the logging level of the "no suitable key share" and "no
  631. suitable signature algorithm" SSL errors has been lowered from "crit"
  632. to "info".
  633. Changes with nginx 1.15.3 28 Aug 2018
  634. *) Feature: now TLSv1.3 can be used with BoringSSL.
  635. *) Feature: the "ssl_early_data" directive, currently available with
  636. BoringSSL.
  637. *) Feature: the "keepalive_timeout" and "keepalive_requests" directives
  638. in the "upstream" block.
  639. *) Bugfix: the ngx_http_dav_module did not truncate destination file
  640. when copying a file over an existing one with the COPY method.
  641. *) Bugfix: the ngx_http_dav_module used zero access rights on the
  642. destination file and did not preserve file modification time when
  643. moving a file between different file systems with the MOVE method.
  644. *) Bugfix: the ngx_http_dav_module used default access rights when
  645. copying a file with the COPY method.
  646. *) Workaround: some clients might not work when using HTTP/2; the bug
  647. had appeared in 1.13.5.
  648. *) Bugfix: nginx could not be built with LibreSSL 2.8.0.
  649. Changes with nginx 1.15.2 24 Jul 2018
  650. *) Feature: the $ssl_preread_protocol variable in the
  651. ngx_stream_ssl_preread_module.
  652. *) Feature: now when using the "reset_timedout_connection" directive
  653. nginx will reset connections being closed with the 444 code.
  654. *) Change: a logging level of the "http request", "https proxy request",
  655. "unsupported protocol", and "version too low" SSL errors has been
  656. lowered from "crit" to "info".
  657. *) Bugfix: DNS requests were not resent if initial sending of a request
  658. failed.
  659. *) Bugfix: the "reuseport" parameter of the "listen" directive was
  660. ignored if the number of worker processes was specified after the
  661. "listen" directive.
  662. *) Bugfix: when using OpenSSL 1.1.0 or newer it was not possible to
  663. switch off "ssl_prefer_server_ciphers" in a virtual server if it was
  664. switched on in the default server.
  665. *) Bugfix: SSL session reuse with upstream servers did not work with the
  666. TLS 1.3 protocol.
  667. Changes with nginx 1.15.1 03 Jul 2018
  668. *) Feature: the "random" directive inside the "upstream" block.
  669. *) Feature: improved performance when using the "hash" and "ip_hash"
  670. directives with the "zone" directive.
  671. *) Feature: the "reuseport" parameter of the "listen" directive now uses
  672. SO_REUSEPORT_LB on FreeBSD 12.
  673. *) Bugfix: HTTP/2 server push did not work if SSL was terminated by a
  674. proxy server in front of nginx.
  675. *) Bugfix: the "tcp_nopush" directive was always used on backend
  676. connections.
  677. *) Bugfix: sending a disk-buffered request body to a gRPC backend might
  678. fail.
  679. Changes with nginx 1.15.0 05 Jun 2018
  680. *) Change: the "ssl" directive is deprecated; the "ssl" parameter of the
  681. "listen" directive should be used instead.
  682. *) Change: now nginx detects missing SSL certificates during
  683. configuration testing when using the "ssl" parameter of the "listen"
  684. directive.
  685. *) Feature: now the stream module can handle multiple incoming UDP
  686. datagrams from a client within a single session.
  687. *) Bugfix: it was possible to specify an incorrect response code in the
  688. "proxy_cache_valid" directive.
  689. *) Bugfix: nginx could not be built by gcc 8.1.
  690. *) Bugfix: logging to syslog stopped on local IP address changes.
  691. *) Bugfix: nginx could not be built by clang with CUDA SDK installed;
  692. the bug had appeared in 1.13.8.
  693. *) Bugfix: "getsockopt(TCP_FASTOPEN) ... failed" messages might appear
  694. in logs during binary upgrade when using unix domain listen sockets
  695. on FreeBSD.
  696. *) Bugfix: nginx could not be built on Fedora 28 Linux.
  697. *) Bugfix: request processing rate might exceed configured rate when
  698. using the "limit_req" directive.
  699. *) Bugfix: in handling of client addresses when using unix domain listen
  700. sockets to work with datagrams on Linux.
  701. *) Bugfix: in memory allocation error handling.
  702. Changes with nginx 1.13.12 10 Apr 2018
  703. *) Bugfix: connections with gRPC backends might be closed unexpectedly
  704. when returning a large response.
  705. Changes with nginx 1.13.11 03 Apr 2018
  706. *) Feature: the "proxy_protocol" parameter of the "listen" directive now
  707. supports the PROXY protocol version 2.
  708. *) Bugfix: nginx could not be built with OpenSSL 1.1.1 statically on
  709. Linux.
  710. *) Bugfix: in the "http_404", "http_500", etc. parameters of the
  711. "proxy_next_upstream" directive.
  712. Changes with nginx 1.13.10 20 Mar 2018
  713. *) Feature: the "set" parameter of the "include" SSI directive now
  714. allows writing arbitrary responses to a variable; the
  715. "subrequest_output_buffer_size" directive defines maximum response
  716. size.
  717. *) Feature: now nginx uses clock_gettime(CLOCK_MONOTONIC) if available,
  718. to avoid timeouts being incorrectly triggered on system time changes.
  719. *) Feature: the "escape=none" parameter of the "log_format" directive.
  720. Thanks to Johannes Baiter and Calin Don.
  721. *) Feature: the $ssl_preread_alpn_protocols variable in the
  722. ngx_stream_ssl_preread_module.
  723. *) Feature: the ngx_http_grpc_module.
  724. *) Bugfix: in memory allocation error handling in the "geo" directive.
  725. *) Bugfix: when using variables in the "auth_basic_user_file" directive
  726. a null character might appear in logs.
  727. Thanks to Vadim Filimonov.
  728. Changes with nginx 1.13.9 20 Feb 2018
  729. *) Feature: HTTP/2 server push support; the "http2_push" and
  730. "http2_push_preload" directives.
  731. *) Bugfix: "header already sent" alerts might appear in logs when using
  732. cache; the bug had appeared in 1.9.13.
  733. *) Bugfix: a segmentation fault might occur in a worker process if the
  734. "ssl_verify_client" directive was used and no SSL certificate was
  735. specified in a virtual server.
  736. *) Bugfix: in the ngx_http_v2_module.
  737. *) Bugfix: in the ngx_http_dav_module.
  738. Changes with nginx 1.13.8 26 Dec 2017
  739. *) Feature: now nginx automatically preserves the CAP_NET_RAW capability
  740. in worker processes when using the "transparent" parameter of the
  741. "proxy_bind", "fastcgi_bind", "memcached_bind", "scgi_bind", and
  742. "uwsgi_bind" directives.
  743. *) Feature: improved CPU cache line size detection.
  744. Thanks to Debayan Ghosh.
  745. *) Feature: new directives in vim syntax highlighting scripts.
  746. Thanks to Gena Makhomed.
  747. *) Bugfix: binary upgrade refused to work if nginx was re-parented to a
  748. process with PID different from 1 after its parent process has
  749. finished.
  750. *) Bugfix: the ngx_http_autoindex_module incorrectly handled requests
  751. with bodies.
  752. *) Bugfix: in the "proxy_limit_rate" directive when used with the
  753. "keepalive" directive.
  754. *) Bugfix: some parts of a response might be buffered when using
  755. "proxy_buffering off" if the client connection used SSL.
  756. Thanks to Patryk Lesiewicz.
  757. *) Bugfix: in the "proxy_cache_background_update" directive.
  758. *) Bugfix: it was not possible to start a parameter with a variable in
  759. the "${name}" form with the name in curly brackets without enclosing
  760. the parameter into single or double quotes.
  761. Changes with nginx 1.13.7 21 Nov 2017
  762. *) Bugfix: in the $upstream_status variable.
  763. *) Bugfix: a segmentation fault might occur in a worker process if a
  764. backend returned a "101 Switching Protocols" response to a
  765. subrequest.
  766. *) Bugfix: a segmentation fault occurred in a master process if a shared
  767. memory zone size was changed during a reconfiguration and the
  768. reconfiguration failed.
  769. *) Bugfix: in the ngx_http_fastcgi_module.
  770. *) Bugfix: nginx returned the 500 error if parameters without variables
  771. were specified in the "xslt_stylesheet" directive.
  772. *) Workaround: "gzip filter failed to use preallocated memory" alerts
  773. appeared in logs when using a zlib library variant from Intel.
  774. *) Bugfix: the "worker_shutdown_timeout" directive did not work when
  775. using mail proxy and when proxying WebSocket connections.
  776. Changes with nginx 1.13.6 10 Oct 2017
  777. *) Bugfix: switching to the next upstream server in the stream module
  778. did not work when using the "ssl_preread" directive.
  779. *) Bugfix: in the ngx_http_v2_module.
  780. Thanks to Piotr Sikora.
  781. *) Bugfix: nginx did not support dates after the year 2038 on 32-bit
  782. platforms with 64-bit time_t.
  783. *) Bugfix: in handling of dates prior to the year 1970 and after the
  784. year 10000.
  785. *) Bugfix: in the stream module timeouts waiting for UDP datagrams from
  786. upstream servers were not logged or logged at the "info" level
  787. instead of "error".
  788. *) Bugfix: when using HTTP/2 nginx might return the 400 response without
  789. logging the reason.
  790. *) Bugfix: in processing of corrupted cache files.
  791. *) Bugfix: cache control headers were ignored when caching errors
  792. intercepted by error_page.
  793. *) Bugfix: when using HTTP/2 client request body might be corrupted.
  794. *) Bugfix: in handling of client addresses when using unix domain
  795. sockets.
  796. *) Bugfix: nginx hogged CPU when using the "hash ... consistent"
  797. directive in the upstream block if large weights were used and all or
  798. most of the servers were unavailable.
  799. Changes with nginx 1.13.5 05 Sep 2017
  800. *) Feature: the $ssl_client_escaped_cert variable.
  801. *) Bugfix: the "ssl_session_ticket_key" directive and the "include"
  802. parameter of the "geo" directive did not work on Windows.
  803. *) Bugfix: incorrect response length was returned on 32-bit platforms
  804. when requesting more than 4 gigabytes with multiple ranges.
  805. *) Bugfix: the "expires modified" directive and processing of the
  806. "If-Range" request header line did not use the response last
  807. modification time if proxying without caching was used.
  808. Changes with nginx 1.13.4 08 Aug 2017
  809. *) Feature: the ngx_http_mirror_module.
  810. *) Bugfix: client connections might be dropped during configuration
  811. testing when using the "reuseport" parameter of the "listen"
  812. directive on Linux.
  813. *) Bugfix: request body might not be available in subrequests if it was
  814. saved to a file and proxying was used.
  815. *) Bugfix: cleaning cache based on the "max_size" parameter did not work
  816. on Windows.
  817. *) Bugfix: any shared memory allocation required 4096 bytes on Windows.
  818. *) Bugfix: nginx worker might be terminated abnormally when using the
  819. "zone" directive inside the "upstream" block on Windows.
  820. Changes with nginx 1.13.3 11 Jul 2017
  821. *) Security: a specially crafted request might result in an integer
  822. overflow and incorrect processing of ranges in the range filter,
  823. potentially resulting in sensitive information leak (CVE-2017-7529).
  824. Changes with nginx 1.13.2 27 Jun 2017
  825. *) Change: nginx now returns 200 instead of 416 when a range starting
  826. with 0 is requested from an empty file.
  827. *) Feature: the "add_trailer" directive.
  828. Thanks to Piotr Sikora.
  829. *) Bugfix: nginx could not be built on Cygwin and NetBSD; the bug had
  830. appeared in 1.13.0.
  831. *) Bugfix: nginx could not be built under MSYS2 / MinGW 64-bit.
  832. Thanks to Orgad Shaneh.
  833. *) Bugfix: a segmentation fault might occur in a worker process when
  834. using SSI with many includes and proxy_pass with variables.
  835. *) Bugfix: in the ngx_http_v2_module.
  836. Thanks to Piotr Sikora.
  837. Changes with nginx 1.13.1 30 May 2017
  838. *) Feature: now a hostname can be used as the "set_real_ip_from"
  839. directive parameter.
  840. *) Feature: vim syntax highlighting scripts improvements.
  841. *) Feature: the "worker_cpu_affinity" directive now works on DragonFly
  842. BSD.
  843. Thanks to Sepherosa Ziehau.
  844. *) Bugfix: SSL renegotiation on backend connections did not work when
  845. using OpenSSL before 1.1.0.
  846. *) Workaround: nginx could not be built with Oracle Developer Studio
  847. 12.5.
  848. *) Workaround: now cache manager ignores long locked cache entries when
  849. cleaning cache based on the "max_size" parameter.
  850. *) Bugfix: client SSL connections were immediately closed if deferred
  851. accept and the "proxy_protocol" parameter of the "listen" directive
  852. were used.
  853. *) Bugfix: in the "proxy_cache_background_update" directive.
  854. *) Workaround: now the "tcp_nodelay" directive sets the TCP_NODELAY
  855. option before an SSL handshake.
  856. Changes with nginx 1.13.0 25 Apr 2017
  857. *) Change: SSL renegotiation is now allowed on backend connections.
  858. *) Feature: the "rcvbuf" and "sndbuf" parameters of the "listen"
  859. directives of the mail proxy and stream modules.
  860. *) Feature: the "return" and "error_page" directives can now be used to
  861. return 308 redirections.
  862. Thanks to Simon Leblanc.
  863. *) Feature: the "TLSv1.3" parameter of the "ssl_protocols" directive.
  864. *) Feature: when logging signals nginx now logs PID of the process which
  865. sent the signal.
  866. *) Bugfix: in memory allocation error handling.
  867. *) Bugfix: if a server in the stream module listened on a wildcard
  868. address, the source address of a response UDP datagram could differ
  869. from the original datagram destination address.
  870. Changes with nginx 1.11.13 04 Apr 2017
  871. *) Feature: the "http_429" parameter of the "proxy_next_upstream",
  872. "fastcgi_next_upstream", "scgi_next_upstream", and
  873. "uwsgi_next_upstream" directives.
  874. Thanks to Piotr Sikora.
  875. *) Bugfix: in memory allocation error handling.
  876. *) Bugfix: requests might hang when using the "sendfile" and
  877. "timer_resolution" directives on Linux.
  878. *) Bugfix: requests might hang when using the "sendfile" and "aio_write"
  879. directives with subrequests.
  880. *) Bugfix: in the ngx_http_v2_module.
  881. Thanks to Piotr Sikora.
  882. *) Bugfix: a segmentation fault might occur in a worker process when
  883. using HTTP/2.
  884. *) Bugfix: requests might hang when using the "limit_rate",
  885. "sendfile_max_chunk", "limit_req" directives, or the $r->sleep()
  886. embedded perl method with subrequests.
  887. *) Bugfix: in the ngx_http_slice_module.
  888. Changes with nginx 1.11.12 24 Mar 2017
  889. *) Bugfix: nginx might hog CPU; the bug had appeared in 1.11.11.
  890. Changes with nginx 1.11.11 21 Mar 2017
  891. *) Feature: the "worker_shutdown_timeout" directive.
  892. *) Feature: vim syntax highlighting scripts improvements.
  893. Thanks to Wei-Ko Kao.
  894. *) Bugfix: a segmentation fault might occur in a worker process if the
  895. $limit_rate variable was set to an empty string.
  896. *) Bugfix: the "proxy_cache_background_update",
  897. "fastcgi_cache_background_update", "scgi_cache_background_update",
  898. and "uwsgi_cache_background_update" directives might work incorrectly
  899. if the "if" directive was used.
  900. *) Bugfix: a segmentation fault might occur in a worker process if
  901. number of large_client_header_buffers in a virtual server was
  902. different from the one in the default server.
  903. *) Bugfix: in the mail proxy server.
  904. Changes with nginx 1.11.10 14 Feb 2017
  905. *) Change: cache header format has been changed, previously cached
  906. responses will be invalidated.
  907. *) Feature: support of "stale-while-revalidate" and "stale-if-error"
  908. extensions in the "Cache-Control" backend response header line.
  909. *) Feature: the "proxy_cache_background_update",
  910. "fastcgi_cache_background_update", "scgi_cache_background_update",
  911. and "uwsgi_cache_background_update" directives.
  912. *) Feature: nginx is now able to cache responses with the "Vary" header
  913. line up to 128 characters long (instead of 42 characters in previous
  914. versions).
  915. *) Feature: the "build" parameter of the "server_tokens" directive.
  916. Thanks to Tom Thorogood.
  917. *) Bugfix: "[crit] SSL_write() failed" messages might appear in logs
  918. when handling requests with the "Expect: 100-continue" request header
  919. line.
  920. *) Bugfix: the ngx_http_slice_module did not work in named locations.
  921. *) Bugfix: a segmentation fault might occur in a worker process when
  922. using AIO after an "X-Accel-Redirect" redirection.
  923. *) Bugfix: reduced memory consumption for long-lived requests using
  924. gzipping.
  925. Changes with nginx 1.11.9 24 Jan 2017
  926. *) Bugfix: nginx might hog CPU when using the stream module; the bug had
  927. appeared in 1.11.5.
  928. *) Bugfix: EXTERNAL authentication mechanism in mail proxy was accepted
  929. even if it was not enabled in the configuration.
  930. *) Bugfix: a segmentation fault might occur in a worker process if the
  931. "ssl_verify_client" directive of the stream module was used.
  932. *) Bugfix: the "ssl_verify_client" directive of the stream module might
  933. not work.
  934. *) Bugfix: closing keepalive connections due to no free worker
  935. connections might be too aggressive.
  936. Thanks to Joel Cunningham.
  937. *) Bugfix: an incorrect response might be returned when using the
  938. "sendfile" directive on FreeBSD and macOS; the bug had appeared in
  939. 1.7.8.
  940. *) Bugfix: a truncated response might be stored in cache when using the
  941. "aio_write" directive.
  942. *) Bugfix: a socket leak might occur when using the "aio_write"
  943. directive.
  944. Changes with nginx 1.11.8 27 Dec 2016
  945. *) Feature: the "absolute_redirect" directive.
  946. *) Feature: the "escape" parameter of the "log_format" directive.
  947. *) Feature: client SSL certificates verification in the stream module.
  948. *) Feature: the "ssl_session_ticket_key" directive supports AES256
  949. encryption of TLS session tickets when used with 80-byte keys.
  950. *) Feature: vim-commentary support in vim scripts.
  951. Thanks to Armin Grodon.
  952. *) Bugfix: recursion when evaluating variables was not limited.
  953. *) Bugfix: in the ngx_stream_ssl_preread_module.
  954. *) Bugfix: if a server in an upstream in the stream module failed, it
  955. was considered alive only when a test connection sent to it after
  956. fail_timeout was closed; now a successfully established connection is
  957. enough.
  958. *) Bugfix: nginx/Windows could not be built with 64-bit Visual Studio.
  959. *) Bugfix: nginx/Windows could not be built with OpenSSL 1.1.0.
  960. Changes with nginx 1.11.7 13 Dec 2016
  961. *) Change: now in case of a client certificate verification error the
  962. $ssl_client_verify variable contains a string with the failure
  963. reason, for example, "FAILED:certificate has expired".
  964. *) Feature: the $ssl_ciphers, $ssl_curves, $ssl_client_v_start,
  965. $ssl_client_v_end, and $ssl_client_v_remain variables.
  966. *) Feature: the "volatile" parameter of the "map" directive.
  967. *) Bugfix: dependencies specified for a module were ignored while
  968. building dynamic modules.
  969. *) Bugfix: when using HTTP/2 and the "limit_req" or "auth_request"
  970. directives client request body might be corrupted; the bug had
  971. appeared in 1.11.0.
  972. *) Bugfix: a segmentation fault might occur in a worker process when
  973. using HTTP/2; the bug had appeared in 1.11.3.
  974. *) Bugfix: in the ngx_http_mp4_module.
  975. Thanks to Congcong Hu.
  976. *) Bugfix: in the ngx_http_perl_module.
  977. Changes with nginx 1.11.6 15 Nov 2016
  978. *) Change: format of the $ssl_client_s_dn and $ssl_client_i_dn variables
  979. has been changed to follow RFC 2253 (RFC 4514); values in the old
  980. format are available in the $ssl_client_s_dn_legacy and
  981. $ssl_client_i_dn_legacy variables.
  982. *) Change: when storing temporary files in a cache directory they will
  983. be stored in the same subdirectories as corresponding cache files
  984. instead of a separate subdirectory for temporary files.
  985. *) Feature: EXTERNAL authentication mechanism support in mail proxy.
  986. Thanks to Robert Norris.
  987. *) Feature: WebP support in the ngx_http_image_filter_module.
  988. *) Feature: variables support in the "proxy_method" directive.
  989. Thanks to Dmitry Lazurkin.
  990. *) Feature: the "http2_max_requests" directive in the
  991. ngx_http_v2_module.
  992. *) Feature: the "proxy_cache_max_range_offset",
  993. "fastcgi_cache_max_range_offset", "scgi_cache_max_range_offset", and
  994. "uwsgi_cache_max_range_offset" directives.
  995. *) Bugfix: graceful shutdown of old worker processes might require
  996. infinite time when using HTTP/2.
  997. *) Bugfix: in the ngx_http_mp4_module.
  998. *) Bugfix: "ignore long locked inactive cache entry" alerts might appear
  999. in logs when proxying WebSocket connections with caching enabled.
  1000. *) Bugfix: nginx did not write anything to log and returned a response
  1001. with code 502 instead of 504 when a timeout occurred during an SSL
  1002. handshake to a backend.
  1003. Changes with nginx 1.11.5 11 Oct 2016
  1004. *) Change: the --with-ipv6 configure option was removed, now IPv6
  1005. support is configured automatically.
  1006. *) Change: now if there are no available servers in an upstream, nginx
  1007. will not reset number of failures of all servers as it previously
  1008. did, but will wait for fail_timeout to expire.
  1009. *) Feature: the ngx_stream_ssl_preread_module.
  1010. *) Feature: the "server" directive in the "upstream" context supports
  1011. the "max_conns" parameter.
  1012. *) Feature: the --with-compat configure option.
  1013. *) Feature: "manager_files", "manager_threshold", and "manager_sleep"
  1014. parameters of the "proxy_cache_path", "fastcgi_cache_path",
  1015. "scgi_cache_path", and "uwsgi_cache_path" directives.
  1016. *) Bugfix: flags passed by the --with-ld-opt configure option were not
  1017. used while building perl module.
  1018. *) Bugfix: in the "add_after_body" directive when used with the
  1019. "sub_filter" directive.
  1020. *) Bugfix: in the $realip_remote_addr variable.
  1021. *) Bugfix: the "dav_access", "proxy_store_access",
  1022. "fastcgi_store_access", "scgi_store_access", and "uwsgi_store_access"
  1023. directives ignored permissions specified for user.
  1024. *) Bugfix: unix domain listen sockets might not be inherited during
  1025. binary upgrade on Linux.
  1026. *) Bugfix: nginx returned the 400 response on requests with the "-"
  1027. character in the HTTP method.
  1028. Changes with nginx 1.11.4 13 Sep 2016
  1029. *) Feature: the $upstream_bytes_received variable.
  1030. *) Feature: the $bytes_received, $session_time, $protocol, $status,
  1031. $upstream_addr, $upstream_bytes_sent, $upstream_bytes_received,
  1032. $upstream_connect_time, $upstream_first_byte_time, and
  1033. $upstream_session_time variables in the stream module.
  1034. *) Feature: the ngx_stream_log_module.
  1035. *) Feature: the "proxy_protocol" parameter of the "listen" directive,
  1036. the $proxy_protocol_addr and $proxy_protocol_port variables in the
  1037. stream module.
  1038. *) Feature: the ngx_stream_realip_module.
  1039. *) Bugfix: nginx could not be built with the stream module and the
  1040. ngx_http_ssl_module, but without ngx_stream_ssl_module; the bug had
  1041. appeared in 1.11.3.
  1042. *) Feature: the IP_BIND_ADDRESS_NO_PORT socket option was not used; the
  1043. bug had appeared in 1.11.2.
  1044. *) Bugfix: in the "ranges" parameter of the "geo" directive.
  1045. *) Bugfix: an incorrect response might be returned when using the "aio
  1046. threads" and "sendfile" directives; the bug had appeared in 1.9.13.
  1047. Changes with nginx 1.11.3 26 Jul 2016
  1048. *) Change: now the "accept_mutex" directive is turned off by default.
  1049. *) Feature: now nginx uses EPOLLEXCLUSIVE on Linux.
  1050. *) Feature: the ngx_stream_geo_module.
  1051. *) Feature: the ngx_stream_geoip_module.
  1052. *) Feature: the ngx_stream_split_clients_module.
  1053. *) Feature: variables support in the "proxy_pass" and "proxy_ssl_name"
  1054. directives in the stream module.
  1055. *) Bugfix: socket leak when using HTTP/2.
  1056. *) Bugfix: in configure tests.
  1057. Thanks to Piotr Sikora.
  1058. Changes with nginx 1.11.2 05 Jul 2016
  1059. *) Change: now nginx always uses internal MD5 and SHA1 implementations;
  1060. the --with-md5 and --with-sha1 configure options were canceled.
  1061. *) Feature: variables support in the stream module.
  1062. *) Feature: the ngx_stream_map_module.
  1063. *) Feature: the ngx_stream_return_module.
  1064. *) Feature: a port can be specified in the "proxy_bind", "fastcgi_bind",
  1065. "memcached_bind", "scgi_bind", and "uwsgi_bind" directives.
  1066. *) Feature: now nginx uses the IP_BIND_ADDRESS_NO_PORT socket option
  1067. when available.
  1068. *) Bugfix: a segmentation fault might occur in a worker process when
  1069. using HTTP/2 and the "proxy_request_buffering" directive.
  1070. *) Bugfix: the "Content-Length" request header line was always added to
  1071. requests passed to backends, including requests without body, when
  1072. using HTTP/2.
  1073. *) Bugfix: "http request count is zero" alerts might appear in logs when
  1074. using HTTP/2.
  1075. *) Bugfix: unnecessary buffering might occur when using the "sub_filter"
  1076. directive; the issue had appeared in 1.9.4.
  1077. Changes with nginx 1.11.1 31 May 2016
  1078. *) Security: a segmentation fault might occur in a worker process while
  1079. writing a specially crafted request body to a temporary file
  1080. (CVE-2016-4450); the bug had appeared in 1.3.9.
  1081. Changes with nginx 1.11.0 24 May 2016
  1082. *) Feature: the "transparent" parameter of the "proxy_bind",
  1083. "fastcgi_bind", "memcached_bind", "scgi_bind", and "uwsgi_bind"
  1084. directives.
  1085. *) Feature: the $request_id variable.
  1086. *) Feature: the "map" directive supports combinations of multiple
  1087. variables as resulting values.
  1088. *) Feature: now nginx checks if EPOLLRDHUP events are supported by
  1089. kernel, and optimizes connection handling accordingly if the "epoll"
  1090. method is used.
  1091. *) Feature: the "ssl_certificate" and "ssl_certificate_key" directives
  1092. can be specified multiple times to load certificates of different
  1093. types (for example, RSA and ECDSA).
  1094. *) Feature: the "ssl_ecdh_curve" directive now allows specifying a list
  1095. of curves when using OpenSSL 1.0.2 or newer; by default a list built
  1096. into OpenSSL is used.
  1097. *) Change: to use DHE ciphers it is now required to specify parameters
  1098. using the "ssl_dhparam" directive.
  1099. *) Feature: the $proxy_protocol_port variable.
  1100. *) Feature: the $realip_remote_port variable in the
  1101. ngx_http_realip_module.
  1102. *) Feature: the ngx_http_realip_module is now able to set the client
  1103. port in addition to the address.
  1104. *) Change: the "421 Misdirected Request" response now used when
  1105. rejecting requests to a virtual server different from one negotiated
  1106. during an SSL handshake; this improves interoperability with some
  1107. HTTP/2 clients when using client certificates.
  1108. *) Change: HTTP/2 clients can now start sending request body
  1109. immediately; the "http2_body_preread_size" directive controls size of
  1110. the buffer used before nginx will start reading client request body.
  1111. *) Bugfix: cached error responses were not updated when using the
  1112. "proxy_cache_bypass" directive.
  1113. Changes with nginx 1.9.15 19 Apr 2016
  1114. *) Bugfix: "recv() failed" errors might occur when using HHVM as a
  1115. FastCGI server.
  1116. *) Bugfix: when using HTTP/2 and the "limit_req" or "auth_request"
  1117. directives a timeout or a "client violated flow control" error might
  1118. occur while reading client request body; the bug had appeared in
  1119. 1.9.14.
  1120. *) Workaround: a response might not be shown by some browsers if HTTP/2
  1121. was used and client request body was not fully read; the bug had
  1122. appeared in 1.9.14.
  1123. *) Bugfix: connections might hang when using the "aio threads"
  1124. directive.
  1125. Thanks to Mindaugas Rasiukevicius.
  1126. Changes with nginx 1.9.14 05 Apr 2016
  1127. *) Feature: OpenSSL 1.1.0 compatibility.
  1128. *) Feature: the "proxy_request_buffering", "fastcgi_request_buffering",
  1129. "scgi_request_buffering", and "uwsgi_request_buffering" directives
  1130. now work with HTTP/2.
  1131. *) Bugfix: "zero size buf in output" alerts might appear in logs when
  1132. using HTTP/2.
  1133. *) Bugfix: the "client_max_body_size" directive might work incorrectly
  1134. when using HTTP/2.
  1135. *) Bugfix: of minor bugs in logging.
  1136. Changes with nginx 1.9.13 29 Mar 2016
  1137. *) Change: non-idempotent requests (POST, LOCK, PATCH) are no longer
  1138. passed to the next server by default if a request has been sent to a
  1139. backend; the "non_idempotent" parameter of the "proxy_next_upstream"
  1140. directive explicitly allows retrying such requests.
  1141. *) Feature: the ngx_http_perl_module can be built dynamically.
  1142. *) Feature: UDP support in the stream module.
  1143. *) Feature: the "aio_write" directive.
  1144. *) Feature: now cache manager monitors number of elements in caches and
  1145. tries to avoid cache keys zone overflows.
  1146. *) Bugfix: "task already active" and "second aio post" alerts might
  1147. appear in logs when using the "sendfile" and "aio" directives with
  1148. subrequests.
  1149. *) Bugfix: "zero size buf in output" alerts might appear in logs if
  1150. caching was used and a client closed a connection prematurely.
  1151. *) Bugfix: connections with clients might be closed needlessly if
  1152. caching was used.
  1153. Thanks to Justin Li.
  1154. *) Bugfix: nginx might hog CPU if the "sendfile" directive was used on
  1155. Linux or Solaris and a file being sent was changed during sending.
  1156. *) Bugfix: connections might hang when using the "sendfile" and "aio
  1157. threads" directives.
  1158. *) Bugfix: in the "proxy_pass", "fastcgi_pass", "scgi_pass", and
  1159. "uwsgi_pass" directives when using variables.
  1160. Thanks to Piotr Sikora.
  1161. *) Bugfix: in the ngx_http_sub_filter_module.
  1162. *) Bugfix: if an error occurred in a cached backend connection, the
  1163. request was passed to the next server regardless of the
  1164. proxy_next_upstream directive.
  1165. *) Bugfix: "CreateFile() failed" errors when creating temporary files on
  1166. Windows.
  1167. Changes with nginx 1.9.12 24 Feb 2016
  1168. *) Feature: Huffman encoding of response headers in HTTP/2.
  1169. Thanks to Vlad Krasnov.
  1170. *) Feature: the "worker_cpu_affinity" directive now supports more than
  1171. 64 CPUs.
  1172. *) Bugfix: compatibility with 3rd party C++ modules; the bug had
  1173. appeared in 1.9.11.
  1174. Thanks to Piotr Sikora.
  1175. *) Bugfix: nginx could not be built statically with OpenSSL on Linux;
  1176. the bug had appeared in 1.9.11.
  1177. *) Bugfix: the "add_header ... always" directive with an empty value did
  1178. not delete "Last-Modified" and "ETag" header lines from error
  1179. responses.
  1180. *) Workaround: "called a function you should not call" and "shutdown
  1181. while in init" messages might appear in logs when using OpenSSL
  1182. 1.0.2f.
  1183. *) Bugfix: invalid headers might be logged incorrectly.
  1184. *) Bugfix: socket leak when using HTTP/2.
  1185. *) Bugfix: in the ngx_http_v2_module.
  1186. Changes with nginx 1.9.11 09 Feb 2016
  1187. *) Feature: TCP support in resolver.
  1188. *) Feature: dynamic modules.
  1189. *) Bugfix: the $request_length variable did not include size of request
  1190. headers when using HTTP/2.
  1191. *) Bugfix: in the ngx_http_v2_module.
  1192. Changes with nginx 1.9.10 26 Jan 2016
  1193. *) Security: invalid pointer dereference might occur during DNS server
  1194. response processing if the "resolver" directive was used, allowing an
  1195. attacker who is able to forge UDP packets from the DNS server to
  1196. cause segmentation fault in a worker process (CVE-2016-0742).
  1197. *) Security: use-after-free condition might occur during CNAME response
  1198. processing if the "resolver" directive was used, allowing an attacker
  1199. who is able to trigger name resolution to cause segmentation fault in
  1200. a worker process, or might have potential other impact
  1201. (CVE-2016-0746).
  1202. *) Security: CNAME resolution was insufficiently limited if the
  1203. "resolver" directive was used, allowing an attacker who is able to
  1204. trigger arbitrary name resolution to cause excessive resource
  1205. consumption in worker processes (CVE-2016-0747).
  1206. *) Feature: the "auto" parameter of the "worker_cpu_affinity" directive.
  1207. *) Bugfix: the "proxy_protocol" parameter of the "listen" directive did
  1208. not work with IPv6 listen sockets.
  1209. *) Bugfix: connections to upstream servers might be cached incorrectly
  1210. when using the "keepalive" directive.
  1211. *) Bugfix: proxying used the HTTP method of the original request after
  1212. an "X-Accel-Redirect" redirection.
  1213. Changes with nginx 1.9.9 09 Dec 2015
  1214. *) Bugfix: proxying to unix domain sockets did not work when using
  1215. variables; the bug had appeared in 1.9.8.
  1216. Changes with nginx 1.9.8 08 Dec 2015
  1217. *) Feature: pwritev() support.
  1218. *) Feature: the "include" directive inside the "upstream" block.
  1219. *) Feature: the ngx_http_slice_module.
  1220. *) Bugfix: a segmentation fault might occur in a worker process when
  1221. using LibreSSL; the bug had appeared in 1.9.6.
  1222. *) Bugfix: nginx could not be built on OS X in some cases.
  1223. Changes with nginx 1.9.7 17 Nov 2015
  1224. *) Feature: the "nohostname" parameter of logging to syslog.
  1225. *) Feature: the "proxy_cache_convert_head" directive.
  1226. *) Feature: the $realip_remote_addr variable in the
  1227. ngx_http_realip_module.
  1228. *) Bugfix: the "expires" directive might not work when using variables.
  1229. *) Bugfix: a segmentation fault might occur in a worker process when
  1230. using HTTP/2; the bug had appeared in 1.9.6.
  1231. *) Bugfix: if nginx was built with the ngx_http_v2_module it was
  1232. possible to use the HTTP/2 protocol even if the "http2" parameter of
  1233. the "listen" directive was not specified.
  1234. *) Bugfix: in the ngx_http_v2_module.
  1235. Changes with nginx 1.9.6 27 Oct 2015
  1236. *) Bugfix: a segmentation fault might occur in a worker process when
  1237. using HTTP/2.
  1238. Thanks to Piotr Sikora and Denis Andzakovic.
  1239. *) Bugfix: the $server_protocol variable was empty when using HTTP/2.
  1240. *) Bugfix: backend SSL connections in the stream module might be timed
  1241. out unexpectedly.
  1242. *) Bugfix: a segmentation fault might occur in a worker process if
  1243. different ssl_session_cache settings were used in different virtual
  1244. servers.
  1245. *) Bugfix: nginx/Windows could not be built with MinGW gcc; the bug had
  1246. appeared in 1.9.4.
  1247. Thanks to Kouhei Sutou.
  1248. *) Bugfix: time was not updated when the timer_resolution directive was
  1249. used on Windows.
  1250. *) Miscellaneous minor fixes and improvements.
  1251. Thanks to Markus Linnala, Kurtis Nusbaum and Piotr Sikora.
  1252. Changes with nginx 1.9.5 22 Sep 2015
  1253. *) Feature: the ngx_http_v2_module (replaces ngx_http_spdy_module).
  1254. Thanks to Dropbox and Automattic for sponsoring this work.
  1255. *) Change: now the "output_buffers" directive uses two buffers by
  1256. default.
  1257. *) Change: now nginx limits subrequests recursion, not simultaneous
  1258. subrequests.
  1259. *) Change: now nginx checks the whole cache key when returning a
  1260. response from cache.
  1261. Thanks to Gena Makhomed and Sergey Brester.
  1262. *) Bugfix: "header already sent" alerts might appear in logs when using
  1263. cache; the bug had appeared in 1.7.5.
  1264. *) Bugfix: "writev() failed (4: Interrupted system call)" errors might
  1265. appear in logs when using CephFS and the "timer_resolution" directive
  1266. on Linux.
  1267. *) Bugfix: in invalid configurations handling.
  1268. Thanks to Markus Linnala.
  1269. *) Bugfix: a segmentation fault occurred in a worker process if the
  1270. "sub_filter" directive was used at http level; the bug had appeared
  1271. in 1.9.4.
  1272. Changes with nginx 1.9.4 18 Aug 2015
  1273. *) Change: the "proxy_downstream_buffer" and "proxy_upstream_buffer"
  1274. directives of the stream module are replaced with the
  1275. "proxy_buffer_size" directive.
  1276. *) Feature: the "tcp_nodelay" directive in the stream module.
  1277. *) Feature: multiple "sub_filter" directives can be used simultaneously.
  1278. *) Feature: variables support in the search string of the "sub_filter"
  1279. directive.
  1280. *) Workaround: configuration testing might fail under Linux OpenVZ.
  1281. Thanks to Gena Makhomed.
  1282. *) Bugfix: old worker processes might hog CPU after reconfiguration with
  1283. a large number of worker_connections.
  1284. *) Bugfix: a segmentation fault might occur in a worker process if the
  1285. "try_files" and "alias" directives were used inside a location given
  1286. by a regular expression; the bug had appeared in 1.7.1.
  1287. *) Bugfix: the "try_files" directive inside a nested location given by a
  1288. regular expression worked incorrectly if the "alias" directive was
  1289. used in the outer location.
  1290. *) Bugfix: in hash table initialization error handling.
  1291. *) Bugfix: nginx could not be built with Visual Studio 2015.
  1292. Changes with nginx 1.9.3 14 Jul 2015
  1293. *) Change: duplicate "http", "mail", and "stream" blocks are now
  1294. disallowed.
  1295. *) Feature: connection limiting in the stream module.
  1296. *) Feature: data rate limiting in the stream module.
  1297. *) Bugfix: the "zone" directive inside the "upstream" block did not work
  1298. on Windows.
  1299. *) Bugfix: compatibility with LibreSSL in the stream module.
  1300. Thanks to Piotr Sikora.
  1301. *) Bugfix: in the "--builddir" configure parameter.
  1302. Thanks to Piotr Sikora.
  1303. *) Bugfix: the "ssl_stapling_file" directive did not work; the bug had
  1304. appeared in 1.9.2.
  1305. Thanks to Faidon Liambotis and Brandon Black.
  1306. *) Bugfix: a segmentation fault might occur in a worker process if the
  1307. "ssl_stapling" directive was used; the bug had appeared in 1.9.2.
  1308. Thanks to Matthew Baldwin.
  1309. Changes with nginx 1.9.2 16 Jun 2015
  1310. *) Feature: the "backlog" parameter of the "listen" directives of the
  1311. mail proxy and stream modules.
  1312. *) Feature: the "allow" and "deny" directives in the stream module.
  1313. *) Feature: the "proxy_bind" directive in the stream module.
  1314. *) Feature: the "proxy_protocol" directive in the stream module.
  1315. *) Feature: the -T switch.
  1316. *) Feature: the REQUEST_SCHEME parameter added to the fastcgi.conf,
  1317. fastcgi_params, scgi_params, and uwsgi_params standard configuration
  1318. files.
  1319. *) Bugfix: the "reuseport" parameter of the "listen" directive of the
  1320. stream module did not work.
  1321. *) Bugfix: OCSP stapling might return an expired OCSP response in some
  1322. cases.
  1323. Changes with nginx 1.9.1 26 May 2015
  1324. *) Change: now SSLv3 protocol is disabled by default.
  1325. *) Change: some long deprecated directives are not supported anymore.
  1326. *) Feature: the "reuseport" parameter of the "listen" directive.
  1327. Thanks to Yingqi Lu at Intel and Sepherosa Ziehau.
  1328. *) Feature: the $upstream_connect_time variable.
  1329. *) Bugfix: in the "hash" directive on big-endian platforms.
  1330. *) Bugfix: nginx might fail to start on some old Linux variants; the bug
  1331. had appeared in 1.7.11.
  1332. *) Bugfix: in IP address parsing.
  1333. Thanks to Sergey Polovko.
  1334. Changes with nginx 1.9.0 28 Apr 2015
  1335. *) Change: obsolete aio and rtsig event methods have been removed.
  1336. *) Feature: the "zone" directive inside the "upstream" block.
  1337. *) Feature: the stream module.
  1338. *) Feature: byte ranges support in the ngx_http_memcached_module.
  1339. Thanks to Martin Mlynář.
  1340. *) Feature: shared memory can now be used on Windows versions with
  1341. address space layout randomization.
  1342. Thanks to Sergey Brester.
  1343. *) Feature: the "error_log" directive can now be used on mail and server
  1344. levels in mail proxy.
  1345. *) Bugfix: the "proxy_protocol" parameter of the "listen" directive did
  1346. not work if not specified in the first "listen" directive for a
  1347. listen socket.
  1348. Changes with nginx 1.7.12 07 Apr 2015
  1349. *) Feature: now the "tcp_nodelay" directive works with backend SSL
  1350. connections.
  1351. *) Feature: now thread pools can be used to read cache file headers.
  1352. *) Bugfix: in the "proxy_request_buffering" directive.
  1353. *) Bugfix: a segmentation fault might occur in a worker process when
  1354. using thread pools on Linux.
  1355. *) Bugfix: in error handling when using the "ssl_stapling" directive.
  1356. Thanks to Filipe da Silva.
  1357. *) Bugfix: in the ngx_http_spdy_module.
  1358. Changes with nginx 1.7.11 24 Mar 2015
  1359. *) Change: the "sendfile" parameter of the "aio" directive is
  1360. deprecated; now nginx automatically uses AIO to pre-load data for
  1361. sendfile if both "aio" and "sendfile" directives are used.
  1362. *) Feature: experimental thread pools support.
  1363. *) Feature: the "proxy_request_buffering", "fastcgi_request_buffering",
  1364. "scgi_request_buffering", and "uwsgi_request_buffering" directives.
  1365. *) Feature: request body filters experimental API.
  1366. *) Feature: client SSL certificates support in mail proxy.
  1367. Thanks to Sven Peter, Franck Levionnois, and Filipe Da Silva.
  1368. *) Feature: startup speedup when using the "hash ... consistent"
  1369. directive in the upstream block.
  1370. Thanks to Wai Keen Woon.
  1371. *) Feature: debug logging into a cyclic memory buffer.
  1372. *) Bugfix: in hash table handling.
  1373. Thanks to Chris West.
  1374. *) Bugfix: in the "proxy_cache_revalidate" directive.
  1375. *) Bugfix: SSL connections might hang if deferred accept or the
  1376. "proxy_protocol" parameter of the "listen" directive were used.
  1377. Thanks to James Hamlin.
  1378. *) Bugfix: the $upstream_response_time variable might contain a wrong
  1379. value if the "image_filter" directive was used.
  1380. *) Bugfix: in integer overflow handling.
  1381. Thanks to Régis Leroy.
  1382. *) Bugfix: it was not possible to enable SSLv3 with LibreSSL.
  1383. *) Bugfix: the "ignoring stale global SSL error ... called a function
  1384. you should not call" alerts appeared in logs when using LibreSSL.
  1385. *) Bugfix: certificates specified by the "ssl_client_certificate" and
  1386. "ssl_trusted_certificate" directives were inadvertently used to
  1387. automatically construct certificate chains.
  1388. Changes with nginx 1.7.10 10 Feb 2015
  1389. *) Feature: the "use_temp_path" parameter of the "proxy_cache_path",
  1390. "fastcgi_cache_path", "scgi_cache_path", and "uwsgi_cache_path"
  1391. directives.
  1392. *) Feature: the $upstream_header_time variable.
  1393. *) Workaround: now on disk overflow nginx tries to write error logs once
  1394. a second only.
  1395. *) Bugfix: the "try_files" directive did not ignore normal files while
  1396. testing directories.
  1397. Thanks to Damien Tournoud.
  1398. *) Bugfix: alerts "sendfile() failed" if the "sendfile" directive was
  1399. used on OS X; the bug had appeared in 1.7.8.
  1400. *) Bugfix: alerts "sem_post() failed" might appear in logs.
  1401. *) Bugfix: nginx could not be built with musl libc.
  1402. Thanks to James Taylor.
  1403. *) Bugfix: nginx could not be built on Tru64 UNIX.
  1404. Thanks to Goetz T. Fischer.
  1405. Changes with nginx 1.7.9 23 Dec 2014
  1406. *) Feature: variables support in the "proxy_cache", "fastcgi_cache",
  1407. "scgi_cache", and "uwsgi_cache" directives.
  1408. *) Feature: variables support in the "expires" directive.
  1409. *) Feature: loading of secret keys from hardware tokens with OpenSSL
  1410. engines.
  1411. Thanks to Dmitrii Pichulin.
  1412. *) Feature: the "autoindex_format" directive.
  1413. *) Bugfix: cache revalidation is now only used for responses with 200
  1414. and 206 status codes.
  1415. Thanks to Piotr Sikora.
  1416. *) Bugfix: the "TE" client request header line was passed to backends
  1417. while proxying.
  1418. *) Bugfix: the "proxy_pass", "fastcgi_pass", "scgi_pass", and
  1419. "uwsgi_pass" directives might not work correctly inside the "if" and
  1420. "limit_except" blocks.
  1421. *) Bugfix: the "proxy_store" directive with the "on" parameter was
  1422. ignored if the "proxy_store" directive with an explicitly specified
  1423. file path was used on a previous level.
  1424. *) Bugfix: nginx could not be built with BoringSSL.
  1425. Thanks to Lukas Tribus.
  1426. Changes with nginx 1.7.8 02 Dec 2014
  1427. *) Change: now the "If-Modified-Since", "If-Range", etc. client request
  1428. header lines are passed to a backend while caching if nginx knows in
  1429. advance that the response will not be cached (e.g., when using
  1430. proxy_cache_min_uses).
  1431. *) Change: now after proxy_cache_lock_timeout nginx sends a request to a
  1432. backend with caching disabled; the new directives
  1433. "proxy_cache_lock_age", "fastcgi_cache_lock_age",
  1434. "scgi_cache_lock_age", and "uwsgi_cache_lock_age" specify a time
  1435. after which the lock will be released and another attempt to cache a
  1436. response will be made.
  1437. *) Change: the "log_format" directive can now be used only at http
  1438. level.
  1439. *) Feature: the "proxy_ssl_certificate", "proxy_ssl_certificate_key",
  1440. "proxy_ssl_password_file", "uwsgi_ssl_certificate",
  1441. "uwsgi_ssl_certificate_key", and "uwsgi_ssl_password_file"
  1442. directives.
  1443. Thanks to Piotr Sikora.
  1444. *) Feature: it is now possible to switch to a named location using
  1445. "X-Accel-Redirect".
  1446. Thanks to Toshikuni Fukaya.
  1447. *) Feature: now the "tcp_nodelay" directive works with SPDY connections.
  1448. *) Feature: new directives in vim syntax highliting scripts.
  1449. Thanks to Peter Wu.
  1450. *) Bugfix: nginx ignored the "s-maxage" value in the "Cache-Control"
  1451. backend response header line.
  1452. Thanks to Piotr Sikora.
  1453. *) Bugfix: in the ngx_http_spdy_module.
  1454. Thanks to Piotr Sikora.
  1455. *) Bugfix: in the "ssl_password_file" directive when using OpenSSL
  1456. 0.9.8zc, 1.0.0o, 1.0.1j.
  1457. *) Bugfix: alerts "header already sent" appeared in logs if the
  1458. "post_action" directive was used; the bug had appeared in 1.5.4.
  1459. *) Bugfix: alerts "the http output chain is empty" might appear in logs
  1460. if the "postpone_output 0" directive was used with SSI includes.
  1461. *) Bugfix: in the "proxy_cache_lock" directive with SSI subrequests.
  1462. Thanks to Yichun Zhang.
  1463. Changes with nginx 1.7.7 28 Oct 2014
  1464. *) Change: now nginx takes into account the "Vary" header line in a
  1465. backend response while caching.
  1466. *) Feature: the "proxy_force_ranges", "fastcgi_force_ranges",
  1467. "scgi_force_ranges", and "uwsgi_force_ranges" directives.
  1468. *) Feature: the "proxy_limit_rate", "fastcgi_limit_rate",
  1469. "scgi_limit_rate", and "uwsgi_limit_rate" directives.
  1470. *) Feature: the "Vary" parameter of the "proxy_ignore_headers",
  1471. "fastcgi_ignore_headers", "scgi_ignore_headers", and
  1472. "uwsgi_ignore_headers" directives.
  1473. *) Bugfix: the last part of a response received from a backend with
  1474. unbufferred proxy might not be sent to a client if "gzip" or "gunzip"
  1475. directives were used.
  1476. *) Bugfix: in the "proxy_cache_revalidate" directive.
  1477. Thanks to Piotr Sikora.
  1478. *) Bugfix: in error handling.
  1479. Thanks to Yichun Zhang and Daniil Bondarev.
  1480. *) Bugfix: in the "proxy_next_upstream_tries" and
  1481. "proxy_next_upstream_timeout" directives.
  1482. Thanks to Feng Gu.
  1483. *) Bugfix: nginx/Windows could not be built with MinGW-w64 gcc.
  1484. Thanks to Kouhei Sutou.
  1485. Changes with nginx 1.7.6 30 Sep 2014
  1486. *) Change: the deprecated "limit_zone" directive is not supported
  1487. anymore.
  1488. *) Feature: the "limit_conn_zone" and "limit_req_zone" directives now
  1489. can be used with combinations of multiple variables.
  1490. *) Bugfix: request body might be transmitted incorrectly when retrying a
  1491. FastCGI request to the next upstream server.
  1492. *) Bugfix: in logging to syslog.
  1493. Changes with nginx 1.7.5 16 Sep 2014
  1494. *) Security: it was possible to reuse SSL sessions in unrelated contexts
  1495. if a shared SSL session cache or the same TLS session ticket key was
  1496. used for multiple "server" blocks (CVE-2014-3616).
  1497. Thanks to Antoine Delignat-Lavaud.
  1498. *) Change: now the "stub_status" directive does not require a parameter.
  1499. *) Feature: the "always" parameter of the "add_header" directive.
  1500. *) Feature: the "proxy_next_upstream_tries",
  1501. "proxy_next_upstream_timeout", "fastcgi_next_upstream_tries",
  1502. "fastcgi_next_upstream_timeout", "memcached_next_upstream_tries",
  1503. "memcached_next_upstream_timeout", "scgi_next_upstream_tries",
  1504. "scgi_next_upstream_timeout", "uwsgi_next_upstream_tries", and
  1505. "uwsgi_next_upstream_timeout" directives.
  1506. *) Bugfix: in the "if" parameter of the "access_log" directive.
  1507. *) Bugfix: in the ngx_http_perl_module.
  1508. Thanks to Piotr Sikora.
  1509. *) Bugfix: the "listen" directive of the mail proxy module did not allow
  1510. to specify more than two parameters.
  1511. *) Bugfix: the "sub_filter" directive did not work with a string to
  1512. replace consisting of a single character.
  1513. *) Bugfix: requests might hang if resolver was used and a timeout
  1514. occurred during a DNS request.
  1515. *) Bugfix: in the ngx_http_spdy_module when using with AIO.
  1516. *) Bugfix: a segmentation fault might occur in a worker process if the
  1517. "set" directive was used to change the "$http_...", "$sent_http_...",
  1518. or "$upstream_http_..." variables.
  1519. *) Bugfix: in memory allocation error handling.
  1520. Thanks to Markus Linnala and Feng Gu.
  1521. Changes with nginx 1.7.4 05 Aug 2014
  1522. *) Security: pipelined commands were not discarded after STARTTLS
  1523. command in SMTP proxy (CVE-2014-3556); the bug had appeared in 1.5.6.
  1524. Thanks to Chris Boulton.
  1525. *) Change: URI escaping now uses uppercase hexadecimal digits.
  1526. Thanks to Piotr Sikora.
  1527. *) Feature: now nginx can be build with BoringSSL and LibreSSL.
  1528. Thanks to Piotr Sikora.
  1529. *) Bugfix: requests might hang if resolver was used and a DNS server
  1530. returned a malformed response; the bug had appeared in 1.5.8.
  1531. *) Bugfix: in the ngx_http_spdy_module.
  1532. Thanks to Piotr Sikora.
  1533. *) Bugfix: the $uri variable might contain garbage when returning errors
  1534. with code 400.
  1535. Thanks to Sergey Bobrov.
  1536. *) Bugfix: in error handling in the "proxy_store" directive and the
  1537. ngx_http_dav_module.
  1538. Thanks to Feng Gu.
  1539. *) Bugfix: a segmentation fault might occur if logging of errors to
  1540. syslog was used; the bug had appeared in 1.7.1.
  1541. *) Bugfix: the $geoip_latitude, $geoip_longitude, $geoip_dma_code, and
  1542. $geoip_area_code variables might not work.
  1543. Thanks to Yichun Zhang.
  1544. *) Bugfix: in memory allocation error handling.
  1545. Thanks to Tatsuhiko Kubo and Piotr Sikora.
  1546. Changes with nginx 1.7.3 08 Jul 2014
  1547. *) Feature: weak entity tags are now preserved on response
  1548. modifications, and strong ones are changed to weak.
  1549. *) Feature: cache revalidation now uses If-None-Match header if
  1550. possible.
  1551. *) Feature: the "ssl_password_file" directive.
  1552. *) Bugfix: the If-None-Match request header line was ignored if there
  1553. was no Last-Modified header in a response returned from cache.
  1554. *) Bugfix: "peer closed connection in SSL handshake" messages were
  1555. logged at "info" level instead of "error" while connecting to
  1556. backends.
  1557. *) Bugfix: in the ngx_http_dav_module module in nginx/Windows.
  1558. *) Bugfix: SPDY connections might be closed prematurely if caching was
  1559. used.
  1560. Changes with nginx 1.7.2 17 Jun 2014
  1561. *) Feature: the "hash" directive inside the "upstream" block.
  1562. *) Feature: defragmentation of free shared memory blocks.
  1563. Thanks to Wandenberg Peixoto and Yichun Zhang.
  1564. *) Bugfix: a segmentation fault might occur in a worker process if the
  1565. default value of the "access_log" directive was used; the bug had
  1566. appeared in 1.7.0.
  1567. Thanks to Piotr Sikora.
  1568. *) Bugfix: trailing slash was mistakenly removed from the last parameter
  1569. of the "try_files" directive.
  1570. *) Bugfix: nginx could not be built on OS X in some cases.
  1571. *) Bugfix: in the ngx_http_spdy_module.
  1572. Changes with nginx 1.7.1 27 May 2014
  1573. *) Feature: the "$upstream_cookie_..." variables.
  1574. *) Feature: the $ssl_client_fingerprint variable.
  1575. *) Feature: the "error_log" and "access_log" directives now support
  1576. logging to syslog.
  1577. *) Feature: the mail proxy now logs client port on connect.
  1578. *) Bugfix: memory leak if the "ssl_stapling" directive was used.
  1579. Thanks to Filipe da Silva.
  1580. *) Bugfix: the "alias" directive used inside a location given by a
  1581. regular expression worked incorrectly if the "if" or "limit_except"
  1582. directives were used.
  1583. *) Bugfix: the "charset" directive did not set a charset to encoded
  1584. backend responses.
  1585. *) Bugfix: a "proxy_pass" directive without URI part might use original
  1586. request after the $args variable was set.
  1587. Thanks to Yichun Zhang.
  1588. *) Bugfix: in the "none" parameter in the "smtp_auth" directive; the bug
  1589. had appeared in 1.5.6.
  1590. Thanks to Svyatoslav Nikolsky.
  1591. *) Bugfix: if sub_filter and SSI were used together, then responses
  1592. might be transferred incorrectly.
  1593. *) Bugfix: nginx could not be built with the --with-file-aio option on
  1594. Linux/aarch64.
  1595. Changes with nginx 1.7.0 24 Apr 2014
  1596. *) Feature: backend SSL certificate verification.
  1597. *) Feature: support for SNI while working with SSL backends.
  1598. *) Feature: the $ssl_server_name variable.
  1599. *) Feature: the "if" parameter of the "access_log" directive.
  1600. Changes with nginx 1.5.13 08 Apr 2014
  1601. *) Change: improved hash table handling; the default values of the
  1602. "variables_hash_max_size" and "types_hash_bucket_size" were changed
  1603. to 1024 and 64 respectively.
  1604. *) Feature: the ngx_http_mp4_module now supports the "end" argument.
  1605. *) Feature: byte ranges support in the ngx_http_mp4_module and while
  1606. saving responses to cache.
  1607. *) Bugfix: alerts "ngx_slab_alloc() failed: no memory" no longer logged
  1608. when using shared memory in the "ssl_session_cache" directive and in
  1609. the ngx_http_limit_req_module.
  1610. *) Bugfix: the "underscores_in_headers" directive did not allow
  1611. underscore as a first character of a header.
  1612. Thanks to Piotr Sikora.
  1613. *) Bugfix: cache manager might hog CPU on exit in nginx/Windows.
  1614. *) Bugfix: nginx/Windows terminated abnormally if the
  1615. "ssl_session_cache" directive was used with the "shared" parameter.
  1616. *) Bugfix: in the ngx_http_spdy_module.
  1617. Changes with nginx 1.5.12 18 Mar 2014
  1618. *) Security: a heap memory buffer overflow might occur in a worker
  1619. process while handling a specially crafted request by
  1620. ngx_http_spdy_module, potentially resulting in arbitrary code
  1621. execution (CVE-2014-0133).
  1622. Thanks to Lucas Molas, researcher at Programa STIC, Fundación Dr.
  1623. Manuel Sadosky, Buenos Aires, Argentina.
  1624. *) Feature: the "proxy_protocol" parameters of the "listen" and
  1625. "real_ip_header" directives, the $proxy_protocol_addr variable.
  1626. *) Bugfix: in the "fastcgi_next_upstream" directive.
  1627. Thanks to Lucas Molas.
  1628. Changes with nginx 1.5.11 04 Mar 2014
  1629. *) Security: memory corruption might occur in a worker process on 32-bit
  1630. platforms while handling a specially crafted request by
  1631. ngx_http_spdy_module, potentially resulting in arbitrary code
  1632. execution (CVE-2014-0088); the bug had appeared in 1.5.10.
  1633. Thanks to Lucas Molas, researcher at Programa STIC, Fundación Dr.
  1634. Manuel Sadosky, Buenos Aires, Argentina.
  1635. *) Feature: the $ssl_session_reused variable.
  1636. *) Bugfix: the "client_max_body_size" directive might not work when
  1637. reading a request body using chunked transfer encoding; the bug had
  1638. appeared in 1.3.9.
  1639. Thanks to Lucas Molas.
  1640. *) Bugfix: a segmentation fault might occur in a worker process when
  1641. proxying WebSocket connections.
  1642. *) Bugfix: a segmentation fault might occur in a worker process if the
  1643. ngx_http_spdy_module was used on 32-bit platforms; the bug had
  1644. appeared in 1.5.10.
  1645. *) Bugfix: the $upstream_status variable might contain wrong data if the
  1646. "proxy_cache_use_stale" or "proxy_cache_revalidate" directives were
  1647. used.
  1648. Thanks to Piotr Sikora.
  1649. *) Bugfix: a segmentation fault might occur in a worker process if
  1650. errors with code 400 were redirected to a named location using the
  1651. "error_page" directive.
  1652. *) Bugfix: nginx/Windows could not be built with Visual Studio 2013.
  1653. Changes with nginx 1.5.10 04 Feb 2014
  1654. *) Feature: the ngx_http_spdy_module now uses SPDY 3.1 protocol.
  1655. Thanks to Automattic and MaxCDN for sponsoring this work.
  1656. *) Feature: the ngx_http_mp4_module now skips tracks too short for a
  1657. seek requested.
  1658. *) Bugfix: a segmentation fault might occur in a worker process if the
  1659. $ssl_session_id variable was used in logs; the bug had appeared in
  1660. 1.5.9.
  1661. *) Bugfix: the $date_local and $date_gmt variables used wrong format
  1662. outside of the ngx_http_ssi_filter_module.
  1663. *) Bugfix: client connections might be immediately closed if deferred
  1664. accept was used; the bug had appeared in 1.3.15.
  1665. *) Bugfix: alerts "getsockopt(TCP_FASTOPEN) ... failed" appeared in logs
  1666. during binary upgrade on Linux; the bug had appeared in 1.5.8.
  1667. Thanks to Piotr Sikora.
  1668. Changes with nginx 1.5.9 22 Jan 2014
  1669. *) Change: now nginx expects escaped URIs in "X-Accel-Redirect" headers.
  1670. *) Feature: the "ssl_buffer_size" directive.
  1671. *) Feature: the "limit_rate" directive can now be used to rate limit
  1672. responses sent in SPDY connections.
  1673. *) Feature: the "spdy_chunk_size" directive.
  1674. *) Feature: the "ssl_session_tickets" directive.
  1675. Thanks to Dirkjan Bussink.
  1676. *) Bugfix: the $ssl_session_id variable contained full session
  1677. serialized instead of just a session id.
  1678. Thanks to Ivan Ristić.
  1679. *) Bugfix: nginx incorrectly handled escaped "?" character in the
  1680. "include" SSI command.
  1681. *) Bugfix: the ngx_http_dav_module did not unescape destination URI of
  1682. the COPY and MOVE methods.
  1683. *) Bugfix: resolver did not understand domain names with a trailing dot.
  1684. Thanks to Yichun Zhang.
  1685. *) Bugfix: alerts "zero size buf in output" might appear in logs while
  1686. proxying; the bug had appeared in 1.3.9.
  1687. *) Bugfix: a segmentation fault might occur in a worker process if the
  1688. ngx_http_spdy_module was used.
  1689. *) Bugfix: proxied WebSocket connections might hang right after
  1690. handshake if the select, poll, or /dev/poll methods were used.
  1691. *) Bugfix: the "xclient" directive of the mail proxy module incorrectly
  1692. handled IPv6 client addresses.
  1693. Changes with nginx 1.5.8 17 Dec 2013
  1694. *) Feature: IPv6 support in resolver.
  1695. *) Feature: the "listen" directive supports the "fastopen" parameter.
  1696. Thanks to Mathew Rodley.
  1697. *) Feature: SSL support in the ngx_http_uwsgi_module.
  1698. Thanks to Roberto De Ioris.
  1699. *) Feature: vim syntax highlighting scripts were added to contrib.
  1700. Thanks to Evan Miller.
  1701. *) Bugfix: a timeout might occur while reading client request body in an
  1702. SSL connection using chunked transfer encoding.
  1703. *) Bugfix: the "master_process" directive did not work correctly in
  1704. nginx/Windows.
  1705. *) Bugfix: the "setfib" parameter of the "listen" directive might not
  1706. work.
  1707. *) Bugfix: in the ngx_http_spdy_module.
  1708. Changes with nginx 1.5.7 19 Nov 2013
  1709. *) Security: a character following an unescaped space in a request line
  1710. was handled incorrectly (CVE-2013-4547); the bug had appeared in
  1711. 0.8.41.
  1712. Thanks to Ivan Fratric of the Google Security Team.
  1713. *) Change: a logging level of auth_basic errors about no user/password
  1714. provided has been lowered from "error" to "info".
  1715. *) Feature: the "proxy_cache_revalidate", "fastcgi_cache_revalidate",
  1716. "scgi_cache_revalidate", and "uwsgi_cache_revalidate" directives.
  1717. *) Feature: the "ssl_session_ticket_key" directive.
  1718. Thanks to Piotr Sikora.
  1719. *) Bugfix: the directive "add_header Cache-Control ''" added a
  1720. "Cache-Control" response header line with an empty value.
  1721. *) Bugfix: the "satisfy any" directive might return 403 error instead of
  1722. 401 if auth_request and auth_basic directives were used.
  1723. Thanks to Jan Marc Hoffmann.
  1724. *) Bugfix: the "accept_filter" and "deferred" parameters of the "listen"
  1725. directive were ignored for listen sockets created during binary
  1726. upgrade.
  1727. Thanks to Piotr Sikora.
  1728. *) Bugfix: some data received from a backend with unbufferred proxy
  1729. might not be sent to a client immediately if "gzip" or "gunzip"
  1730. directives were used.
  1731. Thanks to Yichun Zhang.
  1732. *) Bugfix: in error handling in ngx_http_gunzip_filter_module.
  1733. *) Bugfix: responses might hang if the ngx_http_spdy_module was used
  1734. with the "auth_request" directive.
  1735. *) Bugfix: memory leak in nginx/Windows.
  1736. Changes with nginx 1.5.6 01 Oct 2013
  1737. *) Feature: the "fastcgi_buffering" directive.
  1738. *) Feature: the "proxy_ssl_protocols" and "proxy_ssl_ciphers"
  1739. directives.
  1740. Thanks to Piotr Sikora.
  1741. *) Feature: optimization of SSL handshakes when using long certificate
  1742. chains.
  1743. *) Feature: the mail proxy supports SMTP pipelining.
  1744. *) Bugfix: in the ngx_http_auth_basic_module when using "$apr1$"
  1745. password encryption method.
  1746. Thanks to Markus Linnala.
  1747. *) Bugfix: in MacOSX, Cygwin, and nginx/Windows incorrect location might
  1748. be used to process a request if locations were given using characters
  1749. in different cases.
  1750. *) Bugfix: automatic redirect with appended trailing slash for proxied
  1751. locations might not work.
  1752. *) Bugfix: in the mail proxy server.
  1753. *) Bugfix: in the ngx_http_spdy_module.
  1754. Changes with nginx 1.5.5 17 Sep 2013
  1755. *) Change: now nginx assumes HTTP/1.0 by default if it is not able to
  1756. detect protocol reliably.
  1757. *) Feature: the "disable_symlinks" directive now uses O_PATH on Linux.
  1758. *) Feature: now nginx uses EPOLLRDHUP events to detect premature
  1759. connection close by clients if the "epoll" method is used.
  1760. *) Bugfix: in the "valid_referers" directive if the "server_names"
  1761. parameter was used.
  1762. *) Bugfix: the $request_time variable did not work in nginx/Windows.
  1763. *) Bugfix: in the "image_filter" directive.
  1764. Thanks to Lanshun Zhou.
  1765. *) Bugfix: OpenSSL 1.0.1f compatibility.
  1766. Thanks to Piotr Sikora.
  1767. Changes with nginx 1.5.4 27 Aug 2013
  1768. *) Change: the "js" extension MIME type has been changed to
  1769. "application/javascript"; default value of the "charset_types"
  1770. directive was changed accordingly.
  1771. *) Change: now the "image_filter" directive with the "size" parameter
  1772. returns responses with the "application/json" MIME type.
  1773. *) Feature: the ngx_http_auth_request_module.
  1774. *) Bugfix: a segmentation fault might occur on start or during
  1775. reconfiguration if the "try_files" directive was used with an empty
  1776. parameter.
  1777. *) Bugfix: memory leak if relative paths were specified using variables
  1778. in the "root" or "auth_basic_user_file" directives.
  1779. *) Bugfix: the "valid_referers" directive incorrectly executed regular
  1780. expressions if a "Referer" header started with "https://".
  1781. Thanks to Liangbin Li.
  1782. *) Bugfix: responses might hang if subrequests were used and an SSL
  1783. handshake error happened during subrequest processing.
  1784. Thanks to Aviram Cohen.
  1785. *) Bugfix: in the ngx_http_autoindex_module.
  1786. *) Bugfix: in the ngx_http_spdy_module.
  1787. Changes with nginx 1.5.3 30 Jul 2013
  1788. *) Change in internal API: now u->length defaults to -1 if working with
  1789. backends in unbuffered mode.
  1790. *) Change: now after receiving an incomplete response from a backend
  1791. server nginx tries to send an available part of the response to a
  1792. client, and then closes client connection.
  1793. *) Bugfix: a segmentation fault might occur in a worker process if the
  1794. ngx_http_spdy_module was used with the "client_body_in_file_only"
  1795. directive.
  1796. *) Bugfix: the "so_keepalive" parameter of the "listen" directive might
  1797. be handled incorrectly on DragonFlyBSD.
  1798. Thanks to Sepherosa Ziehau.
  1799. *) Bugfix: in the ngx_http_xslt_filter_module.
  1800. *) Bugfix: in the ngx_http_sub_filter_module.
  1801. Changes with nginx 1.5.2 02 Jul 2013
  1802. *) Feature: now several "error_log" directives can be used.
  1803. *) Bugfix: the $r->header_in() embedded perl method did not return value
  1804. of the "Cookie" and "X-Forwarded-For" request header lines; the bug
  1805. had appeared in 1.3.14.
  1806. *) Bugfix: in the ngx_http_spdy_module.
  1807. Thanks to Jim Radford.
  1808. *) Bugfix: nginx could not be built on Linux with x32 ABI.
  1809. Thanks to Serguei Ivantsov.
  1810. Changes with nginx 1.5.1 04 Jun 2013
  1811. *) Feature: the "ssi_last_modified", "sub_filter_last_modified", and
  1812. "xslt_last_modified" directives.
  1813. Thanks to Alexey Kolpakov.
  1814. *) Feature: the "http_403" parameter of the "proxy_next_upstream",
  1815. "fastcgi_next_upstream", "scgi_next_upstream", and
  1816. "uwsgi_next_upstream" directives.
  1817. *) Feature: the "allow" and "deny" directives now support unix domain
  1818. sockets.
  1819. *) Bugfix: nginx could not be built with the ngx_mail_ssl_module, but
  1820. without ngx_http_ssl_module; the bug had appeared in 1.3.14.
  1821. *) Bugfix: in the "proxy_set_body" directive.
  1822. Thanks to Lanshun Zhou.
  1823. *) Bugfix: in the "lingering_time" directive.
  1824. Thanks to Lanshun Zhou.
  1825. *) Bugfix: the "fail_timeout" parameter of the "server" directive in the
  1826. "upstream" context might not work if "max_fails" parameter was used;
  1827. the bug had appeared in 1.3.0.
  1828. *) Bugfix: a segmentation fault might occur in a worker process if the
  1829. "ssl_stapling" directive was used.
  1830. Thanks to Piotr Sikora.
  1831. *) Bugfix: in the mail proxy server.
  1832. Thanks to Filipe Da Silva.
  1833. *) Bugfix: nginx/Windows might stop accepting connections if several
  1834. worker processes were used.
  1835. Changes with nginx 1.5.0 07 May 2013
  1836. *) Security: a stack-based buffer overflow might occur in a worker
  1837. process while handling a specially crafted request, potentially
  1838. resulting in arbitrary code execution (CVE-2013-2028); the bug had
  1839. appeared in 1.3.9.
  1840. Thanks to Greg MacManus, iSIGHT Partners Labs.
  1841. Changes with nginx 1.4.0 24 Apr 2013
  1842. *) Bugfix: nginx could not be built with the ngx_http_perl_module if the
  1843. --with-openssl option was used; the bug had appeared in 1.3.16.
  1844. *) Bugfix: in a request body handling in the ngx_http_perl_module; the
  1845. bug had appeared in 1.3.9.
  1846. Changes with nginx 1.3.16 16 Apr 2013
  1847. *) Bugfix: a segmentation fault might occur in a worker process if
  1848. subrequests were used; the bug had appeared in 1.3.9.
  1849. *) Bugfix: the "tcp_nodelay" directive caused an error if a WebSocket
  1850. connection was proxied into a unix domain socket.
  1851. *) Bugfix: the $upstream_response_length variable has an incorrect value
  1852. "0" if buffering was not used.
  1853. Thanks to Piotr Sikora.
  1854. *) Bugfix: in the eventport and /dev/poll methods.
  1855. Changes with nginx 1.3.15 26 Mar 2013
  1856. *) Change: opening and closing a connection without sending any data in
  1857. it is no longer logged to access_log with error code 400.
  1858. *) Feature: the ngx_http_spdy_module.
  1859. Thanks to Automattic for sponsoring this work.
  1860. *) Feature: the "limit_req_status" and "limit_conn_status" directives.
  1861. Thanks to Nick Marden.
  1862. *) Feature: the "image_filter_interlace" directive.
  1863. Thanks to Ian Babrou.
  1864. *) Feature: $connections_waiting variable in the
  1865. ngx_http_stub_status_module.
  1866. *) Feature: the mail proxy module now supports IPv6 backends.
  1867. *) Bugfix: request body might be transmitted incorrectly when retrying a
  1868. request to the next upstream server; the bug had appeared in 1.3.9.
  1869. Thanks to Piotr Sikora.
  1870. *) Bugfix: in the "client_body_in_file_only" directive; the bug had
  1871. appeared in 1.3.9.
  1872. *) Bugfix: responses might hang if subrequests were used and a DNS error
  1873. happened during subrequest processing.
  1874. Thanks to Lanshun Zhou.
  1875. *) Bugfix: in backend usage accounting.
  1876. Changes with nginx 1.3.14 05 Mar 2013
  1877. *) Feature: $connections_active, $connections_reading, and
  1878. $connections_writing variables in the ngx_http_stub_status_module.
  1879. *) Feature: support of WebSocket connections in the
  1880. ngx_http_uwsgi_module and ngx_http_scgi_module.
  1881. *) Bugfix: in virtual servers handling with SNI.
  1882. *) Bugfix: new sessions were not always stored if the "ssl_session_cache
  1883. shared" directive was used and there was no free space in shared
  1884. memory.
  1885. Thanks to Piotr Sikora.
  1886. *) Bugfix: multiple X-Forwarded-For headers were handled incorrectly.
  1887. Thanks to Neal Poole for sponsoring this work.
  1888. *) Bugfix: in the ngx_http_mp4_module.
  1889. Thanks to Gernot Vormayr.
  1890. Changes with nginx 1.3.13 19 Feb 2013
  1891. *) Change: a compiler with name "cc" is now used by default.
  1892. *) Feature: support for proxying of WebSocket connections.
  1893. Thanks to Apcera and CloudBees for sponsoring this work.
  1894. *) Feature: the "auth_basic_user_file" directive supports "{SHA}"
  1895. password encryption method.
  1896. Thanks to Louis Opter.
  1897. Changes with nginx 1.3.12 05 Feb 2013
  1898. *) Feature: variables support in the "proxy_bind", "fastcgi_bind",
  1899. "memcached_bind", "scgi_bind", and "uwsgi_bind" directives.
  1900. *) Feature: the $pipe, $request_length, $time_iso8601, and $time_local
  1901. variables can now be used not only in the "log_format" directive.
  1902. Thanks to Kiril Kalchev.
  1903. *) Feature: IPv6 support in the ngx_http_geoip_module.
  1904. Thanks to Gregor Kališnik.
  1905. *) Bugfix: in the "proxy_method" directive.
  1906. *) Bugfix: a segmentation fault might occur in a worker process if
  1907. resolver was used with the poll method.
  1908. *) Bugfix: nginx might hog CPU during SSL handshake with a backend if
  1909. the select, poll, or /dev/poll methods were used.
  1910. *) Bugfix: the "[crit] SSL_write() failed (SSL:)" error.
  1911. *) Bugfix: in the "client_body_in_file_only" directive; the bug had
  1912. appeared in 1.3.9.
  1913. *) Bugfix: in the "fastcgi_keep_conn" directive.
  1914. Changes with nginx 1.3.11 10 Jan 2013
  1915. *) Bugfix: a segmentation fault might occur if logging was used; the bug
  1916. had appeared in 1.3.10.
  1917. *) Bugfix: the "proxy_pass" directive did not work with IP addresses
  1918. without port specified; the bug had appeared in 1.3.10.
  1919. *) Bugfix: a segmentation fault occurred on start or during
  1920. reconfiguration if the "keepalive" directive was specified more than
  1921. once in a single upstream block.
  1922. *) Bugfix: parameter "default" of the "geo" directive did not set
  1923. default value for IPv6 addresses.
  1924. Changes with nginx 1.3.10 25 Dec 2012
  1925. *) Change: domain names specified in configuration file are now resolved
  1926. to IPv6 addresses as well as IPv4 ones.
  1927. *) Change: now if the "include" directive with mask is used on Unix
  1928. systems, included files are sorted in alphabetical order.
  1929. *) Change: the "add_header" directive adds headers to 201 responses.
  1930. *) Feature: the "geo" directive now supports IPv6 addresses in CIDR
  1931. notation.
  1932. *) Feature: the "flush" and "gzip" parameters of the "access_log"
  1933. directive.
  1934. *) Feature: variables support in the "auth_basic" directive.
  1935. *) Bugfix: nginx could not be built with the ngx_http_perl_module in
  1936. some cases.
  1937. *) Bugfix: a segmentation fault might occur in a worker process if the
  1938. ngx_http_xslt_module was used.
  1939. *) Bugfix: nginx could not be built on MacOSX in some cases.
  1940. Thanks to Piotr Sikora.
  1941. *) Bugfix: the "limit_rate" directive with high rates might result in
  1942. truncated responses on 32-bit platforms.
  1943. Thanks to Alexey Antropov.
  1944. *) Bugfix: a segmentation fault might occur in a worker process if the
  1945. "if" directive was used.
  1946. Thanks to Piotr Sikora.
  1947. *) Bugfix: a "100 Continue" response was issued with "413 Request Entity
  1948. Too Large" responses.
  1949. *) Bugfix: the "image_filter", "image_filter_jpeg_quality" and
  1950. "image_filter_sharpen" directives might be inherited incorrectly.
  1951. Thanks to Ian Babrou.
  1952. *) Bugfix: "crypt_r() failed" errors might appear if the "auth_basic"
  1953. directive was used on Linux.
  1954. *) Bugfix: in backup servers handling.
  1955. Thanks to Thomas Chen.
  1956. *) Bugfix: proxied HEAD requests might return incorrect response if the
  1957. "gzip" directive was used.
  1958. Changes with nginx 1.3.9 27 Nov 2012
  1959. *) Feature: support for chunked transfer encoding while reading client
  1960. request body.
  1961. *) Feature: the $request_time and $msec variables can now be used not
  1962. only in the "log_format" directive.
  1963. *) Bugfix: cache manager and cache loader processes might not be able to
  1964. start if more than 512 listen sockets were used.
  1965. *) Bugfix: in the ngx_http_dav_module.
  1966. Changes with nginx 1.3.8 30 Oct 2012
  1967. *) Feature: the "optional_no_ca" parameter of the "ssl_verify_client"
  1968. directive.
  1969. Thanks to Mike Kazantsev and Eric O'Connor.
  1970. *) Feature: the $bytes_sent, $connection, and $connection_requests
  1971. variables can now be used not only in the "log_format" directive.
  1972. Thanks to Benjamin Grössing.
  1973. *) Feature: the "auto" parameter of the "worker_processes" directive.
  1974. *) Bugfix: "cache file ... has md5 collision" alert.
  1975. *) Bugfix: in the ngx_http_gunzip_filter_module.
  1976. *) Bugfix: in the "ssl_stapling" directive.
  1977. Changes with nginx 1.3.7 02 Oct 2012
  1978. *) Feature: OCSP stapling support.
  1979. Thanks to Comodo, DigiCert and GlobalSign for sponsoring this work.
  1980. *) Feature: the "ssl_trusted_certificate" directive.
  1981. *) Feature: resolver now randomly rotates addresses returned from cache.
  1982. Thanks to Anton Jouline.
  1983. *) Bugfix: OpenSSL 0.9.7 compatibility.
  1984. Changes with nginx 1.3.6 12 Sep 2012
  1985. *) Feature: the ngx_http_gunzip_filter_module.
  1986. *) Feature: the "memcached_gzip_flag" directive.
  1987. *) Feature: the "always" parameter of the "gzip_static" directive.
  1988. *) Bugfix: in the "limit_req" directive; the bug had appeared in 1.1.14.
  1989. Thanks to Charles Chen.
  1990. *) Bugfix: nginx could not be built by gcc 4.7 with -O2 optimization if
  1991. the --with-ipv6 option was used.
  1992. Changes with nginx 1.3.5 21 Aug 2012
  1993. *) Change: the ngx_http_mp4_module module no longer skips tracks in
  1994. formats other than H.264 and AAC.
  1995. *) Bugfix: a segmentation fault might occur in a worker process if the
  1996. "map" directive was used with variables as values.
  1997. *) Bugfix: a segmentation fault might occur in a worker process if the
  1998. "geo" directive was used with the "ranges" parameter but without the
  1999. "default" parameter; the bug had appeared in 0.8.43.
  2000. Thanks to Zhen Chen and Weibin Yao.
  2001. *) Bugfix: in the -p command-line parameter handling.
  2002. *) Bugfix: in the mail proxy server.
  2003. *) Bugfix: of minor potential bugs.
  2004. Thanks to Coverity.
  2005. *) Bugfix: nginx/Windows could not be built with Visual Studio 2005
  2006. Express.
  2007. Thanks to HAYASHI Kentaro.
  2008. Changes with nginx 1.3.4 31 Jul 2012
  2009. *) Change: the "ipv6only" parameter is now turned on by default for
  2010. listening IPv6 sockets.
  2011. *) Feature: the Clang compiler support.
  2012. *) Bugfix: extra listening sockets might be created.
  2013. Thanks to Roman Odaisky.
  2014. *) Bugfix: nginx/Windows might hog CPU if a worker process failed to
  2015. start.
  2016. Thanks to Ricardo Villalobos Guevara.
  2017. *) Bugfix: the "proxy_pass_header", "fastcgi_pass_header",
  2018. "scgi_pass_header", "uwsgi_pass_header", "proxy_hide_header",
  2019. "fastcgi_hide_header", "scgi_hide_header", and "uwsgi_hide_header"
  2020. directives might be inherited incorrectly.
  2021. Changes with nginx 1.3.3 10 Jul 2012
  2022. *) Feature: entity tags support and the "etag" directive.
  2023. *) Bugfix: trailing dot in a source value was not ignored if the "map"
  2024. directive was used with the "hostnames" parameter.
  2025. *) Bugfix: incorrect location might be used to process a request if a
  2026. URI was changed via a "rewrite" directive before an internal redirect
  2027. to a named location.
  2028. Changes with nginx 1.3.2 26 Jun 2012
  2029. *) Change: the "single" parameter of the "keepalive" directive is now
  2030. ignored.
  2031. *) Change: SSL compression is now disabled when using all versions of
  2032. OpenSSL, including ones prior to 1.0.0.
  2033. *) Feature: it is now possible to use the "ip_hash" directive to balance
  2034. IPv6 clients.
  2035. *) Feature: the $status variable can now be used not only in the
  2036. "log_format" directive.
  2037. *) Bugfix: a segmentation fault might occur in a worker process on
  2038. shutdown if the "resolver" directive was used.
  2039. *) Bugfix: a segmentation fault might occur in a worker process if the
  2040. ngx_http_mp4_module was used.
  2041. *) Bugfix: in the ngx_http_mp4_module.
  2042. *) Bugfix: a segmentation fault might occur in a worker process if
  2043. conflicting wildcard server names were used.
  2044. *) Bugfix: nginx might be terminated abnormally on a SIGBUS signal on
  2045. ARM platform.
  2046. *) Bugfix: an alert "sendmsg() failed (9: Bad file number)" on HP-UX
  2047. while reconfiguration.
  2048. Changes with nginx 1.3.1 05 Jun 2012
  2049. *) Security: now nginx/Windows ignores trailing dot in URI path
  2050. component, and does not allow URIs with ":$" in it.
  2051. Thanks to Vladimir Kochetkov, Positive Research Center.
  2052. *) Feature: the "proxy_pass", "fastcgi_pass", "scgi_pass", "uwsgi_pass"
  2053. directives, and the "server" directive inside the "upstream" block,
  2054. now support IPv6 addresses.
  2055. *) Feature: the "resolver" directive now supports IPv6 addresses and an
  2056. optional port specification.
  2057. *) Feature: the "least_conn" directive inside the "upstream" block.
  2058. *) Feature: it is now possible to specify a weight for servers while
  2059. using the "ip_hash" directive.
  2060. *) Bugfix: a segmentation fault might occur in a worker process if the
  2061. "image_filter" directive was used; the bug had appeared in 1.3.0.
  2062. *) Bugfix: nginx could not be built with ngx_cpp_test_module; the bug
  2063. had appeared in 1.1.12.
  2064. *) Bugfix: access to variables from SSI and embedded perl module might
  2065. not work after reconfiguration.
  2066. Thanks to Yichun Zhang.
  2067. *) Bugfix: in the ngx_http_xslt_filter_module.
  2068. Thanks to Kuramoto Eiji.
  2069. *) Bugfix: memory leak if $geoip_org variable was used.
  2070. Thanks to Denis F. Latypoff.
  2071. *) Bugfix: in the "proxy_cookie_domain" and "proxy_cookie_path"
  2072. directives.
  2073. Changes with nginx 1.3.0 15 May 2012
  2074. *) Feature: the "debug_connection" directive now supports IPv6 addresses
  2075. and the "unix:" parameter.
  2076. *) Feature: the "set_real_ip_from" directive and the "proxy" parameter
  2077. of the "geo" directive now support IPv6 addresses.
  2078. *) Feature: the "real_ip_recursive", "geoip_proxy", and
  2079. "geoip_proxy_recursive" directives.
  2080. *) Feature: the "proxy_recursive" parameter of the "geo" directive.
  2081. *) Bugfix: a segmentation fault might occur in a worker process if the
  2082. "resolver" directive was used.
  2083. *) Bugfix: a segmentation fault might occur in a worker process if the
  2084. "fastcgi_pass", "scgi_pass", or "uwsgi_pass" directives were used and
  2085. backend returned incorrect response.
  2086. *) Bugfix: a segmentation fault might occur in a worker process if the
  2087. "rewrite" directive was used and new request arguments in a
  2088. replacement used variables.
  2089. *) Bugfix: nginx might hog CPU if the open file resource limit was
  2090. reached.
  2091. *) Bugfix: nginx might loop infinitely over backends if the
  2092. "proxy_next_upstream" directive with the "http_404" parameter was
  2093. used and there were backup servers specified in an upstream block.
  2094. *) Bugfix: adding the "down" parameter of the "server" directive might
  2095. cause unneeded client redistribution among backend servers if the
  2096. "ip_hash" directive was used.
  2097. *) Bugfix: socket leak.
  2098. Thanks to Yichun Zhang.
  2099. *) Bugfix: in the ngx_http_fastcgi_module.
  2100. Changes with nginx 1.2.0 23 Apr 2012
  2101. *) Bugfix: a segmentation fault might occur in a worker process if the
  2102. "try_files" directive was used; the bug had appeared in 1.1.19.
  2103. *) Bugfix: response might be truncated if there were more than IOV_MAX
  2104. buffers used.
  2105. *) Bugfix: in the "crop" parameter of the "image_filter" directive.
  2106. Thanks to Maxim Bublis.
  2107. Changes with nginx 1.1.19 12 Apr 2012
  2108. *) Security: specially crafted mp4 file might allow to overwrite memory
  2109. locations in a worker process if the ngx_http_mp4_module was used,
  2110. potentially resulting in arbitrary code execution (CVE-2012-2089).
  2111. Thanks to Matthew Daley.
  2112. *) Bugfix: nginx/Windows might be terminated abnormally.
  2113. Thanks to Vincent Lee.
  2114. *) Bugfix: nginx hogged CPU if all servers in an upstream were marked as
  2115. "backup".
  2116. *) Bugfix: the "allow" and "deny" directives might be inherited
  2117. incorrectly if they were used with IPv6 addresses.
  2118. *) Bugfix: the "modern_browser" and "ancient_browser" directives might
  2119. be inherited incorrectly.
  2120. *) Bugfix: timeouts might be handled incorrectly on Solaris/SPARC.
  2121. *) Bugfix: in the ngx_http_mp4_module.
  2122. Changes with nginx 1.1.18 28 Mar 2012
  2123. *) Change: keepalive connections are no longer disabled for Safari by
  2124. default.
  2125. *) Feature: the $connection_requests variable.
  2126. *) Feature: $tcpinfo_rtt, $tcpinfo_rttvar, $tcpinfo_snd_cwnd and
  2127. $tcpinfo_rcv_space variables.
  2128. *) Feature: the "worker_cpu_affinity" directive now works on FreeBSD.
  2129. *) Feature: the "xslt_param" and "xslt_string_param" directives.
  2130. Thanks to Samuel Behan.
  2131. *) Bugfix: in configure tests.
  2132. Thanks to Piotr Sikora.
  2133. *) Bugfix: in the ngx_http_xslt_filter_module.
  2134. *) Bugfix: nginx could not be built on Debian GNU/Hurd.
  2135. Changes with nginx 1.1.17 15 Mar 2012
  2136. *) Security: content of previously freed memory might be sent to a
  2137. client if backend returned specially crafted response.
  2138. Thanks to Matthew Daley.
  2139. *) Bugfix: in the embedded perl module if used from SSI.
  2140. Thanks to Matthew Daley.
  2141. *) Bugfix: in the ngx_http_uwsgi_module.
  2142. Changes with nginx 1.1.16 29 Feb 2012
  2143. *) Change: the simultaneous subrequest limit has been raised to 200.
  2144. *) Feature: the "from" parameter of the "disable_symlinks" directive.
  2145. *) Feature: the "return" and "error_page" directives can now be used to
  2146. return 307 redirections.
  2147. *) Bugfix: a segmentation fault might occur in a worker process if the
  2148. "resolver" directive was used and there was no "error_log" directive
  2149. specified at global level.
  2150. Thanks to Roman Arutyunyan.
  2151. *) Bugfix: a segmentation fault might occur in a worker process if the
  2152. "proxy_http_version 1.1" or "fastcgi_keep_conn on" directives were
  2153. used.
  2154. *) Bugfix: memory leaks.
  2155. Thanks to Lanshun Zhou.
  2156. *) Bugfix: in the "disable_symlinks" directive.
  2157. *) Bugfix: on ZFS filesystem disk cache size might be calculated
  2158. incorrectly; the bug had appeared in 1.0.1.
  2159. *) Bugfix: nginx could not be built by the icc 12.1 compiler.
  2160. *) Bugfix: nginx could not be built by gcc on Solaris; the bug had
  2161. appeared in 1.1.15.
  2162. Changes with nginx 1.1.15 15 Feb 2012
  2163. *) Feature: the "disable_symlinks" directive.
  2164. *) Feature: the "proxy_cookie_domain" and "proxy_cookie_path"
  2165. directives.
  2166. *) Bugfix: nginx might log incorrect error "upstream prematurely closed
  2167. connection" instead of correct "upstream sent too big header" one.
  2168. Thanks to Feibo Li.
  2169. *) Bugfix: nginx could not be built with the ngx_http_perl_module if the
  2170. --with-openssl option was used.
  2171. *) Bugfix: the number of internal redirects to named locations was not
  2172. limited.
  2173. *) Bugfix: calling $r->flush() multiple times might cause errors in the
  2174. ngx_http_gzip_filter_module.
  2175. *) Bugfix: temporary files might be not removed if the "proxy_store"
  2176. directive was used with SSI includes.
  2177. *) Bugfix: in some cases non-cacheable variables (such as the $args
  2178. variable) returned old empty cached value.
  2179. *) Bugfix: a segmentation fault might occur in a worker process if too
  2180. many SSI subrequests were issued simultaneously; the bug had appeared
  2181. in 0.7.25.
  2182. Changes with nginx 1.1.14 30 Jan 2012
  2183. *) Feature: multiple "limit_req" limits may be used simultaneously.
  2184. *) Bugfix: in error handling while connecting to a backend.
  2185. Thanks to Piotr Sikora.
  2186. *) Bugfix: in AIO error handling on FreeBSD.
  2187. *) Bugfix: in the OpenSSL library initialization.
  2188. *) Bugfix: the "proxy_redirect" directives might be inherited
  2189. incorrectly.
  2190. *) Bugfix: memory leak during reconfiguration if the "pcre_jit"
  2191. directive was used.
  2192. Changes with nginx 1.1.13 16 Jan 2012
  2193. *) Feature: the "TLSv1.1" and "TLSv1.2" parameters of the
  2194. "ssl_protocols" directive.
  2195. *) Bugfix: the "limit_req" directive parameters were not inherited
  2196. correctly; the bug had appeared in 1.1.12.
  2197. *) Bugfix: the "proxy_redirect" directive incorrectly processed
  2198. "Refresh" header if regular expression were used.
  2199. *) Bugfix: the "proxy_cache_use_stale" directive with "error" parameter
  2200. did not return answer from cache if there were no live upstreams.
  2201. *) Bugfix: the "worker_cpu_affinity" directive might not work.
  2202. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in
  2203. 1.1.12.
  2204. *) Bugfix: in the ngx_http_mp4_module.
  2205. Changes with nginx 1.1.12 26 Dec 2011
  2206. *) Change: a "proxy_pass" directive without URI part now uses changed
  2207. URI after redirection with the "error_page" directive.
  2208. Thanks to Lanshun Zhou.
  2209. *) Feature: the "proxy/fastcgi/scgi/uwsgi_cache_lock",
  2210. "proxy/fastcgi/scgi/uwsgi_cache_lock_timeout" directives.
  2211. *) Feature: the "pcre_jit" directive.
  2212. *) Feature: the "if" SSI command supports captures in regular
  2213. expressions.
  2214. *) Bugfix: the "if" SSI command did not work inside the "block" command.
  2215. *) Bugfix: the "limit_conn_log_level" and "limit_req_log_level"
  2216. directives might not work.
  2217. *) Bugfix: the "limit_rate" directive did not allow to use full
  2218. throughput, even if limit value was very high.
  2219. *) Bugfix: the "sendfile_max_chunk" directive did not work, if the
  2220. "limit_rate" directive was used.
  2221. *) Bugfix: a "proxy_pass" directive without URI part always used
  2222. original request URI if variables were used.
  2223. *) Bugfix: a "proxy_pass" directive without URI part might use original
  2224. request after redirection with the "try_files" directive.
  2225. Thanks to Lanshun Zhou.
  2226. *) Bugfix: in the ngx_http_scgi_module.
  2227. *) Bugfix: in the ngx_http_mp4_module.
  2228. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in
  2229. 1.1.9.
  2230. Changes with nginx 1.1.11 12 Dec 2011
  2231. *) Feature: the "so_keepalive" parameter of the "listen" directive.
  2232. Thanks to Vsevolod Stakhov.
  2233. *) Feature: the "if_not_empty" parameter of the
  2234. "fastcgi/scgi/uwsgi_param" directives.
  2235. *) Feature: the $https variable.
  2236. *) Feature: the "proxy_redirect" directive supports variables in the
  2237. first parameter.
  2238. *) Feature: the "proxy_redirect" directive supports regular expressions.
  2239. *) Bugfix: the $sent_http_cache_control variable might contain a wrong
  2240. value if the "expires" directive was used.
  2241. Thanks to Yichun Zhang.
  2242. *) Bugfix: the "read_ahead" directive might not work combined with
  2243. "try_files" and "open_file_cache".
  2244. *) Bugfix: a segmentation fault might occur in a worker process if small
  2245. time was used in the "inactive" parameter of the "proxy_cache_path"
  2246. directive.
  2247. *) Bugfix: responses from cache might hang.
  2248. Changes with nginx 1.1.10 30 Nov 2011
  2249. *) Bugfix: a segmentation fault occurred in a worker process if AIO was
  2250. used on Linux; the bug had appeared in 1.1.9.
  2251. Changes with nginx 1.1.9 28 Nov 2011
  2252. *) Change: now double quotes are encoded in an "echo" SSI-command
  2253. output.
  2254. Thanks to Zaur Abasmirzoev.
  2255. *) Feature: the "valid" parameter of the "resolver" directive. By
  2256. default TTL returned by a DNS server is used.
  2257. Thanks to Kirill A. Korinskiy.
  2258. *) Bugfix: nginx might hang after a worker process abnormal termination.
  2259. *) Bugfix: a segmentation fault might occur in a worker process if SNI
  2260. was used; the bug had appeared in 1.1.2.
  2261. *) Bugfix: in the "keepalive_disable" directive; the bug had appeared in
  2262. 1.1.8.
  2263. Thanks to Alexander Usov.
  2264. *) Bugfix: SIGWINCH signal did not work after first binary upgrade; the
  2265. bug had appeared in 1.1.1.
  2266. *) Bugfix: backend responses with length not matching "Content-Length"
  2267. header line are no longer cached.
  2268. *) Bugfix: in the "scgi_param" directive, if complex parameters were
  2269. used.
  2270. *) Bugfix: in the "epoll" event method.
  2271. Thanks to Yichun Zhang.
  2272. *) Bugfix: in the ngx_http_flv_module.
  2273. Thanks to Piotr Sikora.
  2274. *) Bugfix: in the ngx_http_mp4_module.
  2275. *) Bugfix: IPv6 addresses are now handled properly in a request line and
  2276. in a "Host" request header line.
  2277. *) Bugfix: "add_header" and "expires" directives did not work if a
  2278. request was proxied and response status code was 206.
  2279. *) Bugfix: nginx could not be built on FreeBSD 10.
  2280. *) Bugfix: nginx could not be built on AIX.
  2281. Changes with nginx 1.1.8 14 Nov 2011
  2282. *) Change: the ngx_http_limit_zone_module was renamed to the
  2283. ngx_http_limit_conn_module.
  2284. *) Change: the "limit_zone" directive was superseded by the
  2285. "limit_conn_zone" directive with a new syntax.
  2286. *) Feature: support for multiple "limit_conn" limits on the same level.
  2287. *) Feature: the "image_filter_sharpen" directive.
  2288. *) Bugfix: a segmentation fault might occur in a worker process if
  2289. resolver got a big DNS response.
  2290. Thanks to Ben Hawkes.
  2291. *) Bugfix: in cache key calculation if internal MD5 implementation was
  2292. used; the bug had appeared in 1.0.4.
  2293. *) Bugfix: the "If-Modified-Since", "If-Range", etc. client request
  2294. header lines might be passed to backend while caching; or not passed
  2295. without caching if caching was enabled in another part of the
  2296. configuration.
  2297. *) Bugfix: the module ngx_http_mp4_module sent incorrect
  2298. "Content-Length" response header line if the "start" argument was
  2299. used.
  2300. Thanks to Piotr Sikora.
  2301. Changes with nginx 1.1.7 31 Oct 2011
  2302. *) Feature: support of several DNS servers in the "resolver" directive.
  2303. Thanks to Kirill A. Korinskiy.
  2304. *) Bugfix: a segmentation fault occurred on start or during
  2305. reconfiguration if the "ssl" directive was used at http level and
  2306. there was no "ssl_certificate" defined.
  2307. *) Bugfix: reduced memory consumption while proxying big files if they
  2308. were buffered to disk.
  2309. *) Bugfix: a segmentation fault might occur in a worker process if
  2310. "proxy_http_version 1.1" directive was used.
  2311. *) Bugfix: in the "expires @time" directive.
  2312. Changes with nginx 1.1.6 17 Oct 2011
  2313. *) Change in internal API: now module context data are cleared while
  2314. internal redirect to named location.
  2315. Requested by Yichun Zhang.
  2316. *) Change: if a server in an upstream failed, only one request will be
  2317. sent to it after fail_timeout; the server will be considered alive if
  2318. it will successfully respond to the request.
  2319. *) Change: now the 0x7F-0xFF characters are escaped as \xXX in an
  2320. access_log.
  2321. *) Feature: "proxy/fastcgi/scgi/uwsgi_ignore_headers" directives support
  2322. the following additional values: X-Accel-Limit-Rate,
  2323. X-Accel-Buffering, X-Accel-Charset.
  2324. *) Feature: decrease of memory consumption if SSL is used.
  2325. *) Bugfix: some UTF-8 characters were processed incorrectly.
  2326. Thanks to Alexey Kuts.
  2327. *) Bugfix: the ngx_http_rewrite_module directives specified at "server"
  2328. level were executed twice if no matching locations were defined.
  2329. *) Bugfix: a socket leak might occurred if "aio sendfile" was used.
  2330. *) Bugfix: connections with fast clients might be closed after
  2331. send_timeout if file AIO was used.
  2332. *) Bugfix: in the ngx_http_autoindex_module.
  2333. *) Bugfix: the module ngx_http_mp4_module did not support seeking on
  2334. 32-bit platforms.
  2335. Changes with nginx 1.1.5 05 Oct 2011
  2336. *) Feature: the "uwsgi_buffering" and "scgi_buffering" directives.
  2337. Thanks to Peter Smit.
  2338. *) Bugfix: non-cacheable responses might be cached if
  2339. "proxy_cache_bypass" directive was used.
  2340. Thanks to John Ferlito.
  2341. *) Bugfix: in HTTP/1.1 support in the ngx_http_proxy_module.
  2342. *) Bugfix: cached responses with an empty body were returned
  2343. incorrectly; the bug had appeared in 0.8.31.
  2344. *) Bugfix: 201 responses of the ngx_http_dav_module were incorrect; the
  2345. bug had appeared in 0.8.32.
  2346. *) Bugfix: in the "return" directive.
  2347. *) Bugfix: the "ssl_session_cache builtin" directive caused segmentation
  2348. fault; the bug had appeared in 1.1.1.
  2349. Changes with nginx 1.1.4 20 Sep 2011
  2350. *) Feature: the ngx_http_upstream_keepalive module.
  2351. *) Feature: the "proxy_http_version" directive.
  2352. *) Feature: the "fastcgi_keep_conn" directive.
  2353. *) Feature: the "worker_aio_requests" directive.
  2354. *) Bugfix: if nginx was built --with-file-aio it could not be run on
  2355. Linux kernel which did not support AIO.
  2356. *) Bugfix: in Linux AIO error processing.
  2357. Thanks to Hagai Avrahami.
  2358. *) Bugfix: reduced memory consumption for long-lived requests.
  2359. *) Bugfix: the module ngx_http_mp4_module did not support 64-bit MP4
  2360. "co64" atom.
  2361. Changes with nginx 1.1.3 14 Sep 2011
  2362. *) Feature: the module ngx_http_mp4_module.
  2363. *) Bugfix: in Linux AIO combined with open_file_cache.
  2364. *) Bugfix: open_file_cache did not update file info on retest if file
  2365. was not atomically changed.
  2366. *) Bugfix: nginx could not be built on MacOSX 10.7.
  2367. Changes with nginx 1.1.2 05 Sep 2011
  2368. *) Change: now if total size of all ranges is greater than source
  2369. response size, then nginx disables ranges and returns just the source
  2370. response.
  2371. *) Feature: the "max_ranges" directive.
  2372. *) Bugfix: the "ssl_verify_client", "ssl_verify_depth", and
  2373. "ssl_prefer_server_ciphers" directives might work incorrectly if SNI
  2374. was used.
  2375. *) Bugfix: in the "proxy/fastcgi/scgi/uwsgi_ignore_client_abort"
  2376. directives.
  2377. Changes with nginx 1.1.1 22 Aug 2011
  2378. *) Change: now cache loader processes either as many files as specified
  2379. by "loader_files" parameter or works no longer than time specified by
  2380. the "loader_threshold" parameter during each iteration.
  2381. *) Change: now SIGWINCH signal works only in daemon mode.
  2382. *) Feature: now shared zones and caches use POSIX semaphores on Solaris.
  2383. Thanks to Den Ivanov.
  2384. *) Feature: accept filters are now supported on NetBSD.
  2385. *) Bugfix: nginx could not be built on Linux 3.0.
  2386. *) Bugfix: nginx did not use gzipping in some cases; the bug had
  2387. appeared in 1.1.0.
  2388. *) Bugfix: request body might be processed incorrectly if client used
  2389. pipelining.
  2390. *) Bugfix: in the "request_body_in_single_buf" directive.
  2391. *) Bugfix: in "proxy_set_body" and "proxy_pass_request_body" directives
  2392. if SSL connection to backend was used.
  2393. *) Bugfix: nginx hogged CPU if all servers in an upstream were marked as
  2394. "down".
  2395. *) Bugfix: a segmentation fault might occur during reconfiguration if
  2396. ssl_session_cache was defined but not used in previous configuration.
  2397. *) Bugfix: a segmentation fault might occur in a worker process if many
  2398. backup servers were used in an upstream.
  2399. *) Bugfix: a segmentation fault might occur in a worker process if
  2400. "fastcgi/scgi/uwsgi_param" directives were used with values starting
  2401. with "HTTP_"; the bug had appeared in 0.8.40.
  2402. Changes with nginx 1.1.0 01 Aug 2011
  2403. *) Feature: cache loader run time decrease.
  2404. *) Feature: "loader_files", "loader_sleep", and "loader_threshold"
  2405. options of the "proxy/fastcgi/scgi/uwsgi_cache_path" directives.
  2406. *) Feature: loading time decrease of configuration with large number of
  2407. HTTPS sites.
  2408. *) Feature: now nginx supports ECDHE key exchange ciphers.
  2409. Thanks to Adrian Kotelba.
  2410. *) Feature: the "lingering_close" directive.
  2411. Thanks to Maxim Dounin.
  2412. *) Bugfix: in closing connection for pipelined requests.
  2413. Thanks to Maxim Dounin.
  2414. *) Bugfix: nginx did not disable gzipping if client sent "gzip;q=0" in
  2415. "Accept-Encoding" request header line.
  2416. *) Bugfix: in timeout in unbuffered proxied mode.
  2417. Thanks to Maxim Dounin.
  2418. *) Bugfix: memory leaks when a "proxy_pass" directive contains variables
  2419. and proxies to an HTTPS backend.
  2420. Thanks to Maxim Dounin.
  2421. *) Bugfix: in parameter validation of a "proxy_pass" directive with
  2422. variables.
  2423. Thanks to Lanshun Zhou.
  2424. *) Bugfix: SSL did not work on QNX.
  2425. Thanks to Maxim Dounin.
  2426. *) Bugfix: SSL modules could not be built by gcc 4.6 without
  2427. --with-debug option.
  2428. Changes with nginx 1.0.5 19 Jul 2011
  2429. *) Change: now default SSL ciphers are "HIGH:!aNULL:!MD5".
  2430. Thanks to Rob Stradling.
  2431. *) Feature: the "referer_hash_max_size" and "referer_hash_bucket_size"
  2432. directives.
  2433. Thanks to Witold Filipczyk.
  2434. *) Feature: $uid_reset variable.
  2435. *) Bugfix: a segmentation fault might occur in a worker process, if a
  2436. caching was used.
  2437. Thanks to Lanshun Zhou.
  2438. *) Bugfix: worker processes may got caught in an endless loop during
  2439. reconfiguration, if a caching was used; the bug had appeared in
  2440. 0.8.48.
  2441. Thanks to Maxim Dounin.
  2442. *) Bugfix: "stalled cache updating" alert.
  2443. Thanks to Maxim Dounin.
  2444. Changes with nginx 1.0.4 01 Jun 2011
  2445. *) Change: now regular expressions case sensitivity in the "map"
  2446. directive is given by prefixes "~" or "~*".
  2447. *) Feature: now shared zones and caches use POSIX semaphores on Linux.
  2448. Thanks to Denis F. Latypoff.
  2449. *) Bugfix: "stalled cache updating" alert.
  2450. *) Bugfix: nginx could not be built --without-http_auth_basic_module;
  2451. the bug had appeared in 1.0.3.
  2452. Changes with nginx 1.0.3 25 May 2011
  2453. *) Feature: the "auth_basic_user_file" directive supports "$apr1",
  2454. "{PLAIN}", and "{SSHA}" password encryption methods.
  2455. Thanks to Maxim Dounin.
  2456. *) Feature: the "geoip_org" directive and $geoip_org variable.
  2457. Thanks to Alexander Uskov, Arnaud Granal, and Denis F. Latypoff.
  2458. *) Feature: ngx_http_geo_module and ngx_http_geoip_module support IPv4
  2459. addresses mapped to IPv6 addresses.
  2460. *) Bugfix: a segmentation fault occurred in a worker process during
  2461. testing IPv4 address mapped to IPv6 address, if access or deny rules
  2462. were defined only for IPv6; the bug had appeared in 0.8.22.
  2463. *) Bugfix: a cached response may be broken if "proxy/fastcgi/scgi/
  2464. uwsgi_cache_bypass" and "proxy/fastcgi/scgi/uwsgi_no_cache" directive
  2465. values were different; the bug had appeared in 0.8.46.
  2466. Changes with nginx 1.0.2 10 May 2011
  2467. *) Feature: now shared zones and caches use POSIX semaphores.
  2468. *) Bugfix: in the "rotate" parameter of the "image_filter" directive.
  2469. Thanks to Adam Bocim.
  2470. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in
  2471. 1.0.1.
  2472. Changes with nginx 1.0.1 03 May 2011
  2473. *) Change: now the "split_clients" directive uses MurmurHash2 algorithm
  2474. because of better distribution.
  2475. Thanks to Oleg Mamontov.
  2476. *) Change: now long strings starting with zero are not considered as
  2477. false values.
  2478. Thanks to Maxim Dounin.
  2479. *) Change: now nginx uses a default listen backlog value 511 on Linux.
  2480. *) Feature: the $upstream_... variables may be used in the SSI and perl
  2481. modules.
  2482. *) Bugfix: now nginx limits better disk cache size.
  2483. Thanks to Oleg Mamontov.
  2484. *) Bugfix: a segmentation fault might occur while parsing incorrect IPv4
  2485. address; the bug had appeared in 0.9.3.
  2486. Thanks to Maxim Dounin.
  2487. *) Bugfix: nginx could not be built by gcc 4.6 without --with-debug
  2488. option.
  2489. *) Bugfix: nginx could not be built on Solaris 9 and earlier; the bug
  2490. had appeared in 0.9.3.
  2491. Thanks to Dagobert Michelsen.
  2492. *) Bugfix: $request_time variable had invalid values if subrequests were
  2493. used; the bug had appeared in 0.8.47.
  2494. Thanks to Igor A. Valcov.
  2495. Changes with nginx 1.0.0 12 Apr 2011
  2496. *) Bugfix: a cache manager might hog CPU after reload.
  2497. Thanks to Maxim Dounin.
  2498. *) Bugfix: an "image_filter crop" directive worked incorrectly coupled
  2499. with an "image_filter rotate 180" directive.
  2500. *) Bugfix: a "satisfy any" directive disabled custom 401 error page.
  2501. Changes with nginx 0.9.7 04 Apr 2011
  2502. *) Feature: now keepalive connections may be closed premature, if there
  2503. are no free worker connections.
  2504. Thanks to Maxim Dounin.
  2505. *) Feature: the "rotate" parameter of the "image_filter" directive.
  2506. Thanks to Adam Bocim.
  2507. *) Bugfix: a case when a backend in "fastcgi_pass", "scgi_pass", or
  2508. "uwsgi_pass" directives is given by expression and refers to a
  2509. defined upstream.
  2510. Changes with nginx 0.9.6 21 Mar 2011
  2511. *) Feature: the "map" directive supports regular expressions as value of
  2512. the first parameter.
  2513. *) Feature: $time_iso8601 access_log variable.
  2514. Thanks to Michael Lustfield.
  2515. Changes with nginx 0.9.5 21 Feb 2011
  2516. *) Change: now nginx uses a default listen backlog value -1 on Linux.
  2517. Thanks to Andrei Nigmatulin.
  2518. *) Feature: the "utf8" parameter of "geoip_country" and "geoip_city"
  2519. directives.
  2520. Thanks to Denis F. Latypoff.
  2521. *) Bugfix: in a default "proxy_redirect" directive if "proxy_pass"
  2522. directive has no URI part.
  2523. Thanks to Maxim Dounin.
  2524. *) Bugfix: an "error_page" directive did not work with nonstandard error
  2525. codes; the bug had appeared in 0.8.53.
  2526. Thanks to Maxim Dounin.
  2527. Changes with nginx 0.9.4 21 Jan 2011
  2528. *) Feature: the "server_name" directive supports the $hostname variable.
  2529. *) Feature: 494 code for "Request Header Too Large" error.
  2530. Changes with nginx 0.9.3 13 Dec 2010
  2531. *) Bugfix: if there was a single server for given IPv6 address:port
  2532. pair, then captures in regular expressions in a "server_name"
  2533. directive did not work.
  2534. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in
  2535. 0.9.0.
  2536. Changes with nginx 0.9.2 06 Dec 2010
  2537. *) Feature: the "If-Unmodified-Since" client request header line
  2538. support.
  2539. *) Workaround: fallback to accept() syscall if accept4() was not
  2540. implemented; the issue had appeared in 0.9.0.
  2541. *) Bugfix: nginx could not be built on Cygwin; the bug had appeared in
  2542. 0.9.0.
  2543. *) Bugfix: for OpenSSL vulnerability CVE-2010-4180.
  2544. Thanks to Maxim Dounin.
  2545. Changes with nginx 0.9.1 30 Nov 2010
  2546. *) Bugfix: "return CODE message" directives did not work; the bug had
  2547. appeared in 0.9.0.
  2548. Changes with nginx 0.9.0 29 Nov 2010
  2549. *) Feature: the "keepalive_disable" directive.
  2550. *) Feature: the "map" directive supports variables as value of a defined
  2551. variable.
  2552. *) Feature: the "map" directive supports empty strings as value of the
  2553. first parameter.
  2554. *) Feature: the "map" directive supports expressions as the first
  2555. parameter.
  2556. *) Feature: nginx(8) manual page.
  2557. Thanks to Sergey Osokin.
  2558. *) Feature: Linux accept4() support.
  2559. Thanks to Simon Liu.
  2560. *) Workaround: elimination of Linux linker warning about "sys_errlist"
  2561. and "sys_nerr"; the warning had appeared in 0.8.35.
  2562. *) Bugfix: a segmentation fault might occur in a worker process, if the
  2563. "auth_basic" directive was used.
  2564. Thanks to Michail Laletin.
  2565. *) Bugfix: compatibility with ngx_http_eval_module; the bug had appeared
  2566. in 0.8.42.
  2567. Changes with nginx 0.8.53 18 Oct 2010
  2568. *) Feature: now the "error_page" directive allows to change a status
  2569. code in a redirect.
  2570. *) Feature: the "gzip_disable" directive supports special "degradation"
  2571. mask.
  2572. *) Bugfix: a socket leak might occurred if file AIO was used.
  2573. Thanks to Maxim Dounin.
  2574. *) Bugfix: if the first server had no "listen" directive and there was
  2575. no explicit default server, then a next server with a "listen"
  2576. directive became the default server; the bug had appeared in 0.8.21.
  2577. Changes with nginx 0.8.52 28 Sep 2010
  2578. *) Bugfix: nginx used SSL mode for a listen socket if any listen option
  2579. was set; the bug had appeared in 0.8.51.
  2580. Changes with nginx 0.8.51 27 Sep 2010
  2581. *) Change: the "secure_link_expires" directive has been canceled.
  2582. *) Change: a logging level of resolver errors has been lowered from
  2583. "alert" to "error".
  2584. *) Feature: now a listen socket "ssl" parameter may be set several
  2585. times.
  2586. Changes with nginx 0.8.50 02 Sep 2010
  2587. *) Feature: the "secure_link", "secure_link_md5", and
  2588. "secure_link_expires" directives of the ngx_http_secure_link_module.
  2589. *) Feature: the -q switch.
  2590. Thanks to Gena Makhomed.
  2591. *) Bugfix: worker processes may got caught in an endless loop during
  2592. reconfiguration, if a caching was used; the bug had appeared in
  2593. 0.8.48.
  2594. *) Bugfix: in the "gzip_disable" directive.
  2595. Thanks to Derrick Petzold.
  2596. *) Bugfix: nginx/Windows could not send stop, quit, reopen, and reload
  2597. signals to a process run in other session.
  2598. Changes with nginx 0.8.49 09 Aug 2010
  2599. *) Feature: the "image_filter_jpeg_quality" directive supports
  2600. variables.
  2601. *) Bugfix: a segmentation fault might occur in a worker process, if the
  2602. $geoip_region_name variables was used; the bug had appeared in
  2603. 0.8.48.
  2604. *) Bugfix: errors intercepted by error_page were cached only for next
  2605. request; the bug had appeared in 0.8.48.
  2606. Changes with nginx 0.8.48 03 Aug 2010
  2607. *) Change: now the "server_name" directive default value is an empty
  2608. name "".
  2609. Thanks to Gena Makhomed.
  2610. *) Change: now the "server_name_in_redirect" directive default value is
  2611. "off".
  2612. *) Feature: the $geoip_dma_code, $geoip_area_code, and
  2613. $geoip_region_name variables.
  2614. Thanks to Christine McGonagle.
  2615. *) Bugfix: the "proxy_pass", "fastcgi_pass", "uwsgi_pass", and
  2616. "scgi_pass" directives were not inherited inside "limit_except"
  2617. blocks.
  2618. *) Bugfix: the "proxy_cache_min_uses", "fastcgi_cache_min_uses"
  2619. "uwsgi_cache_min_uses", and "scgi_cache_min_uses" directives did not
  2620. work; the bug had appeared in 0.8.46.
  2621. *) Bugfix: the "fastcgi_split_path_info" directive used incorrectly
  2622. captures, if only parts of an URI were captured.
  2623. Thanks to Yuriy Taraday and Frank Enderle.
  2624. *) Bugfix: the "rewrite" directive did not escape a ";" character during
  2625. copying from URI to query string.
  2626. Thanks to Daisuke Murase.
  2627. *) Bugfix: the ngx_http_image_filter_module closed a connection, if an
  2628. image was larger than "image_filter_buffer" size.
  2629. Changes with nginx 0.8.47 28 Jul 2010
  2630. *) Bugfix: $request_time variable had invalid values for subrequests.
  2631. *) Bugfix: errors intercepted by error_page could not be cached.
  2632. *) Bugfix: a cache manager process may got caught in an endless loop, if
  2633. max_size parameter was used; the bug had appeared in 0.8.46.
  2634. Changes with nginx 0.8.46 19 Jul 2010
  2635. *) Change: now the "proxy_no_cache", "fastcgi_no_cache",
  2636. "uwsgi_no_cache", and "scgi_no_cache" directives affect on a cached
  2637. response saving only.
  2638. *) Feature: the "proxy_cache_bypass", "fastcgi_cache_bypass",
  2639. "uwsgi_cache_bypass", and "scgi_cache_bypass" directives.
  2640. *) Bugfix: nginx did not free memory in cache keys zones if there was an
  2641. error during working with backend: the memory was freed only after
  2642. inactivity time or on memory low condition.
  2643. Changes with nginx 0.8.45 13 Jul 2010
  2644. *) Feature: ngx_http_xslt_filter improvements.
  2645. Thanks to Laurence Rowe.
  2646. *) Bugfix: SSI response might be truncated after include with
  2647. wait="yes"; the bug had appeared in 0.7.25.
  2648. Thanks to Maxim Dounin.
  2649. *) Bugfix: the "listen" directive did not support the "setfib=0"
  2650. parameter.
  2651. Changes with nginx 0.8.44 05 Jul 2010
  2652. *) Change: now nginx does not cache by default backend responses, if
  2653. they have a "Set-Cookie" header line.
  2654. *) Feature: the "listen" directive supports the "setfib" parameter.
  2655. Thanks to Andrew Filonov.
  2656. *) Bugfix: the "sub_filter" directive might change character case on
  2657. partial match.
  2658. *) Bugfix: compatibility with HP/UX.
  2659. *) Bugfix: compatibility with AIX xlC_r compiler.
  2660. *) Bugfix: nginx treated large SSLv2 packets as plain requests.
  2661. Thanks to Miroslaw Jaworski.
  2662. Changes with nginx 0.8.43 30 Jun 2010
  2663. *) Feature: large geo ranges base loading speed-up.
  2664. *) Bugfix: an error_page redirection to "location /zero {return 204;}"
  2665. without changing status code kept the error body; the bug had
  2666. appeared in 0.8.42.
  2667. *) Bugfix: nginx might close IPv6 listen socket during reconfiguration.
  2668. Thanks to Maxim Dounin.
  2669. *) Bugfix: the $uid_set variable may be used at any request processing
  2670. stage.
  2671. Changes with nginx 0.8.42 21 Jun 2010
  2672. *) Change: now nginx tests locations given by regular expressions, if
  2673. request was matched exactly by a location given by a prefix string.
  2674. The previous behavior has been introduced in 0.7.1.
  2675. *) Feature: the ngx_http_scgi_module.
  2676. Thanks to Manlio Perillo.
  2677. *) Feature: a text answer may be added to a "return" directive.
  2678. Changes with nginx 0.8.41 15 Jun 2010
  2679. *) Security: nginx/Windows worker might be terminated abnormally if a
  2680. requested file name has invalid UTF-8 encoding.
  2681. *) Change: now nginx allows to use spaces in a request line.
  2682. *) Bugfix: the "proxy_redirect" directive changed incorrectly a backend
  2683. "Refresh" response header line.
  2684. Thanks to Andrey Andreew and Max Sogin.
  2685. *) Bugfix: nginx did not support path without host name in "Destination"
  2686. request header line.
  2687. Changes with nginx 0.8.40 07 Jun 2010
  2688. *) Security: now nginx/Windows ignores default file stream name.
  2689. Thanks to Jose Antonio Vazquez Gonzalez.
  2690. *) Feature: the ngx_http_uwsgi_module.
  2691. Thanks to Roberto De Ioris.
  2692. *) Feature: a "fastcgi_param" directive with value starting with "HTTP_"
  2693. overrides a client request header line.
  2694. *) Bugfix: the "If-Modified-Since", "If-Range", etc. client request
  2695. header lines were passed to FastCGI-server while caching.
  2696. *) Bugfix: listen unix domain socket could not be changed during
  2697. reconfiguration.
  2698. Thanks to Maxim Dounin.
  2699. Changes with nginx 0.8.39 31 May 2010
  2700. *) Bugfix: an inherited "alias" directive worked incorrectly in
  2701. inclusive location.
  2702. *) Bugfix: in "alias" with variables and "try_files" directives
  2703. combination.
  2704. *) Bugfix: listen unix domain and IPv6 sockets did not inherit while
  2705. online upgrade.
  2706. Thanks to Maxim Dounin.
  2707. Changes with nginx 0.8.38 24 May 2010
  2708. *) Feature: the "proxy_no_cache" and "fastcgi_no_cache" directives.
  2709. *) Feature: now the "rewrite" directive does a redirect automatically if
  2710. the $scheme variable is used.
  2711. Thanks to Piotr Sikora.
  2712. *) Bugfix: now "limit_req" delay directive conforms to the described
  2713. algorithm.
  2714. Thanks to Maxim Dounin.
  2715. *) Bugfix: the $uid_got variable might not be used in the SSI and perl
  2716. modules.
  2717. Changes with nginx 0.8.37 17 May 2010
  2718. *) Feature: the ngx_http_split_clients_module.
  2719. *) Feature: the "map" directive supports keys more than 255 characters.
  2720. *) Bugfix: nginx ignored the "private" and "no-store" values in the
  2721. "Cache-Control" backend response header line.
  2722. *) Bugfix: a "stub" parameter of an "include" SSI directive was not
  2723. used, if empty response has 200 status code.
  2724. *) Bugfix: if a proxied or FastCGI request was internally redirected to
  2725. another proxied or FastCGI location, then a segmentation fault might
  2726. occur in a worker process; the bug had appeared in 0.8.33.
  2727. Thanks to Yichun Zhang.
  2728. *) Bugfix: IMAP connections may hang until they timed out while talking
  2729. to Zimbra server.
  2730. Thanks to Alan Batie.
  2731. Changes with nginx 0.8.36 22 Apr 2010
  2732. *) Bugfix: the ngx_http_dav_module handled incorrectly the DELETE, COPY,
  2733. and MOVE methods for symlinks.
  2734. *) Bugfix: values of the $query_string, $arg_..., etc. variables cached
  2735. in main request were used by the SSI module in subrequests.
  2736. *) Bugfix: a variable value was repeatedly encoded after each an "echo"
  2737. SSI-command output; the bug had appeared in 0.6.14.
  2738. *) Bugfix: a worker process hung if a FIFO file was requested.
  2739. Thanks to Vicente Aguilar and Maxim Dounin.
  2740. *) Bugfix: OpenSSL-1.0.0 compatibility on 64-bit Linux.
  2741. Thanks to Maxim Dounin.
  2742. *) Bugfix: nginx could not be built --without-http-cache; the bug had
  2743. appeared in 0.8.35.
  2744. Changes with nginx 0.8.35 01 Apr 2010
  2745. *) Change: now the charset filter runs before the SSI filter.
  2746. *) Feature: the "chunked_transfer_encoding" directive.
  2747. *) Bugfix: an "&" character was not escaped when it was copied in
  2748. arguments part in a rewrite rule.
  2749. *) Bugfix: nginx might be terminated abnormally while a signal
  2750. processing or if the directive "timer_resolution" was used on
  2751. platforms which do not support kqueue or eventport notification
  2752. methods.
  2753. Thanks to George Xie and Maxim Dounin.
  2754. *) Bugfix: if temporary files and permanent storage area resided at
  2755. different file systems, then permanent file modification times were
  2756. incorrect.
  2757. Thanks to Maxim Dounin.
  2758. *) Bugfix: ngx_http_memcached_module might issue the error message
  2759. "memcached sent invalid trailer".
  2760. Thanks to Maxim Dounin.
  2761. *) Bugfix: nginx could not built zlib-1.2.4 library using the library
  2762. sources.
  2763. Thanks to Maxim Dounin.
  2764. *) Bugfix: a segmentation fault occurred in a worker process, if there
  2765. was large stderr output before FastCGI response; the bug had appeared
  2766. in 0.8.34.
  2767. Thanks to Maxim Dounin.
  2768. Changes with nginx 0.8.34 03 Mar 2010
  2769. *) Bugfix: nginx did not support all ciphers and digests used in client
  2770. certificates.
  2771. Thanks to Innocenty Enikeew.
  2772. *) Bugfix: nginx cached incorrectly FastCGI responses if there was large
  2773. stderr output before response.
  2774. *) Bugfix: nginx did not support HTTPS referrers.
  2775. *) Bugfix: nginx/Windows might not find file if path in configuration
  2776. was given in other character case; the bug had appeared in 0.8.33.
  2777. *) Bugfix: the $date_local variable has an incorrect value, if the "%s"
  2778. format was used.
  2779. Thanks to Maxim Dounin.
  2780. *) Bugfix: if ssl_session_cache was not set or was set to "none", then
  2781. during client certificate verify the error "session id context
  2782. uninitialized" might occur; the bug had appeared in 0.7.1.
  2783. *) Bugfix: a geo range returned default value if the range included two
  2784. or more /16 networks and did not begin at /16 network boundary.
  2785. *) Bugfix: a block used in a "stub" parameter of an "include" SSI
  2786. directive was output with "text/plain" MIME type.
  2787. *) Bugfix: $r->sleep() did not work; the bug had appeared in 0.8.11.
  2788. Changes with nginx 0.8.33 01 Feb 2010
  2789. *) Security: now nginx/Windows ignores trailing spaces in URI.
  2790. Thanks to Dan Crowley, Core Security Technologies.
  2791. *) Security: now nginx/Windows ignores short files names.
  2792. Thanks to Dan Crowley, Core Security Technologies.
  2793. *) Change: now keepalive connections after POST requests are not
  2794. disabled for MSIE 7.0+.
  2795. Thanks to Adam Lounds.
  2796. *) Workaround: now keepalive connections are disabled for Safari.
  2797. Thanks to Joshua Sierles.
  2798. *) Bugfix: if a proxied or FastCGI request was internally redirected to
  2799. another proxied or FastCGI location, then $upstream_response_time
  2800. variable may have abnormally large value; the bug had appeared in
  2801. 0.8.7.
  2802. *) Bugfix: a segmentation fault might occur in a worker process, while
  2803. discarding a request body; the bug had appeared in 0.8.11.
  2804. Changes with nginx 0.8.32 11 Jan 2010
  2805. *) Bugfix: UTF-8 encoding usage in the ngx_http_autoindex_module.
  2806. Thanks to Maxim Dounin.
  2807. *) Bugfix: regular expression named captures worked for two names only.
  2808. Thanks to Maxim Dounin.
  2809. *) Bugfix: now the "localhost" name is used in the "Host" request header
  2810. line, if an unix domain socket is defined in the "auth_http"
  2811. directive.
  2812. Thanks to Maxim Dounin.
  2813. *) Bugfix: nginx did not support chunked transfer encoding for 201
  2814. responses.
  2815. Thanks to Julian Reich.
  2816. *) Bugfix: if the "expires modified" set date in the past, then a
  2817. negative number was set in the "Cache-Control" response header line.
  2818. Thanks to Alex Kapranoff.
  2819. Changes with nginx 0.8.31 23 Dec 2009
  2820. *) Feature: now the "error_page" directive may redirect the 301 and 302
  2821. responses.
  2822. *) Feature: the $geoip_city_continent_code, $geoip_latitude, and
  2823. $geoip_longitude variables.
  2824. Thanks to Arvind Sundararajan.
  2825. *) Feature: now the ngx_http_image_filter_module deletes always EXIF and
  2826. other application specific data if the data consume more than 5% of a
  2827. JPEG file.
  2828. *) Bugfix: nginx closed a connection if a cached response had an empty
  2829. body.
  2830. Thanks to Piotr Sikora.
  2831. *) Bugfix: nginx might not be built by gcc 4.x if the -O2 or higher
  2832. optimization option was used.
  2833. Thanks to Maxim Dounin and Denis F. Latypoff.
  2834. *) Bugfix: regular expressions in location were always tested in
  2835. case-sensitive mode; the bug had appeared in 0.8.25.
  2836. *) Bugfix: nginx cached a 304 response if there was the "If-None-Match"
  2837. header line in a proxied request.
  2838. Thanks to Tim Dettrick and David Kostal.
  2839. *) Bugfix: nginx/Windows tried to delete a temporary file twice if the
  2840. file should replace an already existent file.
  2841. Changes with nginx 0.8.30 15 Dec 2009
  2842. *) Change: now the default buffer size of the
  2843. "large_client_header_buffers" directive is 8K.
  2844. Thanks to Andrew Cholakian.
  2845. *) Feature: the conf/fastcgi.conf for simple FastCGI configurations.
  2846. *) Bugfix: nginx/Windows tried to rename a temporary file twice if the
  2847. file should replace an already existent file.
  2848. *) Bugfix: of "double free or corruption" error issued if host could not
  2849. be resolved; the bug had appeared in 0.8.22.
  2850. Thanks to Konstantin Svist.
  2851. *) Bugfix: in libatomic usage on some platforms.
  2852. Thanks to W-Mark Kubacki.
  2853. Changes with nginx 0.8.29 30 Nov 2009
  2854. *) Change: now the "009" status code is written to an access log for
  2855. proxied HTTP/0.9 responses.
  2856. *) Feature: the "addition_types", "charset_types", "gzip_types",
  2857. "ssi_types", "sub_filter_types", and "xslt_types" directives support
  2858. an "*" parameter.
  2859. *) Feature: GCC 4.1+ built-in atomic operations usage.
  2860. Thanks to W-Mark Kubacki.
  2861. *) Feature: the --with-libatomic[=DIR] option in the configure.
  2862. Thanks to W-Mark Kubacki.
  2863. *) Bugfix: listen unix domain socket had limited access rights.
  2864. *) Bugfix: cached HTTP/0.9 responses were handled incorrectly.
  2865. *) Bugfix: regular expression named captures given by "?P<...>" did not
  2866. work in a "server_name" directive.
  2867. Thanks to Maxim Dounin.
  2868. Changes with nginx 0.8.28 23 Nov 2009
  2869. *) Bugfix: nginx could not be built with the --without-pcre parameter;
  2870. the bug had appeared in 0.8.25.
  2871. Changes with nginx 0.8.27 17 Nov 2009
  2872. *) Bugfix: regular expressions did not work in nginx/Windows; the bug
  2873. had appeared in 0.8.25.
  2874. Changes with nginx 0.8.26 16 Nov 2009
  2875. *) Bugfix: in captures usage in "rewrite" directive; the bug had
  2876. appeared in 0.8.25.
  2877. *) Bugfix: nginx could not be built without the --with-debug option; the
  2878. bug had appeared in 0.8.25.
  2879. Changes with nginx 0.8.25 16 Nov 2009
  2880. *) Change: now no message is written in an error log if a variable is
  2881. not found by $r->variable() method.
  2882. *) Feature: the ngx_http_degradation_module.
  2883. *) Feature: regular expression named captures.
  2884. *) Feature: now URI part is not required a "proxy_pass" directive if
  2885. variables are used.
  2886. *) Feature: now the "msie_padding" directive works for Chrome too.
  2887. *) Bugfix: a segmentation fault occurred in a worker process on low
  2888. memory condition; the bug had appeared in 0.8.18.
  2889. *) Bugfix: nginx sent gzipped responses to clients those do not support
  2890. gzip, if "gzip_static on" and "gzip_vary off"; the bug had appeared
  2891. in 0.8.16.
  2892. Changes with nginx 0.8.24 11 Nov 2009
  2893. *) Bugfix: nginx always added "Content-Encoding: gzip" response header
  2894. line in 304 responses sent by ngx_http_gzip_static_module.
  2895. *) Bugfix: nginx could not be built without the --with-debug option; the
  2896. bug had appeared in 0.8.23.
  2897. *) Bugfix: the "unix:" parameter of the "set_real_ip_from" directive
  2898. inherited incorrectly from previous level.
  2899. *) Bugfix: in resolving empty name.
  2900. Changes with nginx 0.8.23 11 Nov 2009
  2901. *) Security: now SSL/TLS renegotiation is disabled.
  2902. Thanks to Maxim Dounin.
  2903. *) Bugfix: listen unix domain socket did not inherit while online
  2904. upgrade.
  2905. *) Bugfix: the "unix:" parameter of the "set_real_ip_from" directive did
  2906. not without yet another directive with any IP address.
  2907. *) Bugfix: segmentation fault and infinite looping in resolver.
  2908. *) Bugfix: in resolver.
  2909. Thanks to Artem Bokhan.
  2910. Changes with nginx 0.8.22 03 Nov 2009
  2911. *) Feature: the "proxy_bind", "fastcgi_bind", and "memcached_bind"
  2912. directives.
  2913. *) Feature: the "access" and the "deny" directives support IPv6.
  2914. *) Feature: the "set_real_ip_from" directive supports IPv6 addresses in
  2915. request headers.
  2916. *) Feature: the "unix:" parameter of the "set_real_ip_from" directive.
  2917. *) Bugfix: nginx did not delete unix domain socket after configuration
  2918. testing.
  2919. *) Bugfix: nginx deleted unix domain socket while online upgrade.
  2920. *) Bugfix: the "!-x" operator did not work.
  2921. Thanks to Maxim Dounin.
  2922. *) Bugfix: a segmentation fault might occur in a worker process, if
  2923. limit_rate was used in HTTPS server.
  2924. Thanks to Maxim Dounin.
  2925. *) Bugfix: a segmentation fault might occur in a worker process while
  2926. $limit_rate logging.
  2927. Thanks to Maxim Dounin.
  2928. *) Bugfix: a segmentation fault might occur in a worker process, if
  2929. there was no "listen" directive in "server" block; the bug had
  2930. appeared in 0.8.21.
  2931. Changes with nginx 0.8.21 26 Oct 2009
  2932. *) Feature: now the "-V" switch shows TLS SNI support.
  2933. *) Feature: the "listen" directive of the HTTP module supports unix
  2934. domain sockets.
  2935. Thanks to Hongli Lai.
  2936. *) Feature: the "default_server" parameter of the "listen" directive.
  2937. *) Feature: now a "default" parameter is not required to set listen
  2938. socket options.
  2939. *) Bugfix: nginx did not support dates in 2038 year on 32-bit platforms;
  2940. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
  2941. Changes with nginx 0.8.20 14 Oct 2009
  2942. *) Change: now default SSL ciphers are "HIGH:!ADH:!MD5".
  2943. *) Bugfix: the ngx_http_autoindex_module did not show the trailing slash
  2944. in links to a directory; the bug had appeared in 0.7.15.
  2945. *) Bugfix: nginx did not close a log file set by the --error-log-path
  2946. configuration option; the bug had appeared in 0.7.53.
  2947. *) Bugfix: nginx did not treat a comma as separator in the
  2948. "Cache-Control" backend response header line.
  2949. *) Bugfix: nginx/Windows might not create temporary file, a cache file,
  2950. or "proxy/fastcgi_store"d file if a worker had no enough access
  2951. rights for top level directories.
  2952. *) Bugfix: the "Set-Cookie" and "P3P" FastCGI response header lines were
  2953. not hidden while caching if no "fastcgi_hide_header" directives were
  2954. used with any parameters.
  2955. *) Bugfix: nginx counted incorrectly disk cache size.
  2956. Changes with nginx 0.8.19 06 Oct 2009
  2957. *) Change: now SSLv2 protocol is disabled by default.
  2958. *) Change: now default SSL ciphers are "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM".
  2959. *) Bugfix: a "limit_req" directive did not work; the bug had appeared in
  2960. 0.8.18.
  2961. Changes with nginx 0.8.18 06 Oct 2009
  2962. *) Feature: the "read_ahead" directive.
  2963. *) Feature: now several "perl_modules" directives may be used.
  2964. *) Feature: the "limit_req_log_level" and "limit_conn_log_level"
  2965. directives.
  2966. *) Bugfix: now "limit_req" directive conforms to the leaky bucket
  2967. algorithm.
  2968. Thanks to Maxim Dounin.
  2969. *) Bugfix: nginx did not work on Linux/sparc.
  2970. Thanks to Marcus Ramberg.
  2971. *) Bugfix: nginx sent '\0' in a "Location" response header line on MKCOL
  2972. request.
  2973. Thanks to Xie Zhenye.
  2974. *) Bugfix: zero status code was logged instead of 499 status code; the
  2975. bug had appeared in 0.8.11.
  2976. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
  2977. Changes with nginx 0.8.17 28 Sep 2009
  2978. *) Security: now "/../" are disabled in "Destination" request header
  2979. line.
  2980. *) Change: now $host variable value is always low case.
  2981. *) Feature: the $ssl_session_id variable.
  2982. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
  2983. Changes with nginx 0.8.16 22 Sep 2009
  2984. *) Feature: the "image_filter_transparency" directive.
  2985. *) Bugfix: "addition_types" directive was incorrectly named
  2986. "addtion_types".
  2987. *) Bugfix: resolver cache poisoning.
  2988. Thanks to Matthew Dempsky.
  2989. *) Bugfix: memory leak in resolver.
  2990. Thanks to Matthew Dempsky.
  2991. *) Bugfix: invalid request line in $request variable was written in
  2992. access_log only if error_log was set to "info" or "debug" level.
  2993. *) Bugfix: in PNG alpha-channel support in the
  2994. ngx_http_image_filter_module.
  2995. *) Bugfix: nginx always added "Vary: Accept-Encoding" response header
  2996. line, if both "gzip_static" and "gzip_vary" were on.
  2997. *) Bugfix: in UTF-8 encoding support by "try_files" directive in
  2998. nginx/Windows.
  2999. *) Bugfix: in "post_action" directive usage; the bug had appeared in
  3000. 0.8.11.
  3001. Thanks to Igor Artemiev.
  3002. Changes with nginx 0.8.15 14 Sep 2009
  3003. *) Security: a segmentation fault might occur in worker process while
  3004. specially crafted request handling.
  3005. Thanks to Chris Ries.
  3006. *) Bugfix: if names .domain.tld, .sub.domain.tld, and .domain-some.tld
  3007. were defined, then the name .sub.domain.tld was matched by
  3008. .domain.tld.
  3009. *) Bugfix: in transparency support in the ngx_http_image_filter_module.
  3010. *) Bugfix: in file AIO.
  3011. *) Bugfix: in X-Accel-Redirect usage; the bug had appeared in 0.8.11.
  3012. *) Bugfix: in embedded perl module; the bug had appeared in 0.8.11.
  3013. Changes with nginx 0.8.14 07 Sep 2009
  3014. *) Bugfix: an expired cached response might stick in the "UPDATING"
  3015. state.
  3016. *) Bugfix: a segmentation fault might occur in worker process, if
  3017. error_log was set to info or debug level.
  3018. Thanks to Sergey Bochenkov.
  3019. *) Bugfix: in embedded perl module; the bug had appeared in 0.8.11.
  3020. *) Bugfix: an "error_page" directive did not redirect a 413 error; the
  3021. bug had appeared in 0.6.10.
  3022. Changes with nginx 0.8.13 31 Aug 2009
  3023. *) Bugfix: in the "aio sendfile" directive; the bug had appeared in
  3024. 0.8.12.
  3025. *) Bugfix: nginx could not be built without the --with-file-aio option
  3026. on FreeBSD; the bug had appeared in 0.8.12.
  3027. Changes with nginx 0.8.12 31 Aug 2009
  3028. *) Feature: the "sendfile" parameter in the "aio" directive on FreeBSD.
  3029. *) Bugfix: in try_files; the bug had appeared in 0.8.11.
  3030. *) Bugfix: in memcached; the bug had appeared in 0.8.11.
  3031. Changes with nginx 0.8.11 28 Aug 2009
  3032. *) Change: now directive "gzip_disable msie6" does not disable gzipping
  3033. for MSIE 6.0 SV1.
  3034. *) Feature: file AIO support on FreeBSD and Linux.
  3035. *) Feature: the "directio_alignment" directive.
  3036. Changes with nginx 0.8.10 24 Aug 2009
  3037. *) Bugfix: memory leaks if GeoIP City database was used.
  3038. *) Bugfix: in copying temporary files to permanent storage area; the bug
  3039. had appeared in 0.8.9.
  3040. Changes with nginx 0.8.9 17 Aug 2009
  3041. *) Feature: now the start cache loader runs in a separate process; this
  3042. should improve large caches handling.
  3043. *) Feature: now temporary files and permanent storage area may reside at
  3044. different file systems.
  3045. Changes with nginx 0.8.8 10 Aug 2009
  3046. *) Bugfix: in handling FastCGI headers split in records.
  3047. *) Bugfix: a segmentation fault occurred in worker process, if a request
  3048. was handled in two proxied or FastCGIed locations and a caching was
  3049. enabled in the first location; the bug had appeared in 0.8.7.
  3050. Changes with nginx 0.8.7 27 Jul 2009
  3051. *) Change: minimum supported OpenSSL version is 0.9.7.
  3052. *) Change: the "ask" parameter of the "ssl_verify_client" directive was
  3053. changed to the "optional" parameter and now it checks a client
  3054. certificate if it was offered.
  3055. Thanks to Brice Figureau.
  3056. *) Feature: the $ssl_client_verify variable.
  3057. Thanks to Brice Figureau.
  3058. *) Feature: the "ssl_crl" directive.
  3059. Thanks to Brice Figureau.
  3060. *) Feature: the "proxy" parameter of the "geo" directive.
  3061. *) Feature: the "image_filter" directive supports variables for setting
  3062. size.
  3063. *) Bugfix: the $ssl_client_cert variable usage corrupted memory; the bug
  3064. had appeared in 0.7.7.
  3065. Thanks to Sergey Zhuravlev.
  3066. *) Bugfix: "proxy_pass_header" and "fastcgi_pass_header" directives did
  3067. not pass to a client the "X-Accel-Redirect", "X-Accel-Limit-Rate",
  3068. "X-Accel-Buffering", and "X-Accel-Charset" lines from backend
  3069. response header.
  3070. Thanks to Maxim Dounin.
  3071. *) Bugfix: in handling "Last-Modified" and "Accept-Ranges" backend
  3072. response header lines; the bug had appeared in 0.7.44.
  3073. Thanks to Maxim Dounin.
  3074. *) Bugfix: the "[alert] zero size buf" error if subrequest returns an
  3075. empty response; the bug had appeared in 0.8.5.
  3076. Changes with nginx 0.8.6 20 Jul 2009
  3077. *) Feature: the ngx_http_geoip_module.
  3078. *) Bugfix: XSLT filter may fail with message "not well formed XML
  3079. document" for valid XML document.
  3080. Thanks to Kuramoto Eiji.
  3081. *) Bugfix: now in MacOSX, Cygwin, and nginx/Windows locations given by a
  3082. regular expression are always tested in case insensitive mode.
  3083. *) Bugfix: now nginx/Windows ignores trailing dots in URI.
  3084. Thanks to Hugo Leisink.
  3085. *) Bugfix: name of file specified in --conf-path was not honored during
  3086. installation; the bug had appeared in 0.6.6.
  3087. Thanks to Maxim Dounin.
  3088. Changes with nginx 0.8.5 13 Jul 2009
  3089. *) Bugfix: now nginx allows underscores in a request method.
  3090. *) Bugfix: a 500 error code was returned for invalid login/password
  3091. while HTTP Basic authentication on Windows.
  3092. *) Bugfix: ngx_http_perl_module responses did not work in subrequests.
  3093. *) Bugfix: in ngx_http_limit_req_module.
  3094. Thanks to Maxim Dounin.
  3095. Changes with nginx 0.8.4 22 Jun 2009
  3096. *) Bugfix: nginx could not be built --without-http-cache; the bug had
  3097. appeared in 0.8.3.
  3098. Changes with nginx 0.8.3 19 Jun 2009
  3099. *) Feature: the $upstream_cache_status variable.
  3100. *) Bugfix: nginx could not be built on MacOSX 10.6.
  3101. *) Bugfix: nginx could not be built --without-http-cache; the bug had
  3102. appeared in 0.8.2.
  3103. *) Bugfix: a segmentation fault occurred in worker process, if a backend
  3104. 401 error was intercepted and the backend did not set the
  3105. "WWW-Authenticate" response header line.
  3106. Thanks to Eugene Mychlo.
  3107. Changes with nginx 0.8.2 15 Jun 2009
  3108. *) Bugfix: in open_file_cache and proxy/fastcgi cache interaction on
  3109. start up.
  3110. *) Bugfix: open_file_cache might cache open file descriptors too long;
  3111. the bug had appeared in 0.7.4.
  3112. Changes with nginx 0.8.1 08 Jun 2009
  3113. *) Feature: the "updating" parameter in "proxy_cache_use_stale" and
  3114. "fastcgi_cache_use_stale" directives.
  3115. *) Bugfix: the "If-Modified-Since", "If-Range", etc. client request
  3116. header lines were passed to backend while caching if no
  3117. "proxy_set_header" directive was used with any parameters.
  3118. *) Bugfix: the "Set-Cookie" and "P3P" response header lines were not
  3119. hidden while caching if no "proxy_hide_header/fastcgi_hide_header"
  3120. directives were used with any parameters.
  3121. *) Bugfix: the ngx_http_image_filter_module did not support GIF87a
  3122. format.
  3123. Thanks to Denis Ilyinyh.
  3124. *) Bugfix: nginx could not be built modules on Solaris 10 and early; the
  3125. bug had appeared in 0.7.56.
  3126. Changes with nginx 0.8.0 02 Jun 2009
  3127. *) Feature: the "keepalive_requests" directive.
  3128. *) Feature: the "limit_rate_after" directive.
  3129. Thanks to Ivan Debnar.
  3130. *) Bugfix: XLST filter did not work in subrequests.
  3131. *) Bugfix: in relative paths handling in nginx/Windows.
  3132. *) Bugfix: in proxy_store, fastcgi_store, proxy_cache, and fastcgi_cache
  3133. in nginx/Windows.
  3134. *) Bugfix: in memory allocation error handling.
  3135. Thanks to Maxim Dounin and Kirill A. Korinskiy.
  3136. Changes with nginx 0.7.59 25 May 2009
  3137. *) Feature: the "proxy_cache_methods" and "fastcgi_cache_methods"
  3138. directives.
  3139. *) Bugfix: socket leak; the bug had appeared in 0.7.25.
  3140. Thanks to Maxim Dounin.
  3141. *) Bugfix: a segmentation fault occurred in worker process, if a request
  3142. had no body and the $request_body variable was used;
  3143. the bug had appeared in 0.7.58.
  3144. *) Bugfix: the SSL modules might not built on Solaris and Linux;
  3145. the bug had appeared in 0.7.56.
  3146. *) Bugfix: ngx_http_xslt_filter_module responses were not handled by
  3147. SSI, charset, and gzip filters.
  3148. *) Bugfix: a "charset" directive did not set a charset to
  3149. ngx_http_gzip_static_module responses.
  3150. Changes with nginx 0.7.58 18 May 2009
  3151. *) Feature: a "listen" directive of the mail proxy module supports IPv6.
  3152. *) Feature: the "image_filter_jpeg_quality" directive.
  3153. *) Feature: the "client_body_in_single_buffer" directive.
  3154. *) Feature: the $request_body variable.
  3155. *) Bugfix: in ngx_http_autoindex_module in file name links having a ":"
  3156. symbol in the name.
  3157. *) Bugfix: "make upgrade" procedure did not work; the bug had appeared
  3158. in 0.7.53.
  3159. Thanks to Denis F. Latypoff.
  3160. Changes with nginx 0.7.57 12 May 2009
  3161. *) Bugfix: a floating-point fault occurred in worker process, if the
  3162. ngx_http_image_filter_module errors were redirected to named
  3163. location; the bug had appeared in 0.7.56.
  3164. Changes with nginx 0.7.56 11 May 2009
  3165. *) Feature: nginx/Windows supports IPv6 in a "listen" directive of the
  3166. HTTP module.
  3167. *) Bugfix: in ngx_http_image_filter_module.
  3168. Changes with nginx 0.7.55 06 May 2009
  3169. *) Bugfix: the http_XXX parameters in "proxy_cache_use_stale" and
  3170. "fastcgi_cache_use_stale" directives did not work.
  3171. *) Bugfix: fastcgi cache did not cache header only responses.
  3172. *) Bugfix: of "select() failed (9: Bad file descriptor)" error in
  3173. nginx/Unix and "select() failed (10038: ...)" error in nginx/Windows.
  3174. *) Bugfix: a segmentation fault might occur in worker process, if an
  3175. "debug_connection" directive was used; the bug had appeared in
  3176. 0.7.54.
  3177. *) Bugfix: fix ngx_http_image_filter_module building errors.
  3178. *) Bugfix: the files bigger than 2G could not be transferred using
  3179. $r->sendfile.
  3180. Thanks to Maxim Dounin.
  3181. Changes with nginx 0.7.54 01 May 2009
  3182. *) Feature: the ngx_http_image_filter_module.
  3183. *) Feature: the "proxy_ignore_headers" and "fastcgi_ignore_headers"
  3184. directives.
  3185. *) Bugfix: a segmentation fault might occur in worker process, if an
  3186. "open_file_cache_errors off" directive was used; the bug had appeared
  3187. in 0.7.53.
  3188. *) Bugfix: the "port_in_redirect off" directive did not work; the bug
  3189. had appeared in 0.7.39.
  3190. *) Bugfix: improve handling of "select" method errors.
  3191. *) Bugfix: of "select() failed (10022: ...)" error in nginx/Windows.
  3192. *) Bugfix: in error text descriptions in nginx/Windows; the bug had
  3193. appeared in 0.7.53.
  3194. Changes with nginx 0.7.53 27 Apr 2009
  3195. *) Change: now a log set by --error-log-path is created from the very
  3196. start-up.
  3197. *) Feature: now the start up errors and warnings are outputted to an
  3198. error_log and stderr.
  3199. *) Feature: the empty --prefix= configure parameter forces nginx to use
  3200. a directory where it was run as prefix.
  3201. *) Feature: the -p switch.
  3202. *) Feature: the -s switch on Unix platforms.
  3203. *) Feature: the -? and -h switches.
  3204. Thanks to Jerome Loyet.
  3205. *) Feature: now switches may be set in condensed form.
  3206. *) Bugfix: nginx/Windows did not work if configuration file was given by
  3207. the -c switch.
  3208. *) Bugfix: temporary files might be not removed if the "proxy_store",
  3209. "fastcgi_store", "proxy_cache", or "fastcgi_cache" were used.
  3210. Thanks to Maxim Dounin.
  3211. *) Bugfix: an incorrect value was passed to mail proxy authentication
  3212. server in "Auth-Method" header line; the bug had appeared
  3213. in 0.7.34.
  3214. Thanks to Simon Lecaille.
  3215. *) Bugfix: system error text descriptions were not logged on Linux;
  3216. the bug had appeared in 0.7.45.
  3217. *) Bugfix: the "fastcgi_cache_min_uses" directive did not work.
  3218. Thanks to Andrew Vorobyoff.
  3219. Changes with nginx 0.7.52 20 Apr 2009
  3220. *) Feature: the first native Windows binary release.
  3221. *) Bugfix: in processing HEAD method while caching.
  3222. *) Bugfix: in processing the "If-Modified-Since", "If-Range", etc.
  3223. client request header lines while caching.
  3224. *) Bugfix: now the "Set-Cookie" and "P3P" header lines are hidden in
  3225. cacheable responses.
  3226. *) Bugfix: if nginx was built with the ngx_http_perl_module and with a
  3227. perl which supports threads, then during a master process exit the
  3228. message "panic: MUTEX_LOCK" might be issued.
  3229. *) Bugfix: nginx could not be built --without-http-cache; the bug had
  3230. appeared in 0.7.48.
  3231. *) Bugfix: nginx could not be built on platforms different from i386,
  3232. amd64, sparc, and ppc; the bug had appeared in 0.7.42.
  3233. Changes with nginx 0.7.51 12 Apr 2009
  3234. *) Feature: the "try_files" directive supports a response code in the
  3235. fallback parameter.
  3236. *) Feature: now any response code can be used in the "return" directive.
  3237. *) Bugfix: the "error_page" directive made an external redirect without
  3238. query string; the bug had appeared in 0.7.44.
  3239. *) Bugfix: if servers listened on several defined explicitly addresses,
  3240. then virtual servers might not work; the bug had appeared in 0.7.39.
  3241. Changes with nginx 0.7.50 06 Apr 2009
  3242. *) Bugfix: the $arg_... variables did not work; the bug had appeared in
  3243. 0.7.49.
  3244. Changes with nginx 0.7.49 06 Apr 2009
  3245. *) Bugfix: a segmentation fault might occur in worker process, if the
  3246. $arg_... variables were used; the bug had appeared in 0.7.48.
  3247. Changes with nginx 0.7.48 06 Apr 2009
  3248. *) Feature: the "proxy_cache_key" directive.
  3249. *) Bugfix: now nginx takes into account the "X-Accel-Expires",
  3250. "Expires", and "Cache-Control" header lines in a backend response.
  3251. *) Bugfix: now nginx caches responses for the GET requests only.
  3252. *) Bugfix: the "fastcgi_cache_key" directive was not inherited.
  3253. *) Bugfix: the $arg_... variables did not work with SSI subrequests.
  3254. Thanks to Maxim Dounin.
  3255. *) Bugfix: nginx could not be built with uclibc library.
  3256. Thanks to Timothy Redaelli.
  3257. *) Bugfix: nginx could not be built on OpenBSD; the bug had
  3258. appeared in 0.7.46.
  3259. Changes with nginx 0.7.47 01 Apr 2009
  3260. *) Bugfix: nginx could not be built on FreeBSD 6 and early versions; the
  3261. bug had appeared in 0.7.46.
  3262. *) Bugfix: nginx could not be built on MacOSX; the bug had
  3263. appeared in 0.7.46.
  3264. *) Bugfix: if the "max_size" parameter was set, then the cache manager
  3265. might purge a whole cache; the bug had appeared in 0.7.46.
  3266. *) Change: a segmentation fault might occur in worker process, if the
  3267. "proxy_cache"/"fastcgi_cache" and the "proxy_cache_valid"/
  3268. "fastcgi_cache_valid" were set on different levels; the bug had
  3269. appeared in 0.7.46.
  3270. *) Bugfix: a segmentation fault might occur in worker process, if a
  3271. request was redirected to a proxied or FastCGI server via error_page
  3272. or try_files; the bug had appeared in 0.7.44.
  3273. Changes with nginx 0.7.46 30 Mar 2009
  3274. *) Bugfix: the previous release tarball was incorrect.
  3275. Changes with nginx 0.7.45 30 Mar 2009
  3276. *) Change: now the "proxy_cache" and the "proxy_cache_valid" directives
  3277. can be set on different levels.
  3278. *) Change: the "clean_time" parameter of the "proxy_cache_path"
  3279. directive is canceled.
  3280. *) Feature: the "max_size" parameter of the "proxy_cache_path"
  3281. directive.
  3282. *) Feature: the ngx_http_fastcgi_module preliminary cache support.
  3283. *) Feature: now on shared memory allocation errors directive and zone
  3284. names are logged.
  3285. *) Bugfix: the directive "add_header last-modified ''" did not delete a
  3286. "Last-Modified" response header line; the bug had appeared in 0.7.44.
  3287. *) Bugfix: a relative path in the "auth_basic_user_file" directive given
  3288. without variables did not work; the bug had appeared in 0.7.44.
  3289. Thanks to Jerome Loyet.
  3290. *) Bugfix: in an "alias" directive given using variables without
  3291. references to captures of regular expressions; the bug had appeared
  3292. in 0.7.42.
  3293. Changes with nginx 0.7.44 23 Mar 2009
  3294. *) Feature: the ngx_http_proxy_module preliminary cache support.
  3295. *) Feature: the --with-pcre option in the configure.
  3296. *) Feature: the "try_files" directive is now allowed on the server block
  3297. level.
  3298. *) Bugfix: the "try_files" directive handled incorrectly a query string
  3299. in a fallback parameter.
  3300. *) Bugfix: the "try_files" directive might test incorrectly directories.
  3301. *) Bugfix: if there was a single server for given address:port pair,
  3302. then captures in regular expressions in a "server_name" directive did
  3303. not work.
  3304. Changes with nginx 0.7.43 18 Mar 2009
  3305. *) Bugfix: a request was handled incorrectly, if a "root" directive used
  3306. variables; the bug had appeared in 0.7.42.
  3307. *) Bugfix: if a server listened on wildcard address, then the
  3308. $server_addr variable value was "0.0.0.0"; the bug had appeared in
  3309. 0.7.36.
  3310. Changes with nginx 0.7.42 16 Mar 2009
  3311. *) Change: now the "Invalid argument" error returned by
  3312. setsockopt(TCP_NODELAY) on Solaris, is ignored.
  3313. *) Change: now if a file specified in a "auth_basic_user_file" directive
  3314. is absent, then the 403 error is returned instead of the 500 one.
  3315. *) Feature: the "auth_basic_user_file" directive supports variables.
  3316. Thanks to Kirill A. Korinskiy.
  3317. *) Feature: the "listen" directive supports the "ipv6only" parameter.
  3318. Thanks to Zhang Hua.
  3319. *) Bugfix: in an "alias" directive with references to captures of
  3320. regular expressions; the bug had appeared in 0.7.40.
  3321. *) Bugfix: compatibility with Tru64 UNIX.
  3322. Thanks to Dustin Marquess.
  3323. *) Bugfix: nginx could not be built without PCRE library; the bug had
  3324. appeared in 0.7.41.
  3325. Changes with nginx 0.7.41 11 Mar 2009
  3326. *) Bugfix: a segmentation fault might occur in worker process, if a
  3327. "server_name" or a "location" directives had captures in regular
  3328. expressions; the issue had appeared in 0.7.40.
  3329. Thanks to Vladimir Sopot.
  3330. Changes with nginx 0.7.40 09 Mar 2009
  3331. *) Feature: the "location" directive supports captures in regular
  3332. expressions.
  3333. *) Feature: an "alias" directive with capture references may be used
  3334. inside a location given by a regular expression with captures.
  3335. *) Feature: the "server_name" directive supports captures in regular
  3336. expressions.
  3337. *) Workaround: the ngx_http_autoindex_module did not show the trailing
  3338. slash in directories on XFS filesystem; the issue had appeared in
  3339. 0.7.15.
  3340. Thanks to Dmitry Kuzmenko.
  3341. Changes with nginx 0.7.39 02 Mar 2009
  3342. *) Bugfix: large response with SSI might hang, if gzipping was enabled;
  3343. the bug had appeared in 0.7.28.
  3344. Thanks to Artem Bokhan.
  3345. *) Bugfix: a segmentation fault might occur in worker process, if short
  3346. static variants are used in a "try_files" directive.
  3347. Changes with nginx 0.7.38 23 Feb 2009
  3348. *) Feature: authentication failures logging.
  3349. *) Bugfix: name/password in auth_basic_user_file were ignored after odd
  3350. number of empty lines.
  3351. Thanks to Alexander Zagrebin.
  3352. *) Bugfix: a segmentation fault occurred in a master process, if long
  3353. path was used in unix domain socket; the bug had appeared in 0.7.36.
  3354. Changes with nginx 0.7.37 21 Feb 2009
  3355. *) Bugfix: directives using upstreams did not work; the bug had appeared
  3356. in 0.7.36.
  3357. Changes with nginx 0.7.36 21 Feb 2009
  3358. *) Feature: a preliminary IPv6 support; the "listen" directive of the
  3359. HTTP module supports IPv6.
  3360. *) Bugfix: the $ancient_browser variable did not work for browsers
  3361. preset by a "modern_browser" directives.
  3362. Changes with nginx 0.7.35 16 Feb 2009
  3363. *) Bugfix: a "ssl_engine" directive did not use a SSL-accelerator for
  3364. asymmetric ciphers.
  3365. Thanks to Marcin Gozdalik.
  3366. *) Bugfix: a "try_files" directive set MIME type depending on an
  3367. original request extension.
  3368. *) Bugfix: "*domain.tld" names were handled incorrectly in
  3369. "server_name", "valid_referers", and "map" directives, if
  3370. ".domain.tld" and ".subdomain.domain.tld" wildcards were used;
  3371. the bug had appeared in 0.7.9.
  3372. Changes with nginx 0.7.34 10 Feb 2009
  3373. *) Feature: the "off" parameter of the "if_modified_since" directive.
  3374. *) Feature: now nginx sends an HELO/EHLO command after a XCLIENT
  3375. command.
  3376. Thanks to Maxim Dounin.
  3377. *) Feature: Microsoft specific "AUTH LOGIN with User Name" mode support
  3378. in mail proxy server.
  3379. Thanks to Maxim Dounin.
  3380. *) Bugfix: in a redirect rewrite directive original arguments were
  3381. concatenated with new arguments by a "?" rather than an "&";
  3382. the bug had appeared in 0.1.18.
  3383. Thanks to Maxim Dounin.
  3384. *) Bugfix: nginx could not be built on AIX.
  3385. Changes with nginx 0.7.33 02 Feb 2009
  3386. *) Bugfix: a double response might be returned if the epoll or rtsig
  3387. methods are used and a redirect was returned to a request with body.
  3388. Thanks to Eden Li.
  3389. *) Bugfix: the $sent_http_location variable was empty for some redirects
  3390. types.
  3391. *) Bugfix: a segmentation fault might occur in worker process if
  3392. "resolver" directive was used in SMTP proxy.
  3393. Changes with nginx 0.7.32 26 Jan 2009
  3394. *) Feature: now a directory existence testing can be set explicitly in
  3395. the "try_files" directive.
  3396. *) Bugfix: fastcgi_store stored files not always.
  3397. *) Bugfix: in geo ranges.
  3398. *) Bugfix: in shared memory allocations if nginx was built without
  3399. debugging.
  3400. Thanks to Andrey Kvasov.
  3401. Changes with nginx 0.7.31 19 Jan 2009
  3402. *) Change: now the "try_files" directive tests files only and ignores
  3403. directories.
  3404. *) Feature: the "fastcgi_split_path_info" directive.
  3405. *) Bugfixes in an "Expect" request header line support.
  3406. *) Bugfixes in geo ranges.
  3407. *) Bugfix: in a miss case ngx_http_memcached_module returned the "END"
  3408. line as response body instead of default 404 page body; the bug had
  3409. appeared in 0.7.18.
  3410. Thanks to Maxim Dounin.
  3411. *) Bugfix: while SMTP proxying nginx issued message "250 2.0.0 OK"
  3412. instead of "235 2.0.0 OK"; the bug had appeared in 0.7.22.
  3413. Thanks to Maxim Dounin.
  3414. Changes with nginx 0.7.30 24 Dec 2008
  3415. *) Bugfix: a segmentation fault occurred in worker process, if variables
  3416. were used in the "fastcgi_pass" or "proxy_pass" directives and host
  3417. name must be resolved; the bug had appeared in 0.7.29.
  3418. Changes with nginx 0.7.29 24 Dec 2008
  3419. *) Bugfix: the "fastcgi_pass" and "proxy_pass" directives did not
  3420. support variables if unix domain sockets were used.
  3421. *) Bugfixes in subrequest processing; the bugs had appeared in 0.7.25.
  3422. *) Bugfix: a "100 Continue" response was issued for HTTP/1.0 requests;
  3423. Thanks to Maxim Dounin.
  3424. *) Bugfix: in memory allocation in the ngx_http_gzip_filter_module on
  3425. Cygwin.
  3426. Changes with nginx 0.7.28 22 Dec 2008
  3427. *) Change: in memory allocation in the ngx_http_gzip_filter_module.
  3428. *) Change: the default "gzip_buffers" directive values have been changed
  3429. to 32 4k or 16 8k from 4 4k/8k.
  3430. Changes with nginx 0.7.27 15 Dec 2008
  3431. *) Feature: the "try_files" directive.
  3432. *) Feature: variables support in the "fastcgi_pass" directive.
  3433. *) Feature: now the $geo variable may get an address from a variable.
  3434. Thanks to Andrei Nigmatulin.
  3435. *) Feature: now a location's modifier may be used without space before
  3436. name.
  3437. *) Feature: the $upstream_response_length variable.
  3438. *) Bugfix: now a "add_header" directive does not add an empty value.
  3439. *) Bugfix: if zero length static file was requested, then nginx just
  3440. closed connection; the bug had appeared in 0.7.25.
  3441. *) Bugfix: a MOVE method could not move file in non-existent directory.
  3442. *) Bugfix: a segmentation fault occurred in worker process, if no one
  3443. named location was defined in server, but some one was used in an
  3444. error_page directive.
  3445. Thanks to Sergey Bochenkov.
  3446. Changes with nginx 0.7.26 08 Dec 2008
  3447. *) Bugfix: in subrequest processing; the bug had appeared in 0.7.25.
  3448. Changes with nginx 0.7.25 08 Dec 2008
  3449. *) Change: in subrequest processing.
  3450. *) Change: now POSTs without "Content-Length" header line are allowed.
  3451. *) Bugfix: now the "limit_req" and "limit_conn" directives log a
  3452. prohibition reason.
  3453. *) Bugfix: in the "delete" parameter of the "geo" directive.
  3454. Changes with nginx 0.7.24 01 Dec 2008
  3455. *) Feature: the "if_modified_since" directive.
  3456. *) Bugfix: nginx did not process a FastCGI server response, if the
  3457. server send too many messages to stderr before response.
  3458. *) Bugfix: the "$cookie_..." variables did not work in the SSI and the
  3459. perl module.
  3460. Changes with nginx 0.7.23 27 Nov 2008
  3461. *) Feature: the "delete" and "ranges" parameters in the "geo" directive.
  3462. *) Feature: speeding up loading of geo base with large number of values.
  3463. *) Feature: decrease of memory required for geo base load.
  3464. Changes with nginx 0.7.22 20 Nov 2008
  3465. *) Feature: the "none" parameter in the "smtp_auth" directive.
  3466. Thanks to Maxim Dounin.
  3467. *) Feature: the "$cookie_..." variables.
  3468. *) Bugfix: the "directio" directive did not work in XFS filesystem.
  3469. *) Bugfix: the resolver did not understand big DNS responses.
  3470. Thanks to Zyb.
  3471. Changes with nginx 0.7.21 11 Nov 2008
  3472. *) Changes in the ngx_http_limit_req_module.
  3473. *) Feature: the EXSLT support in the ngx_http_xslt_module.
  3474. Thanks to Denis F. Latypoff.
  3475. *) Workaround: compatibility with glibc 2.3.
  3476. Thanks to Eric Benson and Maxim Dounin.
  3477. *) Bugfix: nginx could not run on MacOSX 10.4 and earlier; the bug had
  3478. appeared in 0.7.6.
  3479. Changes with nginx 0.7.20 10 Nov 2008
  3480. *) Changes in the ngx_http_gzip_filter_module.
  3481. *) Feature: the ngx_http_limit_req_module.
  3482. *) Bugfix: worker processes might exit on a SIGBUS signal on sparc and
  3483. ppc platforms; the bug had appeared in 0.7.3.
  3484. Thanks to Maxim Dounin.
  3485. *) Bugfix: the "proxy_pass http://host/some:uri" directives did not
  3486. work; the bug had appeared in 0.7.12.
  3487. *) Bugfix: in HTTPS mode requests might fail with the "bad write retry"
  3488. error.
  3489. *) Bugfix: the ngx_http_secure_link_module did not work inside
  3490. locations, whose names are less than 3 characters.
  3491. *) Bugfix: $server_addr variable might have no value.
  3492. Changes with nginx 0.7.19 13 Oct 2008
  3493. *) Bugfix: version number update.
  3494. Changes with nginx 0.7.18 13 Oct 2008
  3495. *) Change: the "underscores_in_headers" directive; now nginx does not
  3496. allows underscores in a client request header line names.
  3497. *) Feature: the ngx_http_secure_link_module.
  3498. *) Feature: the "real_ip_header" directive supports any header.
  3499. *) Feature: the "log_subrequest" directive.
  3500. *) Feature: the $realpath_root variable.
  3501. *) Feature: the "http_502" and "http_504" parameters of the
  3502. "proxy_next_upstream" directive.
  3503. *) Bugfix: the "http_503" parameter of the "proxy_next_upstream" or
  3504. "fastcgi_next_upstream" directives did not work.
  3505. *) Bugfix: nginx might send a "Transfer-Encoding: chunked" header line
  3506. for HEAD requests.
  3507. *) Bugfix: now accept threshold depends on worker_connections.
  3508. Changes with nginx 0.7.17 15 Sep 2008
  3509. *) Feature: now the "directio" directive works on Linux.
  3510. *) Feature: the $pid variable.
  3511. *) Bugfix: the "directio" optimization that had appeared in 0.7.15 did
  3512. not work with open_file_cache.
  3513. *) Bugfix: the "access_log" with variables did not work on Linux; the
  3514. bug had appeared in 0.7.7.
  3515. *) Bugfix: the ngx_http_charset_module did not understand quoted charset
  3516. name received from backend.
  3517. Changes with nginx 0.7.16 08 Sep 2008
  3518. *) Bugfix: nginx could not be built on 64-bit platforms; the bug had
  3519. appeared in 0.7.15.
  3520. Changes with nginx 0.7.15 08 Sep 2008
  3521. *) Feature: the ngx_http_random_index_module.
  3522. *) Feature: the "directio" directive has been optimized for file
  3523. requests starting from arbitrary position.
  3524. *) Feature: the "directio" directive turns off sendfile if it is
  3525. necessary.
  3526. *) Feature: now nginx allows underscores in a client request header line
  3527. names.
  3528. Changes with nginx 0.7.14 01 Sep 2008
  3529. *) Change: now the ssl_certificate and ssl_certificate_key directives
  3530. have no default values.
  3531. *) Feature: the "listen" directive supports the "ssl" parameter.
  3532. *) Feature: now nginx takes into account a time zone change while
  3533. reconfiguration on FreeBSD and Linux.
  3534. *) Bugfix: the "listen" directive parameters such as "backlog",
  3535. "rcvbuf", etc. were not set, if a default server was not the first
  3536. one.
  3537. *) Bugfix: if URI part captured by a "rewrite" directive was used as a
  3538. query string, then the query string was not escaped.
  3539. *) Bugfix: configuration file validity test improvements.
  3540. Changes with nginx 0.7.13 26 Aug 2008
  3541. *) Bugfix: nginx could not be built on Linux and Solaris; the bug had
  3542. appeared in 0.7.12.
  3543. Changes with nginx 0.7.12 26 Aug 2008
  3544. *) Feature: the "server_name" directive supports empty name "".
  3545. *) Feature: the "gzip_disable" directive supports special "msie6" mask.
  3546. *) Bugfix: if the "max_fails=0" parameter was used in upstream with
  3547. several servers, then a worker process exited on a SIGFPE signal.
  3548. Thanks to Maxim Dounin.
  3549. *) Bugfix: a request body was dropped while redirection via an
  3550. "error_page" directive.
  3551. *) Bugfix: a full response was returned for request method HEAD while
  3552. redirection via an "error_page" directive.
  3553. *) Bugfix: the $r->header_in() method did not return value of the
  3554. "Host", "User-Agent", and "Connection" request header lines; the bug
  3555. had appeared in 0.7.0.
  3556. Changes with nginx 0.7.11 18 Aug 2008
  3557. *) Change: now ngx_http_charset_module does not work by default with
  3558. text/css MIME type.
  3559. *) Feature: now nginx returns the 405 status code for POST method
  3560. requesting a static file only if the file exists.
  3561. *) Feature: the "proxy_ssl_session_reuse" directive.
  3562. *) Bugfix: a "proxy_pass" directive without URI part might use original
  3563. request after the "X-Accel-Redirect" redirection was used.
  3564. *) Bugfix: if a directory has search only rights and the first index
  3565. file was absent, then nginx returned the 500 status code.
  3566. *) Bugfix: in inclusive locations; the bugs had appeared in 0.7.1.
  3567. Changes with nginx 0.7.10 13 Aug 2008
  3568. *) Bugfix: in the "addition_types", "charset_types", "gzip_types",
  3569. "ssi_types", "sub_filter_types", and "xslt_types" directives; the
  3570. bugs had appeared in 0.7.9.
  3571. *) Bugfix: of recursive error_page for 500 status code.
  3572. *) Bugfix: now the ngx_http_realip_module sets address not for whole
  3573. keepalive connection, but for each request passed via the connection.
  3574. Changes with nginx 0.7.9 12 Aug 2008
  3575. *) Change: now ngx_http_charset_module works by default with following
  3576. MIME types: text/html, text/css, text/xml, text/plain,
  3577. text/vnd.wap.wml, application/x-javascript, and application/rss+xml.
  3578. *) Feature: the "charset_types" and "addition_types" directives.
  3579. *) Feature: now the "gzip_types", "ssi_types", and "sub_filter_types"
  3580. directives use hash.
  3581. *) Feature: the ngx_cpp_test_module.
  3582. *) Feature: the "expires" directive supports daily time.
  3583. *) Feature: the ngx_http_xslt_module improvements and bug fixing.
  3584. Thanks to Denis F. Latypoff and Maxim Dounin.
  3585. *) Bugfix: the "log_not_found" directive did not work for index files
  3586. tests.
  3587. *) Bugfix: HTTPS connections might hang, if kqueue, epoll, rtsig, or
  3588. eventport methods were used; the bug had appeared in 0.7.7.
  3589. *) Bugfix: if the "server_name", "valid_referers", and "map" directives
  3590. used an "*.domain.tld" wildcard and exact name "domain.tld" was not
  3591. set, then the exact name was matched by the wildcard; the bug had
  3592. appeared in 0.3.18.
  3593. Changes with nginx 0.7.8 04 Aug 2008
  3594. *) Feature: the ngx_http_xslt_module.
  3595. *) Feature: the "$arg_..." variables.
  3596. *) Feature: Solaris directio support.
  3597. Thanks to Ivan Debnar.
  3598. *) Bugfix: now if FastCGI server sends a "Location" header line without
  3599. status line, then nginx uses 302 status code.
  3600. Thanks to Maxim Dounin.
  3601. Changes with nginx 0.7.7 30 Jul 2008
  3602. *) Change: now the EAGAIN error returned by connect() is not considered
  3603. as temporary error.
  3604. *) Change: now the $ssl_client_cert variable value is a certificate with
  3605. TAB character intended before each line except first one; an
  3606. unchanged certificate is available in the $ssl_client_raw_cert
  3607. variable.
  3608. *) Feature: the "ask" parameter in the "ssl_verify_client" directive.
  3609. *) Feature: byte-range processing improvements.
  3610. Thanks to Maxim Dounin.
  3611. *) Feature: the "directio" directive.
  3612. Thanks to Jiang Hong.
  3613. *) Feature: MacOSX 10.5 sendfile() support.
  3614. *) Bugfix: now in MacOSX and Cygwin locations are tested in case
  3615. insensitive mode; however, the compare is provided by single-byte
  3616. locales only.
  3617. *) Bugfix: mail proxy SSL connections hanged, if select, poll, or
  3618. /dev/poll methods were used.
  3619. *) Bugfix: UTF-8 encoding usage in the ngx_http_autoindex_module.
  3620. Changes with nginx 0.7.6 07 Jul 2008
  3621. *) Bugfix: now if variables are used in the "access_log" directive a
  3622. request root existence is always tested.
  3623. *) Bugfix: the ngx_http_flv_module did not support several values in a
  3624. query string.
  3625. Changes with nginx 0.7.5 01 Jul 2008
  3626. *) Bugfixes in variables support in the "access_log" directive; the bugs
  3627. had appeared in 0.7.4.
  3628. *) Bugfix: nginx could not be built --without-http_gzip_module; the bug
  3629. had appeared in 0.7.3.
  3630. Thanks to Kirill A. Korinskiy.
  3631. *) Bugfix: if sub_filter and SSI were used together, then responses
  3632. might were transferred incorrectly.
  3633. Changes with nginx 0.7.4 30 Jun 2008
  3634. *) Feature: variables support in the "access_log" directive.
  3635. *) Feature: the "open_log_file_cache" directive.
  3636. *) Feature: the -g switch.
  3637. *) Feature: the "Expect" request header line support.
  3638. *) Bugfix: large SSI inclusions might be truncated.
  3639. Changes with nginx 0.7.3 23 Jun 2008
  3640. *) Change: the "rss" extension MIME type has been changed to
  3641. "application/rss+xml".
  3642. *) Change: now the "gzip_vary" directive turned on issues a
  3643. "Vary: Accept-Encoding" header line for uncompressed responses too.
  3644. *) Feature: now the "rewrite" directive does a redirect automatically if
  3645. the "https://" protocol is used.
  3646. *) Bugfix: the "proxy_pass" directive did not work with the HTTPS
  3647. protocol; the bug had appeared in 0.6.9.
  3648. Changes with nginx 0.7.2 16 Jun 2008
  3649. *) Feature: now nginx supports EDH key exchange ciphers.
  3650. *) Feature: the "ssl_dhparam" directive.
  3651. *) Feature: the $ssl_client_cert variable.
  3652. Thanks to Manlio Perillo.
  3653. *) Bugfix: after changing URI via a "rewrite" directive nginx did not
  3654. search a new location; the bug had appeared in 0.7.1.
  3655. Thanks to Maxim Dounin.
  3656. *) Bugfix: nginx could not be built without PCRE library; the bug had
  3657. appeared in 0.7.1.
  3658. *) Bugfix: when a request to a directory was redirected with the slash
  3659. added, nginx dropped a query string from the original request.
  3660. Changes with nginx 0.7.1 26 May 2008
  3661. *) Change: now locations are searched in a tree.
  3662. *) Change: the "optimize_server_names" directive was canceled due to the
  3663. "server_name_in_redirect" directive introduction.
  3664. *) Change: some long deprecated directives are not supported anymore.
  3665. *) Change: the "none" parameter in the "ssl_session_cache" directive;
  3666. now this is default parameter.
  3667. Thanks to Rob Mueller.
  3668. *) Bugfix: worker processes might not catch reconfiguration and log
  3669. rotation signals.
  3670. *) Bugfix: nginx could not be built on latest Fedora 9 Linux.
  3671. Thanks to Roxis.
  3672. Changes with nginx 0.7.0 19 May 2008
  3673. *) Change: now the 0x00-0x1F, '"' and '\' characters are escaped as \xXX
  3674. in an access_log.
  3675. Thanks to Maxim Dounin.
  3676. *) Change: now nginx allows several "Host" request header line.
  3677. *) Feature: the "modified" flag in the "expires" directive.
  3678. *) Feature: the $uid_got and $uid_set variables may be used at any
  3679. request processing stage.
  3680. *) Feature: the $hostname variable.
  3681. Thanks to Andrei Nigmatulin.
  3682. *) Feature: DESTDIR support.
  3683. Thanks to Todd A. Fisher and Andras Voroskoi.
  3684. *) Bugfix: a segmentation fault might occur in worker process on Linux,
  3685. if keepalive was enabled.
  3686. Changes with nginx 0.6.31 12 May 2008
  3687. *) Bugfix: nginx did not process FastCGI response if header was at the
  3688. end of FastCGI record; the bug had appeared in 0.6.2.
  3689. Thanks to Sergey Serov.
  3690. *) Bugfix: a segmentation fault might occur in worker process if a file
  3691. was deleted and the "open_file_cache_errors" directive was off.
  3692. Changes with nginx 0.6.30 29 Apr 2008
  3693. *) Change: now if an "include" directive pattern does not match any
  3694. file, then nginx does not issue an error.
  3695. *) Feature: now the time in directives may be specified without spaces,
  3696. for example, "1h50m".
  3697. *) Bugfix: memory leaks if the "ssl_verify_client" directive was on.
  3698. Thanks to Chavelle Vincent.
  3699. *) Bugfix: the "sub_filter" directive might set text to change into
  3700. output.
  3701. *) Bugfix: the "error_page" directive did not take into account
  3702. arguments in redirected URI.
  3703. *) Bugfix: now nginx always opens files in binary mode under Cygwin.
  3704. *) Bugfix: nginx could not be built on OpenBSD; the bug had appeared in
  3705. 0.6.15.
  3706. Changes with nginx 0.6.29 18 Mar 2008
  3707. *) Feature: the ngx_google_perftools_module.
  3708. *) Bugfix: the ngx_http_perl_module could not be built on 64-bit
  3709. platforms; the bug had appeared in 0.6.27.
  3710. Changes with nginx 0.6.28 13 Mar 2008
  3711. *) Bugfix: the rtsig method could not be built; the bug had appeared in
  3712. 0.6.27.
  3713. Changes with nginx 0.6.27 12 Mar 2008
  3714. *) Change: now by default the rtsig method is not built on
  3715. Linux 2.6.18+.
  3716. *) Change: now a request method is not changed while redirection to a
  3717. named location via an "error_page" directive.
  3718. *) Feature: the "resolver" and "resolver_timeout" directives in SMTP
  3719. proxy.
  3720. *) Feature: the "post_action" directive supports named locations.
  3721. *) Bugfix: a segmentation fault occurred in worker process, if a request
  3722. was redirected from proxy, FastCGI, or memcached location to static
  3723. named locations.
  3724. *) Bugfix: browsers did not repeat SSL handshake if there is no valid
  3725. client certificate in first handshake.
  3726. Thanks to Alexander V. Inyukhin.
  3727. *) Bugfix: if response code 495-497 was redirected via an "error_page"
  3728. directive without code change, then nginx tried to allocate too many
  3729. memory.
  3730. *) Bugfix: memory leak in long-lived non buffered connections.
  3731. *) Bugfix: memory leak in resolver.
  3732. *) Bugfix: a segmentation fault occurred in worker process, if a request
  3733. was redirected from proxy, FastCGI, or memcached location to static
  3734. named locations.
  3735. *) Bugfix: in the $proxy_host and $proxy_port variables caching.
  3736. Thanks to Sergey Bochenkov.
  3737. *) Bugfix: a "proxy_pass" directive with variables used incorrectly the
  3738. same port as in another "proxy_pass" directive with the same host
  3739. name and without variables.
  3740. Thanks to Sergey Bochenkov.
  3741. *) Bugfix: an alert "sendmsg() failed (9: Bad file descriptor)" on some
  3742. 64-bit platforms while reconfiguration.
  3743. *) Bugfix: a segmentation fault occurred in worker process, if empty
  3744. stub block was used second time in SSI.
  3745. *) Bugfix: in copying URI part contained escaped symbols into arguments.
  3746. Changes with nginx 0.6.26 11 Feb 2008
  3747. *) Bugfix: the "proxy_store" and "fastcgi_store" directives did not
  3748. check a response length.
  3749. *) Bugfix: a segmentation fault occurred in worker process, if big value
  3750. was used in a "expires" directive.
  3751. Thanks to Joaquin Cuenca Abela.
  3752. *) Bugfix: nginx incorrectly detected cache line size on Pentium 4.
  3753. Thanks to Gena Makhomed.
  3754. *) Bugfix: in proxied or FastCGI subrequests a client original method
  3755. was used instead of the GET method.
  3756. *) Bugfix: socket leak in HTTPS mode if deferred accept was used.
  3757. Thanks to Ben Maurer.
  3758. *) Bugfix: nginx issued the bogus error message "SSL_shutdown() failed
  3759. (SSL: )"; the bug had appeared in 0.6.23.
  3760. *) Bugfix: in HTTPS mode requests might fail with the "bad write retry"
  3761. error; the bug had appeared in 0.6.23.
  3762. Changes with nginx 0.6.25 08 Jan 2008
  3763. *) Change: now the "server_name_in_redirect" directive is used instead
  3764. of the "server_name" directive's special "*" parameter.
  3765. *) Change: now wildcard and regex names can be used as main name in a
  3766. "server_name" directive.
  3767. *) Change: the "satisfy_any" directive was replaced by the "satisfy"
  3768. directive.
  3769. *) Workaround: old worker processes might hog CPU after reconfiguration
  3770. if they was run under Linux OpenVZ.
  3771. *) Feature: the "min_delete_depth" directive.
  3772. *) Bugfix: the COPY and MOVE methods did not work with single files.
  3773. *) Bugfix: the ngx_http_gzip_static_module did not allow the
  3774. ngx_http_dav_module to work; the bug had appeared in 0.6.23.
  3775. *) Bugfix: socket leak in HTTPS mode if deferred accept was used.
  3776. Thanks to Ben Maurer.
  3777. *) Bugfix: nginx could not be built without PCRE library; the bug had
  3778. appeared in 0.6.23.
  3779. Changes with nginx 0.6.24 27 Dec 2007
  3780. *) Bugfix: a segmentation fault might occur in worker process if HTTPS
  3781. was used; the bug had appeared in 0.6.23.
  3782. Changes with nginx 0.6.23 27 Dec 2007
  3783. *) Change: the "off" parameter in the "ssl_session_cache" directive; now
  3784. this is default parameter.
  3785. *) Change: the "open_file_cache_retest" directive was renamed to the
  3786. "open_file_cache_valid".
  3787. *) Feature: the "open_file_cache_min_uses" directive.
  3788. *) Feature: the ngx_http_gzip_static_module.
  3789. *) Feature: the "gzip_disable" directive.
  3790. *) Feature: the "memcached_pass" directive may be used inside the "if"
  3791. block.
  3792. *) Bugfix: a segmentation fault occurred in worker process, if the
  3793. "memcached_pass" and "if" directives were used in the same location.
  3794. *) Bugfix: if a "satisfy_any on" directive was used and not all access
  3795. and auth modules directives were set, then other given access and
  3796. auth directives were not tested;
  3797. *) Bugfix: regex parameters in a "valid_referers" directive were not
  3798. inherited from previous level.
  3799. *) Bugfix: a "post_action" directive did run if a request was completed
  3800. with 499 status code.
  3801. *) Bugfix: optimization of 16K buffer usage in a SSL connection.
  3802. Thanks to Ben Maurer.
  3803. *) Bugfix: the STARTTLS in SMTP mode did not work.
  3804. Thanks to Oleg Motienko.
  3805. *) Bugfix: in HTTPS mode requests might fail with the "bad write retry"
  3806. error; the bug had appeared in 0.5.13.
  3807. Changes with nginx 0.6.22 19 Dec 2007
  3808. *) Change: now all ngx_http_perl_module methods return values copied to
  3809. perl's allocated memory.
  3810. *) Bugfix: if nginx was built with ngx_http_perl_module, the perl before
  3811. 5.8.6 was used, and perl supported threads, then during
  3812. reconfiguration the master process aborted; the bug had appeared in
  3813. 0.5.9.
  3814. Thanks to Boris Zhmurov.
  3815. *) Bugfix: the ngx_http_perl_module methods may get invalid values of
  3816. the regex captures.
  3817. *) Bugfix: a segmentation fault occurred in worker process, if the
  3818. $r->has_request_body() method was called for a request whose small
  3819. request body was already received.
  3820. *) Bugfix: large_client_header_buffers did not freed before going to
  3821. keep-alive state.
  3822. Thanks to Olexander Shtepa.
  3823. *) Bugfix: the last address was missed in the $upstream_addr variable;
  3824. the bug had appeared in 0.6.18.
  3825. *) Bugfix: the "fastcgi_catch_stderr" directive did return error code;
  3826. now it returns 502 code, that can be rerouted to a next server using
  3827. the "fastcgi_next_upstream invalid_header" directive.
  3828. *) Bugfix: a segmentation fault occurred in master process if the
  3829. "fastcgi_catch_stderr" directive was used; the bug had appeared in
  3830. 0.6.10.
  3831. Thanks to Manlio Perillo.
  3832. Changes with nginx 0.6.21 03 Dec 2007
  3833. *) Change: if variable values used in a "proxy_pass" directive contain
  3834. IP-addresses only, then a "resolver" directive is not mandatory.
  3835. *) Bugfix: a segmentation fault might occur in worker process if a
  3836. "proxy_pass" directive with URI-part was used; the bug had appeared
  3837. in 0.6.19.
  3838. *) Bugfix: if resolver was used on platform that does not support
  3839. kqueue, then nginx issued an alert "name is out of response".
  3840. Thanks to Andrei Nigmatulin.
  3841. *) Bugfix: if the $server_protocol was used in FastCGI parameters and a
  3842. request line length was near to the "client_header_buffer_size"
  3843. directive value, then nginx issued an alert "fastcgi: the request
  3844. record is too big".
  3845. *) Bugfix: if a plain text HTTP/0.9 version request was made to HTTPS
  3846. server, then nginx returned usual response.
  3847. Changes with nginx 0.6.20 28 Nov 2007
  3848. *) Bugfix: a segmentation fault might occur in worker process if a
  3849. "proxy_pass" directive with URI-part was used; the bug had appeared
  3850. in 0.6.19.
  3851. Changes with nginx 0.6.19 27 Nov 2007
  3852. *) Bugfix: the 0.6.18 version could not be built.
  3853. Changes with nginx 0.6.18 27 Nov 2007
  3854. *) Change: now the ngx_http_userid_module adds start time microseconds
  3855. to the cookie field contains a pid value.
  3856. *) Change: now the full request line instead of URI only is written to
  3857. error_log.
  3858. *) Feature: variables support in the "proxy_pass" directive.
  3859. *) Feature: the "resolver" and "resolver_timeout" directives.
  3860. *) Feature: now the directive "add_header last-modified ''" deletes a
  3861. "Last-Modified" response header line.
  3862. *) Bugfix: the "limit_rate" directive did not allow to use full
  3863. throughput, even if limit value was very high.
  3864. Changes with nginx 0.6.17 15 Nov 2007
  3865. *) Feature: the "If-Range" request header line support.
  3866. Thanks to Alexander V. Inyukhin.
  3867. *) Bugfix: URL double escaping in a redirect of the "msie_refresh"
  3868. directive; the bug had appeared in 0.6.4.
  3869. *) Bugfix: the "autoindex" directive did not work with the "alias /"
  3870. directive.
  3871. *) Bugfix: a segmentation fault might occur in worker process if
  3872. subrequests were used.
  3873. *) Bugfix: the big responses may be transferred truncated if SSL and
  3874. gzip were used.
  3875. *) Bugfix: the $status variable was equal to 0 if a proxied server
  3876. returned response in HTTP/0.9 version.
  3877. Changes with nginx 0.6.16 29 Oct 2007
  3878. *) Change: now the uname(2) is used on Linux instead of procfs.
  3879. Thanks to Ilya Novikov.
  3880. *) Bugfix: if the "?" character was in a "error_page" directive, then it
  3881. was escaped in a proxied request; the bug had appeared in 0.6.11.
  3882. *) Bugfix: compatibility with mget.
  3883. Changes with nginx 0.6.15 22 Oct 2007
  3884. *) Feature: Cygwin compatibility.
  3885. Thanks to Vladimir Kutakov.
  3886. *) Feature: the "merge_slashes" directive.
  3887. *) Feature: the "gzip_vary" directive.
  3888. *) Feature: the "server_tokens" directive.
  3889. *) Bugfix: nginx did not unescape URI in the "include" SSI command.
  3890. *) Bugfix: the segmentation fault was occurred on start or while
  3891. reconfiguration if variable was used in the "charset" or
  3892. "source_charset" directives.
  3893. *) Bugfix: nginx returned the 400 response on requests like
  3894. "GET http://www.domain.com HTTP/1.0".
  3895. Thanks to James Oakley.
  3896. *) Bugfix: if request with request body was redirected using the
  3897. "error_page" directive, then nginx tried to read the request body
  3898. again; the bug had appeared in 0.6.7.
  3899. *) Bugfix: a segmentation fault occurred in worker process if no
  3900. server_name was explicitly defined for server processing request; the
  3901. bug had appeared in 0.6.7.
  3902. Changes with nginx 0.6.14 15 Oct 2007
  3903. *) Change: now by default the "echo" SSI command uses entity encoding.
  3904. *) Feature: the "encoding" parameter in the "echo" SSI command.
  3905. *) Feature: the "access_log" directive may be used inside the
  3906. "limit_except" block.
  3907. *) Bugfix: if all upstream servers were failed, then all servers had got
  3908. weight the was equal one until servers became alive; the bug had
  3909. appeared in 0.6.6.
  3910. *) Bugfix: a segmentation fault occurred in worker process if
  3911. $date_local and $date_gmt were used outside the
  3912. ngx_http_ssi_filter_module.
  3913. *) Bugfix: a segmentation fault might occur in worker process if debug
  3914. log was enabled.
  3915. Thanks to Andrei Nigmatulin.
  3916. *) Bugfix: ngx_http_memcached_module did not set
  3917. $upstream_response_time.
  3918. Thanks to Maxim Dounin.
  3919. *) Bugfix: a worker process may got caught in an endless loop, if the
  3920. memcached was used.
  3921. *) Bugfix: nginx supported low case only "close" and "keep-alive" values
  3922. in the "Connection" request header line; the bug had appeared in
  3923. 0.6.11.
  3924. *) Bugfix: sub_filter did not work with empty substitution.
  3925. *) Bugfix: in sub_filter parsing.
  3926. Changes with nginx 0.6.13 24 Sep 2007
  3927. *) Bugfix: nginx did not close directory file on HEAD request if
  3928. autoindex was used.
  3929. Thanks to Arkadiusz Patyk.
  3930. Changes with nginx 0.6.12 21 Sep 2007
  3931. *) Change: mail proxy was split on three modules: pop3, imap and smtp.
  3932. *) Feature: the --without-mail_pop3_module, --without-mail_imap_module,
  3933. and --without-mail_smtp_module configuration parameters.
  3934. *) Feature: the "smtp_greeting_delay" and "smtp_client_buffer"
  3935. directives of the ngx_mail_smtp_module.
  3936. *) Bugfix: the trailing wildcards did not work; the bug had appeared in
  3937. 0.6.9.
  3938. *) Bugfix: nginx could not start on Solaris if the shared PCRE library
  3939. located in non-standard place was used.
  3940. *) Bugfix: the "proxy_hide_header" and "fastcgi_hide_header" directives
  3941. did not hide response header lines whose name was longer than 32
  3942. characters.
  3943. Thanks to Manlio Perillo.
  3944. Changes with nginx 0.6.11 11 Sep 2007
  3945. *) Bugfix: active connection counter always increased if mail proxy was
  3946. used.
  3947. *) Bugfix: if backend returned response header only using non-buffered
  3948. proxy, then nginx closed backend connection on timeout.
  3949. *) Bugfix: nginx did not support several "Connection" request header
  3950. lines.
  3951. *) Bugfix: if the "max_fails" was set for upstream server, then after
  3952. first failure server weight was always one; the bug had appeared in
  3953. 0.6.6.
  3954. Changes with nginx 0.6.10 03 Sep 2007
  3955. *) Feature: the "open_file_cache", "open_file_cache_retest", and
  3956. "open_file_cache_errors" directives.
  3957. *) Bugfix: socket leak; the bug had appeared in 0.6.7.
  3958. *) Bugfix: a charset set by the "charset" directive was not appended to
  3959. the "Content-Type" header set by $r->send_http_header().
  3960. *) Bugfix: a segmentation fault might occur in worker process if
  3961. /dev/poll method was used.
  3962. Changes with nginx 0.6.9 28 Aug 2007
  3963. *) Bugfix: a worker process may got caught in an endless loop, if the
  3964. HTTPS protocol was used; the bug had appeared in 0.6.7.
  3965. *) Bugfix: if server listened on two addresses or ports and trailing
  3966. wildcard was used, then nginx did not run.
  3967. *) Bugfix: the "ip_hash" directive might incorrectly mark servers as
  3968. down.
  3969. *) Bugfix: nginx could not be built on amd64; the bug had appeared in
  3970. 0.6.8.
  3971. Changes with nginx 0.6.8 20 Aug 2007
  3972. *) Change: now nginx tries to set the "worker_priority",
  3973. "worker_rlimit_nofile", "worker_rlimit_core", and
  3974. "worker_rlimit_sigpending" without super-user privileges.
  3975. *) Change: now nginx escapes space and "%" in request to a mail proxy
  3976. authentication server.
  3977. *) Change: now nginx escapes "%" in $memcached_key variable.
  3978. *) Bugfix: nginx used path relative to configuration prefix for
  3979. non-absolute configuration file path specified in the "-c" key; the
  3980. bug had appeared in 0.6.6.
  3981. *) Bugfix: nginx did not work on FreeBSD/sparc64.
  3982. Changes with nginx 0.6.7 15 Aug 2007
  3983. *) Change: now the paths specified in the "include",
  3984. "auth_basic_user_file", "perl_modules", "ssl_certificate",
  3985. "ssl_certificate_key", and "ssl_client_certificate" directives are
  3986. relative to directory of nginx configuration file nginx.conf, but not
  3987. to nginx prefix directory.
  3988. *) Change: the --sysconfdir=PATH option in configure was canceled.
  3989. *) Change: the special make target "upgrade1" was defined for online
  3990. upgrade of 0.1.x versions.
  3991. *) Feature: the "server_name" and "valid_referers" directives support
  3992. regular expressions.
  3993. *) Feature: the "server" directive in the "upstream" context supports
  3994. the "backup" parameter.
  3995. *) Feature: the ngx_http_perl_module supports the
  3996. $r->discard_request_body.
  3997. *) Feature: the "add_header Last-Modified ..." directive changes the
  3998. "Last-Modified" response header line.
  3999. *) Bugfix: if a response different than 200 was returned to a request
  4000. with body and connection went to the keep-alive state after the
  4001. request, then nginx returned 400 for the next request.
  4002. *) Bugfix: a segmentation fault occurred in worker process if invalid
  4003. address was set in the "auth_http" directive.
  4004. *) Bugfix: now nginx uses default listen backlog value 511 on all
  4005. platforms except FreeBSD.
  4006. Thanks to Jiang Hong.
  4007. *) Bugfix: a worker process may got caught in an endless loop, if a
  4008. "server" inside "upstream" block was marked as "down"; the bug had
  4009. appeared in 0.6.6.
  4010. *) Bugfix: now Solaris sendfilev() is not used to transfer the client
  4011. request body to FastCGI-server via the unix domain socket.
  4012. Changes with nginx 0.6.6 30 Jul 2007
  4013. *) Feature: the --sysconfdir=PATH option in configure.
  4014. *) Feature: named locations.
  4015. *) Feature: the $args variable can be set with the "set" directive.
  4016. *) Feature: the $is_args variable.
  4017. *) Bugfix: fair big weight upstream balancer.
  4018. *) Bugfix: if a client has closed connection to mail proxy then nginx
  4019. might not close connection to backend.
  4020. *) Bugfix: if the same host without specified port was used as backend
  4021. for HTTP and HTTPS, then nginx used only one port - 80 or 443.
  4022. *) Bugfix: fix building on Solaris/amd64 by Sun Studio 11 and early
  4023. versions; the bug had appeared in 0.6.4.
  4024. Changes with nginx 0.6.5 23 Jul 2007
  4025. *) Feature: $nginx_version variable.
  4026. Thanks to Nick S. Grechukh.
  4027. *) Feature: the mail proxy supports AUTHENTICATE in IMAP mode.
  4028. Thanks to Maxim Dounin.
  4029. *) Feature: the mail proxy supports STARTTLS in SMTP mode.
  4030. Thanks to Maxim Dounin.
  4031. *) Bugfix: now nginx escapes space in $memcached_key variable.
  4032. *) Bugfix: nginx was incorrectly built by Sun Studio on Solaris/amd64.
  4033. Thanks to Jiang Hong.
  4034. *) Bugfix: of minor potential bugs.
  4035. Thanks to Coverity's Scan.
  4036. Changes with nginx 0.6.4 17 Jul 2007
  4037. *) Security: the "msie_refresh" directive allowed XSS.
  4038. Thanks to Maxim Boguk.
  4039. *) Change: the "proxy_store" and "fastcgi_store" directives were
  4040. changed.
  4041. *) Feature: the "proxy_store_access" and "fastcgi_store_access"
  4042. directives.
  4043. *) Bugfix: nginx did not work on Solaris/sparc64 if it was built by Sun
  4044. Studio.
  4045. Thanks to Andrei Nigmatulin.
  4046. *) Workaround: for Sun Studio 12.
  4047. Thanks to Jiang Hong.
  4048. Changes with nginx 0.6.3 12 Jul 2007
  4049. *) Feature: the "proxy_store" and "fastcgi_store" directives.
  4050. *) Bugfix: a segmentation fault might occur in worker process if the
  4051. "auth_http_header" directive was used.
  4052. Thanks to Maxim Dounin.
  4053. *) Bugfix: a segmentation fault occurred in worker process if the
  4054. CRAM-MD5 authentication method was used, but it was not enabled.
  4055. *) Bugfix: a segmentation fault might occur in worker process when the
  4056. HTTPS protocol was used in the "proxy_pass" directive.
  4057. *) Bugfix: a segmentation fault might occur in worker process if the
  4058. eventport method was used.
  4059. *) Bugfix: the "proxy_ignore_client_abort" and
  4060. "fastcgi_ignore_client_abort" directives did not work; the bug had
  4061. appeared in 0.5.13.
  4062. Changes with nginx 0.6.2 09 Jul 2007
  4063. *) Bugfix: if the FastCGI header was split in records, then nginx passed
  4064. garbage in the header to a client.
  4065. Changes with nginx 0.6.1 17 Jun 2007
  4066. *) Bugfix: in SSI parsing.
  4067. *) Bugfix: if remote SSI subrequest was used, then posterior local file
  4068. subrequest might transferred to client in wrong order.
  4069. *) Bugfix: large SSI inclusions buffered in temporary files were
  4070. truncated.
  4071. *) Bugfix: the perl $$ variable value in ngx_http_perl_module was equal
  4072. to the master process identification number.
  4073. Changes with nginx 0.6.0 14 Jun 2007
  4074. *) Feature: the "server_name", "map", and "valid_referers" directives
  4075. support the "www.example.*" wildcards.
  4076. Changes with nginx 0.5.25 11 Jun 2007
  4077. *) Bugfix: nginx could not be built with the
  4078. --without-http_rewrite_module parameter; the bug had appeared in
  4079. 0.5.24.
  4080. Changes with nginx 0.5.24 06 Jun 2007
  4081. *) Security: the "ssl_verify_client" directive did not work if request
  4082. was made using HTTP/0.9.
  4083. *) Bugfix: a part of response body might be passed uncompressed if gzip
  4084. was used; the bug had appeared in 0.5.23.
  4085. Changes with nginx 0.5.23 04 Jun 2007
  4086. *) Feature: the ngx_http_ssl_module supports Server Name Indication TLS
  4087. extension.
  4088. *) Feature: the "fastcgi_catch_stderr" directive.
  4089. Thanks to Nick S. Grechukh, OWOX project.
  4090. *) Bugfix: a segmentation fault occurred in master process if two
  4091. virtual servers should bind() to the overlapping ports.
  4092. *) Bugfix: if nginx was built with ngx_http_perl_module and perl
  4093. supported threads, then during second reconfiguration the error
  4094. messages "panic: MUTEX_LOCK" and "perl_parse() failed" were issued.
  4095. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
  4096. Changes with nginx 0.5.22 29 May 2007
  4097. *) Bugfix: a big request body might not be passed to backend; the bug
  4098. had appeared in 0.5.21.
  4099. Changes with nginx 0.5.21 28 May 2007
  4100. *) Bugfix: if server has more than about ten locations, then regex
  4101. locations might be chosen not in that order as they were specified.
  4102. *) Bugfix: a worker process may got caught in an endless loop on 64-bit
  4103. platform, if the 33-rd or next in succession backend has failed.
  4104. Thanks to Anton Povarov.
  4105. *) Bugfix: a bus error might occur on Solaris/sparc64 if the PCRE
  4106. library was used.
  4107. Thanks to Andrei Nigmatulin.
  4108. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
  4109. Changes with nginx 0.5.20 07 May 2007
  4110. *) Feature: the "sendfile_max_chunk" directive.
  4111. *) Feature: the "$http_...", "$sent_http_...", and "$upstream_http_..."
  4112. variables may be changed using the "set" directive.
  4113. *) Bugfix: a segmentation fault might occur in worker process if the SSI
  4114. command 'if expr="$var = /"' was used.
  4115. *) Bugfix: trailing boundary of multipart range response was transferred
  4116. incorrectly.
  4117. Thanks to Evan Miller.
  4118. *) Bugfix: nginx did not work on Solaris/sparc64 if it was built by Sun
  4119. Studio.
  4120. Thanks to Andrei Nigmatulin.
  4121. *) Bugfix: the ngx_http_perl_module could not be built by Solaris make.
  4122. Thanks to Andrei Nigmatulin.
  4123. Changes with nginx 0.5.19 24 Apr 2007
  4124. *) Change: now the $request_time variable has millisecond precision.
  4125. *) Change: the method $r->rflush of ngx_http_perl_module was renamed to
  4126. the $r->flush.
  4127. *) Feature: the $upstream_addr variable.
  4128. *) Feature: the "proxy_headers_hash_max_size" and
  4129. "proxy_headers_hash_bucket_size" directives.
  4130. Thanks to Volodymyr Kostyrko.
  4131. *) Bugfix: the files more than 2G could not be transferred using
  4132. sendfile and limit_rate on 64-bit platforms.
  4133. *) Bugfix: the files more than 2G could not be transferred using
  4134. sendfile on 64-bit Linux.
  4135. Changes with nginx 0.5.18 19 Apr 2007
  4136. *) Feature: the ngx_http_sub_filter_module.
  4137. *) Feature: the "$upstream_http_..." variables.
  4138. *) Feature: now the $upstream_status and $upstream_response_time
  4139. variables keep data about all upstreams before X-Accel-Redirect.
  4140. *) Bugfix: a segmentation fault occurred in master process after first
  4141. reconfiguration and receiving any signal if nginx was built with
  4142. ngx_http_perl_module and perl did not support multiplicity; the bug
  4143. had appeared in 0.5.9.
  4144. *) Bugfix: if perl did not support multiplicity, then after
  4145. reconfiguration perl code did not work; the bug had appeared in
  4146. 0.3.38.
  4147. Changes with nginx 0.5.17 02 Apr 2007
  4148. *) Change: now nginx always returns the 405 status for the TRACE method.
  4149. *) Feature: now nginx supports the "include" directive inside the
  4150. "types" block.
  4151. *) Bugfix: the $document_root variable usage in the "root" and "alias"
  4152. directives is disabled: this caused recursive stack overflow.
  4153. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
  4154. *) Bugfix: in some cases non-cacheable variables (such as $uri variable)
  4155. returned old cached value.
  4156. Changes with nginx 0.5.16 26 Mar 2007
  4157. *) Bugfix: the C-class network was not used as hash key in the "ip_hash"
  4158. directive.
  4159. Thanks to Pavel Yarkovoy.
  4160. *) Bugfix: a segmentation fault might occur in worker process if a
  4161. charset was set in the "Content-Type" header line and the line has
  4162. trailing ";"; the bug had appeared in 0.3.50.
  4163. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was
  4164. used and a request body written in a temporary file was multiple of
  4165. 32K.
  4166. *) Bugfix: nginx could not be built on Solaris without the --with-debug
  4167. option; the bug had appeared in 0.5.15.
  4168. Changes with nginx 0.5.15 19 Mar 2007
  4169. *) Feature: the mail proxy supports authenticated SMTP proxying and the
  4170. "smtp_auth", "smtp_capabilities", and "xclient" directives.
  4171. Thanks to Anton Yuzhaninov and Maxim Dounin.
  4172. *) Feature: now the keep-alive connections are closed just after
  4173. receiving the reconfiguration signal.
  4174. *) Change: the "imap" and "auth" directives were renamed to the "mail"
  4175. and "pop3_auth" directives.
  4176. *) Bugfix: a segmentation fault occurred in worker process if the
  4177. CRAM-MD5 authentication method was used and the APOP method was
  4178. disabled.
  4179. *) Bugfix: if the "starttls only" directive was used in POP3 protocol,
  4180. then nginx allowed authentication without switching to the SSL mode.
  4181. *) Bugfix: worker processes did not exit after reconfiguration and did
  4182. not rotate logs if the eventport method was used.
  4183. *) Bugfix: a worker process may got caught in an endless loop, if the
  4184. "ip_hash" directive was used.
  4185. *) Bugfix: now nginx does not log some alerts if eventport or /dev/poll
  4186. methods are used.
  4187. Changes with nginx 0.5.14 23 Feb 2007
  4188. *) Bugfix: nginx ignored superfluous closing "}" in the end of
  4189. configuration file.
  4190. Changes with nginx 0.5.13 19 Feb 2007
  4191. *) Feature: the COPY and MOVE methods.
  4192. *) Bugfix: the ngx_http_realip_module set garbage for requests passed
  4193. via keep-alive connection.
  4194. *) Bugfix: nginx did not work on big-endian 64-bit Linux.
  4195. Thanks to Andrei Nigmatulin.
  4196. *) Bugfix: now when IMAP/POP3 proxy receives too long command it closes
  4197. the connection right away, but not after timeout.
  4198. *) Bugfix: if the "epoll" method was used and a client closed a
  4199. connection prematurely, then nginx closed the connection after a send
  4200. timeout only.
  4201. *) Bugfix: nginx could not be built on platforms different from i386,
  4202. amd64, sparc, and ppc; the bug had appeared in 0.5.8.
  4203. Changes with nginx 0.5.12 12 Feb 2007
  4204. *) Bugfix: nginx could not be built on platforms different from i386,
  4205. amd64, sparc, and ppc; the bug had appeared in 0.5.8.
  4206. *) Bugfix: a segmentation fault might occur in worker process if the
  4207. temporary files were used while working with FastCGI server; the bug
  4208. had appeared in 0.5.8.
  4209. *) Bugfix: a segmentation fault might occur in worker process if the
  4210. $fastcgi_script_name variable was logged.
  4211. *) Bugfix: ngx_http_perl_module could not be built on Solaris.
  4212. Changes with nginx 0.5.11 05 Feb 2007
  4213. *) Feature: now configure detects system PCRE library in MacPorts.
  4214. Thanks to Chris McGrath.
  4215. *) Bugfix: the response was incorrect if several ranges were requested;
  4216. the bug had appeared in 0.5.6.
  4217. *) Bugfix: the "create_full_put_path" directive could not create the
  4218. intermediate directories if no "dav_access" directive was set.
  4219. Thanks to Evan Miller.
  4220. *) Bugfix: the "0" response code might be logged in the access_log
  4221. instead of the "400" and "408" error codes.
  4222. *) Bugfix: a segmentation fault might occur in worker process if nginx
  4223. was built with -O2 optimization.
  4224. Changes with nginx 0.5.10 26 Jan 2007
  4225. *) Bugfix: while online executable file upgrade the new master process
  4226. did not inherit the listening sockets; the bug had appeared in 0.5.9.
  4227. *) Bugfix: a segmentation fault might occur in worker process if nginx
  4228. was built with -O2 optimization; the bug had appeared in 0.5.1.
  4229. Changes with nginx 0.5.9 25 Jan 2007
  4230. *) Change: now the ngx_http_memcached_module uses the $memcached_key
  4231. variable value as a key.
  4232. *) Feature: the $memcached_key variable.
  4233. *) Feature: the "clean" parameter in the "client_body_in_file_only"
  4234. directive.
  4235. *) Feature: the "env" directive.
  4236. *) Feature: the "sendfile" directive is available inside the "if" block.
  4237. *) Feature: now on failure of the writing to access nginx logs a message
  4238. to error_log, but not more often than once a minute.
  4239. *) Bugfix: the "access_log off" directive did not always turn off the
  4240. logging.
  4241. Changes with nginx 0.5.8 19 Jan 2007
  4242. *) Bugfix: a segmentation fault might occur if
  4243. "client_body_in_file_only on" was used and a request body was small.
  4244. *) Bugfix: a segmentation fault occurred if
  4245. "client_body_in_file_only on" and "proxy_pass_request_body off" or
  4246. "fastcgi_pass_request_body off" directives were used, and nginx
  4247. switched to a next upstream.
  4248. *) Bugfix: if the "proxy_buffering off" directive was used and a client
  4249. connection was non-active, then the connection was closed after send
  4250. timeout; the bug had appeared in 0.4.7.
  4251. *) Bugfix: if the "epoll" method was used and a client closed a
  4252. connection prematurely, then nginx closed the connection after a send
  4253. timeout only.
  4254. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was
  4255. used.
  4256. *) Bugfixes in the "limit_zone" directive.
  4257. Changes with nginx 0.5.7 15 Jan 2007
  4258. *) Feature: the ssl_session_cache storage optimization.
  4259. *) Bugfixes in the "ssl_session_cache" and "limit_zone" directives.
  4260. *) Bugfix: the segmentation fault was occurred on start or while
  4261. reconfiguration if the "ssl_session_cache" or "limit_zone" directives
  4262. were used on 64-bit platforms.
  4263. *) Bugfix: a segmentation fault occurred if the "add_before_body" or
  4264. "add_after_body" directives were used and there was no "Content-Type"
  4265. header line in response.
  4266. *) Bugfix: the OpenSSL library was always built with the threads
  4267. support.
  4268. Thanks to Den Ivanov.
  4269. *) Bugfix: the PCRE-6.5+ library and the icc compiler compatibility.
  4270. Changes with nginx 0.5.6 09 Jan 2007
  4271. *) Change: now the ngx_http_index_module ignores all methods except the
  4272. GET, HEAD, and POST methods.
  4273. *) Feature: the ngx_http_limit_zone_module.
  4274. *) Feature: the $binary_remote_addr variable.
  4275. *) Feature: the "ssl_session_cache" directives of the
  4276. ngx_http_ssl_module and ngx_imap_ssl_module.
  4277. *) Feature: the DELETE method supports recursive removal.
  4278. *) Bugfix: the byte-ranges were transferred incorrectly if the
  4279. $r->sendfile() was used.
  4280. Changes with nginx 0.5.5 24 Dec 2006
  4281. *) Change: the -v switch does not show compiler information any more.
  4282. *) Feature: the -V switch.
  4283. *) Feature: the "worker_rlimit_core" directive supports size in K, M,
  4284. and G.
  4285. *) Bugfix: the nginx.pm module now could be installed by an unprivileged
  4286. user.
  4287. *) Bugfix: a segmentation fault might occur if the $r->request_body or
  4288. $r->request_body_file methods were used.
  4289. *) Bugfix: the ppc platform specific bugs.
  4290. Changes with nginx 0.5.4 15 Dec 2006
  4291. *) Feature: the "perl" directive may be used inside the "limit_except"
  4292. block.
  4293. *) Bugfix: the ngx_http_dav_module required the "Date" request header
  4294. line for the DELETE method.
  4295. *) Bugfix: if one only parameter was used in the "dav_access" directive,
  4296. then nginx might report about configuration error.
  4297. *) Bugfix: a segmentation fault might occur if the $host variable was
  4298. used; the bug had appeared in 0.4.14.
  4299. Changes with nginx 0.5.3 13 Dec 2006
  4300. *) Feature: the ngx_http_perl_module supports the $r->status,
  4301. $r->log_error, and $r->sleep methods.
  4302. *) Feature: the $r->variable method supports variables that do not exist
  4303. in nginx configuration.
  4304. *) Bugfix: the $r->has_request_body method did not work.
  4305. Changes with nginx 0.5.2 11 Dec 2006
  4306. *) Bugfix: if the "proxy_pass" directive used the name of the "upstream"
  4307. block, then nginx tried to resolve the name; the bug had appeared in
  4308. 0.5.1.
  4309. Changes with nginx 0.5.1 11 Dec 2006
  4310. *) Bugfix: the "post_action" directive might not run after a
  4311. unsuccessful completion of a request.
  4312. *) Workaround: for Eudora for Mac; the bug had appeared in 0.4.11.
  4313. Thanks to Bron Gondwana.
  4314. *) Bugfix: if the "upstream" name was used in the "fastcgi_pass", then
  4315. the message "no port in upstream" was issued; the bug had appeared in
  4316. 0.5.0.
  4317. *) Bugfix: if the "proxy_pass" and "fastcgi_pass" directives used the
  4318. same servers but different ports, then these directives uses the
  4319. first described port; the bug had appeared in 0.5.0.
  4320. *) Bugfix: if the "proxy_pass" and "fastcgi_pass" directives used the
  4321. unix domain sockets, then these directives used first described
  4322. socket; the bug had appeared in 0.5.0.
  4323. *) Bugfix: ngx_http_auth_basic_module ignored the user if it was in the
  4324. last line in the password file and there was no the carriage return,
  4325. the line feed, or the ":" symbol after the password.
  4326. *) Bugfix: the $upstream_response_time variable might be equal to
  4327. "0.000", although response time was more than 1 millisecond.
  4328. Changes with nginx 0.5.0 04 Dec 2006
  4329. *) Change: the parameters in the "%name" form in the "log_format"
  4330. directive are not supported anymore.
  4331. *) Change: the "proxy_upstream_max_fails",
  4332. "proxy_upstream_fail_timeout", "fastcgi_upstream_max_fails",
  4333. "fastcgi_upstream_fail_timeout", "memcached_upstream_max_fails", and
  4334. "memcached_upstream_fail_timeout" directives are not supported
  4335. anymore.
  4336. *) Feature: the "server" directive in the "upstream" context supports
  4337. the "max_fails", "fail_timeout", and "down" parameters.
  4338. *) Feature: the "ip_hash" directive inside the "upstream" block.
  4339. *) Feature: the WAIT status in the "Auth-Status" header line of the
  4340. IMAP/POP3 proxy authentication server response.
  4341. *) Bugfix: nginx could not be built on 64-bit platforms; the bug had
  4342. appeared in 0.4.14.
  4343. Changes with nginx 0.4.14 27 Nov 2006
  4344. *) Feature: the "proxy_pass_error_message" directive in IMAP/POP3 proxy.
  4345. *) Feature: now configure detects system PCRE library on FreeBSD, Linux,
  4346. and NetBSD.
  4347. *) Bugfix: ngx_http_perl_module did not work with perl built with the
  4348. threads support; the bug had appeared in 0.3.38.
  4349. *) Bugfix: ngx_http_perl_module did not work if perl was called
  4350. recursively.
  4351. *) Bugfix: nginx ignored a host name in a request line.
  4352. *) Bugfix: a worker process may got caught in an endless loop, if a
  4353. FastCGI server sent too many data to the stderr.
  4354. *) Bugfix: the $upstream_response_time variable may be negative if the
  4355. system time was changed backward.
  4356. *) Bugfix: the "Auth-Login-Attempt" parameter was not sent to IMAP/POP3
  4357. proxy authentication server when POP3 was used.
  4358. *) Bugfix: a segmentation fault might occur if connect to IMAP/POP3
  4359. proxy authentication server failed.
  4360. Changes with nginx 0.4.13 15 Nov 2006
  4361. *) Feature: the "proxy_pass" directive may be used inside the
  4362. "limit_except" block.
  4363. *) Feature: the "limit_except" directive supports all WebDAV methods.
  4364. *) Bugfix: if the "add_before_body" directive was used without the
  4365. "add_after_body" directive, then a response did not transferred
  4366. complete.
  4367. *) Bugfix: a large request body did not receive if the epoll method and
  4368. the deferred accept() were used.
  4369. *) Bugfix: a charset could not be set for ngx_http_autoindex_module
  4370. responses; the bug had appeared in 0.3.50.
  4371. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was
  4372. used;
  4373. *) Bugfix: the --group= configuration parameter was ignored.
  4374. Thanks to Thomas Moschny.
  4375. *) Bugfix: the 50th subrequest in SSI response did not work; the bug had
  4376. appeared in 0.3.50.
  4377. Changes with nginx 0.4.12 31 Oct 2006
  4378. *) Feature: the ngx_http_perl_module supports the $r->variable method.
  4379. *) Bugfix: if a big static file was included using SSI in a response,
  4380. then the response may be transferred incomplete.
  4381. *) Bugfix: nginx did not omit the "#fragment" part in URI.
  4382. Changes with nginx 0.4.11 25 Oct 2006
  4383. *) Feature: the POP3 proxy supports the AUTH LOGIN PLAIN and CRAM-MD5.
  4384. *) Feature: the ngx_http_perl_module supports the $r->allow_ranges
  4385. method.
  4386. *) Bugfix: if the APOP was enabled in the POP3 proxy, then the USER/PASS
  4387. commands might not work; the bug had appeared in 0.4.10.
  4388. Changes with nginx 0.4.10 23 Oct 2006
  4389. *) Feature: the POP3 proxy supports the APOP command.
  4390. *) Bugfix: if the select, poll or /dev/poll methods were used, then
  4391. while waiting authentication server response the IMAP/POP3 proxy
  4392. hogged CPU.
  4393. *) Bugfix: a segmentation fault might occur if the $server_addr variable
  4394. was used in the "map" directive.
  4395. *) Bugfix: the ngx_http_flv_module did not support the byte ranges for
  4396. full responses; the bug had appeared in 0.4.7.
  4397. *) Bugfix: nginx could not be built on Debian amd64; the bug had
  4398. appeared in 0.4.9.
  4399. Changes with nginx 0.4.9 13 Oct 2006
  4400. *) Feature: the "set" parameter in the "include" SSI command.
  4401. *) Feature: the ngx_http_perl_module now tests the nginx.pm module
  4402. version.
  4403. Changes with nginx 0.4.8 11 Oct 2006
  4404. *) Bugfix: if an "include" SSI command were before another "include" SSI
  4405. command with a "wait" parameter, then the "wait" parameter might not
  4406. work.
  4407. *) Bugfix: the ngx_http_flv_module added the FLV header to the full
  4408. responses.
  4409. Thanks to Alexey Kovyrin.
  4410. Changes with nginx 0.4.7 10 Oct 2006
  4411. *) Feature: the ngx_http_flv_module.
  4412. *) Feature: the $request_body_file variable.
  4413. *) Feature: the "charset" and "source_charset" directives support the
  4414. variables.
  4415. *) Bugfix: if an "include" SSI command were before another "include" SSI
  4416. command with a "wait" parameter, then the "wait" parameter might not
  4417. work.
  4418. *) Bugfix: if the "proxy_buffering off" directive was used or while
  4419. working with memcached the connections might not be closed on
  4420. timeout.
  4421. *) Bugfix: nginx did not run on 64-bit platforms except amd64, sparc64,
  4422. and ppc64.
  4423. Changes with nginx 0.4.6 06 Oct 2006
  4424. *) Bugfix: nginx did not run on 64-bit platforms except amd64, sparc64,
  4425. and ppc64.
  4426. *) Bugfix: nginx sent the chunked response for HTTP/1.1 request,
  4427. if its length was set by text string in the
  4428. $r->headers_out("Content-Length", ...) method.
  4429. *) Bugfix: after redirecting error by an "error_page" directive any
  4430. ngx_http_rewrite_module directive returned this error code; the bug
  4431. had appeared in 0.4.4.
  4432. Changes with nginx 0.4.5 02 Oct 2006
  4433. *) Bugfix: nginx could not be built on Linux and Solaris; the bug had
  4434. appeared in 0.4.4.
  4435. Changes with nginx 0.4.4 02 Oct 2006
  4436. *) Feature: the $scheme variable.
  4437. *) Feature: the "expires" directive supports the "max" parameter.
  4438. *) Feature: the "include" directive supports the "*" mask.
  4439. Thanks to Jonathan Dance.
  4440. *) Bugfix: the "return" directive always overrode the "error_page"
  4441. response code redirected by the "error_page" directive.
  4442. *) Bugfix: a segmentation fault occurred if zero-length body was in PUT
  4443. method.
  4444. *) Bugfix: the redirect was changed incorrectly if the variables were
  4445. used in the "proxy_redirect" directive.
  4446. Changes with nginx 0.4.3 26 Sep 2006
  4447. *) Change: now the 499 error could not be redirected using an
  4448. "error_page" directive.
  4449. *) Feature: the Solaris 10 event ports support.
  4450. *) Feature: the ngx_http_browser_module.
  4451. *) Bugfix: a segmentation fault may occur while redirecting the 400
  4452. error to the proxied server using a "proxy_pass" directive.
  4453. *) Bugfix: a segmentation fault occurred if an unix domain socket was
  4454. used in a "proxy_pass" directive; the bug had appeared in 0.3.47.
  4455. *) Bugfix: SSI did work with memcached and nonbuffered responses.
  4456. *) Workaround: of the Sun Studio PAUSE hardware capability bug.
  4457. Changes with nginx 0.4.2 14 Sep 2006
  4458. *) Bugfix: the O_NOATIME flag support on Linux was canceled; the bug had
  4459. appeared in 0.4.1.
  4460. Changes with nginx 0.4.1 14 Sep 2006
  4461. *) Bugfix: the DragonFlyBSD compatibility.
  4462. Thanks to Pavel Nazarov.
  4463. *) Workaround: of bug in 64-bit Linux sendfile(), when file is more than
  4464. 2G.
  4465. *) Feature: now on Linux nginx uses O_NOATIME flag for static requests.
  4466. Thanks to Yusuf Goolamabbas.
  4467. Changes with nginx 0.4.0 30 Aug 2006
  4468. *) Change in internal API: the HTTP modules initialization was moved
  4469. from the init module phase to the HTTP postconfiguration phase.
  4470. *) Change: now the request body is not read beforehand for the
  4471. ngx_http_perl_module: it's required to start the reading using the
  4472. $r->has_request_body method.
  4473. *) Feature: the ngx_http_perl_module supports the DECLINED return code.
  4474. *) Feature: the ngx_http_dav_module supports the incoming "Date" header
  4475. line for the PUT method.
  4476. *) Feature: the "ssi" directive is available inside the "if" block.
  4477. *) Bugfix: a segmentation fault occurred if there was an "index"
  4478. directive with variables and the first index name was without
  4479. variables; the bug had appeared in 0.1.29.
  4480. Changes with nginx 0.3.61 28 Aug 2006
  4481. *) Change: now the "tcp_nodelay" directive is turned on by default.
  4482. *) Feature: the "msie_refresh" directive.
  4483. *) Feature: the "recursive_error_pages" directive.
  4484. *) Bugfix: the "rewrite" directive returned incorrect redirect, if the
  4485. redirect had the captured escaped symbols from original URI.
  4486. Changes with nginx 0.3.60 18 Aug 2006
  4487. *) Bugfix: a worker process may got caught in an endless loop while an
  4488. error redirection; the bug had appeared in 0.3.59.
  4489. Changes with nginx 0.3.59 16 Aug 2006
  4490. *) Feature: now is possible to do several redirection using the
  4491. "error_page" directive.
  4492. *) Bugfix: the "dav_access" directive did not support three parameters.
  4493. *) Bugfix: the "error_page" directive did not changes the "Content-Type"
  4494. header line after the "X-Accel-Redirect" was used; the bug had
  4495. appeared in 0.3.58.
  4496. Changes with nginx 0.3.58 14 Aug 2006
  4497. *) Feature: the "error_page" directive supports the variables.
  4498. *) Change: now the procfs interface instead of sysctl is used on Linux.
  4499. *) Change: now the "Content-Type" header line is inherited from first
  4500. response when the "X-Accel-Redirect" was used.
  4501. *) Bugfix: the "error_page" directive did not redirect the 413 error.
  4502. *) Bugfix: the trailing "?" did not remove old arguments if no new
  4503. arguments were added to a rewritten URI.
  4504. *) Bugfix: nginx could not run on 64-bit FreeBSD 7.0-CURRENT.
  4505. Changes with nginx 0.3.57 09 Aug 2006
  4506. *) Feature: the $ssl_client_serial variable.
  4507. *) Bugfix: in the "!-e" operator of the "if" directive.
  4508. Thanks to Andrian Budanstov.
  4509. *) Bugfix: while a client certificate verification nginx did not send to
  4510. a client the required certificates information.
  4511. *) Bugfix: the $document_root variable did not support the variables in
  4512. the "root" directive.
  4513. Changes with nginx 0.3.56 04 Aug 2006
  4514. *) Feature: the "dav_access" directive.
  4515. *) Feature: the "if" directive supports the "-d", "!-d", "-e", "!-e",
  4516. "-x", and "!-x" operators.
  4517. *) Bugfix: a segmentation fault occurred if a request returned a
  4518. redirect and some sent to client header lines were logged in the
  4519. access log.
  4520. Changes with nginx 0.3.55 28 Jul 2006
  4521. *) Feature: the "stub" parameter in the "include" SSI command.
  4522. *) Feature: the "block" SSI command.
  4523. *) Feature: the unicode2nginx script was added to contrib.
  4524. *) Bugfix: if a "root" was specified by variable only, then the root was
  4525. relative to a server prefix.
  4526. *) Bugfix: if the request contained "//" or "/./" and escaped symbols
  4527. after them, then the proxied request was sent unescaped.
  4528. *) Bugfix: the $r->header_in("Cookie") of the ngx_http_perl_module now
  4529. returns all "Cookie" header lines.
  4530. *) Bugfix: a segmentation fault occurred if
  4531. "client_body_in_file_only on" was used and nginx switched to a next
  4532. upstream.
  4533. *) Bugfix: on some condition while reconfiguration character codes
  4534. inside the "charset_map" may be treated invalid; the bug had appeared
  4535. in 0.3.50.
  4536. Changes with nginx 0.3.54 11 Jul 2006
  4537. *) Feature: nginx now logs the subrequest information to the error log.
  4538. *) Feature: the "proxy_next_upstream", "fastcgi_next_upstream", and
  4539. "memcached_next_upstream" directives support the "off" parameter.
  4540. *) Feature: the "debug_connection" directive supports the CIDR address
  4541. form.
  4542. *) Bugfix: if a response of proxied server or FastCGI server was
  4543. converted from UTF-8 or back, then it may be transferred incomplete.
  4544. *) Bugfix: the $upstream_response_time variable had the time of the
  4545. first request to a backend only.
  4546. *) Bugfix: nginx could not be built on amd64 platform; the bug had
  4547. appeared in 0.3.53.
  4548. Changes with nginx 0.3.53 07 Jul 2006
  4549. *) Change: the "add_header" directive adds the string to 204, 301, and
  4550. 302 responses.
  4551. *) Feature: the "server" directive in the "upstream" context supports
  4552. the "weight" parameter.
  4553. *) Feature: the "server_name" directive supports the "*" wildcard.
  4554. *) Feature: nginx supports the request body size more than 2G.
  4555. *) Bugfix: if a client was successfully authorized using "satisfy_any
  4556. on", then anyway the message "access forbidden by rule" was written
  4557. in the log.
  4558. *) Bugfix: the "PUT" method may erroneously not create a file and return
  4559. the 409 code.
  4560. *) Bugfix: if the IMAP/POP3 backend returned an error, then nginx
  4561. continued proxying anyway.
  4562. Changes with nginx 0.3.52 03 Jul 2006
  4563. *) Change: the ngx_http_index_module behavior for the "POST /" requests
  4564. is reverted to the 0.3.40 version state: the module now does not
  4565. return the 405 error.
  4566. *) Bugfix: the worker process may got caught in an endless loop if the
  4567. limit rate was used; the bug had appeared in 0.3.37.
  4568. *) Bugfix: ngx_http_charset_module logged "unknown charset" alert, even
  4569. if the recoding was not needed; the bug had appeared in 0.3.50.
  4570. *) Bugfix: if a code response of the PUT request was 409, then a
  4571. temporary file was not removed.
  4572. Changes with nginx 0.3.51 30 Jun 2006
  4573. *) Bugfix: the "<" symbols might disappeared some conditions in the SSI;
  4574. the bug had appeared in 0.3.50.
  4575. Changes with nginx 0.3.50 28 Jun 2006
  4576. *) Change: the "proxy_redirect_errors" and "fastcgi_redirect_errors"
  4577. directives was renamed to the "proxy_intercept_errors" and
  4578. "fastcgi_intercept_errors" directives.
  4579. *) Feature: the ngx_http_charset_module supports the recoding from the
  4580. single byte encodings to the UTF-8 encoding and back.
  4581. *) Feature: the "X-Accel-Charset" response header line is supported in
  4582. proxy and FastCGI mode.
  4583. *) Bugfix: the "\" escape symbol in the "\"" and "\'" pairs in the SSI
  4584. command was removed only if the command also has the "$" symbol.
  4585. *) Bugfix: the "<!--" string might be added on some conditions in the
  4586. SSI after inclusion.
  4587. *) Bugfix: if the "Content-Length: 0" header line was in response, then
  4588. in nonbuffered proxying mode the client connection was not closed.
  4589. Changes with nginx 0.3.49 31 May 2006
  4590. *) Bugfix: in the "set" directive.
  4591. *) Bugfix: if two or more FastCGI subrequests was in SSI, then first
  4592. subrequest output was included instead of second and following
  4593. subrequests.
  4594. Changes with nginx 0.3.48 29 May 2006
  4595. *) Change: now the ngx_http_charset_module works for subrequests, if the
  4596. response has no "Content-Type" header line.
  4597. *) Bugfix: if the "proxy_pass" directive has no URI part, then the
  4598. "proxy_redirect default" directive add the unnecessary slash in start
  4599. of the rewritten redirect.
  4600. *) Bugfix: the internal redirect always transform client's HTTP method
  4601. to GET, now the transformation is made for the "X-Accel-Redirect"
  4602. redirects only and if the method is not HEAD; the bug had appeared in
  4603. 0.3.42.
  4604. *) Bugfix: the ngx_http_perl_module could not be built, if the perl was
  4605. built with the threads support; the bug had appeared in 0.3.46.
  4606. Changes with nginx 0.3.47 23 May 2006
  4607. *) Feature: the "upstream" directive.
  4608. *) Change: now the "\" escape symbol in the "\"" and "\'" pairs in the
  4609. SSI command is always removed.
  4610. Changes with nginx 0.3.46 11 May 2006
  4611. *) Feature: the "proxy_hide_header", "proxy_pass_header",
  4612. "fastcgi_hide_header", and "fastcgi_pass_header" directives.
  4613. *) Change: the "proxy_pass_x_powered_by", "fastcgi_x_powered_by", and
  4614. "proxy_pass_server" directives were canceled.
  4615. *) Feature: the "X-Accel-Buffering" response header line is supported in
  4616. proxy mode.
  4617. *) Bugfix: the reconfiguration bug and memory leaks in the
  4618. ngx_http_perl_module.
  4619. Changes with nginx 0.3.45 06 May 2006
  4620. *) Feature: the "ssl_verify_client", "ssl_verify_depth", and
  4621. "ssl_client_certificate" directives.
  4622. *) Change: the $request_method variable now returns the main request
  4623. method.
  4624. *) Change: the &deg; symbol codes were changed in koi-win conversion
  4625. table.
  4626. *) Feature: the euro and N symbols were added to koi-win conversion
  4627. table.
  4628. *) Bugfix: if nginx distributed the requests among several backends and
  4629. some backend failed, then requests intended for this backend was
  4630. directed to one live backend only instead of being distributed among
  4631. the rest.
  4632. Changes with nginx 0.3.44 04 May 2006
  4633. *) Feature: the "wait" parameter in the "include" SSI command.
  4634. *) Feature: the Ukrainian and Byelorussian characters were added to
  4635. koi-win conversion table.
  4636. *) Bugfix: in the SSI.
  4637. Changes with nginx 0.3.43 26 Apr 2006
  4638. *) Bugfix: in the SSI.
  4639. Changes with nginx 0.3.42 26 Apr 2006
  4640. *) Feature: the "bind" option of the "listen" directive in IMAP/POP3
  4641. proxy.
  4642. *) Bugfix: if the same capture in the "rewrite" directive was used more
  4643. then once.
  4644. *) Bugfix: the $sent_http_content_type, $sent_http_content_length,
  4645. $sent_http_last_modified, $sent_http_connection,
  4646. $sent_http_keep_alive, and $sent_http_transfer_encoding variables
  4647. were not written to access log.
  4648. *) Bugfix: the $sent_http_cache_control returned value of the single
  4649. "Cache-Control" response header line.
  4650. Changes with nginx 0.3.41 21 Apr 2006
  4651. *) Feature: the -v switch.
  4652. *) Bugfix: the segmentation fault may occurred if the SSI page has
  4653. remote subrequests.
  4654. *) Bugfix: in FastCGI handling.
  4655. *) Bugfix: if the perl modules path was not set using
  4656. --with-perl_modules_path=PATH or the "perl_modules", then the
  4657. segmentation fault was occurred.
  4658. Changes with nginx 0.3.40 19 Apr 2006
  4659. *) Feature: the ngx_http_dav_module supports the MKCOL method.
  4660. *) Feature: the "create_full_put_path" directive.
  4661. *) Feature: the "$limit_rate" variable.
  4662. Changes with nginx 0.3.39 17 Apr 2006
  4663. *) Feature: the "uninitialized_variable_warn" directive; the logging
  4664. level of the "uninitialized variable" message was lowered from
  4665. "alert" to "warn".
  4666. *) Feature: the "override_charset" directive.
  4667. *) Change: now if the unknown variable is used in the "echo" and "if
  4668. expr='$name'" SSI-commands, then the "unknown variable" message is
  4669. not logged.
  4670. *) Bugfix: the active connection counter increased on the exceeding of
  4671. the connection limit specified by the "worker_connections" directive;
  4672. the bug had appeared in 0.2.0.
  4673. *) Bugfix: the limit rate might not work on some condition; the bug had
  4674. appeared in 0.3.38.
  4675. Changes with nginx 0.3.38 14 Apr 2006
  4676. *) Feature: the ngx_http_dav_module.
  4677. *) Change: the ngx_http_perl_module optimizations.
  4678. Thanks to Sergey Skvortsov.
  4679. *) Feature: the ngx_http_perl_module supports the $r->request_body_file
  4680. method.
  4681. *) Feature: the "client_body_in_file_only" directive.
  4682. *) Workaround: now on disk overflow nginx tries to write access logs
  4683. once a second only.
  4684. Thanks to Anton Yuzhaninov and Maxim Dounin.
  4685. *) Bugfix: now the "limit_rate" directive more precisely limits rate if
  4686. rate is more than 100 Kbyte/s.
  4687. Thanks to ForJest.
  4688. *) Bugfix: now the IMAP/POP3 proxy escapes the "\r" and "\n" symbols in
  4689. login and password to pass authorization server.
  4690. Thanks to Maxim Dounin.
  4691. Changes with nginx 0.3.37 07 Apr 2006
  4692. *) Feature: the "limit_except" directive.
  4693. *) Feature: the "if" directive supports the "!~", "!~*", "-f", and "!-f"
  4694. operators.
  4695. *) Feature: the ngx_http_perl_module supports the $r->request_body
  4696. method.
  4697. *) Bugfix: in the ngx_http_addition_filter_module.
  4698. Changes with nginx 0.3.36 05 Apr 2006
  4699. *) Feature: the ngx_http_addition_filter_module.
  4700. *) Feature: the "proxy_pass" and "fastcgi_pass" directives may be used
  4701. inside the "if" block.
  4702. *) Feature: the "proxy_ignore_client_abort" and
  4703. "fastcgi_ignore_client_abort" directives.
  4704. *) Feature: the "$request_completion" variable.
  4705. *) Feature: the ngx_http_perl_module supports the $r->request_method and
  4706. $r->remote_addr.
  4707. *) Feature: the ngx_http_ssi_module supports the "elif" command.
  4708. *) Bugfix: the "\/" string in the expression of the "if" command of the
  4709. ngx_http_ssi_module was treated incorrectly.
  4710. *) Bugfix: in the regular expressions in the "if" command of the
  4711. ngx_http_ssi_module.
  4712. *) Bugfix: if the relative path was specified in the
  4713. "client_body_temp_path", "proxy_temp_path", "fastcgi_temp_path", and
  4714. "perl_modules" directives, then the directory was used relatively to
  4715. a current path but not to a server prefix.
  4716. Changes with nginx 0.3.35 22 Mar 2006
  4717. *) Bugfix: the accept-filter and the TCP_DEFER_ACCEPT option were set
  4718. for first "listen" directive only; the bug had appeared in 0.3.31.
  4719. *) Bugfix: in the "proxy_pass" directive without the URI part in a
  4720. subrequest.
  4721. Changes with nginx 0.3.34 21 Mar 2006
  4722. *) Feature: the "add_header" directive supports the variables.
  4723. Changes with nginx 0.3.33 15 Mar 2006
  4724. *) Feature: the "http_503" parameter of the "proxy_next_upstream" or
  4725. "fastcgi_next_upstream" directives.
  4726. *) Bugfix: ngx_http_perl_module did not work with inlined in the
  4727. configuration code, if it was not started with the "sub" word.
  4728. *) Bugfix: in the "post_action" directive.
  4729. Changes with nginx 0.3.32 11 Mar 2006
  4730. *) Bugfix: the debug logging on startup and reconfiguration time was
  4731. removed; the bug had appeared in 0.3.31.
  4732. Changes with nginx 0.3.31 10 Mar 2006
  4733. *) Change: now nginx passes the malformed proxied backend responses.
  4734. *) Feature: the "listen" directives support the address in the "*:port"
  4735. form.
  4736. *) Feature: the EVFILER_TIMER support in MacOSX 10.4.
  4737. *) Workaround: for MacOSX 64-bit kernel kqueue millisecond timeout bug.
  4738. Thanks to Andrei Nigmatulin.
  4739. *) Bugfix: if there were several "listen" directives listening one
  4740. various addresses inside one server, then server names like
  4741. "*.domain.tld" worked for first address only; the bug had appeared in
  4742. 0.3.18.
  4743. *) Bugfix: if the HTTPS protocol was used in the "proxy_pass" directive
  4744. and the request body was in temporary file then the request was not
  4745. transferred.
  4746. *) Bugfix: perl 5.8.8 compatibility.
  4747. Changes with nginx 0.3.30 22 Feb 2006
  4748. *) Change: the ECONNABORTED error log level was changed to "error" from
  4749. "crit".
  4750. *) Bugfix: the ngx_http_perl_module could not be build without the
  4751. ngx_http_ssi_filter_module.
  4752. *) Bugfix: nginx could not be built on i386 platform, if the PIC was
  4753. used; the bug had appeared in 0.3.27.
  4754. Changes with nginx 0.3.29 20 Feb 2006
  4755. *) Feature: now nginx uses less memory, if PHP in FastCGI mode sends
  4756. many warnings before the response.
  4757. *) Bugfix: the "Transfer-Encoding: chunked" header line was issued in
  4758. the 204 responses for the HTTP/1.1 requests.
  4759. *) Bugfix: nginx returned the 502 response, if the complete response
  4760. header lines were transferred in a separate FastCGI records.
  4761. *) Bugfix: if the proxied URI was specified in the "post_action"
  4762. directive, then it ran only after a successful completion of a
  4763. request.
  4764. Changes with nginx 0.3.28 16 Feb 2006
  4765. *) Feature: the "restrict_host_names" directive was canceled.
  4766. *) Feature: the --with-cpu-opt=ppc64 configuration parameter.
  4767. *) Bugfix: on some condition the proxied connection with a client was
  4768. terminated prematurely.
  4769. Thanks to Vladimir Shutoff.
  4770. *) Bugfix: the "X-Accel-Limit-Rate" header line was not taken into
  4771. account if the request was redirected using the "X-Accel-Redirect"
  4772. header line.
  4773. *) Bugfix: the "post_action" directive ran only after a successful
  4774. completion of a request.
  4775. *) Bugfix: the proxied response body generated by the "post_action"
  4776. directive was transferred to a client.
  4777. Changes with nginx 0.3.27 08 Feb 2006
  4778. *) Change: the "variables_hash_max_size" and
  4779. "variables_hash_bucket_size" directives.
  4780. *) Feature: the $body_bytes_sent variable can be used not only in the
  4781. "log_format" directive.
  4782. *) Feature: the $ssl_protocol and $ssl_cipher variables.
  4783. *) Feature: the cache line size detection for widespread CPUs at start
  4784. time.
  4785. *) Feature: now the "accept_mutex" directive is supported using fcntl(2)
  4786. on platforms different from i386, amd64, sparc64, and ppc.
  4787. *) Feature: the "lock_file" directive and the --with-lock-path=PATH
  4788. autoconfiguration directive.
  4789. *) Bugfix: if the HTTPS protocol was used in the "proxy_pass" directive
  4790. then the requests with the body was not transferred.
  4791. Changes with nginx 0.3.26 03 Feb 2006
  4792. *) Change: the "optimize_host_names" directive was renamed to the
  4793. "optimize_server_names".
  4794. *) Bugfix: if in the "proxy_pass" directive was no the URI part, then
  4795. the main request URI was transferred to a backend while proxying the
  4796. SSI subrequest.
  4797. Changes with nginx 0.3.25 01 Feb 2006
  4798. *) Bugfix: the segmentation fault was occurred on start or while
  4799. reconfiguration if there was invalid configuration; the bug had
  4800. appeared in 0.3.24.
  4801. Changes with nginx 0.3.24 01 Feb 2006
  4802. *) Workaround: for bug in FreeBSD kqueue.
  4803. *) Bugfix: now a response generated by the "post_action" directive is
  4804. not transferred to a client.
  4805. *) Bugfix: the memory leaks were occurring if many log files were used.
  4806. *) Bugfix: the first "proxy_redirect" directive was working inside one
  4807. location.
  4808. *) Bugfix: on 64-bit platforms segmentation fault may occurred on start
  4809. if the many names were used in the "server_name" directives; the bug
  4810. had appeared in 0.3.18.
  4811. Changes with nginx 0.3.23 24 Jan 2006
  4812. *) Feature: the "optimize_host_names" directive.
  4813. *) Bugfix: in using of the variables in the "path" and "alias"
  4814. directives.
  4815. *) Bugfix: the ngx_http_perl_module was incorrectly built on Linux and
  4816. Solaris.
  4817. Changes with nginx 0.3.22 17 Jan 2006
  4818. *) Feature: the ngx_http_perl_module supports the $r->args and
  4819. $r->unescape methods.
  4820. *) Feature: the method $r->query_string of ngx_http_perl_module was
  4821. canceled.
  4822. *) Bugfix: segmentation fault was occurred if the "none" or "blocked"
  4823. values was specified in the "valid_referers" directive; the bug had
  4824. appeared in 0.3.18.
  4825. Changes with nginx 0.3.21 16 Jan 2006
  4826. *) Feature: the ngx_http_perl_module.
  4827. *) Change: the "valid_referers" directive allows the referrers without
  4828. URI part.
  4829. Changes with nginx 0.3.20 11 Jan 2006
  4830. *) Bugfix: in SSI handling.
  4831. *) Bugfix: the ngx_http_memcached_module did not support the keys in the
  4832. "/usr?args" form.
  4833. Changes with nginx 0.3.19 28 Dec 2005
  4834. *) Feature: the "path" and "alias" directives support the variables.
  4835. *) Change: now the "valid_referers" directive again checks the URI part.
  4836. *) Bugfix: in SSI handling.
  4837. Changes with nginx 0.3.18 26 Dec 2005
  4838. *) Feature: the "server_names" directive supports the ".domain.tld"
  4839. names.
  4840. *) Feature: the "server_names" directive uses the hash for the
  4841. "*.domain.tld" names and more effective hash for usual names.
  4842. *) Change: the "server_names_hash_max_size" and
  4843. "server_names_hash_bucket_size" directives.
  4844. *) Change: the "server_names_hash" and "server_names_hash_threshold"
  4845. directives were canceled.
  4846. *) Feature: the "valid_referers" directive uses the hash site names.
  4847. *) Change: now the "valid_referers" directive checks the site names only
  4848. without the URI part.
  4849. *) Bugfix: some ".domain.tld" names incorrectly processed by the
  4850. ngx_http_map_module.
  4851. *) Bugfix: segmentation fault was occurred if configuration file did not
  4852. exist; the bug had appeared in 0.3.12.
  4853. *) Bugfix: on 64-bit platforms segmentation fault may occurred on start;
  4854. the bug had appeared in 0.3.16.
  4855. Changes with nginx 0.3.17 18 Dec 2005
  4856. *) Change: now on Linux configure checks the presence of epoll and
  4857. sendfile64() in kernel.
  4858. *) Feature: the "map" directive supports domain names in the
  4859. ".domain.tld" form.
  4860. *) Bugfix: the timeouts were not used in SSL handshake; the bug had
  4861. appeared in 0.2.4.
  4862. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
  4863. *) Bugfix: when the HTTPS protocol was used in the "proxy_pass"
  4864. directive the port 80 was used by default.
  4865. Changes with nginx 0.3.16 16 Dec 2005
  4866. *) Feature: the ngx_http_map_module.
  4867. *) Feature: the "types_hash_max_size" and "types_hash_bucket_size"
  4868. directives.
  4869. *) Feature: the "ssi_value_length" directive.
  4870. *) Feature: the "worker_rlimit_core" directive.
  4871. *) Workaround: the connection number in logs was always 1 if nginx was
  4872. built by the icc 8.1 or 9.0 compilers with optimization for
  4873. Pentium 4.
  4874. *) Bugfix: the "config timefmt" SSI command set incorrect time format.
  4875. *) Bugfix: nginx did not close connection to IMAP/POP3 backend for the
  4876. SSL connections; the bug had appeared in 0.3.13.
  4877. Thanks to Rob Mueller.
  4878. *) Bugfix: segmentation fault may occurred in at SSL shutdown; the bug
  4879. had appeared in 0.3.13.
  4880. Changes with nginx 0.3.15 07 Dec 2005
  4881. *) Feature: the new 444 code of the "return" directive to close
  4882. connection.
  4883. *) Feature: the "so_keepalive" directive in IMAP/POP3 proxy.
  4884. *) Bugfix: if there are unclosed connection nginx now calls abort() only
  4885. on graceful quit and active "debug_points" directive.
  4886. Changes with nginx 0.3.14 05 Dec 2005
  4887. *) Bugfix: in the 304 response the body was transferred; the bug had
  4888. appeared in 0.3.13.
  4889. Changes with nginx 0.3.13 05 Dec 2005
  4890. *) Feature: the IMAP/POP3 proxy supports STARTTLS and STLS.
  4891. *) Bugfix: the IMAP/POP3 proxy did not work with the select, poll, and
  4892. /dev/poll methods.
  4893. *) Bugfix: in SSI handling.
  4894. *) Bugfix: now Solaris sendfilev() is not used to transfer the client
  4895. request body to FastCGI-server via the unix domain socket.
  4896. *) Bugfix: the "auth_basic" directive did not disable the authorization;
  4897. the bug had appeared in 0.3.11.
  4898. Changes with nginx 0.3.12 26 Nov 2005
  4899. *) Security: if nginx was built with the ngx_http_realip_module and the
  4900. "satisfy_any on" directive was used, then access and authorization
  4901. directives did not work. The ngx_http_realip_module was not built and
  4902. is not built by default.
  4903. *) Change: the "$time_gmt" variable name was changed to "$time_local".
  4904. *) Change: the "proxy_header_buffer_size" and
  4905. "fastcgi_header_buffer_size" directives was renamed to the
  4906. "proxy_buffer_size" and "fastcgi_buffer_size" directives.
  4907. *) Feature: the ngx_http_memcached_module.
  4908. *) Feature: the "proxy_buffering" directive.
  4909. *) Bugfix: the changes in accept mutex handling when the "rtsig" method
  4910. was used; the bug had appeared in 0.3.0.
  4911. *) Bugfix: if the client sent the "Transfer-Encoding: chunked" header
  4912. line, then nginx returns the 411 error.
  4913. *) Bugfix: if the "auth_basic" directive was inherited from the http
  4914. level, then the realm in the "WWW-Authenticate" header line was
  4915. without the "Basic realm" text.
  4916. *) Bugfix: if the "combined" format was explicitly specified in the
  4917. "access_log" directive, then the empty lines was written to the log;
  4918. the bug had appeared in 0.3.8.
  4919. *) Bugfix: nginx did not run on the sparc platform under any OS except
  4920. Solaris.
  4921. *) Bugfix: now it is not necessary to place space between the quoted
  4922. string and closing bracket in the "if" directive.
  4923. Changes with nginx 0.3.11 15 Nov 2005
  4924. *) Bugfix: nginx did not pass the client request headers and body while
  4925. proxying; the bug had appeared in 0.3.10.
  4926. Changes with nginx 0.3.10 15 Nov 2005
  4927. *) Change: the "valid_referers" directive and the "$invalid_referer"
  4928. variable were moved to the new ngx_http_referer_module from the
  4929. ngx_http_rewrite_module.
  4930. *) Change: the "$apache_bytes_sent" variable name was changed to
  4931. "$body_bytes_sent".
  4932. *) Feature: the "$sent_http_..." variables.
  4933. *) Feature: the "if" directive supports the "=" and "!=" operations.
  4934. *) Feature: the "proxy_pass" directive supports the HTTPS protocol.
  4935. *) Feature: the "proxy_set_body" directive.
  4936. *) Feature: the "post_action" directive.
  4937. *) Feature: the ngx_http_empty_gif_module.
  4938. *) Feature: the "worker_cpu_affinity" directive for Linux.
  4939. *) Bugfix: the "rewrite" directive did not unescape URI part in
  4940. redirect, now it is unescaped except the %00-%25 and %7F-%FF
  4941. characters.
  4942. *) Bugfix: nginx could not be built by the icc 9.0 compiler.
  4943. *) Bugfix: if the SSI was enabled for zero size static file, then the
  4944. chunked response was encoded incorrectly.
  4945. Changes with nginx 0.3.9 10 Nov 2005
  4946. *) Bugfix: nginx considered URI as unsafe if two any symbols was between
  4947. two slashes; the bug had appeared in 0.3.8.
  4948. Changes with nginx 0.3.8 09 Nov 2005
  4949. *) Security: nginx now checks URI got from a backend in
  4950. "X-Accel-Redirect" header line or in SSI file for the "/../" paths
  4951. and zeroes.
  4952. *) Change: nginx now does not treat the empty user name in the
  4953. "Authorization" header line as valid one.
  4954. *) Feature: the "ssl_session_timeout" directives of the
  4955. ngx_http_ssl_module and ngx_imap_ssl_module.
  4956. *) Feature: the "auth_http_header" directive of the
  4957. ngx_imap_auth_http_module.
  4958. *) Feature: the "add_header" directive.
  4959. *) Feature: the ngx_http_realip_module.
  4960. *) Feature: the new variables to use in the "log_format" directive:
  4961. $bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri,
  4962. $request_time, $request_length, $upstream_status,
  4963. $upstream_response_time, $gzip_ratio, $uid_got, $uid_set,
  4964. $connection, $pipe, and $msec. The parameters in the "%name" form
  4965. will be canceled soon.
  4966. *) Change: now the false variable values in the "if" directive are the
  4967. empty string "" and string starting with "0".
  4968. *) Bugfix: while using proxied or FastCGI-server nginx may leave
  4969. connections and temporary files with client requests in open state.
  4970. *) Bugfix: the worker processes did not flush the buffered logs on
  4971. graceful exit.
  4972. *) Bugfix: if the request URI was changes by the "rewrite" directive and
  4973. the request was proxied in location given by regular expression, then
  4974. the incorrect request was transferred to backend; the bug had
  4975. appeared in 0.2.6.
  4976. *) Bugfix: the "expires" directive did not remove the previous "Expires"
  4977. header.
  4978. *) Bugfix: nginx may stop to accept requests if the "rtsig" method and
  4979. several worker processes were used.
  4980. *) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in
  4981. SSI commands.
  4982. *) Bugfix: if the response was ended just after the SSI command and
  4983. gzipping was used, then the response did not transferred complete or
  4984. did not transferred at all.
  4985. Changes with nginx 0.3.7 27 Oct 2005
  4986. *) Feature: the "access_log" supports the "buffer=" parameter.
  4987. *) Bugfix: nginx could not be built on platforms different from i386,
  4988. amd64, sparc, and ppc; the bug had appeared in 0.3.2.
  4989. Changes with nginx 0.3.6 24 Oct 2005
  4990. *) Change: now the IMAP/POP3 proxy do not send the empty login to
  4991. authorization server.
  4992. *) Feature: the "log_format" supports the variables in the $name form.
  4993. *) Bugfix: if at least in one server was no the "listen" directive, then
  4994. nginx did not listen on the 80 port; the bug had appeared in 0.3.3.
  4995. *) Bugfix: if the URI part is omitted in "proxy_pass" directive, the 80
  4996. port was always used.
  4997. Changes with nginx 0.3.5 21 Oct 2005
  4998. *) Bugfix: the segmentation fault may occurred if the IMAP/POP3 login
  4999. was changed by authorization server; the bug had appeared in 0.2.2.
  5000. *) Bugfix: the accept mutex did not work and all connections were
  5001. handled by one process; the bug had appeared in 0.3.3.
  5002. *) Bugfix: the timeout did not work if the "rtsig" method and the
  5003. "timer_resolution" directive were used.
  5004. Changes with nginx 0.3.4 19 Oct 2005
  5005. *) Bugfix: nginx could not be built on Linux 2.4+ and MacOS X; the bug
  5006. had appeared in 0.3.3.
  5007. Changes with nginx 0.3.3 19 Oct 2005
  5008. *) Change: the "bl" and "af" parameters of the "listen" directive was
  5009. renamed to the "backlog" and "accept_filter".
  5010. *) Feature: the "rcvbuf" and "sndbuf" parameters of the "listen"
  5011. directive.
  5012. *) Change: the "$msec" log parameter does not require now the additional
  5013. the gettimeofday() system call.
  5014. *) Feature: the -t switch now tests the "listen" directives.
  5015. *) Bugfix: if the invalid address was specified in the "listen"
  5016. directive, then after the -HUP signal nginx left an open socket in
  5017. the CLOSED state.
  5018. *) Bugfix: the mime type may be incorrectly set to default value for
  5019. index file with variable in the name; the bug had appeared in 0.3.0.
  5020. *) Feature: the "timer_resolution" directive.
  5021. *) Feature: the millisecond "$upstream_response_time" log parameter.
  5022. *) Bugfix: a temporary file with client request body now is removed just
  5023. after the response header was transferred to a client.
  5024. *) Bugfix: OpenSSL 0.9.6 compatibility.
  5025. *) Bugfix: the SSL certificate and key file paths could not be relative.
  5026. *) Bugfix: the "ssl_prefer_server_ciphers" directive did not work in the
  5027. ngx_imap_ssl_module.
  5028. *) Bugfix: the "ssl_protocols" directive allowed to specify the single
  5029. protocol only.
  5030. Changes with nginx 0.3.2 12 Oct 2005
  5031. *) Feature: the Sun Studio 10 C compiler support.
  5032. *) Feature: the "proxy_upstream_max_fails",
  5033. "proxy_upstream_fail_timeout", "fastcgi_upstream_max_fails", and
  5034. "fastcgi_upstream_fail_timeout" directives.
  5035. Changes with nginx 0.3.1 10 Oct 2005
  5036. *) Bugfix: the segmentation fault occurred when the signal queue
  5037. overflowed if the "rtsig" method was used; the bug had appeared in
  5038. 0.2.0.
  5039. *) Change: correct handling of the "\\", "\"", "\'", and "\$" pairs in
  5040. SSI.
  5041. Changes with nginx 0.3.0 07 Oct 2005
  5042. *) Change: the 10-days live time limit of worker process was eliminated.
  5043. The limit was introduced because of millisecond timers overflow.
  5044. Changes with nginx 0.2.6 05 Oct 2005
  5045. *) Change: while using load-balancing the time before the failed backend
  5046. retry was decreased from 60 to 10 seconds.
  5047. *) Change: the "proxy_pass_unparsed_uri" was canceled, the original URI
  5048. now passed, if the URI part is omitted in "proxy_pass" directive.
  5049. *) Feature: the "error_page" directive supports redirects and allows
  5050. more flexible to change an error code.
  5051. *) Change: the charset in the "Content-Type" header line now is ignored
  5052. in proxied subrequests.
  5053. *) Bugfix: if the URI was changed in the "if" block and request did not
  5054. found new configuration, then the ngx_http_rewrite_module rules ran
  5055. again.
  5056. *) Bugfix: if the "set" directive set the ngx_http_geo_module variable
  5057. in some configuration part, the this variable was not available in
  5058. other configuration parts and the "using uninitialized variable"
  5059. error was occurred; the bug had appeared in 0.2.2.
  5060. Changes with nginx 0.2.5 04 Oct 2005
  5061. *) Change: the duplicate value of the ngx_http_geo_module variable now
  5062. causes the warning and changes old value.
  5063. *) Feature: the ngx_http_ssi_module supports the "set" command.
  5064. *) Feature: the ngx_http_ssi_module supports the "file" parameter in the
  5065. "include" command.
  5066. *) Feature: the ngx_http_ssi_module supports the variable value
  5067. substitutions in expressions of the "if" command.
  5068. Changes with nginx 0.2.4 03 Oct 2005
  5069. *) Feature: the ngx_http_ssi_module supports "$var=text", "$var!=text",
  5070. "$var=/text/", and "$var!=/text/" expressions in the "if" command.
  5071. *) Bugfix: in proxying location without trailing slash; the bug had
  5072. appeared in 0.1.44.
  5073. *) Bugfix: the segmentation fault may occurred if the "rtsig" method was
  5074. used; the bug had appeared in 0.2.0.
  5075. Changes with nginx 0.2.3 30 Sep 2005
  5076. *) Bugfix: nginx could not be built without the --with-debug option; the
  5077. bug had appeared in 0.2.2.
  5078. Changes with nginx 0.2.2 30 Sep 2005
  5079. *) Feature: the "config errmsg" command of the ngx_http_ssi_module.
  5080. *) Change: the ngx_http_geo_module variables can be overridden by the
  5081. "set" directive.
  5082. *) Feature: the "ssl_protocols" and "ssl_prefer_server_ciphers"
  5083. directives of the ngx_http_ssl_module and ngx_imap_ssl_module.
  5084. *) Bugfix: the ngx_http_autoindex_module did not show correctly the long
  5085. file names;
  5086. *) Bugfix: the ngx_http_autoindex_module now do not show the files
  5087. starting by dot.
  5088. *) Bugfix: if the SSL handshake failed then another connection may be
  5089. closed too.
  5090. Thanks to Rob Mueller.
  5091. *) Bugfix: the export versions of MSIE 5.x could not connect via HTTPS.
  5092. Changes with nginx 0.2.1 23 Sep 2005
  5093. *) Bugfix: if all backend using in load-balancing failed after one
  5094. error, then nginx may got caught in an endless loop; the bug had
  5095. appeared in 0.2.0.
  5096. Changes with nginx 0.2.0 23 Sep 2005
  5097. *) The pid-file names used during online upgrade was changed and now is
  5098. not required a manual rename operation. The old master process adds
  5099. the ".oldbin" suffix to its pid-file and executes a new binary file.
  5100. The new master process creates usual pid-file without the ".newbin"
  5101. suffix. If the master process exits, then old master process renames
  5102. back its pid-file with the ".oldbin" suffix to the pid-file without
  5103. suffix.
  5104. *) Change: the "worker_connections" directive, new name of the
  5105. "connections" directive; now the directive specifies maximum number
  5106. of connections, but not maximum socket descriptor number.
  5107. *) Feature: SSL supports the session cache inside one worker process.
  5108. *) Feature: the "satisfy_any" directive.
  5109. *) Change: the ngx_http_access_module and ngx_http_auth_basic_module do
  5110. not run for subrequests.
  5111. *) Feature: the "worker_rlimit_nofile" and "worker_rlimit_sigpending"
  5112. directives.
  5113. *) Bugfix: if all backend using in load-balancing failed after one
  5114. error, then nginx did not try do connect to them during 60 seconds.
  5115. *) Bugfix: in IMAP/POP3 command argument parsing.
  5116. Thanks to Rob Mueller.
  5117. *) Bugfix: errors while using SSL in IMAP/POP3 proxy.
  5118. *) Bugfix: errors while using SSI and gzipping.
  5119. *) Bugfix: the "Expires" and "Cache-Control" header lines were omitted
  5120. from the 304 responses.
  5121. Thanks to Alexandr Kukushkin.
  5122. Changes with nginx 0.1.45 08 Sep 2005
  5123. *) Change: the "ssl_engine" directive was canceled in the
  5124. ngx_http_ssl_module and now is introduced at global level.
  5125. *) Bugfix: the responses with SSI subrequests did not transferred via
  5126. SSL connection.
  5127. *) Various bug fixes in the IMAP/POP3 proxy.
  5128. Changes with nginx 0.1.44 06 Sep 2005
  5129. *) Feature: the IMAP/POP3 proxy supports SSL.
  5130. *) Feature: the "proxy_timeout" directive of the ngx_imap_proxy_module.
  5131. *) Feature: the "userid_mark" directive.
  5132. *) Feature: the $remote_user variable value is determined independently
  5133. of authorization use.
  5134. Changes with nginx 0.1.43 30 Aug 2005
  5135. *) Feature: the listen(2) backlog in the "listen" directive can be
  5136. changed using the -HUP signal.
  5137. *) Feature: the geo2nginx.pl script was added to contrib.
  5138. *) Change: the FastCGI parameters with the empty values now are passed
  5139. to a server.
  5140. *) Bugfix: the segmentation fault occurred or the worker process may got
  5141. caught in an endless loop if the proxied or FastCGI server sent the
  5142. "Cache-Control" header line and the "expires" directive was used; in
  5143. the proxied mode the bug had appeared in 0.1.29.
  5144. Changes with nginx 0.1.42 23 Aug 2005
  5145. *) Bugfix: if the request URI had a zero length after the processing in
  5146. the ngx_http_proxy_module, then the segmentation fault or bus error
  5147. occurred in the ngx_http_proxy_module.
  5148. *) Bugfix: the "limit_rate" directive did not work inside the "if"
  5149. block; the bug had appeared in 0.1.38.
  5150. Changes with nginx 0.1.41 25 Jul 2005
  5151. *) Bugfix: if the variable was used in the configuration file, then it
  5152. can not be used in SSI.
  5153. Changes with nginx 0.1.40 22 Jul 2005
  5154. *) Bugfix: if a client sent too long header line, then the request
  5155. information did not logged in the error log.
  5156. *) Bugfix: the "Set-Cookie" header line was not transferred when the
  5157. "X-Accel-Redirect" was used; the bug had appeared in 0.1.39.
  5158. *) Bugfix: the "Content-Disposition" header line was not transferred
  5159. when the "X-Accel-Redirect" was used.
  5160. *) Bugfix: the master process did not close the listen socket on the
  5161. SIGQUIT signal.
  5162. *) Bugfix: after on-line upgrade on Linux and Solaris the process name
  5163. became shorter in the "ps" command.
  5164. Changes with nginx 0.1.39 14 Jul 2005
  5165. *) The changes in the ngx_http_charset_module: the "default_charset"
  5166. directive was canceled; the "charset" directive sets the response
  5167. charset; the "source_charset" directive sets the source charset only.
  5168. *) Bugfix: the backend "WWW-Authenticate" header line did not
  5169. transferred while the 401 response code redirecting.
  5170. *) Bugfix: the ngx_http_proxy_module and ngx_http_fastcgi_module may
  5171. close a connection before anything was transferred to a client; the
  5172. bug had appeared in 0.1.38.
  5173. *) Workaround: the Linux glibc crypt_r() initialization bug.
  5174. *) Bugfix: the ngx_http_ssi_module did not support the relative URI in
  5175. the "include virtual" command.
  5176. *) Bugfix: if the backend response had the "Location" header line and
  5177. nginx should not rewrite this line, then the 500 code response body
  5178. was transferred; the bug had appeared in 0.1.29.
  5179. *) Bugfix: some directives of the ngx_http_proxy_module and
  5180. ngx_http_fastcgi_module were not inherited from the server to the
  5181. location level; the bug had appeared in 0.1.29.
  5182. *) Bugfix: the ngx_http_ssl_module did not support the certificate
  5183. chain.
  5184. *) Bugfix: the ngx_http_autoindex_module did not show correctly the long
  5185. file names; the bug had appeared in 0.1.38.
  5186. *) Bugfixes in IMAP/POP3 proxy in interaction with a backend at the
  5187. login state.
  5188. Changes with nginx 0.1.38 08 Jul 2005
  5189. *) Feature: the "limit_rate" directive is supported in proxy and FastCGI
  5190. mode.
  5191. *) Feature: the "X-Accel-Limit-Rate" response header line is supported
  5192. in proxy and FastCGI mode.
  5193. *) Feature: the "break" directive.
  5194. *) Feature: the "log_not_found" directive.
  5195. *) Bugfix: the response status code was not changed when request was
  5196. redirected by the ""X-Accel-Redirect" header line.
  5197. *) Bugfix: the variables set by the "set" directive could not be used in
  5198. SSI.
  5199. *) Bugfix: the segmentation fault may occurred if the SSI page has more
  5200. than one remote subrequest.
  5201. *) Bugfix: nginx treated the backend response as invalid if the status
  5202. line in the header was transferred in two packets; the bug had
  5203. appeared in 0.1.29.
  5204. *) Feature: the "ssi_types" directive.
  5205. *) Feature: the "autoindex_exact_size" directive.
  5206. *) Bugfix: the ngx_http_autoindex_module did not support the long file
  5207. names in UTF-8.
  5208. *) Feature: the IMAP/POP3 proxy.
  5209. Changes with nginx 0.1.37 23 Jun 2005
  5210. *) Change: now the "\n" is added to the end of the "nginx.pid" file.
  5211. *) Bugfix: the responses may be transferred not completely, if many
  5212. parts or the big parts were included by SSI.
  5213. *) Bugfix: if all backends had returned the 404 response and the
  5214. "http_404" parameter of the "proxy_next_upstream" or
  5215. "fastcgi_next_upstream" directives was used, then nginx started to
  5216. request all backends again.
  5217. Changes with nginx 0.1.36 15 Jun 2005
  5218. *) Change: if the request header has duplicate the "Host", "Connection",
  5219. "Content-Length", or "Authorization" lines, then nginx now returns
  5220. the 400 error.
  5221. *) Change: the "post_accept_timeout" directive was canceled.
  5222. *) Feature: the "default", "af=", "bl=", "deferred", and "bind"
  5223. parameters of the "listen" directive.
  5224. *) Feature: the FreeBSD accept filters support.
  5225. *) Feature: the Linux TCP_DEFER_ACCEPT support.
  5226. *) Bugfix: the ngx_http_autoindex_module did not support the file names
  5227. in UTF-8.
  5228. *) Bugfix: the new log file can be rotated by the -USR1 signal only if
  5229. the reconfiguration by the -HUP signal was made twice.
  5230. Changes with nginx 0.1.35 07 Jun 2005
  5231. *) Feature: the "working_directory" directive.
  5232. *) Feature: the "port_in_redirect" directive.
  5233. *) Bugfix: the segmentation fault was occurred if the backend response
  5234. header was in several packets; the bug had appeared in 0.1.29.
  5235. *) Bugfix: if more than 10 servers were configured or some server did
  5236. not use the "listen" directive, then the segmentation fault was
  5237. occurred on the start.
  5238. *) Bugfix: the segmentation fault might occur if the response was bigger
  5239. than the temporary file.
  5240. *) Bugfix: nginx returned the 400 response on requests like
  5241. "GET http://www.domain.com/uri HTTP/1.0"; the bug had appeared in
  5242. 0.1.28.
  5243. Changes with nginx 0.1.34 26 May 2005
  5244. *) Bugfix: the worker process may got caught in an endless loop if the
  5245. big response part were include by SSI.
  5246. *) Bugfix: the variables set by the "set" directive were not available
  5247. in SSI.
  5248. *) Feature: the "autoindex_localtime" directive.
  5249. *) Bugfix: the empty value of the "proxy_set_header" directive forbids
  5250. the client request header line passing.
  5251. Changes with nginx 0.1.33 23 May 2005
  5252. *) Bugfix: nginx could not be built with the --without-pcre parameter;
  5253. the bug had appeared in 0.1.29.
  5254. *) Bugfix: 3, 4, 7, and 8 the "proxy_set_header" directives in one level
  5255. cause the bus fault on start up.
  5256. *) Bugfix: the HTTP protocol was specified in the HTTPS redirects.
  5257. *) Bugfix: if the "rewrite" directive used the captures inside the "if"
  5258. directive, then the 500 error code was returned.
  5259. Changes with nginx 0.1.32 19 May 2005
  5260. *) Bugfix: the arguments were omitted in the redirects, issued by the
  5261. "rewrite" directive; the bug had appeared in 0.1.29.
  5262. *) Feature: the "if" directive supports the captures in regular
  5263. expressions.
  5264. *) Feature: the "set" directive supports the variables and the captures
  5265. of regular expressions.
  5266. *) Feature: the "X-Accel-Redirect" response header line is supported in
  5267. proxy and FastCGI mode.
  5268. Changes with nginx 0.1.31 16 May 2005
  5269. *) Bugfix: the response encrypted by SSL may not transferred complete.
  5270. *) Bugfix: errors while processing FastCGI response by SSI.
  5271. *) Bugfix: errors while using SSI and gzipping.
  5272. *) Bugfix: the redirect with the 301 code was transferred without
  5273. response body; the bug had appeared in 0.1.30.
  5274. Changes with nginx 0.1.30 14 May 2005
  5275. *) Bugfix: the worker process may got caught in an endless loop if the
  5276. SSI was used.
  5277. *) Bugfix: the response encrypted by SSL may not transferred complete.
  5278. *) Bugfix: if the length of the response part received at once from
  5279. proxied or FastCGI server was equal to 500, then nginx returns the
  5280. 500 response code; in proxy mode the bug had appeared in 0.1.29 only.
  5281. *) Bugfix: nginx did not consider the directives with 8 or 9 parameters
  5282. as invalid.
  5283. *) Feature: the "return" directive can return the 204 response code.
  5284. *) Feature: the "ignore_invalid_headers" directive.
  5285. Changes with nginx 0.1.29 12 May 2005
  5286. *) Feature: the ngx_http_ssi_module supports "include virtual" command.
  5287. *) Feature: the ngx_http_ssi_module supports the condition command like
  5288. 'if expr="$NAME"' and "else" and "endif" commands. Only one nested
  5289. level is supported.
  5290. *) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and DATE_GMT
  5291. variables and "config timefmt" command.
  5292. *) Feature: the "ssi_ignore_recycled_buffers" directive.
  5293. *) Bugfix: the "echo" command did not show the default value for the
  5294. empty QUERY_STRING variable.
  5295. *) Change: the ngx_http_proxy_module was rewritten.
  5296. *) Feature: the "proxy_redirect", "proxy_pass_request_headers",
  5297. "proxy_pass_request_body", and "proxy_method" directives.
  5298. *) Feature: the "proxy_set_header" directive. The "proxy_x_var" was
  5299. canceled and must be replaced with the proxy_set_header directive.
  5300. *) Change: the "proxy_preserve_host" is canceled and must be replaced
  5301. with the "proxy_set_header Host $host" and the "proxy_redirect off"
  5302. directives, the "proxy_set_header Host $host:$proxy_port" directive
  5303. and the appropriate proxy_redirect directives.
  5304. *) Change: the "proxy_set_x_real_ip" is canceled and must be replaced
  5305. with the "proxy_set_header X-Real-IP $remote_addr" directive.
  5306. *) Change: the "proxy_add_x_forwarded_for" is canceled and must be
  5307. replaced with
  5308. the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for"
  5309. directive.
  5310. *) Change: the "proxy_set_x_url" is canceled and must be replaced with
  5311. the "proxy_set_header X-URL http://$host:$server_port$request_uri"
  5312. directive.
  5313. *) Feature: the "fastcgi_param" directive.
  5314. *) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params"
  5315. directive are canceled and must be replaced with the fastcgi_param
  5316. directives.
  5317. *) Feature: the "index" directive can use the variables.
  5318. *) Feature: the "index" directive can be used at http and server levels.
  5319. *) Change: the last index only in the "index" directive can be absolute.
  5320. *) Feature: the "rewrite" directive can use the variables.
  5321. *) Feature: the "internal" directive.
  5322. *) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR,
  5323. SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME,
  5324. REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables.
  5325. *) Change: nginx now passes the invalid lines in a client request
  5326. headers or a backend response header.
  5327. *) Bugfix: if the backend did not transfer response for a long time and
  5328. the "send_timeout" was less than "proxy_read_timeout", then nginx
  5329. returned the 408 response.
  5330. *) Bugfix: the segmentation fault was occurred if the backend sent an
  5331. invalid line in response header; the bug had appeared in 0.1.26.
  5332. *) Bugfix: the segmentation fault may occurred in FastCGI fault
  5333. tolerance configuration.
  5334. *) Bugfix: the "expires" directive did not remove the previous "Expires"
  5335. and "Cache-Control" headers.
  5336. *) Bugfix: nginx did not take into account trailing dot in "Host" header
  5337. line.
  5338. *) Bugfix: the ngx_http_auth_module did not work under Linux.
  5339. *) Bugfix: the rewrite directive worked incorrectly, if the arguments
  5340. were in a request.
  5341. *) Bugfix: nginx could not be built on MacOS X.
  5342. Changes with nginx 0.1.28 08 Apr 2005
  5343. *) Bugfix: nginx hogs CPU while proxying the huge files.
  5344. *) Bugfix: nginx could not be built by gcc 4.0 on Linux.
  5345. Changes with nginx 0.1.27 28 Mar 2005
  5346. *) Feature: the "blocked" parameter of the "valid_referers" directive.
  5347. *) Change: the errors while handling the request header now logged at
  5348. "info" level. The server name and the "Host" and "Referer" header
  5349. lines also logged.
  5350. *) Change: the "Host" header line is also logged in error log.
  5351. *) Feature: the proxy_pass_unparsed_uri directive. The special handling
  5352. of the "://" symbols in URI, appeared in 0.1.11 version, now is
  5353. canceled.
  5354. *) Bugfix: nginx could not be built on FreeBSD and Linux, if the
  5355. --without-ngx_http_auth_basic_module configuration parameter was
  5356. used.
  5357. Changes with nginx 0.1.26 22 Mar 2005
  5358. *) Change: the invalid client header lines are now ignored and logged at
  5359. the info level.
  5360. *) Change: the server name is also logged in error log.
  5361. *) Feature: the ngx_http_auth_basic_module module and the auth_basic and
  5362. auth_basic_user_file directives.
  5363. Changes with nginx 0.1.25 19 Mar 2005
  5364. *) Bugfix: nginx did run on Linux parisc.
  5365. *) Feature: nginx now does not start under FreeBSD if the sysctl
  5366. kern.ipc.somaxconn value is too big.
  5367. *) Bugfix: if a request was internally redirected by the
  5368. ngx_http_index_module module to the ngx_http_proxy_module or
  5369. ngx_http_fastcgi_module modules, then the index file was not closed
  5370. after request completion.
  5371. *) Feature: the "proxy_pass" can be used in location with regular
  5372. expression.
  5373. *) Feature: the ngx_http_rewrite_filter_module module supports the
  5374. condition like "if ($HTTP_USER_AGENT ~ MSIE)".
  5375. *) Bugfix: nginx started too slow if the large number of addresses and
  5376. text values were used in the "geo" directive.
  5377. *) Change: a variable name must be declared as "$name" in the "geo"
  5378. directive. The previous variant without "$" is still supported, but
  5379. will be removed soon.
  5380. *) Feature: the "%{VARIABLE}v" logging parameter.
  5381. *) Feature: the "set $name value" directive.
  5382. *) Bugfix: gcc 4.0 compatibility.
  5383. *) Feature: the --with-openssl-opt=OPTIONS autoconfiguration directive.
  5384. Changes with nginx 0.1.24 04 Mar 2005
  5385. *) Feature: the ngx_http_ssi_filter_module supports the QUERY_STRING and
  5386. DOCUMENT_URI variables.
  5387. *) Bugfix: the ngx_http_autoindex_module may some times return the 404
  5388. response for existent directory, if this directory was used in
  5389. "alias" directive.
  5390. *) Bugfix: the ngx_http_ssi_filter_module ran incorrectly for large
  5391. responses.
  5392. *) Bugfix: the lack of the "Referer" header line was always accounted as
  5393. valid referrer.
  5394. Changes with nginx 0.1.23 01 Mar 2005
  5395. *) Feature: the ngx_http_ssi_filter_module and the ssi,
  5396. ssi_silent_errors, and ssi_min_file_chunk directives. The 'echo
  5397. var="HTTP_..." default=""' and 'echo var="REMOTE_ADDR"' commands are
  5398. supported.
  5399. *) Feature: the %request_time log parameter.
  5400. *) Feature: if the request has no the "Host" header line, then the
  5401. "proxy_preserve_host" directive set this header line to the first
  5402. server name of the "server_name" directive.
  5403. *) Bugfix: nginx could not be built on platforms different from i386,
  5404. amd64, sparc, and ppc; the bug had appeared in 0.1.22.
  5405. *) Bugfix: the ngx_http_autoindex_module now shows the information not
  5406. about the symlink, but about file or directory it points to.
  5407. *) Bugfix: the %apache_length parameter logged the negative length of
  5408. the response header if the no response was transferred to a client.
  5409. Changes with nginx 0.1.22 22 Feb 2005
  5410. *) Bugfix: the ngx_http_stub_status_module showed incorrect handled
  5411. connections statistics if the proxying or FastCGI server were used.
  5412. *) Bugfix: the installation paths were incorrectly quoted on Linux and
  5413. Solaris; the bug had appeared in 0.1.21.
  5414. Changes with nginx 0.1.21 22 Feb 2005
  5415. *) Bugfix: the ngx_http_stub_status_module showed incorrect statistics
  5416. if "rtsig" method was used or if several worker process ran on SMP.
  5417. *) Bugfix: nginx could not be built by the icc compiler on Linux or if
  5418. the zlib-1.2.x library was building from sources.
  5419. *) Bugfix: nginx could not be built on NetBSD 2.0.
  5420. Changes with nginx 0.1.20 17 Feb 2005
  5421. *) Feature: the new "script_filename" and "remote_port" parameters of
  5422. the fastcgi_params directive.
  5423. *) Bugfix: the FastCGI stderr stream was handled incorrectly.
  5424. Changes with nginx 0.1.19 16 Feb 2005
  5425. *) Bugfix: now, if request contains the zero, then the 404 error is
  5426. returned for the local requests.
  5427. *) Bugfix: nginx could not be built on NetBSD 2.0.
  5428. *) Bugfix: the timeout may occur while reading of the client request
  5429. body via SSL connections.
  5430. Changes with nginx 0.1.18 09 Feb 2005
  5431. *) Workaround: the default values of the devpoll_events and the
  5432. devpoll_changes directives changed from 512 to 32 to be compatible
  5433. with Solaris 10.
  5434. *) Bugfix: the proxy_set_x_var and fastcgi_set_var directives were not
  5435. inherited.
  5436. *) Bugfix: in a redirect rewrite directive arguments were concatenated
  5437. with URI by an "&" rather than a "?".
  5438. *) Bugfix: the lines without trailing ";" in the file being included by
  5439. the ngx_http_geo_module were silently ignored.
  5440. *) Feature: the ngx_http_stub_status_module.
  5441. *) Bugfix: the unknown log format in the access_log directive caused the
  5442. segmentation fault.
  5443. *) Feature: the new "document_root" parameter of the fastcgi_params
  5444. directive.
  5445. *) Feature: the fastcgi_redirect_errors directive.
  5446. *) Feature: the new "break" modifier of the "rewrite" directive allows
  5447. to stop the rewrite/location cycle and sets the current configuration
  5448. to the request.
  5449. Changes with nginx 0.1.17 03 Feb 2005
  5450. *) Change: the ngx_http_rewrite_module was rewritten from the scratch.
  5451. Now it is possible to redirect, to return the error codes, to check
  5452. the variables and referrers. The directives can be used inside
  5453. locations. The redirect directive was canceled.
  5454. *) Feature: the ngx_http_geo_module.
  5455. *) Feature: the proxy_set_x_var and fastcgi_set_var directives.
  5456. *) Bugfix: the location configuration with "=" modifier may be used in
  5457. another location.
  5458. *) Bugfix: the correct content type was set only for requests that use
  5459. small caps letters in extension.
  5460. *) Bugfix: if the proxy_pass or fastcgi_pass directives were set in the
  5461. location, and access was denied, and the error was redirected to a
  5462. static page, then the segmentation fault occurred.
  5463. *) Bugfix: if in a proxied "Location" header was a relative URL, then a
  5464. host name and a slash were added to them; the bug had appeared in
  5465. 0.1.14.
  5466. *) Bugfix: the system error message was not logged on Linux.
  5467. Changes with nginx 0.1.16 25 Jan 2005
  5468. *) Bugfix: if the response were transferred by chunks, then on the HEAD
  5469. request the final chunk was issued.
  5470. *) Bugfix: the "Connection: keep-alive" header were issued, even if the
  5471. keepalive_timeout directive forbade the keep-alive use.
  5472. *) Bugfix: the errors in the ngx_http_fastcgi_module caused the
  5473. segmentation faults.
  5474. *) Bugfix: the compressed response encrypted by SSL may not transferred
  5475. complete.
  5476. *) Bugfix: the TCP-specific TCP_NODELAY, TCP_NOPUSH, and TCP_CORK
  5477. options, are not used for the unix domain sockets.
  5478. *) Feature: the rewrite directive supports the arguments rewriting.
  5479. *) Bugfix: the response code 400 was returned for the POST request with
  5480. the "Content-Length: 0" header; the bug had appeared in 0.1.14.
  5481. Changes with nginx 0.1.15 19 Jan 2005
  5482. *) Bugfix: the error while the connecting to the FastCGI server caused
  5483. segmentation fault.
  5484. *) Bugfix: the correct handling of the regular expression, that has
  5485. different number of the captures and substitutions.
  5486. *) Feature: the location, that is passed to the FastCGI server, can be
  5487. regular expression.
  5488. *) Bugfix: the FastCGI's parameter REQUEST_URI is now passed with the
  5489. arguments and in the original state.
  5490. *) Bugfix: the ngx_http_rewrite_module module was required to be built
  5491. to use the regular expressions in locations.
  5492. *) Bugfix: the directive "proxy_preserve_host on" adds port 80 to the
  5493. "Host" headers, if upstream listen on port 80; the bug had appeared
  5494. in 0.1.14.
  5495. *) Bugfix: the same paths in autoconfiguration parameters
  5496. --http-client-body-temp-path=PATH and --http-proxy-temp-path=PATH, or
  5497. --http-client-body-temp-path=PATH and --http-fastcgi-temp-path=PATH
  5498. caused segmentation fault.
  5499. Changes with nginx 0.1.14 18 Jan 2005
  5500. *) Feature: the autoconfiguration directives:
  5501. --http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
  5502. --http-fastcgi-temp-path=PATH
  5503. *) Change: the directory name for the temporary files with the client
  5504. request body is specified by directive client_body_temp_path, by
  5505. default it is <prefix>/client_body_temp.
  5506. *) Feature: the ngx_http_fastcgi_module and the directives:
  5507. fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
  5508. fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
  5509. fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
  5510. fastcgi_busy_buffers_size, fastcgi_temp_path,
  5511. fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
  5512. fastcgi_next_upstream, and fastcgi_x_powered_by.
  5513. *) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
  5514. 0.1.3.
  5515. *) Change: the URI must be specified after the host name in the
  5516. proxy_pass directive.
  5517. *) Change: the %3F symbol in the URI was considered as the argument
  5518. string start.
  5519. *) Feature: the unix domain sockets support in the
  5520. ngx_http_proxy_module.
  5521. *) Feature: the ssl_engine and ssl_ciphers directives.
  5522. Thanks to Sergey Skvortsov for SSL-accelerator.
  5523. Changes with nginx 0.1.13 21 Dec 2004
  5524. *) Feature: the server_names_hash and server_names_hash_threshold
  5525. directives.
  5526. *) Bugfix: the *.domain.tld names in the "server_name" directive did not
  5527. work.
  5528. *) Bugfix: the %request_length log parameter logged the incorrect
  5529. length.
  5530. Changes with nginx 0.1.12 06 Dec 2004
  5531. *) Feature: the %request_length log parameter.
  5532. *) Bugfix: when using the /dev/poll, select and poll on the platforms,
  5533. where these methods may do the false reports, there may be the long
  5534. delay when the request was passed via the keep-alive connection. It
  5535. may be at least on Solaris when using the /dev/poll.
  5536. *) Bugfix: the send_lowat directive is ignored on Linux because Linux
  5537. does not support the SO_SNDLOWAT option.
  5538. Changes with nginx 0.1.11 02 Dec 2004
  5539. *) Feature: the worker_priority directive.
  5540. *) Change: both tcp_nopush and tcp_nodelay directives affect the
  5541. transferred response.
  5542. *) Bugfix: nginx did not call initgroups().
  5543. Thanks to Andrew Sitnikov and Andrei Nigmatulin.
  5544. *) Change: now the ngx_http_autoindex_module shows the file size in the
  5545. bytes.
  5546. *) Bugfix: the ngx_http_autoindex_module returned the 500 error if the
  5547. broken symlink was in a directory.
  5548. *) Bugfix: the files bigger than 4G could not be transferred using
  5549. sendfile.
  5550. *) Bugfix: if the backend was resolved to several backends and there was
  5551. an error while the response waiting then process may got caught in an
  5552. endless loop.
  5553. *) Bugfix: the worker process may exit with the "unknown cycle" message
  5554. when the /dev/poll method was used.
  5555. *) Bugfix: "close() channel failed" errors.
  5556. *) Bugfix: the autodetection of the "nobody" and "nogroup" groups.
  5557. *) Bugfix: the send_lowat directive did not work on Linux.
  5558. *) Bugfix: the segmentation fault occurred if there was no events
  5559. section in configuration.
  5560. *) Bugfix: nginx could not be built on OpenBSD.
  5561. *) Bugfix: the double slashes in "://" in the URI were converted to
  5562. ":/".
  5563. Changes with nginx 0.1.10 26 Nov 2004
  5564. *) Bugfix: if the request without arguments contains "//", "/./", "/../"
  5565. or "%XX" then the last character in the request line was lost; the
  5566. bug had appeared in 0.1.9.
  5567. *) Bugfix: the fix in 0.1.9 for the files bigger than 2G on Linux did
  5568. not work.
  5569. Changes with nginx 0.1.9 25 Nov 2004
  5570. *) Bugfix: the proxied request was sent without arguments if the request
  5571. contains "//", "/./", "/../" or "%XX".
  5572. *) Bugfix: the large compressed responses may be transferred not
  5573. completely.
  5574. *) Bugfix: the files bigger than 2G was not transferred on Linux that
  5575. does not support sendfile64().
  5576. *) Bugfix: while the build configuration on Linux the --with-poll_module
  5577. parameter was required; the bug had appeared in 0.1.8.
  5578. Changes with nginx 0.1.8 20 Nov 2004
  5579. *) Bugfix: in the ngx_http_autoindex_module if the long file names were
  5580. in the listing.
  5581. *) Feature: the "^~" modifier in the location directive.
  5582. *) Feature: the proxy_max_temp_file_size directive.
  5583. Changes with nginx 0.1.7 12 Nov 2004
  5584. *) Bugfix: on FreeBSD the segmentation fault may occur if the size of
  5585. the transferred file was changed; the bug had appeared in 0.1.5.
  5586. Changes with nginx 0.1.6 11 Nov 2004
  5587. *) Bugfix: some location directive combinations with the regular
  5588. expressions caused the wrong configuration choose.
  5589. Changes with nginx 0.1.5 11 Nov 2004
  5590. *) Bugfix: on Solaris and Linux there may be too many "recvmsg()
  5591. returned not enough data" alerts.
  5592. *) Bugfix: there were the "writev() failed (22: Invalid argument)"
  5593. errors on Solaris in proxy mode without sendfile. On other platforms
  5594. that do not support sendfile at all the process got caught in an
  5595. endless loop.
  5596. *) Bugfix: segmentation fault on Solaris in proxy mode and using
  5597. sendfile.
  5598. *) Bugfix: segmentation fault on Solaris.
  5599. *) Bugfix: on-line upgrade did not work on Linux.
  5600. *) Bugfix: the ngx_http_autoindex_module module did not escape the
  5601. spaces, the quotes, and the percent signs in the directory listing.
  5602. *) Change: the decrease of the copy operations.
  5603. *) Feature: the userid_p3p directive.
  5604. Changes with nginx 0.1.4 26 Oct 2004
  5605. *) Bugfix: in the ngx_http_autoindex_module.
  5606. Changes with nginx 0.1.3 25 Oct 2004
  5607. *) Feature: the ngx_http_autoindex_module and the autoindex directive.
  5608. *) Feature: the proxy_set_x_url directive.
  5609. *) Bugfix: proxy module may get caught in an endless loop when sendfile
  5610. is not used.
  5611. Changes with nginx 0.1.2 21 Oct 2004
  5612. *) Feature: the --user=USER, --group=GROUP, and --with-ld-opt=OPTIONS
  5613. options in configure.
  5614. *) Feature: the server_name directive supports *.domain.tld.
  5615. *) Bugfix: the portability improvements.
  5616. *) Bugfix: if configuration file was set in command line, the
  5617. reconfiguration was impossible; the bug had appeared in 0.1.1.
  5618. *) Bugfix: proxy module may get caught in an endless loop when sendfile
  5619. is not used.
  5620. *) Bugfix: with sendfile the response was not recoded according to the
  5621. charset module directives; the bug had appeared in 0.1.1.
  5622. *) Bugfix: very seldom bug in the kqueue processing.
  5623. *) Bugfix: the gzip module compressed the proxied responses that was
  5624. already compressed.
  5625. Changes with nginx 0.1.1 11 Oct 2004
  5626. *) Feature: the gzip_types directive.
  5627. *) Feature: the tcp_nodelay directive.
  5628. *) Feature: the send_lowat directive is working not only on OSes that
  5629. support kqueue NOTE_LOWAT, but also on OSes that support SO_SNDLOWAT.
  5630. *) Feature: the setproctitle() emulation for Linux and Solaris.
  5631. *) Bugfix: the "Location" header rewrite bug fixed while the proxying.
  5632. *) Bugfix: the ngx_http_chunked_module module may get caught in an
  5633. endless loop.
  5634. *) Bugfix: the /dev/poll module bugs fixed.
  5635. *) Bugfix: the responses were corrupted when the temporary files were
  5636. used while the proxying.
  5637. *) Bugfix: the unescaped requests were passed to the backend.
  5638. *) Bugfix: while the build configuration on Linux 2.4 the
  5639. --with-poll_module parameter was required.
  5640. Changes with nginx 0.1.0 04 Oct 2004
  5641. *) The first public version.