You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 203KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720
  1. # Changelog
  2. This changelog goes through all the changes that have been made in each release
  3. without substantial changes to our git log; to see the highlights of what has
  4. been added to each release, please refer to the [blog](https://blog.gitea.io).
  5. ## [1.12.2](https://github.com/go-gitea/gitea/releases/tag/v1.12.2) - 2020-07-11
  6. * BUGFIXES
  7. * When deleting repository decrese user repository count in cache (#11954) (#12188)
  8. * Return full commit message instead of summary in commits API (#12186) (#12187)
  9. * Properly set HEAD when a repo is created with a default branch that is not named 'master' (#12135) (#12182)
  10. * Ensure GPG Subkeys are verified (#12155) (#12168)
  11. * Fix failing to cache last commit with key being to long (#12151) (#12161)
  12. * Multiple small admin dashboard fixes (#12153) (#12156)
  13. * Remove spurious logging of " Delete all repository archives" at startup (#12139) (#12148)
  14. * Fix repository setup instructions when default branch is not named 'master' (#12122) (#12147)
  15. * Move EventSource to SharedWorker (#12095) (#12130)
  16. * Fix ui bug in wiki commit page (#12089) (#12125)
  17. * Fix gitgraph branch continues after merge (#12044) (#12105)
  18. * Set the base url when migrating from Gitlab using access token or username without password (#11852) (#12104)
  19. * Ensure BlameReaders close at end of request (#12102) (#12103)
  20. * Fix panic when adding review comment (#12058)
  21. * ENHANCEMENTS
  22. * Disable dropzone's timeout for file uploads (#12024) (#12032)
  23. ## [1.12.1](https://github.com/go-gitea/gitea/releases/tag/v1.12.1) - 2020-06-21
  24. * BUGFIXES
  25. * Handle multiple merges in gitgraph.js (#11996) (#12000)
  26. * Add serviceworker.js to KnownPublicEntries (#11992) (#11994)
  27. * For language detection do not try to analyze big files by content (#11971) (#11975)
  28. * ENHANCEMENTS
  29. * Fix scrollable header on dropdowns (#11893) (#11965)
  30. ## [1.11.8](https://github.com/go-gitea/gitea/releases/tag/v1.11.8) - 2020-06-21
  31. * BUGFIXES
  32. * Really fix __webpack_public_path__ for 1.11 (#11961)
  33. ## [1.12.0](https://github.com/go-gitea/gitea/releases/tag/v1.12.0) - 2020-06-17
  34. * BREAKING
  35. * When using API CreateRelease set created_unix to the tag commit time (#11218)
  36. * Enable ENABLE_HARD_LINE_BREAK by default for rendering markdown (#11162)
  37. * Fix sanitizer config - multiple rules (#11133)
  38. * Remove check on username when using AccessToken authentication for the API (#11015)
  39. * Return 404 from Contents API when items don't exist (#10323)
  40. * Notification API should always return a JSON object with the current count of notifications (#10059)
  41. * Remove migration support from versions earlier than 1.6.0 (#10026)
  42. * SECURITY
  43. * Use -1 to disable key algorithm type in ssh.minimum_key_sizes (#11635) (#11662)
  44. * FEATURES
  45. * Improve config logging when WrappedQueue times out (#11174)
  46. * Add branch delete to API (#11112)
  47. * Use markdown frontmatter to provide Table of contents, language and frontmatter rendering (#11047)
  48. * Add a way to mark Conversation (code comment) resolved (#11037)
  49. * Handle yaml frontmatter in markdown (#11016)
  50. * Cache PullRequest Divergence (#10914)
  51. * Make `gitea admin auth list` formatting configurable (#10844)
  52. * Add Matrix webhook (#10831)
  53. * Add Organization Wide Labels (#10814)
  54. * Allow to set protected file patterns for files that can not be changed under no conditions (#10806)
  55. * Option to set default branch at repository creation (#10803)
  56. * Add request review from specific reviewers feature in pull request (#10756)
  57. * Add NextCloud oauth (#10562)
  58. * System-wide webhooks (#10546)
  59. * Relax sanitization as per https://github.com/jch/html-pipeline (#10527)
  60. * Use media links for img in post-process (#10515)
  61. * Add API endpoints to manage OAuth2 Application (list/create/delete) (#10437)
  62. * Render READMEs in docs/ .gitea or .github from root (#10361)
  63. * Add feishu webhook support (#10229)
  64. * Cache last commit to accelerate the repository directory page visit (#10069)
  65. * Implement basic app.ini and path checks to doctor cmd (#10064)
  66. * Make WorkerPools and Queues flushable (#10001)
  67. * Implement "embedded" command to extract static resources (#9982)
  68. * Add API endpoint for repo transfer (#9947)
  69. * Make archive prefixing configurable with a global setting (#9943)
  70. * Add Unique Queue infrastructure and move TestPullRequests to this (#9856)
  71. * Issue/PR Context Popups (#9822)
  72. * Add "Update Branch" button to Pull Requests (#9784)
  73. * Add require signed commit for protected branch (#9708)
  74. * Mark PR reviews as stale at push and allow to dismiss stale approvals (#9532)
  75. * Add API notification endpoints (#9488)
  76. * Issue search support elasticsearch (#9428)
  77. * Add API branch protection endpoint (#9311)
  78. * Add a new command doctor to check if some wrong configurations on gitea instance (#9095)
  79. * Add support for migrating from Gitlab (#9084)
  80. * Add support for database schema in PostgreSQL (#8819)
  81. * Add setting to set default and global disabled repository units. (#8788)
  82. * Language statistics bar for repositories (#8037)
  83. * Restricted users (#6274)
  84. * BUGFIXES
  85. * Fix commenting on non-utf8 encoded files (#11916) (#11950)
  86. * Use google/uuid to instead satori/go.uuid (#11943) (#11946)
  87. * Align show/hide outdated button on code review block (#11932) (#11944)
  88. * Update to go-git v5.1.0 (#11936) (#11941)
  89. * Use ID or Where to instead directly use Get when load object from database (#11925) (#11934)
  90. * Update CommitsAhead CommitsBehind on Pull BaseBranch Change too (#11912) (#11915)
  91. * Invalidate comments when file is shortened (#11882) (#11884)
  92. * Rework api/user/repos for pagination (#11827) (#11877)
  93. * Handle more pathological branch and tag names (#11843) (#11863)
  94. * Add doctor check to set IsArchived false if it is null (partial #11853) (#11859)
  95. * Prevent panic on empty HOST for mysql (#11850) (#11856)
  96. * Use DEFAULT_PAGING_NUM instead of MAX_RESPONSE_ITEMS in ListOptions (#11831) (#11836)
  97. * Fix reply octicon (#11821) (#11822)
  98. * Honor DEFAULT_PAGING_NUM for API (#11805) (#11813)
  99. * Ensure rejected push to refs/pull/index/head fails nicely (#11724) (#11809)
  100. * In File Create/Update API return 404 if Branch does not exist (#11791) (#11795)
  101. * Fix doer of rename repo (#11789) (#11794)
  102. * Initialize SimpleMDE when making a code comment (#11749) (#11785)
  103. * Fix timezone on issue deadline (#11697) (#11784)
  104. * Fix to allow comment poster to edit or delete his own comments (#11671) (#11774)
  105. * Show full 500 error in API when Gitea in dev mode (#11641) (#11753)
  106. * Add missing templates for Matrix system webhooks (#11729) (#11748)
  107. * Fix verification of subkeys of default gpg key (#11713) (#11747)
  108. * Fix styling for commiter on diff view (#11715) (#11744)
  109. * Properly truncate system notices (#11714) (#11742)
  110. * Handle expected errors in FileCreate & FileUpdate API (#11643) (#11718)
  111. * Fix missing authorization check on pull for public repos of private/limited org (#11656) (#11682)
  112. * Doctor check & fix db consistency (#11111) (#11676)
  113. * Exclude generated files from language statistics (#11653) (#11670)
  114. * Return json on 500 error from API (#11574) (#11659)
  115. * When must change password only show Signout (#11600) (#11637)
  116. * Backport various styling fixes (#11619)
  117. * Fix wrong milestone in webhook message (#11596) (#11611)
  118. * Fix serviceworker output file and misc improvements (#11562) (#11610)
  119. * When initialising repositories ensure that the user doing the creation is the initializer (#11601) (#11608)
  120. * Prevent empty query parameter being set on dashboard (#11561) (#11604)
  121. * Fix images in wiki edit preview (#11546) (#11602)
  122. * Prevent (caught) panic on login (#11590) (#11597)
  123. * Prevent transferring repos to invisible orgs (#11517) (#11549)
  124. * Move serviceworker to workbox and fix SSE interference (#11538) (#11547)
  125. * API PullReviewComment HTMLPullURL should return the HTMLURL (#11501) (#11533)
  126. * Fix repo-list private and total count bugs (#11500) (#11532)
  127. * Fix form action template substitutions on admin pages (backport #11519) (#11531)
  128. * Fix a bug where the reaction emoji doesn't disappear. (#11489) (#11530)
  129. * TrimSpace when reading InternalToken from a file (#11502) (#11524)
  130. * Fix selected line color in arc-green (#11492) (#11520)
  131. * Make localstorage read ssh or https correctly (#11483) (#11490)
  132. * Check branch protection on IsUserAllowedToUpdate (#11448)
  133. * Fix margin on attached segment headers when they are separated by other element (#11425)
  134. * Fix webhook template when validation errors occur (#11421)
  135. * Fix NPE in template due to missing signing key on commit page (#11392)
  136. * Restore active background to Register button on Register page (#11390)
  137. * Fix hook failure due to relative LFS_CONTENT_PATH (#11362)
  138. * Correctly set the organization num repos (#11339)
  139. * Prevent 500 with badly formed task list (#11328)
  140. * Allow compare page to look up base, head, own-fork, forkbase-of-head (#11327)
  141. * Handle panics that percolate up to the graceful module (#11291)
  142. * Don't allow registration via the web form, when AllowOnlyExternalRegistration is True (#11248)
  143. * Patch fomantic-ui to workaround build issue (#11244)
  144. * Prevent panic during wrappedConn close at hammertime (#11219)
  145. * On logout force redirect to start page (#11202)
  146. * Fix creation of Organization repos by Users with max created personal repos (#11183)
  147. * Add option to increase provided OAuth2 token maximum size (#11180)
  148. * Log the indexer path on failure (#11172)
  149. * Ensure that relative paths in edit preview work (#11143)
  150. * Make API EditIssue and EditPullRequest issue notifications (#11123)
  151. * Send 404 immediately for known public requests (#11117)
  152. * Remove nil inserts in models (#11096)
  153. * Add GetReviews() to RetryDownloader (#11093)
  154. * Remove nonexistent serviceworker entries (#11091)
  155. * Simplify and fix GetApprovalCounts (#11086)
  156. * Fix wiki revision template and simplify some tmpl conditions (#11080)
  157. * Make branch parameter optional for /api/v1/repos/{owner}/{repo}/contents/{filepath} (#11067)
  158. * Align review-item svg octicons (#11065)
  159. * Automatically remove Watches, Assignments, etc if user loses access due to being removed as collaborator or from a team (#10997)
  160. * Users should not be able to prohibit their own login (#10970)
  161. * Fix scrollbar issues in dropdowns (#10897)
  162. * Change the order of issues.closed_by to list opening user first (#10876)
  163. * Allow site admin to check /api/v1/orgs endpoints (#10867)
  164. * Avoid logging []byte in queue failures - convert to string first (#10865)
  165. * Use ErrKeyUnableToVerify if fail to calc fingerprint in ssh-keygen (#10863)
  166. * Fix assignees double load bug (#10856)
  167. * Handle push rejection in branch and upload (#10854)
  168. * In authorized_keys use double-quote for windows compatibility (#10841)
  169. * Fix milestone template (#10824)
  170. * log.Fatal on failure to listen to SSH port (#10795)
  171. * Fix forked repo has no icon and language stat. (#10791)
  172. * Fix tag/release deletion (#10663)
  173. * Fix webhook migration (#10641)
  174. * Migration for deleting orphaned dependencies (#10617)
  175. * Add migration to fix the old broken merge-bases (#10604)
  176. * Update templates for Go 1.14 (#10596)
  177. * Remove unnecessary parentheses in wiki/view template (#10583)
  178. * Change default value of DefaultCommandExecutionTimeout to match docs (#10581)
  179. * Handle panic in indexer initialisation better (#10534)
  180. * Set correct content_type value for Gogs/Gitea webhooks (#9504) (#10456)
  181. * Fixed wrong AppSubUrl in multiple templates (#10447)
  182. * Fix profile page CSS (#10406)
  183. * Inject SVG sprite via ajax (#10320)
  184. * Fix migration information update bug when linked github account (#10310)
  185. * Allow admin to check org membership by API for other users (#10201)
  186. * Fix topics dropdown (#10167)
  187. * Ensure DeleteUser is not allowed to Delete Orgs and visa versa (#10134)
  188. * Fix IsErrPullClosed (#10093)
  189. * Accept punctuation after simple+cross repository issue references (#10091)
  190. * On merge of already closed PR redirect back to the pulls page (#10010)
  191. * Fix crowdin update script (#9969)
  192. * Fix pull view when head repository or head branch missed and close related pull requests when delete head repository or head branch (#9927)
  193. * Add option to prevent LDAP from deactivating everything on empty search (#9879)
  194. * Fix admin handling at merge of PR (#9749)
  195. * err_admin_name_pattern_not_allowed String Clarification (#9731)
  196. * Fix wrong original git service type on a migrated repository (#9693)
  197. * Fix ref links in issue overviews for tags (#8742)
  198. * ENHANCEMENTS
  199. * Fix search form button overlap (#11840) (#11864)
  200. * Make tabular menu styling consistent for arc-green (#11570) (#11798)
  201. * Add option to API to update PullRequest base branch (#11666) (#11796)
  202. * Increase maximum SQLite variables count to 32766 (#11696) (#11783)
  203. * Update emoji dataset with skin tone variants (#11678) (#11763)
  204. * Add logging to long migrations (#11647) (#11691)
  205. * Change language statistics to save size instead of percentage (#11681) (#11690)
  206. * Allow different HardBreaks settings for documents and comments (#11515) (#11599)
  207. * Fix alignment for commits on dashboard (#11595) (#11680)
  208. * Default MSSQL port 0 to allow automatic detection by default (#11642) (#11673)
  209. * Handle expected errors in AddGPGkey API (#11644) (#11661)
  210. * Close EventSource before unloading the page (#11539) (#11557)
  211. * Ensure emoji render with regular font-weight (#11541) (#11545)
  212. * Fix webpack chunk loading with STATIC_URL_PREFIX (#11526) (#11542)
  213. * Tweak reaction buttons (#11516)
  214. * Use more toned colors for selected line (#11493) (#11511)
  215. * Increase width for authors on commit view (#11441)
  216. * Hide archived repos by default in repo-list (#11440)
  217. * Better styling for code review comment textarea (#11428)
  218. * Support view individual commit for wiki pages (#11415)
  219. * Fix yellow background on active elements in code review (#11414)
  220. * Better styling for code review comment form (#11413)
  221. * Change install description on homepage (#11395)
  222. * Ensure search action button is coalesced to adjacent input (#11385)
  223. * Switch code editor to Monaco (#11366)
  224. * Add paging and archive/private repository filtering to dashboard list (#11321)
  225. * Changed image of openid-connect logo for better look on arc-green theme (#11312)
  226. * Load Repo Topics on blame view too (#11307)
  227. * Change the style in admin notice content view from `<p>` to `<pre>` (#11301)
  228. * Allow log.xxx.default to set logging settings for the default logger only (#11292)
  229. * Automatically attempt auto recovery of broken disk queues (Update lunny/levelqueue to 0.3.0) (#11285)
  230. * Make sendmail a Process and have default timeout (#11256)
  231. * Check value of skip-repository flag in dump command (#11254)
  232. * Fix submit review form (#11252)
  233. * Allow unauthenticated users to compare (#11240)
  234. * Add EventSource support (#11235)
  235. * Refactor Milestone related (#11225)
  236. * Add pull review API endpoints (#11224)
  237. * Add a 'this' to issue close/reopened messages (#11204)
  238. * When migrating from Gitlab map Approvals to approving Reviews (#11147)
  239. * Improve representation of attachments in issues (#11141)
  240. * Protect default branch against deletion (#11115)
  241. * Add X-Total-Count on /repos/{owner]/{repo}/pulls API endpoint (#11113)
  242. * Fix status label on branches list vertical alignment (#11109)
  243. * Add single release page and latest redirect (#11102)
  244. * Add missing commit states to PR checks template (#11085)
  245. * Change icon on title for merged PR to git-merge (#11064)
  246. * Add MergePull comment type instead of close for merge PR (#11058)
  247. * Upgrade jQuery to 3.5.0, remove jQuery-Migrate, fix deprecations (#11055)
  248. * Consolidate author name across timeline (#11053)
  249. * Refactor UpdateOAuth2Application (#11034)
  250. * Support unicode emojis and remove emojify.js (#11032)
  251. * Add git hook "warning" to admin panel (#11030)
  252. * Add flash notify for email preference setting success (#11027)
  253. * Remove package code.gitea.io/gitea/modules/git import out of models (#11025)
  254. * Match arc-green code tag color to code blocks (#11023)
  255. * Move syntax highlighting to web worker (#11017)
  256. * Prevent merge of outdated PRs on protected branches (#11012)
  257. * Add Get/Update for api/v1/user/applications/oauth2 (#11008)
  258. * Upgrade to most recent bluemonday (#11007)
  259. * Tweak code tags in markdown (#11000)
  260. * Reject duplicate AccessToken names (#10994)
  261. * Fix Ctrl-Enter shortcut for issues (#10986)
  262. * Provide `OwnerName` field for README template (#10981)
  263. * Prettify Timeline (#10972)
  264. * Add issue subscription check to API (#10967)
  265. * Use AJAX for notifications table (#10961)
  266. * Adjust label padding (#10957)
  267. * Avoiding directory execution on hook (#10954) (#10955)
  268. * Migrate ActivityHeatmap to Vue SFC (#10953)
  269. * Change merge strategy: do not check write access if user in merge white list (#10951)
  270. * Enable GO111MODULE=on globally in Makefile (#10939)
  271. * API endpoint to get single commit via SHA and Ref (#10915)
  272. * Add accordion to release list and hide non-latest (#10910)
  273. * Split dashboard elements into separate template files (#10885)
  274. * Add more message on sidebar menus (#10872)
  275. * Set MySQL rowtype to dynamic for new tables (#10833)
  276. * Completely fix task-list checkbox styling (#10798)
  277. * Hide gear icon for user who can't use them on sidebar (#10750)
  278. * Refactor Cron and merge dashboard tasks (#10745)
  279. * Change review status icons on pr view style to github style (#10737)
  280. * Make pagination optional for API list notification endpoints (#10714)
  281. * Fix tab indentation in code view (#10671)
  282. * Fix task-list checkbox styling (#10668)
  283. * Multiple LFS improvements (#10667)
  284. * Make PR message on pushes configurable (#10664)
  285. * Move dropzone.js to npm/webpack (#10645)
  286. * Ensure Update button is enabled even when CI has failed (#10640)
  287. * Add restricted user filter to LDAP authentication (#10600)
  288. * Add Yandex OAuth2 provider (#8335) (#10564)
  289. * Make avatar lookup occur at image request (#10540)
  290. * Prevent accidential selection of language stats bar (#10537)
  291. * Add fluid-icon (#10491)
  292. * Inform participants on UI too (#10473)
  293. * Build with go 1.14 (and raise minimum go version to 1.12) (#10467)
  294. * Add max-file-size to LFS (#10463)
  295. * Enable paggination for ListRepoTags API (#10454)
  296. * Update JS dependencies (#10450)
  297. * Show the username as a fallback on feeds if full name is blank (#10438)
  298. * Various dark theme fixes (#10416)
  299. * Display pull request head branch even the branch deleted or repository deleted (#10413)
  300. * Prevent Firefox from using apple-touch-icon (#10402)
  301. * Fix input[type=file] on dark theme (#10382)
  302. * Improve mobile review-box sizing (#10297)
  303. * Notification: queue ui.go notification-service (#10281)
  304. * Add detected file language to code search (#10256)
  305. * Index code and stats only for non-empty repositories (#10251)
  306. * Add Approval Counts to pulls list (#10238)
  307. * Limit label list height on edit issue page (#10216)
  308. * Improve 404 error message (#10214)
  309. * Tweak locale to respect singular conflicting file message in PR list (#10177)
  310. * Fix commit view (#10169)
  311. * Reorganize frontend files and tooling (#10168)
  312. * Allow emoji on popup label (#10166)
  313. * ListIssues add filter for milestones API (#10148)
  314. * Show if a PR has conflicting files on the PR lists (#10130)
  315. * Fix inconsistent label color format in API (#10129)
  316. * Show download count info in release list (#10124)
  317. * Add Octicon SVG spritemap (#10107)
  318. * Update aria-fixed semantic-dropdown to fomantic master (#10096)
  319. * Fix apple-touch-icon, regenerate images (#10065)(#10006)
  320. * Style blockquote for default issue mail template (#10024)
  321. * More expansions in template repositories (#10021)
  322. * Allow list collaborators for users with Read access to repo (#9995)
  323. * Add explicit dimensions to navbar avatar (#9986)
  324. * Remove loadCSS and preload woff2 icon fonts (#9976)
  325. * Fix commit view JS features, reimplement folding (#9968)
  326. * Fix review avatar image (#9962)
  327. * Improve notification pager (#9821)
  328. * Move jquery and jquery-migrate to npm/webpack (#9813)
  329. * Change font to Roboto to support more charsets (#9803)
  330. * Move mailer to use a queue (#9789)
  331. * Issue search on my related repositories (#9758)
  332. * Add "before" query to ListIssueComments and ListRepoIssueComments API (#9685)
  333. * Move tracked time api convert to convert package (#9665)
  334. * Improve PR info in default merge message (#9635)
  335. * Granular webhook events (#9626)
  336. * Add Reviewed-on in commit message (#9623)
  337. * Add top author stats to activity page (#9615)
  338. * Allow repo admin to merge PR regardless of review status (#9611)
  339. * Migrate reactions when migrating repository from github (#9599)
  340. * API orgEditTeam make Fields optional (#9556)
  341. * Move create/fork repository from models to modules/repository (#9489)
  342. * Migrate reviews when migrating repository from github (#9463)
  343. * Times API add filters (#9373)
  344. * Move push commits from models to modules/repository (#9370)
  345. * Add API endpoint to check notifications [Extend #9488] (#9595)
  346. * Add GET /orgs API endpoint (#9560)
  347. * API add/generalize pagination (#9452)
  348. * Make create org repo API call same as github (#9186)
  349. * BUILD
  350. * Turn off go modules for xgo and gxz (#10963)
  351. * Add gitea-vet (#10948)
  352. * Rename scripts to build and add revive command as a new build tool command (#10942)
  353. * Add 'make lint', restructure 'compliance' pipeline (#10861)
  354. * Move JS build dependencies to 'dependencies' (#10763)
  355. * Use whitelist to find go files, run find only once (#10594)
  356. * Move vue and vue-calendar-heatmap to npm/webpack (#10188)
  357. * Move jquery.are-you-sure to npm/webpack (#10063)
  358. * Move highlight.js to npm/webpack (#10011)
  359. * Generate Bindata if TAGS="bindata" and not up-to-date (#10004)
  360. * Move CSS build to webpack (#9983)
  361. * Move fomantic target, update 'make help' (#9945)
  362. * Add css extraction and minification to webpack (#9944)
  363. * Misc webpack tweaks (#9924)
  364. * Make node_modules a order-only prerequisite (#9923)
  365. * Update documentation for the go module era (#9751)
  366. * Move swagger-ui to webpack/npm and update it to 3.24.3 (#9714)
  367. * Use npm to manage fomantic and only build needed components (#9561)
  368. * MISC
  369. * Add gnupg to Dockerfile (#11365)
  370. * Update snapcraft.yaml for core18 and latest features (#11300)
  371. * Update JS dependencies, min Node.js version 10.13 (#11246)
  372. * Change default charset for MySQL on install to utf8mb4 (#10989)
  373. * Return issue subscription status from API subscribe (#10966)
  374. * Fix queue log param (#10733)
  375. * Add warning when using relative path to app.ini (#10104)
  376. ## [1.11.7](https://github.com/go-gitea/gitea/releases/tag/v1.11.7) - 2020-06-18
  377. * BUGFIXES
  378. * Use ID or Where to instead directly use Get when load object from database (#11925) (#11935)
  379. * Fix __webpack_public_path__ for 1.11 (#11907)
  380. * Fix verification of subkeys of default gpg key (#11713) (#11902)
  381. * Remove unnecessary parentheses in wiki/view template (#11781)
  382. * Doctor fix xorm.Count nil on sqlite error (#11741)
  383. ## [1.11.6](https://github.com/go-gitea/gitea/releases/tag/v1.11.6) - 2020-05-30
  384. * SECURITY
  385. * Fix missing authorization check on pull for public repos of private/limited org (#11656) (#11683)
  386. * Use session for retrieving org teams (#11438) (#11439)
  387. * BUGFIXES
  388. * Return json on 500 error from API (#11574) (#11660)
  389. * Fix wrong milestone in webhook message (#11596) (#11612)
  390. * Prevent (caught) panic on login (#11590) (#11598)
  391. * Fix commit page js error (#11527)
  392. * Use media links for img in post-process (#10515) (#11504)
  393. * Ensure public repositories in private organizations are visible and fix admin organizations list (#11465) (#11475)
  394. * Set correct Content-Type value for Gogs/Gitea webhooks (#9504) (#10456) (#11461)
  395. * Allow all members of private orgs to see public repos (#11442) (#11459)
  396. * Whenever the ctx.Session is updated, release it to save it before sending the redirect (#11456) (#11457)
  397. * Forcibly clean and destroy the session on logout (#11447) (#11451)
  398. * Fix /api/v1/orgs/* endpoints by changing parameter to :org from :orgname (#11381)
  399. * Add tracked time fix to doctor (part of #11111) (#11138)
  400. * Fix webpack chunk loading with STATIC_URL_PREFIX (#11526) (#11544)
  401. * Remove unnecessary parentheses in wiki/revision.tmpl to allow 1.11 to build on go1.14 (#11481)
  402. ## [1.11.5](https://github.com/go-gitea/gitea/releases/tag/v1.11.5) - 2020-05-09
  403. * BUGFIXES
  404. * Prevent timer leaks in Workerpool and others (#11333) (#11340)
  405. * Fix tracked time issues (#11349) (#11354)
  406. * Add NotifySyncPushCommits to indexer notifier (#11309) (#11338)
  407. * Allow X in addition to x in tasks (#10979) (#11335)
  408. * When delete tracked time through the API return 404 not 500 (#11319) (#11326)
  409. * Prevent duplicate records in organizations list when creating a repository (#11303) (#11325)
  410. * Manage port in submodule refurl (#11305) (#11323)
  411. * api.Context.NotFound(...) should tolerate nil (#11288) (#11306)
  412. * Show pull request selection even when unrelated branches (#11239) (#11283)
  413. * Repo: milestone: make /milestone/:id endpoint accessible (#11264) (#11282)
  414. * Fix GetContents(): Dont't ignore Executables (#11192) (#11209)
  415. * Fix submodule paths when AppSubUrl is not root (#11098) (#11176)
  416. * Prevent clones and pushes to disabled wiki (#11131) (#11134)
  417. * Remove errant third closing curly-bracket from account.tmpl and send account ID in account.tmpl (#11130)
  418. * On Repo Deletion: Delete related TrackedTimes too (#11110) (#11125)
  419. * Refresh codemirror on show pull comment tab (#11100) (#11122)
  420. * Fix merge dialog on protected branch with missing required statuses (#11074) (#11084)
  421. * Load pr Issue Poster on API too (#11033) (#11039)
  422. * Fix release counter on API repository info (#10968) (#10996)
  423. * Generate Diff and Patch direct from Pull head (#10936) (#10938)
  424. * Fix rebase conflict detection in git 2.26 (#10929) (#10930)
  425. * ENHANCEMENT
  426. * Fix 404 and 500 image size in small size screen (#11043) (#11049)
  427. * Multiple Gitea Doctor improvements (#10943) (#10990) (#10064) (#9095) (#10991)
  428. ## [1.11.4](https://github.com/go-gitea/gitea/releases/tag/v1.11.4) - 2020-04-01
  429. * BUGFIXES
  430. * Only update merge_base if not already merged (#10909)
  431. * Fix milestones too many SQL variables bug (#10880) (#10904)
  432. * Protect against NPEs in notifications list (#10879) (#10883)
  433. * Convert plumbing.ErrObjectNotFound to git.ErrNotExist in getCommit (#10862) (#10868)
  434. * Convert plumbing.ErrReferenceNotFound to git.ErrNotExist in GetRefCommitID (#10676) (#10797)
  435. * Account for empty lines in receive-hook message (#10773) (#10784)
  436. * Fix bug on branch API (#10767) (#10775)
  437. * Migrate to go-git/go-git v5.0.0 (#10735) (#10753)
  438. * Fix hiding of fields in authorization source page (#10734) (#10752)
  439. * Prevent default for linkAction (#10742) (#10743)
  440. ## [1.11.3](https://github.com/go-gitea/gitea/releases/tag/v1.11.3) - 2020-03-10
  441. * BUGFIXES
  442. * Prevent panic in stopwatch (#10670) (#10673)
  443. * Fix bug on pull view when required status check no ci result (#10648) (#10651)
  444. * Build explicitly with Go 1.13 (#10684)
  445. ## [1.11.2](https://github.com/go-gitea/gitea/releases/tag/v1.11.2) - 2020-03-06
  446. * BREAKING
  447. * Various fixes in login sources (#10428) (#10429)
  448. * SECURITY
  449. * Ensure only own addresses are updated (#10397) (#10399)
  450. * Logout POST action (#10582) (#10585)
  451. * Org action fixes and form cleanup (#10512) (#10514)
  452. * Change action GETs to POST (#10462) (#10464)
  453. * Fix admin notices (#10480) (#10483)
  454. * Change admin dashboard to POST (#10465) (#10466)
  455. * Update markbates/goth (#10444) (#10445)
  456. * Update crypto vendors (#10385) (#10398)
  457. * BUGFIXES
  458. * Allow users with write permissions to modify issue descriptions and comments. (#10623) (#10626)
  459. * Handle deleted base branch in PR (#10618) (#10619)
  460. * Delete dependencies when deleting a repository (#10608) (#10616)
  461. * Ensure executable bit is kept on the web editor (#10607) (#10614)
  462. * Update mergebase in pr checker (#10586) (#10605)
  463. * Fix release attachments being deleted while upgrading (#10572) (#10573)
  464. * Fix redirection path if Slack webhook channel is invalid (#10566)
  465. * Fix head.tmpl og:image picture location (#10531) (#10556)
  466. * Fix 404 after activating secondary email (#10547) (#10553)
  467. * Show Signer in commit lists and add basic trust (#10425 & #10511) (#10524)
  468. * Fix potential bugs (#10513) (#10518)
  469. * Use \[:space:\] instead of \\s (#10508) (#10509)
  470. * Avoid mailing users that have explicitly unwatched an issue (#10475) (#10500)
  471. * Handle push rejection message in Merge & Web Editor (#10373) (#10497)
  472. * Fix SQLite concurrency problems by using BEGIN IMMEDIATE (#10368) (#10493)
  473. * Fix double PR notification from API (#10482) (#10486)
  474. * Show the username as a fallback on feeds if full name is blank (#10461)
  475. * Trigger webhooks on issue label-change via API too (#10421) (#10439)
  476. * Fix git reference type in webhooks (#10427) (#10432)
  477. * Prevent panic on merge to PR (#10403) (#10408)
  478. * Fix wrong num closed issues on repository when close issue via commit… (#10364) (#10380)
  479. * Reading pull attachments should depend on read UnitTypePullRequests (#10346) (#10354)
  480. * Set max-width on review-box comment box (#10348) (#10353)
  481. * Prevent nil pointer in GetPullRequestCommitStatusState (#10342) (#10344)
  482. * Fix protected branch status check settings (#10341) (#10343)
  483. * Truncate long commit message header (#10301) (#10319)
  484. * Set the initial commit status to Success otherwise it will always be Pending (#10317) (#10318)
  485. * Don't manually replace whitespace during render (#10291) (#10315)
  486. * ENHANCEMENT
  487. * Admin page for managing user e-mail activation (#10557) (#10579)
  488. ## [1.11.1](https://github.com/go-gitea/gitea/releases/tag/v1.11.1) - 2020-02-15
  489. * BUGFIXES
  490. * Repo name added to automatically generated commit message when merging (#9997) (#10285)
  491. * Fix Workerpool deadlock (#10283) (#10284)
  492. * Divide GetIssueStats query in smaller chunks (#10176) (#10282)
  493. * Fix reply on code review (#10257)
  494. * Stop hanging issue indexer initialisation from preventing shutdown (#10243) (#10249)
  495. * Fix filter label emoji width (#10241) (#10244)
  496. * Fix issue sidebar menus having an infinite height (#10239) (#10240)
  497. * Fix commit between two commits calculation if there is only last commit (#10225) (#10226)
  498. * Only check for conflicts/merging if the PR has not been merged in the interim (#10132) (#10206)
  499. * Blacklist manifest.json & milestones user (#10292) (#10293)
  500. ## [1.11.0](https://github.com/go-gitea/gitea/releases/tag/v1.11.0) - 2020-02-10
  501. * BREAKING
  502. * Fix followers and following tabs in profile (#10202) (#10203)
  503. * Make CertFile and KeyFile relative to CustomPath (#9868) (#9874)
  504. * Remove unused endpoints (#9538)
  505. * Prefix all user-generated IDs in markup (#9477)
  506. * Enforce Gitea environment for pushes (#8982)
  507. * Hide some user information via API if user have not enough permissions (#8655)
  508. * Move startpage/homepage translation to crowdin (#8596)
  509. * SECURITY
  510. * Never allow an empty password to validate (#9682) (#9683)
  511. * Prevent redirect to Host (#9678) (#9679)
  512. * Swagger hide search field (#9554)
  513. * Add "search" to reserved usernames (#9063)
  514. * Switch to fomantic-ui (#9374)
  515. * Only serve attachments when linked to issue/release and if accessible by user (#9340)
  516. * FEATURES
  517. * Webhooks should only show sender if it makes sense (#9601)
  518. * Provide Default messages for merges (#9393)
  519. * Add description to labels on create issue (#9392)
  520. * Graceful Queues: Issue Indexing and Tasks (#9363)
  521. * Default NO_REPLY_ADDRESS to DOMAIN (#9325)
  522. * Allow FCGI over unix sockets (#9298)
  523. * Graceful: Xorm, RepoIndexer, Cron and Others (#9282)
  524. * Add API for Reactions (#9220)
  525. * Graceful: Cancel Process on monitor pages & HammerTime (#9213)
  526. * Graceful: Allow graceful restart for unix sockets (#9113)
  527. * Graceful: Allow graceful restart for fcgi (#9112)
  528. * Sign protected branches (#8993)
  529. * Add Graceful shutdown for Windows and hooks for shutdown of goroutines (#8964)
  530. * Add Gitea icon to Emojis (#8950)
  531. * Expand/Collapse Files and Blob Excerpt while Reviewing/Comparing code (#8924)
  532. * Allow Custom Reactions (#8886)
  533. * Close/reopen issues by keywords in titles and comments (#8866)
  534. * Allow incompletely specified Time Formats (#8816)
  535. * Prevent upload (overwrite) of lfs locked file (#8769)
  536. * Template Repositories (#8768)
  537. * Add /milestones endpoint (#8733)
  538. * Make repository management section handle lfs locks (#8726)
  539. * Respect LFS File Lock on UI (#8719)
  540. * Add team option to grant rights for all organization repositories (#8688)
  541. * Enabling and disabling the commit button to prevent empty commits (web editor) (#8590)
  542. * Add setting to disable BASIC authentication (#8586)
  543. * Expose db.SetMaxOpenConns and allow non MySQL dbs to set conn pool params (#8528)
  544. * Allow Protected Branches to Whitelist Deploy Keys (#8483)
  545. * Push to create repo (#8419)
  546. * Sign merges, CRUD, Wiki and Repository initialisation with gpg key (#7631)
  547. * Add basic repository lfs management (#7199)
  548. * BUGFIXES
  549. * Fix code-expansion arc-green theme bug (#10180) (#10185)
  550. * Prevent double wait-group decrement (#10170) (#10175)
  551. * Allow emoji on review head comments (#10159) (#10174)
  552. * Fix issue/pull link (#10158) (#10173)
  553. * Fix push-create SSH bugs (#10145) (#10151)
  554. * Prevent DeleteUser API abuse (#10125) (#10128)
  555. * Fix issues/pulls dashboard paging error (#10114) (#10115)
  556. * Add button to revert SimpleMDE to plain textarea (#10099) (#10102)
  557. * Fix branch page pull request title and link error (#10092) (#10097)
  558. * Fix PR API: Only try to get HeadBranch if HeadRepo exist (#10029) (#10088)
  559. * Update topics repo count when deleting repository (#10051) (#10081)
  560. * Show pull icon on pull requests (#10061) (#10062)
  561. * Fix milestone API state parameter unhandled (#10049) (#10052)
  562. * Move to using a temporary repo for pushing new PRs (#10009) (#10042)
  563. * Fix wiki raw view on sub path (#10002) (#10040)
  564. * Ensure that feeds are appropriately restricted (#10018) (#10019)
  565. * Sanitize credentials in mirror form (#9975) (#9991)
  566. * Close related pull requests when deleting head repository or head branch (#9927) (#9974)
  567. * Switch to use -f instead of -F for sendmail (#9961) (#9970)
  568. * Fix file rename/copy not supported by indexer (#9965) (#9967)
  569. * Fix repo indexer not updating upon push (#9957) (#9963)
  570. * Don't convert ellipsis in markdown (#9905) (#9937)
  571. * Fixed repo link in generated comment for cross repository dependency (#9863) (#9935)
  572. * Check if diff actually contains sections when rendering (#9926) (#9933)
  573. * Fix wrong hint when status checking is running on pull request view (#9886) (#9928)
  574. * Fix RocketChat (#9908) (#9921)
  575. * Do not try to recreate ldap user if they are already created (#9900) (#9919)
  576. * Create terminated channel in queue_redis (#9910) (#9911)
  577. * Prevent empty LDAP search result from deactivating all users (#9879) (#9896)
  578. * Fix wrong permissions check when issues/prs shared operations (#9885) (#9889)
  579. * Check user != nil before checking values (#9881) (#9883)
  580. * Allow hyphen in language name (#9873) (#9880)
  581. * Ensure that 2fa is checked on reset-password (#9857) (#9876)
  582. * Fix issues/pulls dependencies problems (#9842) (#9864)
  583. * Fix markdown anchor links (#9673) (#9840)
  584. * Allow assignee on Pull Creation when Issue Unit is deactivated (#9836) (#9837)
  585. * Fix download file wrong content-type (#9825) (#9834)
  586. * Fix wrong poster identity on a migrated pull request when submit review (#9827) (#9830)
  587. * Fix database dump when log directory is missing (#9818) (#9819)
  588. * Fix compare (#9808) (#9814)
  589. * Fix push-to-create (#9772) (#9797)
  590. * Fix missing msteam webhook on organization (#9781) (#9794)
  591. * Fix missing unlock in uniquequeue (#9790) (#9791)
  592. * Fix add team on collaborator page when same name as organization (#9778)
  593. * DeleteRepoFile incorrectly handles Delete to new branch (#9769) (#9775)
  594. * Fix milestones page (#9771)
  595. * Fix SimpleMDE quote reply (#9757) (#9768)
  596. * Fix missing updated time on migrated issues and comments (#9744) (#9764)
  597. * Move Errored PRs out of StatusChecking (#9675) (#9726)
  598. * Make hook status printing configurable with delay (#9641) (#9725)
  599. * ​Fix /repos​/issues​/search (#9698) (#9724)
  600. * Silence fomantic error regarding tabs (#9713) (#9718)
  601. * Remove unused lock (#9709) (#9710)
  602. * Remove q.lock.Unlock() in setInternal to prevent panic (#9705) (#9706)
  603. * Load milestone in API PR list (#9671) (#9700)
  604. * Don't attempt to close issue if already closed (#9696) (#9699)
  605. * Remove google font call (#9668) (#9681)
  606. * Eliminate horizontal scroll caused by footer (#9674)
  607. * Fix nil reference in repo generation (#9660) (#9666)
  608. * Add HTML URL to API Issues (#9654) (#9661)
  609. * Add PR review webhook to Telegram (#9653) (#9655)
  610. * Use filepath.IsAbs instead of path.IsAbs (#9651) (#9652)
  611. * Disable remove button on repository teams when have access to all (#9640)
  612. * Clean up old references on branch delete (#9614)
  613. * Hide public repos owned by private orgs (#9609)
  614. * Fix access issues on milestone and issue overview pages. (#9603)
  615. * Fix error logged when repos qs is empty (#9591)
  616. * Dont trigger notification twice on issue assignee change (#9582)
  617. * Fix mirror pushed commit actions (#9572)
  618. * Allow only specific columns to be updated on issue via API (#9189) (#9539)
  619. * Fix default avatar for ghost user (#9536)
  620. * Fix download of release attachments with same name (#9529)
  621. * Resolve deprecated INI conversion (#9525)
  622. * Ignore empty avatars during database migration (#9520)
  623. * Fix deleted branch isn't removed when push the branch again (#9516)
  624. * Fix repository issues pagination bug when there are more than one label filter (#9512)
  625. * Fix SetExpr failed (#9506)
  626. * Remove obsolete file private/push_update.go (#9503)
  627. * When recreating hooks, delete them first so they are recreated with the umask (#9502)
  628. * Properly enforce gitea environment for pushes (#9501)
  629. * Fix datarace on repo indexer queue (#9490)
  630. * Add call to load repo prior to redirect in add/remove dependency code (#9484)
  631. * Wrap the code indexer (#9476)
  632. * Use Req.URL.RequestURI() to cope with FCGI urls (#9473)
  633. * Set default ssh.minimum_key_sizes (#9466)
  634. * Fixed issue with paging in /repos/{owner}/{repo}/git/trees/{sha} api (#9459)
  635. * Fix wrong notification on merge (#9450)
  636. * Issue with Migration rule v111 (#9449)
  637. * Trigger webhook when deleting a branch after merging a PR (#9424)
  638. * Add migration to sanitize repository original_url (#9423)
  639. * Use OriginalURL instead of CloneAddr in migration logging (#9418)
  640. * Push update after branch is restored (#9416)
  641. * Fix wrong migration (#9381)
  642. * Fix show repositories filter (#9234) (#9379)
  643. * Fix Slack webhook payload title generation to work with Mattermost (#9378)
  644. * Fix double webhook for new PR (#9375)
  645. * AuthorizedKeysCommand should not query db directly (#9371)
  646. * Fix missed change to GetManager() (#9361)
  647. * Fix cache problem on dashboard (#9358)
  648. * RepoIndexer: DefaultBranch needs to be prefixed by BranchPrefix (#9356)
  649. * Fix protected branch using IssueID (#9348)
  650. * Fix nondeterministic behavior (#9341)
  651. * Fix PR/issue redirects when having external tracker (#9339)
  652. * Remove release attachments which repository has been deleted (#9334)
  653. * Fix issue indexer not triggered when migrating a repository (#9332)
  654. * Add SyncTags to uploader interface (#9326)
  655. * Fix bug that release attachment files not deleted when deleting repository (#9322)
  656. * Only sync tags after all migration release batches are completed (#9319)
  657. * File Edit: Author/Committer interchanged (#9297)
  658. * prebuild CSS/JS before xgo release binaries (#9293)
  659. * Log: Ensure FLAGS=none shows no flags (#9287)
  660. * Make Diff Detail on Pull Request Changed File UI always on Top (#9280)
  661. * Switch CSS minifier to cssnano (#9260)
  662. * Fix latest docker image haven't include static files. (#9252)
  663. * Don't link wiki revision to commit (#9244)
  664. * Change review content column to type text in db (#9229)
  665. * Fixed topic regex pattern and added search by topic links after save (#9219)
  666. * Add language to user API responce (#9215)
  667. * Correct tooltip message blocked by dependencies (#9211)
  668. * Add SimpleMDE and Fix Image Paste for Issue/Comment Editor (#9197)
  669. * Fix panic when diff (#9187)
  670. * Fix #9151 - smtp logger configuration sendTos should be an array (#9154)
  671. * Fix max length check and limit in multiple repo forms (#9148)
  672. * Always Show Password Field on Link Account Sign-in Page (#9147)
  673. * Properly fix displaying virtual session provider in admin panel (#9137)
  674. * Fix race condition on indexer (#9136)
  675. * Fix team links in HTML rendering (#9127)
  676. * Fix race condition in ReplaceSanitizer (#9123)
  677. * Fix what information is shown about user in API (#9115)
  678. * Fix nil context user for template repositories (#9099)
  679. * Hide given credentials for migrated repos. (#9097)
  680. * Fix reCAPTCHA API URL (#9083)
  681. * Fix password checks on admin create/edit user (#9076)
  682. * Update golang.org/x/crypto vendor to use acme v2 (#9056)
  683. * Ensure Written is set in GZIP ProxyResponseWriter (#9018)
  684. * Fix wrong system notice when repository is empty (#9010)
  685. * Fix broken link to branch from issue list (#9003)
  686. * Fix bug when pack js (#8992)
  687. * New review approvals shouldn't require a message (#8991)
  688. * Shadow password correctly for session config (#8984)
  689. * Don't send notification on pending reviews (#8943)
  690. * Fix Notify Create Ref Error on tag creation (#8936)
  691. * Convert EOL to UNIX-style to render MD properly (#8925)
  692. * Migrate temp_repo.go to use git.NewCommand (#8918)
  693. * Fix issue with user.fullname (#8902)
  694. * Add Close() method to gogitRepository (#8901)
  695. * Enable punctuations ending mentions (#8889)
  696. * Fix password complexity check on registration (#8887)
  697. * Fix require external registration password (#8885)
  698. * Fix edit content button on migrated issue content (#8877)
  699. * Fix permission checks for close/reopen from commit (#8875)
  700. * Fix API Bug (fail on empty assignees) (#8873)
  701. * Stop using git count-objects and use raw directory size for repository (#8848)
  702. * Fix count for commit graph last page (#8843)
  703. * Fix to close opened io resources as soon as not needed (#8839)
  704. * Improve notification (#8835)
  705. * Fix new user form for non-local users (#8826)
  706. * Fix: remove duplicated signed commit icons (#8820)
  707. * Fix (open/closed) issue count when label excluded (#8815)
  708. * Fix SSH2 conditional in key parsing code (#8806)
  709. * Fix 500 when edit hook (#8782)
  710. * On windows set core.longpaths true (#8776)
  711. * Fix commit expand button to not go to commit link (#8745)
  712. * Avoid re-issuing redundant cross-references. (#8734)
  713. * Fix milestone close timestamp function (#8728)
  714. * Move webhook codes from service to webhook notification (#8712)
  715. * Show zero lines on the line counter if the file empty (#8700)
  716. * Fix deadline on update issue or PR via API (#8696)
  717. * make call createMilestoneComment on newIssue func (#8678)
  718. * Send tag create and push webhook when release created on UI (#8671)
  719. * Prevent chrome download page as html with alt + click (#8669)
  720. * Fix 500 when getting user as unauthenticated user (#8653)
  721. * Graceful fixes (#8645)
  722. * Add SubURL to redirect path (#8632) (#8634)
  723. * Fix extra columns from `label` table (#8633)
  724. * Add SubURL to redirect path for transferred/renamed repos (#8632)
  725. * Fix bug when migrate from API (#8631)
  726. * Allow to merge if file path contains " or \ (#8629)
  727. * Prevent removal of non-empty emoji panel following selection of duplicate (#8609)
  728. * Ensure default gpg settings not nil and found commits have reference to repo (#8604)
  729. * Set webhook Content-Type for application/x-www-form-urlencoded (#8599)
  730. * Fix #8582 by handling empty repos (#8587)
  731. * Fix of the diff statistics view on pull request's (#8581)
  732. * Fix bug on pull requests when transfer head repository (#8564)
  733. * Fix template error on account page (#8562)
  734. * Allow externalID to be UUID (#8551)
  735. * Fix ignored error on editorconfig api (#8550)
  736. * Fix user avatar name (#8547)
  737. * Ensure that GitRepo is set on Empty repositories (#8539)
  738. * Add missed close in ServeBlobLFS (#8527)
  739. * Fix migrate mirror 500 bug (#8526)
  740. * Fix password complexity regex for special characters (on master) (#8525)
  741. * ENHANCEMENTS
  742. * Explicitly refer to PR in squash-merge commit message in case of external tracker (#9844) (#9855)
  743. * Add a /user/login landing page option (#9622)
  744. * Some more e-mail notification fixes (#9596)
  745. * Add branch protection option to block merge on requested changes. (#9592)
  746. * Add footer extra links template (#9576)
  747. * Fix for a wrong URL in activity page of repository. (#9571)
  748. * Update default issue template (#9568)
  749. * Change markdown rendering from blackfriday to goldmark (#9533)
  750. * Extend file create api with dates (#9464)
  751. * Add ActionCommentPull action (#9456)
  752. * Response for context on retry database connection (#9444)
  753. * Refactor webhooks to reduce code duplication (#9422)
  754. * update couchbase deps for new license (#9419)
  755. * Add .ignore file for search tools (#9417)
  756. * Remove unsued struct (#9405)
  757. * Hide not allowed Reactions (#9387)
  758. * Remove text from action-only webhooks (#9377)
  759. * Move PushToBaseRepo from models to services/pull (#9352)
  760. * Site admin could view org's members (#9346)
  761. * Sleep longer if request speed is over github limitation (#9335)
  762. * Refactor comment (#9330)
  763. * Refactor code indexer (#9313)
  764. * Remove SavePatch and generate patches on the fly (#9302)
  765. * Move some pull request functions from models to services (#9266)
  766. * Update JS dependencies (#9255)
  767. * Show label list on label set (#9251)
  768. * Redirect issue if repo has configured external tracker. (#9247)
  769. * Allow kbd tags (#9245)
  770. * Remove unused comment actions (#9222)
  771. * Fixed errors logging in dump.go (#9218)
  772. * Expose release counter to repo API response (#9214)
  773. * Make consistent links to repository in the Slack/Mattermost notificiations (#9205)
  774. * Expose pull request counter to repo API response (#9202)
  775. * Extend TrackedTimes API (#9200)
  776. * Extend StopWatch API (#9196)
  777. * Move code indexer related code to a new package (#9191)
  778. * Docker: ask s6 to stop all service when gitea stop (#9171)
  779. * Variable expansion in repository templates (#9163)
  780. * Add avatar and issue labels to template repositories (#9149)
  781. * Show single review comments in the PR conversation tab (#9143)
  782. * Extract createComment (#9125)
  783. * Move PushUpdateOptions from models to repofiles (#9124)
  784. * Alternate syntax for cross references (#9116)
  785. * Add USE_SERVICE_WORKER setting (#9110)
  786. * Only show part of members on orgnization dashboard and add paging for orgnization members page (#9092)
  787. * Explore page: Add topic param to pagination (#9077) (#9078)
  788. * Markdown: Sanitizier Configuration (#9075)
  789. * Add password requirement info on error (#9074)
  790. * Allow authors to use act keywords in PR content (#9059)
  791. * Move modules/gzip to gitea.com/macaron/gzip (#9058)
  792. * Branch protection: Possibility to not use whitelist but allow anyone with write access (#9055)
  793. * Context menus for comments, add quote reply (#9043)
  794. * Update branch API endpoint to show effective branch protection. (#9031)
  795. * Move git graph from models to modules/graph (#9027)
  796. * Move merge actions to notification (#9024)
  797. * Move mirror sync actions to notification (#9022)
  798. * Add retry for migration http/https requests (#9019)
  799. * Rewrite delivery of issue and comment mails (#9009)
  800. * Add review comments to mail notifications (#8996)
  801. * Refactor pull request review (#8954)
  802. * Githook highlighter (#8932)
  803. * Add git hooks and webhooks to template repositories; move to services (#8926)
  804. * Only view branch or tag if it match refType requested. (#8899)
  805. * Drop Admin attribute based on LDAP when login (continue #1743) (#8849)
  806. * Add additional periods to activity page (#8829)
  807. * Update go-org to optimize code (#8824)
  808. * Move some actions to notification/action (#8779)
  809. * Webhook support custom proxy (#8760)
  810. * Fix API deadline removal (#8759)
  811. * Mark review comment as invalidated when file is deleted (#8751)
  812. * Move pull list code to a separate file (#8748)
  813. * Move webhook to a standalone package under modules (#8747)
  814. * Multi repo select on issue page (#8741)
  815. * apply exclude label on milestone issue list (#8739)
  816. * Move issue notifications and assignee man (#8713)
  817. * Move issue change content from models to service (#8711)
  818. * Move issue change status from models to service (#8691)
  819. * Move more issue assignee code from models to issue service (#8690)
  820. * Create PR on Current Repository by Default (#8670)
  821. * Improve Open Graph Protocol (#8637)
  822. * Batch hook pre- and post-receive calls (#8602)
  823. * Improve webhooks (#8583)
  824. * Move transfer repository and rename repository on a service package and start action notification (#8573)
  825. * Implement/Fix PR review webhooks (#8570)
  826. * Rewrite markdown rendering to blackfriday v2 and rewrite orgmode rendering to go-org (#8560)
  827. * Move some repositories' operations to a standalone service package (#8557)
  828. * Allow more than 255 characters for tokens in external_login_user table (#8554)
  829. * Move issue label operations to issue service package (#8553)
  830. * Adjust error reporting from merge failures and use LC_ALL=C for git (#8548)
  831. * Mail assignee when issue/pull request is assigned (#8546)
  832. * Allow committing / adding empty files using the web ui (#8420) (#8532)
  833. * Move sync mirror actions to mirror service package (#8518)
  834. * Remove arrows on numeric inputs (#8516)
  835. * Support inline rendering of CUSTOM_URL_SCHEMES (#8496)
  836. * Recalculate repository access only for specific user (#8481)
  837. * Add download button for rull request diff- and patch-file (#8470)
  838. * Add single sign-on support via SSPI on Windows (#8463)
  839. * Move change issue title from models to issue service package (#8456)
  840. * Add included tag on branch view (#8449)
  841. * Make static resouces web browser cache time customized on app.ini (#8442)
  842. * Enable Uploading/Removing Attachments When Editing an Issue/Comment (#8426)
  843. * Add pagination to commit graph page (#8360)
  844. * Use templates for issue e-mail subject and body (#8329)
  845. * Move clearlabels from models to issue service (#8326)
  846. * Move AddTestPullRequestTask to pull service package from models (#8324)
  847. * Team permission to create repository in organization (#8312)
  848. * Allows external rendering of other filetypes (#8300)
  849. * Add 'Alt + click' feature to exclude labels (#8199)
  850. * Configurable close and reopen keywords for PRs (#8120)
  851. * Configurable URL for static resources (#7911)
  852. * Unifies commit list in repository commit table and wiki revision page (#7907)
  853. * Allow cross-repository dependencies on issues (#7901)
  854. * Auto-subscribe user to repository when they commit/tag to it (#7657)
  855. * Restore Graceful Restarting & Socket Activation (#7274)
  856. * wiki - add 'write' 'preview' buttons to wiki edit like in issues (#7241)
  857. * Change target branch for pull request (#6488)
  858. * Display PR commits and diffs using base repo rather than forked (#3648)
  859. * TESTING
  860. * Add debug option to serv to help debug problems (#9492)
  861. * Fix the intermittent TestGPGGit failures (#9360)
  862. * Testing: Update postgres sequences (#9304)
  863. * Missed defer prepareTestEnv (#9285)
  864. * Fix "data race" in testlogger (#9159)
  865. * Yet another attempt to fix the intermittent failure of gpg git test (#9146)
  866. * integrations: Fix Dropped Test Errors (#9040)
  867. * services/mirror: fix dropped test errors (#9007)
  868. * Fix intermittent GPG Git test failure (#8968)
  869. * Update Github Migration Tests (#8893) (#8938)
  870. * Update heatmap fixtures to restore tests (#8615)
  871. * TRANSLATION
  872. * Fix Korean locales (#9761) (#9780)
  873. * Fix placeholders in the error message (#9060)
  874. * Fix spelling of admin.users.max_repo_creation (#8934)
  875. * Improve german translation of homepage (#8549)
  876. * BUILD
  877. * Fix webpack polyfills (#9735) (#9738)
  878. * Update gitea.com/macaron to 1.4.0 (#9608)
  879. * Upgrade lato fonts to v16. (#9498)
  880. * Update alpine to 3.11 (#9440)
  881. * Upgrade blevesearch (#9177)
  882. * Remove built js/css files from git (#9114)
  883. * Move semantic.dropdown.custom.js to webpack (#9064)
  884. * Check compiled files during build (#9042)
  885. * Enable lazy-loading of gitgraph.js (#9036)
  886. * Pack web_src/js/draw.js to public/js/index.js (#8975)
  887. * Modernize js and use babel (#8973)
  888. * Move index.js to web_src and use webpack to pack them (#8598)
  889. * Restrict modules/graceful to non-windows build and shim IsChild (#8537)
  890. * Upgrade gopkg.in/editorconfig/editorconfig-core-go.v1 (#8501)
  891. * DOCS
  892. * Swagger info corrections (#9441) (#9558)
  893. * Add ALLOW_ONLY_EXTERNAL_REGISTRATION to config cheat sheet (#8986)
  894. * Rephrase comment about RuntimeDirectory option in systemd config (#8912)
  895. * Explicitly indicate the socket unit to use the service unit "gitea.service" (#8804)
  896. * Adjust the must-change-password help (#8755)
  897. * Add notice to docs for migrating from more recent versions of Gogs (#8724)
  898. * Add explicit info about customization of homepage (#8694)
  899. * Change external asciidoctor tool to embedded mode (#8677)
  900. * Add Docker fail2ban configuration (#8642)
  901. * Correct some outdated statements in the contributing guidelines (#8612)
  902. * Basic Design guidelines (describing different parts of the code) (#8601)
  903. * Display Gitea logo in Readme (#8592)
  904. * Fix building from source docs to ref AppWorkPath (#8567)
  905. * Update the provided gitea.service to mention socket activation (#8531)
  906. * Doc added how to setup email (#8520)
  907. * MISC
  908. * Backport Locales [2020-01-14] (#9773)
  909. * Add translatable Powered by Gitea text in footer (#9600)
  910. * Add contrib/environment-to-ini (#9519)
  911. * Remove unnecessary loading of settings in update hook (#9496)
  912. * Update gitignore list (#9437)
  913. * Update license list (#9436)
  914. * Fix background reactions in the arc-green theme (#9421)
  915. * Update and fix chardet import (#9351)
  916. * Ensure LF on checkouts and in editors (#9259)
  917. * Fixed topics margin (#9248)
  918. * Add comment to exported function WindowsServiceName (make revive) (#9241)
  919. * Remove empty lines on issues/pulls page (#9232)
  920. * Fix Add Comment Button's "+" Position (#9140)
  921. * Add first issue comment hashtag (#9052)
  922. * Change some label colors (#9051)
  923. * Fix double scroll in branch dropdown (#9048)
  924. * Add comment highlight when target from url (#9047)
  925. * Update display of reactions to issues and comments (#9038)
  926. * Button tooltip formatting under Branches (#9034)
  927. * Allow setting default branch via API (#9030)
  928. * Update dashboard context for PR reviews (#8995)
  929. * Show repository size in repo home page and settings (#8940)
  930. * Allow to add and remove all repositories to/from team. (#8867)
  931. * Show due date in dashboard issues list (#8860)
  932. * Theme arc-green: reverse heatmap colors (#8840)
  933. * Project files table style update (#8757)
  934. * gitignore debugging file from vscode (#8740)
  935. * Add API for Issue set Subscription (#8729)
  936. * Make 100% width search bar (#8710)
  937. * Update color theme for heatmap (#8709)
  938. * Add margin to title_wip_desc (#8705)
  939. * Improve visibility of "Pending" indicator (#8685)
  940. * Improve accessibility of dropdown menus (#8638)
  941. * Make /users/{username}/repos list private repos the current user has access to (#8621)
  942. * Prevent .code-view from overriding font on icon fonts (#8614)
  943. * Add id references on all issue events to allow internal linking (#8608)
  944. * Upgrade xorm to v0.8.0 (#8536)
  945. * Upgrade gopkg.in/ini.v1 (#8500)
  946. * Update CodeMirror to version 5.49.0 (#8381)
  947. * Wiki editor: enable side-by-side button (#7242)
  948. ## [1.10.6](https://github.com/go-gitea/gitea/releases/tag/v1.10.6) - 2020-03-10
  949. This is a re-tag version of v1.10.5 and also explicitly built with Go 1.13.
  950. WARNING: v1.10.5 is incorrectly tagged targeting 1.12-dev and should **not** be used.
  951. ## [1.10.5](https://github.com/go-gitea/gitea/releases/tag/v1.10.5) - 2020-03-06
  952. * BUGFIXES
  953. * Fix release attachments being deleted while upgrading (#10572) (#10574)
  954. ## [1.10.4](https://github.com/go-gitea/gitea/releases/tag/v1.10.4) - 2020-02-16
  955. * FEATURE
  956. * Prevent empty LDAP search from deactivating all users (#9879) (#9890)
  957. * BUGFIXES
  958. * Fix reply on code review (#10261) (#10227)
  959. * Fix branch page pull request title and link error (#10092) (#10098)
  960. * Fix milestone API state parameter unhandled (#10049) (#10053)
  961. * Fix wiki raw view on sub path (#10002) (#10041)
  962. * Fix RocketChat Webhook (#9908) (#9921) (#9925)
  963. * Fix bug about wrong dependencies permissions check and other wrong permissions check (#9884) (Partial backport #9842)
  964. * Ensure that 2fa is checked on reset-password (#9857) (#9877)
  965. ## [1.10.3](https://github.com/go-gitea/gitea/releases/tag/v1.10.3) - 2020-01-17
  966. * SECURITY
  967. * Hide credentials when submitting migration (#9102) (#9704)
  968. * Never allow an empty password to validate (#9682) (#9684)
  969. * Prevent redirect to Host (#9678) (#9680)
  970. * Hide public repos owned by private orgs (#9609) (#9616)
  971. * BUGFIXES
  972. * Allow assignee on Pull Creation when Issue Unit is deactivated (#9836) (#9838)
  973. * Fix download file wrong content-type (#9825) (#9835)
  974. * Fix wrong identify poster on a migrated pull request when submit review (#9827) (#9831)
  975. * Fix dump non-exist log directory (#9818) (#9820)
  976. * Fix compare (#9808) (#9815)
  977. * Fix missing msteam webhook on organization (#9781) (#9795)
  978. * Fix add team on collaborator page when same name as organization (#9783)
  979. * Fix cache problem on dashboard (#9358) (#9703)
  980. * Send tag create and push webhook when release created on UI (#8671) (#9702)
  981. * Branches not at ref commit ID should not be listed as Merged (#9614) (#9639)
  982. ## [1.10.2](https://github.com/go-gitea/gitea/releases/tag/v1.10.2) - 2020-01-02
  983. * BUGFIXES
  984. * Allow only specific Columns to be updated on Issue via API (#9539) (#9580)
  985. * Add ErrReactionAlreadyExist error (#9550) (#9564)
  986. * Fix bug when migrate from API (#8631) (#9563)
  987. * Use default avatar for ghost user (#9536) (#9537)
  988. * Fix repository issues pagination bug when there are more than one label filter (#9512) (#9528)
  989. * Fix deleted branch not removed when push the branch again (#9516) (#9524)
  990. * Fix missing repository status when migrating repository via API (#9511)
  991. * Trigger webhook when deleting a branch after merging a PR (#9510)
  992. * Fix paging on /repos/{owner}/{repo}/git/trees/{sha} API endpoint (#9482)
  993. * Fix NewCommitStatus (#9434) (#9435)
  994. * Use OriginalURL instead of CloneAddr in migration logging (#9418) (#9420)
  995. * Fix Slack webhook payload title generation to work with Mattermost (#9404)
  996. * DefaultBranch needs to be prefixed by BranchPrefix (#9356) (#9359)
  997. * Fix issue indexer not triggered when migrating a repository (#9333)
  998. * Fix bug that release attachment files not deleted when deleting repository (#9322) (#9329)
  999. * Fix migration releases (#9319) (#9326) (#9328)
  1000. * Fix File Edit: Author/Committer interchanged (#9297) (#9300)
  1001. ## [1.10.1](https://github.com/go-gitea/gitea/releases/tag/v1.10.1) - 2019-12-05
  1002. * BUGFIXES
  1003. * Fix max length check and limit in multiple repo forms (#9148) (#9204)
  1004. * Properly fix displaying virtual session provider in admin panel (#9137) (#9203)
  1005. * Upgrade levelqueue to 0.1.0 (#9192) (#9199)
  1006. * Fix panic when diff (#9187) (#9193)
  1007. * Smtp logger configuration sendTos should be an array (#9154) (#9157)
  1008. * Always Show Password Field on Link Account Sign-in Page (#9150)
  1009. * Create PR on Current Repository by Default (#8670) (#9141)
  1010. * Fix race on indexer (#9136) (#9139)
  1011. * Fix reCAPTCHA URL (#9119)
  1012. * Hide migrated credentials (#9098)
  1013. * Update golang.org/x/crypto vendor to use acme v2 (#9056) (#9085)
  1014. * Fix password checks on admin create/edit user (#9076) (#9081)
  1015. * Fix add search as a reserved username (#9063) (#9065)
  1016. * Fix permission checks for close/reopen from commit (#8875) (#9033)
  1017. * Ensure Written is set in GZIP ProxyResponseWriter (#9018) (#9025)
  1018. * Fix broken link to branch from issue list (#9003) (#9021)
  1019. * Fix wrong system notice when repository is empty (#9020)
  1020. * Shadow password correctly for session config (#8984) (#9002)
  1021. ## [1.10.0](https://github.com/go-gitea/gitea/releases/tag/v1.10.0) - 2019-11-13
  1022. * BREAKING
  1023. * Fix deadline on update issue or PR via API (#8698)
  1024. * Hide some user information via API if user doesn't have enough permission (#8655) (#8657)
  1025. * Remove legacy handling of drone token (#8191)
  1026. * Change repo search to use exact match for topic search. (#7941)
  1027. * Add pagination for admin api get orgs and fix only list public orgs bug (#7742)
  1028. * Implement the ability to change the ssh port to match what is in the gitea config (#7286)
  1029. * SECURITY
  1030. * Fix issue with user.fullname (#8903)
  1031. * Ignore mentions for users with no access (#8395)
  1032. * Be more strict with git arguments (#7715)
  1033. * Extract the username and password from the mirror url (#7651)
  1034. * reserve .well-known username (#7637)
  1035. * FEATURES
  1036. * Org/Members: display 2FA members states + optimize sql requests (#7621)
  1037. * SetDefaultBranch on pushing to empty repository (#7610)
  1038. * Adds side-by-side diff for images (#6784)
  1039. * API method to list all commits of a repository (#6408)
  1040. * Password Complexity Checks (#6230)
  1041. * Add option to initialize repository with labels (#6061)
  1042. * Add additional password hash algorithms (#6023)
  1043. * BUGFIXES
  1044. * Allow to merge if file path contains " or \ (#8629) (#8771)
  1045. * On windows set core.longpaths true (#8776) (#8786)
  1046. * Fix 500 when edit hook (#8782) (#8789)
  1047. * Fix Checkbox at RepoSettings Protected Branch (#8799) (#8801)
  1048. * Fix SSH2 conditional in key parsing code (#8806) (#8810)
  1049. * Fix commit expand button to not go to commit link (#8745) (#8825)
  1050. * Fix new user form for non-local users (#8826) (#8828)
  1051. * Fix to close opened io resources as soon as not needed (#8839) (#8846)
  1052. * Fix edit content button on migrated issue content (#8877) (#8884)
  1053. * Fix require external registration password (#8885) (#8890)
  1054. * Fix password complexity check on registration (#8887) (#8888)
  1055. * Update Github Migration Tests (#8896) (#8938) (#8945)
  1056. * Enable punctuations ending mentions (#8889) (#8894)
  1057. * Add Close() method to gogitRepository (#8901) (#8956)
  1058. * Hotfix for review actions and notifications (#8965)
  1059. * Expose db.SetMaxOpenConns and allow non MySQL dbs to set conn pool params (#8528) (#8618)
  1060. * Fix milestone close timestamp (#8728) (#8730)
  1061. * Fix 500 when getting user as unauthenticated user (#8653) (#8663)
  1062. * Fix 'New Issue Missing Milestone Comment' (#8678) (#8681)
  1063. * Use AppSubUrl for more redirections (#8647) (#8651)
  1064. * Add SubURL to redirect path (#8632) (#8634)
  1065. * Fix template error on account page (#8562) (#8622)
  1066. * Allow externalID to be UUID (#8551) (#8624)
  1067. * Prevent removal of non-empty emoji panel following selection of duplicate (#8609) (#8623)
  1068. * Update heatmap fixtures to restore tests (#8615) (#8616)
  1069. * Ensure that diff stats can scroll independently of the diff (#8581) (#8621)
  1070. * Webhook: set Content-Type for application/x-www-form-urlencoded (#8600)
  1071. * Fix #8582 by handling empty repos (#8587) (#8594)
  1072. * Fix bug on pull requests when transfer head repository (#8564) (#8569)
  1073. * Add missed close in ServeBlobLFS (#8527) (#8542)
  1074. * Ensure that GitRepo is set on Empty repositories (#8539) (#8541)
  1075. * Fix migrate mirror 500 bug (#8526) (#8530)
  1076. * Fix password complexity regex for special characters (#8524)
  1077. * Prevent .code-view from overriding font on icon fonts (#8614) (#8627)
  1078. * Allow more than 255 characters for tokens in external_login_user table (#8554)
  1079. * Fix errors in create org UI regarding team access permission (#8506)
  1080. * Fix bug on FindExternalUsersByProvider (#8504)
  1081. * Create .ssh dir as necessary (#8486)
  1082. * IsBranchExist: return false if provided name is empty (#8485)
  1083. * Making openssh listen on SSH_LISTEN_PORT not SSH_PORT (#8477)
  1084. * Add check for empty set when dropping indexes during migration (#8471)
  1085. * LFS files are relative to LFS content path, ensure that when deleting they are made relative to this (#8455)
  1086. * Ensure Request Body Readers are closed in LFS server (#8454)
  1087. * Fix template bug on mirror repository setting page (#8438)
  1088. * Fix migration v96 to keep issue attachments (#8435)
  1089. * Update strk.kbt.io/projects/go/libravatar to latest (#8429)
  1090. * Singular form for files that has only one line (#8416)
  1091. * Check for either escaped or unescaped wiki filenames (#8408)
  1092. * Allow users with explicit read access to give approvals (#8382)
  1093. * Fix editor commit to new branch if PR disabled (#8375)
  1094. * readd .markdown class to all markup renderers (#8357)
  1095. * Upgrade xorm to v0.7.9 to fix some bugs (#8354)
  1096. * Fix column name ambiguity in GetUserIssueStats() (#8347)
  1097. * Change general form binding to gogs form (#8334)
  1098. * Fix pull request commit status in user dashboard list (#8321)
  1099. * Fix repo_admin_change_team_access always checked in org settings (#8319)
  1100. * Update to github.com/lafriks/xormstore@v1.3.0 (#8317)
  1101. * Show correct commit status in PR list (#8316)
  1102. * Bugfix for image compare and minor improvements to image compare (#8289)
  1103. * Update xorm (#8286)
  1104. * Fix API for edit and delete release attachment (#8285)
  1105. * Fix nil object access in some conditions when parsing cross references (#8281)
  1106. * Fix label count (#8267)
  1107. * Only show teams access for organization repositories on collaboration setting page (#8265)
  1108. * Test more reserved usernames (#8263)
  1109. * Rewrite reference processing code in preparation for opening/closing from comment references (#8261)
  1110. * Fix assets key on release webhook (#8253)
  1111. * Allow registration when button is hidden (#8237)
  1112. * Fix release API URL generation (#8234)
  1113. * Fix milestone num_issues (#8221)
  1114. * MS Teams webhook misses commit messages (#8209)
  1115. * Fix data race (#8204)
  1116. * Fix team user api (#8172)
  1117. * Fix pull merge 500 error caused by git-fetch breaking behaviors (#8161)
  1118. * Make show private icon when repo avatar set (#8144)
  1119. * Add reviewers as participants (#8121)
  1120. * Fix Go 1.13 private repository go get issue (#8112)
  1121. * feat: highlight issue references with : (#8101)
  1122. * Make AllowedUsers configurable in sshd_config (#8094)
  1123. * Strict name matching for Repository.GetTagID() (#8074)
  1124. * Avoid ambiguity of branch/directory names for the git-diff-tree command (#8066)
  1125. * Add change title notification for issues (#8061)
  1126. * [ssh] fix the config specification in the authorized_keys template (#8031)
  1127. * Fix reading git notes from nested trees (#8026)
  1128. * Fixes synchronize tags to releases for repository - makes sure we are only getting tag refs (#7990)
  1129. * Fix adding default Telegram webhook (#7972)
  1130. * Run CORS handler first for /api routes (#7967)
  1131. * Abort synchronization from LDAP source if there is some error. (#7960)
  1132. * Fix wrong sender when send slack webhook (#7918)
  1133. * Fix bug when migrating a private repository (#7917)
  1134. * Evaluate emojis in commit messages in list view (#7906)
  1135. * Fix upload file type check (#7890)
  1136. * lfs/lock: round locked_at timestamp to second (#7872)
  1137. * fix non existent milestone with 500 error instead of 404 (#7867)
  1138. * gpg/bugfix: Use .ExpiredUnix.IsZero to display green color of forever valid gpg key (#7846)
  1139. * Fix duplicate call of webhook (#7821)
  1140. * Enable switching to a different source branch when PR already exists (#7819)
  1141. * Convert files to utf-8 for indexing (#7814)
  1142. * Do not fetch all refs in pull-request compare (#7797)
  1143. * Fix multiple bugs with statuses endpoints at API (#7785)
  1144. * Restore functionality for early gits (#7775)
  1145. * Fix Slack webhook fork message (#7774)
  1146. * Rewrite existing repo units if setting is not included in api body (#7763)
  1147. * Fix rename failed when rewrite public keys (#7761)
  1148. * Fix approvals counting (#7757)
  1149. * Add migration step to remove old repo_indexer_status orphaned records (#7746)
  1150. * Fix repo_index_status lingering when deleting a repository (#7734)
  1151. * Remove camel case tokenization from repo indexer (#7733)
  1152. * Fix milestone completness calculation when migrating (#7725)
  1153. * Regression: Include "executable" files in the index, as they are not necessarily … (#7718)
  1154. * Fixes indexed repos keeping outdated indexes when files grow too large (#7712)
  1155. * Skip non-regular files (e.g. submodules) on repo indexing (#7711)
  1156. * Fix dropTableColumns sqlite implementation (#7710)
  1157. * Update gopkg.in/src-d/go-git.v4 to v4.13.1 (#7705)
  1158. * improve branches list performance and fix protected branch icon when no-login (#7695)
  1159. * Correct wrong datetime format for git (#7689)
  1160. * Move add to hook queue for created repo to outside xorm session. (#7675)
  1161. * sugestion to use range .Branches (#7674)
  1162. * Fix bug on migrating milestone from github (#7665)
  1163. * hide delete/restore button on archived repos (#7658)
  1164. * css: use flex to fix floating paginate (#7656)
  1165. * Fix syntax highlight initialization (#7617)
  1166. * Fix panic on push at - Merging pull request causes 500 error (#7615)
  1167. * Make PKCS8, PEM and SSH2 keys work (#7600)
  1168. * Fix mistake in arc-green.less split-diff css code. (#7587)
  1169. * Handle ErrUserProhibitLogin in http git (#7586)
  1170. * Fix bug create/edit wiki pages when code master branch protected (#7580)
  1171. * Fixes Malformed URLs in API git/commits response (#7565)
  1172. * Fix file header overflow in file and blame views (#7562)
  1173. * Improve SSH key parser to handle newlines in keys (#7522)
  1174. * Fix empty commits now showing in repo overview (#7521)
  1175. * Fix repository's pull request count error (#7518)
  1176. * Fix markdown invoke sequence (#7513)
  1177. * Remove duplicated webhook trigger (#7511)
  1178. * Update User.NumRepos atomically in createRepository (#7493)
  1179. * Fix settings page of repo you aren't admin print error - Settings pages giving UnitType error message (#7482)
  1180. * Fix redirection after file edit - Handles all redirects for Web UI File CRUD (#7478)
  1181. * cmd/serv: actually exit after fatal errors (#7458)
  1182. * Fix an issue with some pages throwing 'not defined' js exceptions (#7450)
  1183. * fix Dropzone.js integration (#7445)
  1184. * Fix regex for issues in commit messages (#7444)
  1185. * Diff: Fix indentation on unhighlighted code (#7435)
  1186. * Only show "New Pull Request" button if repo allows pulls (#7426)
  1187. * Upgrade macaron/captcha to fix random error problem (#7407)
  1188. * create class for inline positioned lists (#7393)
  1189. * Fetch refs for successful testing for tag (#7388)
  1190. * add missing template variable on organisation settings (#7385)
  1191. * fix post parameter - on issue list - unset assignee (#7380)
  1192. * fix/define autochecked checkboxes on issue list in firefox (#7320)
  1193. * only return head: null if source branch was deleted (#6705)
  1194. * ENHANCEMENTS
  1195. * Add nofollow to sign in links (#8509)
  1196. * vendor: update mvdan.cc/xurls/v2 to v2.1.0 (#8495)
  1197. * Update milestone issues numbers when save milestone and other code improvements (#8411)
  1198. * Add extra user information when migrating release (#8331)
  1199. * Require overall success if no context is given for status check (#8318)
  1200. * Transaction-aware retry create issue to cope with duplicate keys (#8307)
  1201. * Change link on issue milestone (#8246)
  1202. * Alwaywas return local url for users avatar (#8245)
  1203. * Move some milestone functions to a standalone package (#8213)
  1204. * Move create issue comment to comments package (#8212)
  1205. * Disable max height property of comment textarea (#8203)
  1206. * Add 'Mentioning you' group to /issues page (#8201)
  1207. * oauth2 with remote Gitea (#8149)
  1208. * Reference issues from pull requests and other issues (#8137)
  1209. * Fix webhooks to use proxy from environment (#8116)
  1210. * Add merged commit id on pull view when it's merged (#8062)
  1211. * Add teams to repo on collaboration page. (#8045)
  1212. * Update swagger to 0.20.1 (#8010)
  1213. * Make link last commit massages in repository home page and commit tables (#8006)
  1214. * Add API endpoint for accessing repo topics (#7963)
  1215. * Include description in repository search (#7942)
  1216. * Use gitea forked macaron (#7933)
  1217. * Fix pull creation with empty changes (#7920)
  1218. * Allow token as authorization for accessing attachments (#7909)
  1219. * Retry create issue to cope with duplicate keys (#7898)
  1220. * Move git diff codes from models to services/gitdiff (#7889)
  1221. * migrate gplus to google oauth2 provider (#7885)
  1222. * Remove unique filter from repo indexer analyzer. (#7878)
  1223. * Detect delimiter in CSV rendering (#7869)
  1224. * Import topics during migration (#7851)
  1225. * Move CreateReview to modules/pull (#7841)
  1226. * vendor: update pdf.js to v2.1.266 (#7834)
  1227. * Support SSH_LISTEN_PORT env var in docker app.ini template (#7829)
  1228. * Add Ability for User to Customize Email Notification Frequency (#7813)
  1229. * Move database settings from models to setting (#7806)
  1230. * Display ui time with customize time location (#7792)
  1231. * Implement webhook branch filter (#7791)
  1232. * Restrict repository indexing by glob match (#7767)
  1233. * Api: advanced settings for repository (external wiki, issue tracker etc.) (#7756)
  1234. * Update migrated repositories' issues/comments/prs poster id if user has a github external user saved (#7751)
  1235. * deps: Upgrade gopkg.in/editorconfig/editorconfig-core-go.v1 (#7749)
  1236. * Apply emoji on commit graph page (#7743)
  1237. * Add a lot of extension to language mappings for syntax highlights (#7741)
  1238. * Add SQL execution on log and indexes on table repository and comment (#7740)
  1239. * Set DB connection error level to error (#7724)
  1240. * Check commit message hashes before making links (#7713)
  1241. * remove unnecessary fmt on generate bindata (#7706)
  1242. * Fix specific highlighting (CMakeLists.txt ...) (#7686)
  1243. * Add file status on API (#7671)
  1244. * Add support for DEFAULT_ORG_MEMBER_VISIBLE (#7669)
  1245. * Provide links in commit summaries in commits table/view list (#7659)
  1246. * Change length of some repository's columns (#7652)
  1247. * Move commit repo action from models to repofiles package (#7645)
  1248. * fix wrong email when use gitea as OAuth2 provider (#7640)
  1249. * [Branch View] add download button (#7604)
  1250. * Update to xorm@v0.7.4 (#7596)
  1251. * use 403 instead of 401 for ErrUserProhibitLogin (#7591)
  1252. * Removed unnecessary conversions (#7557)
  1253. * Un-lambda base.FileSize (#7556)
  1254. * Added missing error checks in tests (#7554)
  1255. * Move create release from models to a standalone package (#7539)
  1256. * Make default branch name link to default branch (#7519)
  1257. * Added total count of contributions to heatmap (#7517)
  1258. * Move mirror to a standalone package from models (#7486)
  1259. * Move models.PushUpdate to repofiles.PushUpdate (#7485)
  1260. * Include thread related headers in issue/coment mail (#7484)
  1261. * Refuse merge until all required status checks success (#7481)
  1262. * convert all js var to let/const (#7464)
  1263. * Only create branches for opened pull requestes when migrating from github (#7463)
  1264. * jQuery 3 (#7425)
  1265. * Add notification placeholder (#7409)
  1266. * Search Commits via Commit Hash (#7400)
  1267. * Move status table to cron package (#7370)
  1268. * wiki - page revisions list (#7369)
  1269. * Display original author and URL information when showing migrated issues/comments (#7352)
  1270. * Refactor filetype is not allowed errors (#7309)
  1271. * switch to use gliderlabs/ssh for builtin server (#7250)
  1272. * Remove settting dependency on modules/session (#7237)
  1273. * Move all mail related codes from models to services/mailer (#7200)
  1274. * Support git.PATH entry in app.ini (#6772)
  1275. * Support setting cookie domain (#6288)
  1276. * Move migrating repository from frontend to backend (#6200)
  1277. * Delete releases attachments if release is deleted (#6068)
  1278. * TRANSLATION
  1279. * Latvian translation for home page (#8468)
  1280. * Add home template italian translation (#8352)
  1281. * fix misprint (#7452)
  1282. * BUILD
  1283. * use go 1.13 (#8088)
  1284. * MISC
  1285. * add file line count info on UI (#8396)
  1286. * Make issues page left menu 100% width and add reponame as title attribute (#8359)
  1287. * [arc-green] white on hover for active menu items (#8344)
  1288. * Move ref (branch or tag) location on issue list page (#8157)
  1289. * apply emoji on dashboard issue list labels (#8156)
  1290. * 1148: Take up the full width when viewing the diff in split view. (#8114)
  1291. * Display description of 'make this repo private' as help text, not as tooltip (#8097)
  1292. * Fixes deformed emoji in pull request reviews (#8047)
  1293. * Add strike to old header on comment (#8046)
  1294. * Add tooltip for the visibility checkbox in /repo/create (#8025)
  1295. * Update github.com/lafriks/xormstore and tidy up mod.go (#8020)
  1296. * keep blame view buttons sequence consistent with normal view when view a file (#8007)
  1297. * Use "Pull Request" instead of "Merge Request" (#8003)
  1298. * Move line number to :before attr to hide from search on browser (#8002)
  1299. * Changed black color to white for (read) number label on issue list page (#8000)
  1300. * [Branch View] show "New Pull Request" Button only if posible (#7977)
  1301. * Fix hook problem by only setting the git environment variables if we are passed them (#7854)
  1302. * Prevent Commit Status and Message From Overflowing On Branch Page (#7800)
  1303. * Fix global search result CSS, misc CSS tweaks (#7789)
  1304. * Tweak label border CSS (#7739)
  1305. * Fix create menu item widths (#7708)
  1306. * [Branch View] Delete duplicate protection symbol (#7624)
  1307. * [Branch View] Delete Table Header (#7622)
  1308. * [Branch View] icons to buttons (#7602)
  1309. * update js dependencies (#7462)
  1310. * Add Extra Info to Branches Page (#7461)
  1311. * Bump lodash from 4.17.11 to 4.17.14 (#7459)
  1312. * wiki history improvements (#7391)
  1313. * ui fixes - compare view and archieved repo issues (#7345)
  1314. * dark theme scrollbars (#7269)
  1315. * wiki - editor - add buttons 'inline code', 'empty checkbox', 'checked checkbox' (#7243)
  1316. * Fix Statuses API only shows first 10 statuses: Add paging and extend API GetCommitStatuses (#7141)
  1317. ## [1.9.6](https://github.com/go-gitea/gitea/releases/tag/v1.9.6) - 2019-11-13
  1318. * BUGFIXES
  1319. * Allow to merge if file path contains " or \ (#8629) (#8772)
  1320. * Fix 500 when edit hook (#8782) (#8790)
  1321. * Fix issue with user.fullname (#8904)
  1322. * Update Github Migration Test (#8897) (#8946)
  1323. * Add Close() method to gogitRepository (#8901) (#8958)
  1324. ## [1.9.5](https://github.com/go-gitea/gitea/releases/tag/v1.9.5) - 2019-10-30
  1325. * BREAKING
  1326. * Hide some user information via API if user doesn't have enough permission (#8655) (#8658)
  1327. * BUGFIXES
  1328. * Fix milestone close timestamp (#8728) (#8731)
  1329. * Fix deadline on update issue or PR via API (#8699)
  1330. * Fix 'New Issue Missing Milestone Comment' (#8678) (#8682)
  1331. * Fix 500 when getting user as unauthenticated user (#8653) (#8662)
  1332. * Use AppSubUrl for more redirections (#8647) (#8652)
  1333. * Add SubURL to redirect path (#8632) (#8634) (#8640)
  1334. * Fix #8582 by handling empty repos (#8587) (#8593)
  1335. * Fix bug on pull requests when transfer head repository (#8571)
  1336. * Add missed close in ServeBlobLFS (#8527) (#8543)
  1337. * Return false if provided branch name is empty for IsBranchExist (#8485) (#8492)
  1338. * Create .ssh dir as necessary (#8369) (#8486) (#8489)
  1339. * Restore functionality for early gits (#7775) (#8476)
  1340. * Add check for empty set when dropping indexes during migration (#8475)
  1341. * Ensure Request Body Readers are closed in LFS server (#8454) (#8459)
  1342. * Ensure that LFS files are relative to the LFS content path (#8455) (#8458)
  1343. * SECURITY
  1344. * Ignore mentions for users with no access (#8395) (#8484)
  1345. * TESTING
  1346. * Update heatmap fixtures to restore tests (#8615) (#8617)
  1347. ## [1.9.4](https://github.com/go-gitea/gitea/releases/tag/v1.9.4) - 2019-10-08
  1348. * BUGFIXES
  1349. * Highlight issue references (#8101) (#8404)
  1350. * Fix bug when migrating a private repository #7917 (#8403)
  1351. * Change general form binding to gogs form (#8334) (#8402)
  1352. * Fix editor commit to new branch if PR disabled (#8375) (#8401)
  1353. * Fix milestone num_issues (#8221) (#8400)
  1354. * Allow users with explicit read access to give approvals (#8398)
  1355. * Fix commit status in PR #8316 and PR #8321 (#8339)
  1356. * Fix API for edit and delete release attachment (#8290)
  1357. * Fix assets on release webhook (#8283)
  1358. * Fix release API URL generation (#8239)
  1359. * Allow registration when button is hidden (#8238)
  1360. * MS Teams webhook misses commit messages (backport v1.9) (#8225)
  1361. * Fix data race (#8206)
  1362. * Fix pull merge 500 error caused by git-fetch breaking behaviors (#8194)
  1363. * Fix the SSH config specification in the authorized_keys template (#8193)
  1364. * Fix reading git notes from nested trees (#8189)
  1365. * Fix team user api (#8172) (#8188)
  1366. * Add reviewers as participants (#8124)
  1367. * BUILD
  1368. * Use vendored go-swagger (#8087) (#8165)
  1369. * Fix version-validation for GO 1.13 (go-macaron/cors) (#8389)
  1370. * MISC
  1371. * Make show private icon when repo avatar set (#8144) (#8175)
  1372. ## [1.9.3](https://github.com/go-gitea/gitea/releases/tag/v1.9.3) - 2019-09-06
  1373. * BUGFIXES
  1374. * Fix go get from a private repository with Go 1.13 (#8100)
  1375. * Strict name matching for Repository.GetTagID() (#8082)
  1376. * Avoid ambiguity of branch/directory names for the git-diff-tree command (#8070)
  1377. * Add change title notification for issues (#8064)
  1378. * Run CORS handler first for /api routes (#7967) (#8053)
  1379. * Evaluate emojis in commit messages in list view (#8044)
  1380. * Fix failed to synchronize tags to releases for repository (#7990) (#7994)
  1381. * Fix adding default Telegram webhook (#7972) (#7992)
  1382. * Abort synchronization from LDAP source if there is some error (#7965)
  1383. * Fix deformed emoji in commit message (#8071)
  1384. * ENHANCEMENTS
  1385. * Keep blame view buttons sequence consistent with normal view when viewing a file (#8007) (#8009)
  1386. ## [1.9.2](https://github.com/go-gitea/gitea/releases/tag/v1.9.2) - 2019-08-22
  1387. * BUGFIXES
  1388. * Fix wrong sender when send slack webhook (#7918) (#7924)
  1389. * Upload support text/plain; charset=utf8 (#7899)
  1390. * Lfs/lock: round locked_at timestamp to second (#7872) (#7875)
  1391. * Fix non existent milestone with 500 error (#7867) (#7873)
  1392. * SECURITY
  1393. * Fix No PGP signature on 1.9.1 tag (#7874)
  1394. * Release built with go 1.12.9 to fix security fixes in golang std lib, ref: https://groups.google.com/forum/#!msg/golang-announce/oeMaeUnkvVE/a49yvTLqAAAJ
  1395. * ENHANCEMENTS
  1396. * Fix pull creation with empty changes (#7920) (#7926)
  1397. * BUILD
  1398. * Drone/docker: prepare multi-arch release + provide arm64 image (#7571) (#7884)
  1399. ## [1.9.1](https://github.com/go-gitea/gitea/releases/tag/v1.9.1) - 2019-08-14
  1400. * BREAKING
  1401. * Add pagination for admin api get orgs and fix only list public orgs bug (#7742) (#7752)
  1402. * SECURITY
  1403. * Be more strict with git arguments (#7715) (#7762)
  1404. * Release built with go 1.12.8 to fix security fixes in golang std lib, ref: https://groups.google.com/forum/#!topic/golang-nuts/fCQWxqxP8aA
  1405. * BUGFIXES
  1406. * Fix local runs of ssh-requiring integration tests (#7855) (#7857)
  1407. * Fix hook problem (#7856) (#7754)
  1408. * Use .ExpiredUnix.IsZero to display green color of forever valid gpg key (#7850) (#7846)
  1409. * Do not fetch all refs (#7797) (#7837)
  1410. * Fix duplicate call of webhook (#7824) (#7821)
  1411. * Enable switching to a different source branch when PR already exists (#7823)
  1412. * Rewrite existing repo units if setting is not included in api body (#7811)
  1413. * Prevent Commit Status and Message From Overflowing On Branch Page (#7800) (#7808)
  1414. * API: fix multiple bugs with statuses endpoints (Backport #7785) (#7807)
  1415. * Fix Slack webhook fork message (1.9 release backport) (#7783)
  1416. * Fix approvals counting (#7757) (#7777)
  1417. * Fix rename failed when rewrite public keys (#7761) (#7769)
  1418. * Fix dropTableColumns sqlite implementation (#7710) (#7765)
  1419. * Fix repo_index_status lingering when deleting a repository (#7738)
  1420. * Fix milestone completness calculation when migrating (#7725) (#7732)
  1421. * Fixes indexed repos keeping outdated indexes when files grow too large (#7731)
  1422. * Skip non-regular files (e.g. submodules) on repo indexing (#7717)
  1423. * Improve branches list performance and fix protected branch icon when no-login (#7695) (#7704)
  1424. * Correct wrong datetime format for git (#7689) (#7690)
  1425. ## [1.9.0](https://github.com/go-gitea/gitea/releases/tag/v1.9.0) - 2019-07-30
  1426. * BREAKING
  1427. * Better logging (#6038) (#6095)
  1428. * SECURITY
  1429. * Shadow the password on cache and session config on admin panel (#7300)
  1430. * Fix markdown invoke sequence (#7513) (#7560)
  1431. * Reserve .well-known username (#7638)
  1432. * Do not leak secrets via timing side channel (#7364)
  1433. * Ensure that decryption of cookie actually suceeds (#7363)
  1434. * FEATURES
  1435. * Content API for Creating, Updating, Deleting Files (#6314)
  1436. * Enable tls-alpn-01: Use certmanager provided TLSConfig for LetsEncrypt (#7229)
  1437. * Add command to convert mysql database from utf8 to utf8mb4 (#7144)
  1438. * Fixes #2738 - Adds the /git/tags API endpoint (#7138)
  1439. * Compare branches, commits and tags with each other (#6991)
  1440. * Show Pull Request button or status of latest PR in branch list (#6990)
  1441. * Repository avatars (#6986)
  1442. * Show git-notes (#6984)
  1443. * Add commit statuses reports on pull request view (#6845)
  1444. * Number of commits ahead/behind in branch overview (#6695)
  1445. * Add CLI commands to manage LDAP authentication source (#6681)
  1446. * Add support for MS Teams webhooks (#6632)
  1447. * OAuth2 Grant UI (#6625)
  1448. * Add SUBJECT_PREFIX mailer config option (#6605)
  1449. * Include custom configuration file in dump (#6516)
  1450. * Add API for manipulating Git hooks (#6436)
  1451. * Improve migrations to support migrating milestones/labels/issues/comments/pullrequests (#6290)
  1452. * Add option to blame files (#5721)
  1453. * Implement Default Webhooks (#4299)
  1454. * Telegram webhook (#4227)
  1455. * BUGFIXES
  1456. * Send webhook after commit when creating issue with assignees (#7681) (#7684)
  1457. * Upgrade macaron/captcha to fix random error problem (#7407) (#7683)
  1458. * Move add to hook queue for created repo to outside xorm session. (#7682) (#7675)
  1459. * Show protection symbol if needed on default branch (#7660) (#7668)
  1460. * Hide delete/restore button on archived repos (#7660)
  1461. * Fix bug on migrating milestone from github (#7665) (#7666)
  1462. * Use flex to fix floating paginate (#7656) (#7662)
  1463. * Change length of some repository's columns (#7652) (#7655)
  1464. * Fix wrong email when use gitea as OAuth2 provider (#7640) (#7647)
  1465. * Fix syntax highlight initialization (#7617) (#7626)
  1466. * Fix bug create/edit wiki pages when code master branch protected (#7580) (#7623)
  1467. * Fix panic on push at #7611 (#7615) (#7618)
  1468. * Handle ErrUserProhibitLogin in http git (#7586, #7591) (#7590)
  1469. * Fix color of split-diff view in dark theme (#7587) (#7589)
  1470. * Fix file header overflow in file and blame views (#7562) (#7579)
  1471. * Malformed URLs in API git/commits response (#7565) (#7567)
  1472. * Fix empty commits now showing in repo overview (#7521) (#7563)
  1473. * Fix repository's pull request count error (#7518) (#7524)
  1474. * Remove duplicated webhook trigger (#7511) (#7516)
  1475. * Handles all redirects for Web UI File CRUD (#7478) (#7507)
  1476. * Fix regex for issues in commit messages (#7444) (#7466)
  1477. * cmd/serv: actually exit after fatal errors (#7458) (#7460)
  1478. * Fix an issue with some pages throwing 'not defined' js exceptions #7450 (#7453)
  1479. * Fix Dropzone.js integration (#7445) (#7448)
  1480. * Create class for inline positioned lists (#7439) (#7393)
  1481. * Diff: Fix indentation on unhighlighted code (#7435) (#7443)
  1482. * jQuery 3 (#7442) (#7425)
  1483. * Only show "New Pull Request" button if repo allows pulls (#7426) (#7432)
  1484. * Fix vendor references (#7394) (#7396)
  1485. * Only return head: null if source branch was deleted (#6705) (#7376)
  1486. * Add missing template variable on organisation settings (#7386) (#7385)
  1487. * Fix post parameter on issue list which had unset assignee (#7380) (#7383)
  1488. * Fix migration tests due to issue 7 being resolved (#7375) (#7381)
  1489. * Correctly adjust mirror url (#6593)
  1490. * Handle early git version's lack of get-url (#7065)
  1491. * Fix icon position in issue view (#7354)
  1492. * Cut timeline length with last element on issue view (#7355)
  1493. * Fix mirror repository webhooks (#7366)
  1494. * Fix api route for hooks (#7346)
  1495. * Fix bug conflict between SyncReleasesWithTags and InsertReleases (#7337)
  1496. * Fix pull view ui merge section (#7335)
  1497. * Fix 7303 - remove unnessesary buttons on archived repos (#7326)
  1498. * Fix topic bar to allow prefixes (#7325)
  1499. * Fixes #7152 - Allow create/update/delete message to be empty, use default message (#7324)
  1500. * Fixes #7238 - Annotated tag commit ID incorrect (#7321)
  1501. * Dark theme fixes (#7319)
  1502. * Gitea own dark codemirror theme (#7317)
  1503. * Fixes #7292 - API File Contents bug (#7301)
  1504. * Fix API link header (#7298)
  1505. * Fix extra newlines when copying from diff in Firefox (#7288)
  1506. * Make diff line-marker non-selectable (#7279)
  1507. * Fix Submodule dection in subdir (#7275)
  1508. * Fix error log when loading issues caused by a xorm bug (#7271)
  1509. * Add .fa icon margin like .octicon (#7258)
  1510. * Fix hljs unintenionally highlighting commit links (#7244)
  1511. * Only check and config git on web subcommand but not others (#7236)
  1512. * Fix migration panic when Head.User is not exist (#7226)
  1513. * Only warn on errors in deleting LFS orphaned files during repo deletion (#7213)
  1514. * Fix duplicated file on pull request conflicted files (#7211)
  1515. * Allow colon between fixing word and issue (#7207)
  1516. * Fix overflow issues in repo (#7190)
  1517. * API error cleanup (#7186)
  1518. * Add error for fork already existing (#7185)
  1519. * Fixes diff on merged pull requests (#7171)
  1520. * If milestone id is zero don't get it from database (#7169)
  1521. * Fix pusher name via ssh push (#7167)
  1522. * Fix database lock when use random repository fallback image (#7166)
  1523. * Various fixes for issue mail notifications (#7165)
  1524. * Allow archived repos to be (un)starred and (un)watched (#7163)
  1525. * Fix GCArgs load from ini (#7156)
  1526. * Detect noreply email address as user (#7133)
  1527. * Avoid arbitrary format strings upon calling fail() function (#7112)
  1528. * Validate External Tracker URL Format (#7089)
  1529. * Repository avatar fallback configuration (#7087)
  1530. * Fix #732: Add LFS objects to base repository on merging (#7082)
  1531. * Install page - Handle invalid administrator username better (#7060)
  1532. * Workaround for posting single comments in split diff view (#7052)
  1533. * Fix possbile mysql invalid connnection error (#7051)
  1534. * Fix charset was not saved after installation finished (#7048)
  1535. * Handle insecure and ports in go get (#7041)
  1536. * Avoid bad database state after failed migration (#7040)
  1537. * Fix wrong init dependency on markup extensions (#7038)
  1538. * Fix default for allowing new organization creation for new users (#7017)
  1539. * Fix content download and /verify LFS handler expecting wrong content-type (#7015)
  1540. * Fix missing repo description when migrating (#7000)
  1541. * Fix LFS Locks over SSH (#6999)
  1542. * Do not attempt to return blob on submodule (#6996)
  1543. * Fix U2F for Chrome >= 74 (#6980)
  1544. * Fix index produces problem when issues/pulls deleted (#6973)
  1545. * Allow collaborators to view repo owned by private org (#6965)
  1546. * Stop running hooks on pr merge (#6963)
  1547. * Run hooks on merge/edit and cope with protected branches (#6961)
  1548. * Webhook Logs show proper HTTP Method, and allow change HTTP method in form (#6953)
  1549. * Stop colorizing log files by default (#6949)
  1550. * Rotate serv.log, http.log and hook logs and stop stacktracing in these (#6935)
  1551. * Fix plain text overflow line wrap (#6915)
  1552. * Fix input size for dependency select (#6913)
  1553. * Change drone token name to let users know to use oauth2 (#6912)
  1554. * Fix syntax highlight in blame view #6895 (#6909)
  1555. * Use AppURL for Oauth user link (#6894)
  1556. * Fixes #6881 - API users search fix (#6882)
  1557. * Fix 404 when send pull request some situation (#6871)
  1558. * Enforce osusergo build tag for releases (#6862)
  1559. * Fix 500 when reviewer is deleted with integration tests (#6856)
  1560. * Fix v85.go (#6851)
  1561. * Make dropTableColumns drop columns on sqlite and constraints on all (#6849)
  1562. * Fix double-generation of scratch token (#6832) (#6833)
  1563. * When mirroring we should set the remote to mirror (#6824)
  1564. * Fix the v78 migration "Drop is_bare" on MSSQL #6707 (#6823)
  1565. * Change verbose flag in dump command to avoid colliding with global version flag (#6822)
  1566. * Fix #6813: Allow git.GetTree to take both commit and tree names (#6816)
  1567. * Remove `seen` map from `getLastCommitForPaths` (#6807)
  1568. * Show scrollbar only when needed (#6802)
  1569. * Restore IsWindows variable assignment (#6722) (#6790)
  1570. * Service worker js is a missing comma (#6788)
  1571. * Fix team edit API panic (#6780)
  1572. * Set user search base field optional in LDAP (simple auth) edit page (#6779)
  1573. * Ignore already existing public keys after ldap sync (#6766)
  1574. * Fix pulls broken when fork repository deleted (#6754)
  1575. * Fix missing return (#6751)
  1576. * Fix new team 500 (#6749)
  1577. * OAuth2 token can be used in basic auth (#6747)
  1578. * Fix org visibility bug when git cloning (#6743)
  1579. * Fix bug when sort repos on org home page login with non-admin (#6741)
  1580. * Stricter domain name pattern in email regex (#6739)
  1581. * Fix admin template error (#6737)
  1582. * Drop is_bare IDX only when it exists for MySQL and MariaDB (#6736)
  1583. * UI: Detect and restore encoding and BOM in content (#6727)
  1584. * Load issue attributes when editing an issue with API (#6723)
  1585. * Fix team members API (#6714)
  1586. * Unfortunately MemProvider Init does not actually Init properly (#6692)
  1587. * Fix partial reversion of #6657 caused by #6314 (#6685)
  1588. * Prevent creating empty sessions (#6677)
  1589. * Fixes #6659 - Swagger schemes selection default to page's protocol (#6660)
  1590. * Update highlight.js to 9.15.6 (#6658)
  1591. * Properly escape on the redirect from the web editor (#6657)
  1592. * Fix #6655 - Don't EscapePound .Link as it is already escaped (#6656)
  1593. * Use ctx.metas for SHA hash links (#6645)
  1594. * Fix wrong GPG expire date (#6643)
  1595. * upgrade version of lib/pq to v1.1.0 (#6640)
  1596. * Fix forking an empty repository (#6637)
  1597. * Fix issuer of OTP URI should be URI-encoded. (#6634)
  1598. * Return a UserList from /api/v1/admin/users (#6629)
  1599. * Add json tags for oauth2 form (#6627)
  1600. * Remove extra slash from twitter card (#6619)
  1601. * remove bash requirement in makefile (#6617)
  1602. * Fix Open Graph og:image link (#6612)
  1603. * Fix cross-compile builds (#6609)
  1604. * Change commit summary to full message in API (#6591)
  1605. * Fix bug user search API pagesize didn't obey ExplorePagingNum (#6579)
  1606. * Prevent server 500 on compare branches with no common history (#6555)
  1607. * Properly escape release attachment URL (#6512)
  1608. * Delete local branch when repo branch is deleted (#6497)
  1609. * Fix bug when user login and want to resend register confirmation email (#6482)
  1610. * Fix upload attachments (#6481)
  1611. * Avoid multi-clicks in oauth2 login (#6467)
  1612. * Hacky fix for alignment of the create-organization dialog (#6455)
  1613. * Change order that PostProcess Processors are run (#6445)
  1614. * Clean up ref name rules (#6437)
  1615. * Fix Hook & HookList in Swagger (#6432)
  1616. * Fixed unitTypeCode not being used in accessLevelUnit (#6419)
  1617. * Display correct error for invalid mirror interval (#6414)
  1618. * Don't Unescape redirect_to cookie value (#6399)
  1619. * Fix dump table name error and add some test for dump database (#6394)
  1620. * Fix migrations 82 to ignore unsynced tags between database and git data and missing is_archived on repository table (#6387)
  1621. * Make sure units of a team are returned (#6379)
  1622. * Fix bug manifest.json will not request with cookie so that session will created every request (#6372)
  1623. * Disable benchmarking during tag events on DroneIO (#6365)
  1624. * Comments list performance optimization (#5305)
  1625. * ENHANCEMENTS
  1626. * Update Drone docker generation to standard format (#7480) (#7496) (#7504)
  1627. * Add API Endpoint for Repo Edit (#7006)
  1628. * Add state param to milestone listing API (#7131)
  1629. * Make captcha and password optional for external accounts (#6606)
  1630. * Detect migrating batch size (#7353)
  1631. * Fix 7255 - wrap long texts on user profile info (#7333)
  1632. * Use commit graph files for listing pages (#7314)
  1633. * Add git command line commitgraph support global default true when git version >= 2.18 (#7313)
  1634. * Add LFS_START_SERVER option to control git-lfs support (#7281)
  1635. * Dark theme markdown fixes (#7260)
  1636. * Update go-git to v4.12.0 (#7249)
  1637. * Show lfs config on admin panel (#7220)
  1638. * Disable same user check for internal SSH (#7215)
  1639. * Add LastLogin to the User API (#7196)
  1640. * Add missing description of label on API (#7159)
  1641. * Use go method to calculate ssh key fingerprint (#7128)
  1642. * Enable Rust highlighting (#7125)
  1643. * Refactor submodule URL parsing (#7100)
  1644. * Change issue mail title. (#7064)
  1645. * Use batch insert on migrating repository to make the process faster (#7050)
  1646. * Improve github downloader on migrations (#7049)
  1647. * When git version >= 2.18, git command could run with git wire protocol version 2 param if enabled (#7047)
  1648. * Fix Erlang and Elixir highlight mappings (#7044)
  1649. * API Org Visibility (#7028)
  1650. * Improve handling of non-square avatars (#7025)
  1651. * Bugfix: Align comment label and actions to the right (#7024)
  1652. * Change UpdateRepoIndex api to include watchers (#7012)
  1653. * Move serv hook functionality & drop GitLogger (#6993)
  1654. * Add support of utf8mb4 for mysql (#6992)
  1655. * Make webhook http connections resuable (#6976)
  1656. * Move xorm logger bridge from log to models so that log module could be a standalone package (#6944)
  1657. * Refactor models.NewRepoContext to extract git related codes to modules/git (#6941)
  1658. * Remove macaron dependent on models (#6940)
  1659. * Add less linter via npx (#6936)
  1660. * Remove macaron dependent on modules/log (#6933)
  1661. * Remove macaron dependent on models/mail.go (#6931)
  1662. * Clean less files (#6921)
  1663. * Fix code overflow (#6914)
  1664. * Style orgs list in user profile (#6911)
  1665. * Improve description of branch protection (fix #6886) (#6906)
  1666. * Move sdk structs to modules/structs (#6905)
  1667. * update sdk to latest (#6903)
  1668. * Escape the commit message on issues update and title in telegram hook (#6901)
  1669. * SearchRepositoryByName improvements and unification (#6897)
  1670. * Change the color of issues/pulls list, merged is purple and closed is red (#6874)
  1671. * Refactor table width to have more info shown in file list (#6867)
  1672. * Monitor all git commands; move blame to git package and replace git as a variable (#6864)
  1673. * Fix config ui error about cache ttl (#6861)
  1674. * Improve localization of git activity stats (#6848)
  1675. * Generate access token in admin cli (#6847)
  1676. * Update github.com/urfave/cli to version 1.2.0 (#6838)
  1677. * Rename LFS_JWT_SECRET cli option to include OAUTH2 as well (#6826)
  1678. * internal/ssh: ignore env command totally (#6825)
  1679. * Allow Recaptcha service url to be configured (#6820)
  1680. * update github.com/mcuadros/go-version to v0.0.0-20190308113854-92cdf37c5b75 (#6815)
  1681. * Use modules/git for git commands (#6775)
  1682. * Add GET requests to webhook (#6771)
  1683. * Move PushUpdate dependency from models to repofiles (#6763)
  1684. * Tweak tab text and icon colors (#6760)
  1685. * Ignore non-standard refs in git push (#6758)
  1686. * Disable web preview for telegram webhook (#6719)
  1687. * Show full name if DEFAULT_SHOW_FULL_NAME setting enabled (#6710)
  1688. * Reorder file actions (#6706)
  1689. * README WordPress the code is overflowing #6679 (#6696)
  1690. * Improve issue reference on commit (#6694)
  1691. * Handle redirects for git clone commands (#6688)
  1692. * Fix one performance/correctness regression in #6478 found on Rails repository. (#6686)
  1693. * API OTP Context (#6674)
  1694. * Remove local clones & make hooks run on merge/edit/upload (#6672)
  1695. * Bump github.com/stretchr/testify from 1.2.2 to 1.3.0 (#6663)
  1696. * Bump gopkg.in/src-d/go-git.v4 from 4.8.0 to 4.10.0 (#6662)
  1697. * Fix dropdown icon padding (#6651)
  1698. * Add more title attributes on shortened names (#6647)
  1699. * Update UI for topics labels on projects (#6639)
  1700. * Trace Logging on Permission Denied & ColorFormat (#6618)
  1701. * Add .gpg url (match github behaviour) (#6610)
  1702. * Support for custom GITEA_CUSTOM env var in docker(#6608)
  1703. * Show "delete branch" button on closed pull requests (#6570) (#6601)
  1704. * Add option to disable refresh token invalidation (#6584)
  1705. * Fix new repo dropdown alignment (#6583)
  1706. * Fix mail notification when close/reopen issue (#6581)
  1707. * Pre-calculate the absolute path of git (#6575)
  1708. * Minor CSS cleanup for the navbar (#6553)
  1709. * Render SHA1 links as code blocks (#6546)
  1710. * Add username flag in create-user command (#6534)
  1711. * Unifies pagination template usage (#6531) (#6533)
  1712. * Fixes pagination width on mobile view (#5711) (#6532)
  1713. * Improve SHA1 link detection (#6526)
  1714. * Fixes #6446 - Sort team members and team's repositories (#6525)
  1715. * Use stricter boundaries for auto-link detection (#6522)
  1716. * Use regular line-height on frontpage entries (#6518)
  1717. * Fixes #6514 - New Pull Request on files and pulls pages the same (#6515)
  1718. * Make distinction between DisplayName and Username in email templates (#6495)
  1719. * Add X-Auto-Response-Suppress header to outgoing messages (#6492)
  1720. * Cleaned permission checks for API -> site admin can now do anything (#6483)
  1721. * Support search operators for commits search (#6479)
  1722. * Improve listing performance by using go-git (#6478)
  1723. * Fix repo sub_menu font color in arc-green (#6477)
  1724. * Show last commit status in pull request lists (#6465)
  1725. * Add signatures to webhooks (#6428)
  1726. * Optimize all images in public/img (#6427)
  1727. * Add golangci (#6418)
  1728. * Make "Ghost" not link to 404 page (#6410)
  1729. * Include more variables on admin/config page (#6378)
  1730. * Markdown: enable some more extensions (#6362)
  1731. * Include repo name in page title tag (#6343)
  1732. * Show locale string on timestamp (#6324)
  1733. * Handle CORS requests (#6289)
  1734. * Improve issue autolinks (#6273)
  1735. * Migration Tweaks (#6260)
  1736. * Add title attributes to all items in the repo list viewer (#6258)
  1737. * Issue indexer queue redis support (#6218)
  1738. * Add bio field for user (#6113)
  1739. * Make the version within makefile overwriteable (#6080)
  1740. * Updates to API 404 responses (#6077)
  1741. * Use Go1.11 module (#5743)
  1742. * UX + Security current user password reset (#5042)
  1743. * Refactor: append, build variable and type switch (#4940)
  1744. * Git statistics in Activity tab (#4724)
  1745. * Drop the bits argument when generating an ed25519 key (#6504)
  1746. * TESTING
  1747. * Exclude pull_request from fetch-tags step, fixes #7108 (#7120)
  1748. * Refactor and improve git test (#7086)
  1749. * Fix TestSearchRepo by waiting till indexing is done (#7004)
  1750. * Add mssql migration tests (needs #6823) (#6852)
  1751. * Add tests for Org API (#6731)
  1752. * Context.ServerError and NotFound should log from their caller (#6550)
  1753. * TRANSLATION
  1754. * Add french specific rule for translating plural texts (#6846)
  1755. * BUILD
  1756. * Update mssql driver to last working version 20180314172330-6a30f4e59a44 (#7306)
  1757. * Alpine 3.10 (#7256)
  1758. * Use vfsgen instead of go-bindata (#7080)
  1759. * remove and disable package-lock (#6969)
  1760. * add make targets for js and css, add js linter (#6952)
  1761. * Added tags pull step to drone config to show correct version hashes i… (#6836)
  1762. * Make CustomPath, CustomConf and AppWorkPath configurable at build (#6631)
  1763. * chore: update drone format to 1.0 (#6602)
  1764. * Fix race in integration testlogger (#6556)
  1765. * Quieter Integration Tests (#6513)
  1766. * Drop the docker Makefile from the image (#6507)
  1767. * Add make version on gitea version (#6485)
  1768. * Fix #6468 - Uses space match and adds newline for all sed flavors (#6473)
  1769. * Move code.gitea.io/git to code.gitea.io/gitea/modules/git (#6364)
  1770. * Update npm dependencies and various tweaks (#7344)
  1771. * Fix updated drone file (#7336)
  1772. * Add 'npm' and 'npm-update' make targets and lockfile (#7246)
  1773. * DOCS
  1774. * Add work path CLI option (#6922)
  1775. * Fix logging documentation (#6904)
  1776. * Some logging documentation (#6498)
  1777. * Fix link to Hacking on Gitea on From-Source doc page (#6471)
  1778. * Fix typos in docs command-line examples (#6466)
  1779. * Added docker example for backup (#5846)
  1780. ## [1.8.3](https://github.com/go-gitea/gitea/releases/tag/v1.8.3) - 2019-06-17
  1781. * BUGFIXES
  1782. * Always set userID on LFS authentication (#7224) (Part of #6993)
  1783. * Fix LFS Locks over SSH (#6999) (#7223)
  1784. * Fix duplicated file on pull request conflicted files (#7211) (#7214)
  1785. * Detect noreply email address as user (#7133) (#7195)
  1786. * Don't get milestone from DB if ID is zero (#7169) (#7174)
  1787. * Allow archived repos to be (un)starred and (un)watched (#7163) (#7168)
  1788. * Fix GCArgs load from ini (#7156) (#7157)
  1789. ## [1.8.2](https://github.com/go-gitea/gitea/releases/tag/v1.8.2) - 2019-05-29
  1790. * BUGFIXES
  1791. * Fix possbile mysql invalid connnection error (#7051) (#7071)
  1792. * Handle invalid administrator username on install page (#7060) (#7063)
  1793. * Disable arm7 builds (#7037) (#7042)
  1794. * Fix default for allowing new organization creation for new users (#7017) (#7034)
  1795. * SearchRepositoryByName improvements and unification (#6897) (#7002)
  1796. * Fix u2f registrationlist ToRegistrations() method (#6980) (#6982)
  1797. * Allow collaborators to view repo owned by private org (#6965) (#6968)
  1798. * Use AppURL for Oauth user link (#6894) (#6925)
  1799. * Escape the commit message on issues update (#6901) (#6902)
  1800. * Fix regression for API users search (#6882) (#6885)
  1801. * Handle early git version's lack of get-url (#7065) (#7076)
  1802. * Fix wrong init dependency on markup extensions (#7038) (#7074)
  1803. ## [1.8.1](https://github.com/go-gitea/gitea/releases/tag/v1.8.1) - 2019-05-08
  1804. * BUGFIXES
  1805. * Fix 404 when sending pull requests in some situations (#6871) (#6873)
  1806. * Enforce osusergo build tag for releases (#6862) (#6869)
  1807. * Don't post process commit summary in templates (#6842) (#6868)
  1808. * Fix 500 when reviewer is deleted (#6856) (#6860)
  1809. * Fix v78 migration for MSSQL (#6823) (#6854)
  1810. * Added tags pull step to drone config to show correct version hashes (#6836) (#6839)
  1811. * Fix double-generation of scratch token (#6833) (#6835)
  1812. * When mirroring we should set the remote to mirror (#6824) (#6834)
  1813. * Show scrollbar only when needed (#6802) (#6803)
  1814. * Service worker js is missing a comma (#6788) (#6795)
  1815. * Set user search base field optional in LDAP (simple auth) edit page (#6779) (#6789)
  1816. * Fix team edit API panic (#6780) (#6785)
  1817. * Minor CSS cleanup for the navbar (#6553) (#6781)
  1818. * Stricter domain name pattern in email regex (#6739) (#6768)
  1819. * Detect and restore encoding and BOM in content (#6727) (#6765)
  1820. * Fix org visibility bug when git cloning (#6743) (#6762)
  1821. * OAuth2 token can be used in basic auth (#6747) (#6761)
  1822. * Fix missing return (#6751) (#6756)
  1823. * Fix sorting repos on org home page with non-admin login (#6741) (#6746)
  1824. * Drop is_bare IDX only when it exists for MySQL and MariaDB (#6736) (#6744)
  1825. * Fix team members API (#6714) (#6729)
  1826. * Load issue attributes when editing an issue with API (#6723) (#6725)
  1827. * Fix config ui error about cache ttl (#6861) (#6865)
  1828. ## [1.8.0](https://github.com/go-gitea/gitea/releases/tag/v1.8.0) - 2019-04-20
  1829. * SECURITY
  1830. * Prevent remote code execution vulnerability with mirror repo URL settings (#6593) (#6594)
  1831. * Resolve 2FA bypass on API (#6676) (#6674)
  1832. * Prevent the creation of empty sessions for non-logged in users (#6690) (#6677)
  1833. * BREAKING
  1834. * Add "ghost" and "notifications" to list of reserved user names. (#6208)
  1835. * Change sqlite DB path default to data directory (#6198)
  1836. * Adds MustChangePassword to user create/edit API (#6193)
  1837. * Disable redirect for i18n (#5910)
  1838. * Releases API paging (#5831)
  1839. * Allow Macaron to be set to log through to gitea.log (#5667)
  1840. * Don't close issues via commits on non-default branch (#5622)
  1841. * FEATURES
  1842. * Add regenerate secret feature for oauth2 (#6291)
  1843. * Expose issue stopwatch toggling via API (#5970)
  1844. * Add other session providers (#5963)
  1845. * Pull request conflict files detection (#5951)
  1846. * Integrate OAuth2 Provider (#5378)
  1847. * Implement "conversation lock" for issue comments (#5073)
  1848. * Feature: Archive repos (#5009)
  1849. * Discord Oauth2 support (#4476)
  1850. * Allow to set organization visibility (public, internal, private) (#1763)
  1851. * Added URL mapping for Release attachments like on github.com (#1707)
  1852. * ENHANCEMENTS
  1853. * Add support for client basic auth for exchanging access tokens (#6293)
  1854. * Add ability to sort issues by due date (#6206) (#6244)
  1855. * Style tweaks to issue selection (#6196)
  1856. * Increase Username and Orgname MaxSize 35 -> 40 (#6178)
  1857. * Coverage profile with multiple packages (#6167)
  1858. * Split setting.go to multiple files (#6154)
  1859. * Allow labels to contain emoji (#6063)
  1860. * Disable git fsck for mirrored repos by default (#6018)
  1861. * Add default time out for git operations (#6015)
  1862. * Split setting.go as multiple files (#6014)
  1863. * Make dashboard navbar and footer full-width (#6013)
  1864. * Add lang specific font stacks for CJK (#6007)
  1865. * Fix header menu misalignment (#6002)
  1866. * Enhance closed PR and Issue status in the list (#6000)
  1867. * Make navbar full width (#5998)
  1868. * Add option to close issues via commit on a non master branch (#5992)
  1869. * Support n as a line highlight prefix (#5987)
  1870. * Search for org repos (#3031) (#5986)
  1871. * Minor UI tweaks (#5980)
  1872. * Use native golang SSH library but ssh-keygen when enable built-in SSH server to remove dependent on that command lines (#5976)
  1873. * Dashboard tweaks (#5974)
  1874. * Fixes for repo topic editor (#5971)
  1875. * Display the branch name in the commit view (#5950)
  1876. * handle milestone events for issues and PR (#5947)
  1877. * Add label names as filter in issue search api (#5946)
  1878. * Repo header tweaks (#5945)
  1879. * Better support for long repo names (#5932)
  1880. * Fix wrapping long code lines (#5927)
  1881. * Change GPG Validation colors and remove inline CSS (#5404) (#5896)
  1882. * Fix "pulls.blocked_by_approvals" text (#5879)
  1883. * Rename reject to 'request changes' (#5858)
  1884. * Move input fields to add members to a team and repos to a team (#5853)
  1885. * Config option to disable automatic repo watching (#5852)
  1886. * New Issue ?body= query (#5851)
  1887. * Add API to list tags (#5850)
  1888. * Pagination for git tree API (#5838)
  1889. * Add InternalTokenURI to load InternalToken from an external file (#5812)
  1890. * Allow markdown files to read from the LFS (#5787)
  1891. * Add the ability to use multiple labels as filters (#5786)
  1892. * Adjust log settings when a user is not found. (#5771)
  1893. * Log IP of failed ssh connection (#5766)
  1894. * Moved defaults in defaults.go to setting.go (#5764)
  1895. * Make DB connect more robust (#5738)
  1896. * Add Default Pull Request Title (#5735)
  1897. * Refactor repo.isBare to repo.isEmpty #5629 (#5714)
  1898. * Add flag to skip repository dumping (#5695)
  1899. * Prioritize "readme.md" (#5691)
  1900. * Improve "Fork button" for guests by showing a pop up asking them to log in before forking (#5690)
  1901. * Allow for user specific themes (#5668)
  1902. * Display branch name in delete branch confirmation modal. (#5654)
  1903. * New API routes added (#5594)
  1904. * Refactor notification for indexer (#5111)
  1905. * Refactor mail notification (#5110)
  1906. * Show email if the authenticated user owns the profile page being requested for (#4981)
  1907. * Optimize pulls merging (#4921)
  1908. * Sort Repositories widget by most recently updated (#3963) (#4599)
  1909. * Allow markdown table to scroll (#4401)
  1910. * Automatically clear stopwatch on merging a PR (#4327)
  1911. * Add the Owner Name to differentiate when merging (#3807)
  1912. * Add title attributes to all items in the repo list viewer (#6258) (#6650)
  1913. * BUGFIXES
  1914. * Fix dropdown icon padding (#6651) (#6654)
  1915. * Fix wrong GPG expire date (#6643) (#6644)
  1916. * Fix forking an empty repository (#6637) (#6653)
  1917. * Remove call to EscapePound .Link as it is already escaped (#6656) (#6666)
  1918. * Properly escape on the redirect from the web editor (#6657) (#6667)
  1919. * Allow resend of confirmation email when logged in (#6482) (#6486)
  1920. * Fix mail notification when close/reopen issue (#6581) (#6588)
  1921. * Change API commit summary to full message (#6591) (#6592)
  1922. * Add option to disable refresh token invalidation (#6584) (#6587)
  1923. * Fix bug user search API pagesize didn't obey ExplorePagingNum (#6579) (#6586)
  1924. * Fix new repo alignment (#6583) (#6585)
  1925. * Prevent server 500 on compare branches with no common history (#6555) (#6558)
  1926. * Properly escape release attachment URL (#6512) (#6523)
  1927. * Hacky fix for alignment of the create-organization dialog (#6455) (#6462)
  1928. * Disable benchmarking during tag events on DroneIO (#6365) (#6366)
  1929. * Make sure units of a team are returned (#6379) (#6381)
  1930. * Don't Unescape redirect_to cookie value (#6399) (#6401)
  1931. * Fix dump table name error and add some test for dump database (#6394) (#6402)
  1932. * Fix migration v82 to ignore unsynced tags between database and git data; Add missing is_archived column on repository table (#6387) (#6403)
  1933. * Display correct error for invalid mirror interval (#6414) (#6429)
  1934. * Clean up ref name rules (#6437) (#6439)
  1935. * Fix Hook & HookList in Swagger (#6432) (#6440)
  1936. * Change order that PostProcess Processors are run (#6445) (#6447)
  1937. * Clean up various use of escape/unescape functions for URL generation (#6334)
  1938. * Return 409 when creating repo if it already exists. (#6330)
  1939. * Add same changes from issues page to milestone->issues page (#6328)
  1940. * Fix ParsePatch function to work with quoted diff --git strings (#6323)
  1941. * Fix reported issue in repo description (#6306)
  1942. * Use url.PathEscape to escape the branchname (#6304)
  1943. * Add robots.txt as reserved username (#6272)
  1944. * Replace linkRegex with xurls library (#6261)
  1945. * Remove visitLinksForShortLinks features (#6257)
  1946. * Add unit types to repo action URL to correctly show 404 when archived (#6247)
  1947. * Check organization visibility before everything else (#6234) (#6235)
  1948. * Prevent double-close of issues (#6233)
  1949. * Override xorm type mapping for U2F counter (#6232)
  1950. * Add isAdmin to user API response (#6231)
  1951. * Update git vendor to fix wrong release commit id and add migrations (#6224)
  1952. * Fix fork button (#6223)
  1953. * Fix renames over redirects (#6216)
  1954. * Fix display dashboard even if require to change password (#6214)
  1955. * Create a repo redirect when transferring ownership (#6210) (#6211)
  1956. * Fix issue update race condition (#6194)
  1957. * Fix bug when migrate repository 500 when repo is existed (#6188)
  1958. * Fix scrollbar always present on page body (#6177)
  1959. * Fix bug when set indexer as db and add tests (#6173)
  1960. * Modify linkRegex to require http|https (#6171)
  1961. * Fix bug user could change private repository to public when force private enabled. (#6156)
  1962. * Fix admin list user/org API (#6143)
  1963. * Make repo creation for API similar to UI (#6142)
  1964. * Make document body a flexbox (#6139)
  1965. * Refactor issue indexer, add some testing and fix a bug (#6131)
  1966. * Load Issue attributes for API call (#6122)
  1967. * Fix bug when update owner team then visit team's repo return 404 (#6119)
  1968. * Fix heatmap and repository menu display in Internet Explorer 9+ (#6117)
  1969. * Show private organization for admin, fix #6111 (#6112)
  1970. * Fix prohibit login check on authorization (#6106)
  1971. * Move to ldap.v3 to fix #5928 (#6105)
  1972. * Remove use MakeAssigneeList in webhooks to fix deadlock (#6102)
  1973. * Allow display of LFS stored Readme.md on directory page (#6073) (#6099)
  1974. * Make sure labels are actually returned (#6053)
  1975. * Fix panic: template: repo/issue/list:210: unexpected "=" in operand (#6041)
  1976. * After deleting a repo on admin panel, UI should remember the last sort type (#6033)
  1977. * Default create repository on organisation on its dashboard (#6026)
  1978. * Swagger: Remove spaces in MergePullRequestOption enum (#6016)
  1979. * Fix metrics auth token detection (#6006)
  1980. * Fix repo header issues (#5995)
  1981. * Fix bug when deleting a linked account will removed all (#5989)
  1982. * Make organization dropdown scrollable when using mouse wheel (#5988)
  1983. * Fix empty ssh key importing in ldap (#5984)
  1984. * Admin config page mailertype setting option update (#5973)
  1985. * Fix redirect loop during forced password change (#5965)
  1986. * Show user who created the repository instead of the organisation in action feed (#5948)
  1987. * Remove all CommitStatus when a repo is deleted (#5940)
  1988. * Fix ssh deploy and user key constraints (#1357) (#5939)
  1989. * Fix log output (#5938)
  1990. * Set PusherName and PusherID to owner on deploy key to fix pushing with deploy keys (#5935)
  1991. * Fix compare button (#5929)
  1992. * Fix bug when read public repo lfs file (#5912)
  1993. * Only allow local login if password is non-empty (#5906)
  1994. * Recover panic in orgmode.Render if bad orgfile (#4982) (#5903)
  1995. * Provide better panic handling (#5902)
  1996. * Respect value of REQUIRE_SIGNIN_VIEW (#5901)
  1997. * Show a 404 not a 500 if a repo does not exist (#5900)
  1998. * Ensure repo is loaded in mailer (Completely fix #5891) (#5895)
  1999. * Ensure issue.Poster is loaded in mailIssueCommentToParticipants (#5891)
  2000. * Correct footer height if screen-width is to small (fixes #5878) (#5889)
  2001. * In gitea serv switch off console logger to fix #5866 (#5887)
  2002. * Don't allow pull requests to be created on an archived repository (#5883)
  2003. * Support reviews on a deleted file path (#5880)
  2004. * Fix compare button on upstream repo leading to 404 (#5877)
  2005. * Fix null pointer on not logged in attempt to Sudo (#5872)
  2006. * Fix new release creation API to allow empty target (#5870)
  2007. * Fix an error while adding a dependency via UI. (#5862)
  2008. * Fix failing migration v67 (#5849)
  2009. * Fix delete correct temp directory (#5839)
  2010. * Make sure .git/info is created before generating .git/info/sparse-che… (#5825)
  2011. * Fix topics saving internal error and disable for archived repos (#5821)
  2012. * Fix TLS errors when using acme/autocert for local connections (#5820)
  2013. * When creating new repository fsck option should be enabled (#5817)
  2014. * Request for public keys only if LDAP attribute is set (#5816)
  2015. * Fix serving of raw wiki files other than .md (#5814)
  2016. * Fix migration 78 error mssql (#5791)
  2017. * Disallow empty titles (#5785)
  2018. * Fix the v78 migration script (#5776)
  2019. * Ensure valid git author names passed in signatures (#5774)
  2020. * Fix wrong assumption where a user is always said to have unassigned (her)himself (#5769)
  2021. * Upgrade go-sql-driver/mysql to fix invalid connection error (#5748)
  2022. * Fixing PostgreSQL dump creation (#5747)
  2023. * Add proper CORS preflight origin validation (#5740)
  2024. * Disable auto-migrate in docker container (#5730)
  2025. * In basic auth check for tokens before call UserSignIn (#5725)
  2026. * Pooled and buffered gzip implementation (#5722)
  2027. * Ensure that sessions are passed into queries that could use the database to prevent deadlocks (#5718)
  2028. * Keep file permissions during database migration (#5707)
  2029. * Use correct value for "MSpan Structures Obtained" #4742 (#5706)
  2030. * Refactor editor upload, update and delete to use git plumbing and add LFS support (#5702)
  2031. * Update xorm to fix issue #5659 and #5651 (#5680)
  2032. * Fix public will not be reused as public key after deleting as deploy key (#5671)
  2033. * When redirecting, clean the path (#5669)
  2034. * Don't list an issue on its own dependency list UI. (#5658)
  2035. * Fix commit page showing status for current default branch (#5649) (#5650)
  2036. * Only count users own actions for heatmap contributions (#5647)
  2037. * Fix sqlite deadlock when assigning to a PR (#5640)
  2038. * Refactor issue indexer (#5363)
  2039. * TESTING
  2040. * Run benchmark at tag to track performances (#6035)
  2041. * Add test environment for MySQL8 (#5234)
  2042. * BUILD
  2043. * Use go 1.12 for tests and deprecate go 1.9 (#6186)
  2044. * Makefile changes for Windows and easier development (#6103)
  2045. * Update bleve dependency to latest master revision (#6100)
  2046. * Switch to more recent build of xgo (#6070)
  2047. * Add autoprefixer to css build (#6029)
  2048. * Update the version of less (#6010)
  2049. * Make log mailer for testing (#5893)
  2050. * DOCS
  2051. * Add more tests and docs for issue indexer, add db indexer type for searching from database (#6144)
  2052. * update default value of `--must-change-password` cli flag (#6032)
  2053. * Update and expand information about building Gitea (#6019)
  2054. * Update U2F Section of app.ini.sample (#5994)
  2055. * Update swagger for release API pagination (#5841)
  2056. * Added docs for the tree api (#5834)
  2057. * MISC
  2058. * Add single commit API support (#5843)
  2059. * Add missing GET teams endpoints (#5382)
  2060. * Migrate database if app.ini found (#5290)
  2061. ## [1.7.6](https://github.com/go-gitea/gitea/releases/tag/v1.7.6) - 2019-04-12
  2062. * SECURITY
  2063. * Prevent remote code execution vulnerability with mirror repo URL settings (#6593) (#6595)
  2064. * BUGFIXES
  2065. * Allow resend of confirmation email when logged in (#6482) (#6487)
  2066. ## [1.7.5](https://github.com/go-gitea/gitea/releases/tag/v1.7.5) - 2019-03-27
  2067. * BUGFIXES
  2068. * Fix unitTypeCode not being used in accessLevelUnit (#6419) (#6423)
  2069. * Fix bug where manifest.json was being requested without cookies and continuously creating new sessions (#6372) (#6383)
  2070. * Fix ParsePatch function to work with quoted diff --git strings (#6323) (#6332)
  2071. ## [1.7.4](https://github.com/go-gitea/gitea/releases/tag/v1.7.4) - 2019-03-12
  2072. * SECURITY
  2073. * Fix potential XSS vulnerability in repository description. (#6306) (#6308)
  2074. * BUGFIXES
  2075. * Fix wrong release commit id (#6224) (#6300)
  2076. * Fix panic on empty signed commits (#6292) (#6300)
  2077. * Fix organization dropdown not being scrollable when using mouse wheel (#5988) (#6246)
  2078. * Fix displaying dashboard even if required to change password (#6214) (#6215)
  2079. ## [1.7.3](https://github.com/go-gitea/gitea/releases/tag/v1.7.3) - 2019-02-27
  2080. * BUGFIXES
  2081. * Fix server 500 when trying to migrate to an already existing repository (#6188) (#6197)
  2082. * Load Issue attributes for API /repos/{owner}/{repo}/issues/{index} (#6122) (#6185)
  2083. * Fix bug whereby user could change private repository to public when force private enabled. (#6156) (#6165)
  2084. * Fix bug when update owner team then visit team's repo return 404 (#6119) (#6166)
  2085. * Fix heatmap and repository menu display in Internet Explorer 9+ (#6117) (#6137)
  2086. * Fix prohibit login check on authorization (#6106) (#6115)
  2087. * Fix LDAP protocol error regression by moving to ldap.v3 (#6105) (#6107)
  2088. * Fix deadlock in webhook PullRequest (#6102) (#6104)
  2089. * Fix redirect loop when password change is required and Gitea is installed as a suburl (#5965) (#6101)
  2090. * Fix compare button regression (#5929) (#6098)
  2091. * Recover panic in orgmode.Render if bad orgfile (#4982) (#5903) (#6097)
  2092. ## [1.7.2](https://github.com/go-gitea/gitea/releases/tag/v1.7.2) - 2019-02-14
  2093. * BUGFIXES
  2094. * Remove all CommitStatus when a repo is deleted (#5940) (#5941)
  2095. * Fix notifications on pushing with deploy keys by setting hook environment variables (#5935) (#5944)
  2096. * Silence console logger in gitea serv (#5887) (#5943)
  2097. * Handle milestone webhook events for issues and PR (#5947) (#5955)
  2098. * Show user who created the repository instead of the organization in action feed (#5948) (#5956)
  2099. * Fix ssh deploy and user key constraints (#1357) (#5939) (#5966)
  2100. * Fix bug when deleting a linked account will removed all (#5989) (#5990)
  2101. * Fix empty ssh key importing in ldap (#5984) (#6009)
  2102. * Fix metrics auth token detection (#6006) (#6017)
  2103. * Create repository on organisation by default on its dashboard (#6026) (#6048)
  2104. * Make sure labels are actually returned in API (#6053) (#6059)
  2105. * Switch to more recent build of xgo (#6070) (#6072)
  2106. * In basic auth check for tokens before call UserSignIn (#5725) (#6083)
  2107. ## [1.7.1](https://github.com/go-gitea/gitea/releases/tag/v1.7.1) - 2019-01-31
  2108. * SECURITY
  2109. * Disable redirect for i18n (#5910) (#5916)
  2110. * Only allow local login if password is non-empty (#5906) (#5908)
  2111. * Fix go-get URL generation (#5905) (#5907)
  2112. * BUGFIXES
  2113. * Fix TLS errors when using acme/autocert for local connections (#5820) (#5826)
  2114. * Request for public keys only if LDAP attribute is set (#5816) (#5819)
  2115. * Fix delete correct temp directory (#5840) (#5839)
  2116. * Fix an error while adding a dependency via UI (#5862) (#5876)
  2117. * Fix null pointer in attempt to Sudo if not logged in (#5872) (#5884)
  2118. * When creating new repository fsck option should be enabled (#5817) (#5885)
  2119. * Prevent nil dereference in mailIssueCommentToParticipants (#5891) (#5895) (#5894)
  2120. * Fix bug when read public repo lfs file (#5913) (#5912)
  2121. * Respect value of REQUIRE_SIGNIN_VIEW (#5901) (#5915)
  2122. * Fix compare button on upstream repo leading to 404 (#5877) (#5914)
  2123. * DOCS
  2124. * Added docs for the tree api (#5835)
  2125. * MISC
  2126. * Include Go toolchain to --version (#5832) (#5830)
  2127. ## [1.7.0](https://github.com/go-gitea/gitea/releases/tag/v1.7.0) - 2019-01-22
  2128. * SECURITY
  2129. * Do not display the raw OpenID error in the UI (#5705) (#5712)
  2130. * When redirecting clean the path to avoid redirecting to external site (#5669) (#5679)
  2131. * Prevent DeleteFilePost doing arbitrary deletion (#5631)
  2132. * BREAKING
  2133. * Restrict permission check on repositories and fix some problems (#5314)
  2134. * Show only opened milestones on issues page milestone filter (#5051)
  2135. * FEATURES
  2136. * Implement git refs API for listing references (branches, tags and other) (#5354)
  2137. * Approvals at Branch Protection (#5350)
  2138. * Add raw blob endpoint to get objects by SHA ID (#5334)
  2139. * Add api for user to create org (#5268)
  2140. * Create AuthorizedKeysCommand (#5236)
  2141. * User action heatmap (#5131)
  2142. * Refactor heatmap to vue component (#5401)
  2143. * Webhook for Pull Request approval/rejection (#5027)
  2144. * Add command for migrating database (#4954)
  2145. * Search keyword by splitting provided values by , (#4939)
  2146. * Create Progressive Web App (#4730)
  2147. * Give user a link to create PR after push (#4716)
  2148. * Add rebase with merge commit merge style (#3844) (#4052)
  2149. * BUGFIXES
  2150. * Disallow empty titles (#5785) (#5794)
  2151. * Fix sqlite deadlock when assigning to a PR (#5640) (#5642)
  2152. * Don't close issues via commits on non-default branch. (#5622) (#5643)
  2153. * Fix commit page showing status for current default branch (#5650) (#5653)
  2154. * Only count users own actions for heatmap contributions (#5647) (#5655)
  2155. * Update xorm to fix issue postgresql dumping issues (#5680) (#5692)
  2156. * Use correct value for "MSpan Structures Obtained" (#5706) (#5716)
  2157. * Fix bug on modifying sshd username (#5624)
  2158. * Delete tags in mirror which are removed for original repo. (#5609)
  2159. * Fix wrong text getting saved on editing second comment on an issue. (#5608)
  2160. * Fix nil pointer when adding a due date (#5587)
  2161. * Fix type mismatch of format string (#5574)
  2162. * Fix bug on upload file name (#5571)
  2163. * Issue is not overdue when it is on the same date #5566 (#5568)
  2164. * Fix indexer reindex bug when gitea restart (#5563)
  2165. * Fix table name typo on SQL (#5562)
  2166. * Synchronize SSH keys on login with LDAP + Fix SQLite deadlock on ldap ssh key deletion (#5557)
  2167. * Fix makefile generate buildstep (#5556)
  2168. * Fix nil pointer base branch bug (#5555)
  2169. * Fix permission check on api create org (#5523)
  2170. * Fix detect force push failure on deletion of protected branches (#5522)
  2171. * Fix approvals limitation (#5521)
  2172. * Fix bug when a read perm user to edit his issue (#5516)
  2173. * Fix adding reaction fail for read permission user (#5515)
  2174. * Fixing MSSQL timestamp type (#5511)
  2175. * Fix forgot deletion of notification when delete repository (#5506)
  2176. * Fix empty wiki (#5504)
  2177. * Fix clone wiki failed via ssh (#5503)
  2178. * Fix code review on mssql (#5502)
  2179. * Fix lfs version check warning log when using ssh protocol (#5501)
  2180. * Fix topic name length on database (#5493)
  2181. * Ensure that the `closed_at` is set for closed issues (#5449)
  2182. * Admin should be able to delete repos via the API even if he is not a member of the organization (#5443)
  2183. * Word-Break the WebHook url to prevent a ui-break (#5432)
  2184. * Fix forgot removed records when deleting user (#5429)
  2185. * Fix repository deletion when there is large number of issues in it (#5426)
  2186. * Fix heatmap colors for Chrome/Safari (#5421)
  2187. * Fix password variable shadowing (#5405)
  2188. * Fix dependent issue searching when gitea is run in subpath (#5392)
  2189. * Don't force a password change for the admin user when creating an account via cli (#5391)
  2190. * API: '/orgs/:org/repos': return private repos with read access (#5383)
  2191. * Don't send assign webhooks when creating issue (#5365)
  2192. * Removing Labels via EditPullRequest API (#5348)
  2193. * Migration fixes for gogs (0.11.66) to gitea (1.6.0) #5318 (#5341)
  2194. * Fix bug when users have serval teams with different units on different repositories (#5307)
  2195. * Fix U2F if gitea is configured in subpath (#5302)
  2196. * Fix file edit change preview functionality (#5300)
  2197. * Update gitignore list (#5258)
  2198. * Fixed heatmap not working in mssql (#5248)
  2199. * Fixed wrong api request url for instances running in subfolders (#5247)
  2200. * Fix compatibility heatmap with mysql 8 (#5232)
  2201. * Fix data race on migrate repository (#5224)
  2202. * Fix sqlite and mssql lock (#5214)
  2203. * Fix sqlite lock (#5210)
  2204. * Fix: Accept web-command cli flags if web-command is commited (#5200)
  2205. * Fix: Add secret to all webhook's payload where it has been missing (#5199)
  2206. * Fix race on updatesize (#5190)
  2207. * Fix create team, update team missing units (#5188)
  2208. * Fix sqlite lock (#5184 & #5176)
  2209. * Fix showing pull request link when delete a branch (#5166)
  2210. * Fix JSON result of empty array in heatmap data array (#5154)
  2211. * Update build tags for sqlite_unlock notify (#5144)
  2212. * This commit will reduce join star, repo_topic, topic tables on repo search, so that fix extra columns problem on mssql (#5136)
  2213. * Fix deadlock when sqlite (#5118)
  2214. * Add comment replies (#5104)
  2215. * Fix home page template regression (#5102)
  2216. * Fix regex to support optional end line of old section in diff hunk (#5096)
  2217. * LDAP via simple auth separate bind user and search base (#5055)
  2218. * Fix markdown image with link (#4675)
  2219. * Fix to 3819 - Filtering issues by tags on main screen issues (#3824)
  2220. * ENHANCEMENTS
  2221. * Delete organization endpoint added (#5601)
  2222. * Update Licenses (#5558)
  2223. * Support reverse proxy providing email (#5554)
  2224. * Add git protocol v2 support via SSH on Docker image (#5520)
  2225. * Add tests for api user orgs (#5494)
  2226. * Allow link verification for services like Mastodon (#5481)
  2227. * Improve team members and repositories settings UI (#5457)
  2228. * Remove the required class from optional ssh port in installation page (#5428)
  2229. * Explicitly disable Git credential helper (#5367)
  2230. * Setting Labels via EditPullRequest API (#5347)
  2231. * Implement pasting image from clipboard for browsers that supports that (#5317)
  2232. * Milestone issues and pull requests (#5293)
  2233. * Support envs on external render commands (#5278)
  2234. * Add option to disable automatic mirror syncing. (#5242)
  2235. * Remove unused db init on commands serv, update, hooks (#5225)
  2236. * Serve audio files using HTML5 audio tag (#5221)
  2237. * Pass link prefixes to external markup parsers (#5201)
  2238. * Add AutoHead functionality. (#5186)
  2239. * Fix emojis not showing in commit messages (#5168)
  2240. * Block registration based on email domain (#5157)
  2241. * Update vendor/go-sqlite3 (#5133 & #5162)
  2242. * Update x/net lib (#5169)
  2243. * Show review summary in pull requests (#5132)
  2244. * Use type switch (#5122)
  2245. * Remove duplicated if bodies (#5121)
  2246. * Remove check for negative length (#5120)
  2247. * Make switch more clear (#5119)
  2248. * Use named const instead of a raw string (#5115)
  2249. * Fix issue where ecdsa and other key types are not synced from LDAP (#5092) (#5094)
  2250. * Refactor: err != nil check, just return error instead (#5093)
  2251. * Add notification interface and refactor UI notifications (#5085)
  2252. * Use APP_NAME on home page (#5048)
  2253. * Explicitly decide whether to use TLS in mailer's configuration (#5024)
  2254. * Generate random password (#5023)
  2255. * UX of link account (Step 1) (#5006)
  2256. * Make sure argsSet verifies string isn't empty too (#4980)
  2257. * Improve performance of dashboard (#4977)
  2258. * Keys API changes (#4960)
  2259. * Add must-change-password flag to cli for creating a user (#4955)
  2260. * Use native go method to get current user rather than environment variable (#4930)
  2261. * Make gitea serv use api/internal (#4886)
  2262. * Add support for search by uid (#4876)
  2263. * Allow to add organization members as collaborators on organization owned repositories (#4748)
  2264. * TESTING
  2265. * Kill testing processes if the test takes too long (#5174)
  2266. * Update outdated Go toolchain version for .drone.yml (#5146)
  2267. * Increase the retry limit to 20 times and the interval to 200ms (#5134)
  2268. * Retry test-fixtures loading in case of transaction rollback (#5125)
  2269. * Added test environment for mssql (#4282)
  2270. * BUILD
  2271. * Replace lint to revive (#5422)
  2272. * Update golang version in Dockerfile (#5246)
  2273. * DOCS
  2274. * Typo in routers/api/v1/org/org.go fixed. (#5598)
  2275. * Update the docs for sqlite_unlock_notify (#5145)
  2276. * CN translation of docs part (#5049)
  2277. * Kubernetes deployment file (#5046)
  2278. * MISC
  2279. * Upgrade alpine to 3.8 (#5423)
  2280. * Git-Trees API (#5403)
  2281. * Only chown directories during docker setup if necessary. Fix #4425 (#5064)
  2282. ## [1.6.4](https://github.com/go-gitea/gitea/releases/tag/v1.6.4) - 2019-01-15
  2283. * BUGFIX
  2284. * Fix SSH key now can be reused as public key after deleting as deploy key (#5671) (#5685)
  2285. * When redirecting clean the path to avoid redirecting to external site (#5669) (#5703)
  2286. * Fix to use correct value for "MSpan Structures Obtained" (#5706) (#5715)
  2287. ## [1.6.3](https://github.com/go-gitea/gitea/releases/tag/v1.6.3) - 2019-01-04
  2288. * SECURITY
  2289. * Prevent DeleteFilePost doing arbitrary deletion (#5631)
  2290. * BUGFIX
  2291. * Fix wrong text getting saved on editing second comment on an issue (#5608)
  2292. ## [1.6.2](https://github.com/go-gitea/gitea/releases/tag/v1.6.2) - 2018-12-21
  2293. * SECURITY
  2294. * Sanitize uploaded file names (#5571) (#5573)
  2295. * HTMLEncode user added text (#5570) (#5575)
  2296. * BUGFIXES
  2297. * Fix indexer reindex bug when gitea restart (#5563) (#5564)
  2298. * Remove a double slash in the HTTPS redirect with Let's Encrypt (#5537) (#5539)
  2299. * Fix bug when a read perm user to edit his issue (#5516) (#5534)
  2300. * Detect force push failure on deletion of protected branches (#5522) (#5531)
  2301. * Let's Encrypt handler listens on correct port for certificate validation (#5525) (#5527)
  2302. * Fix forgot deletion of notification when delete repository (#5506) (#5514)
  2303. * Fix undeleted content when deleting user (#5429) (#5509)
  2304. * Fix empty wiki (#5504) (#5508)
  2305. ## [1.6.1](https://github.com/go-gitea/gitea/releases/tag/v1.6.1) - 2018-12-08
  2306. * BUGFIXES
  2307. * Fix dependent issue searching when gitea is run in subpath (#5392) (#5400)
  2308. * API: '/orgs/:org/repos': return private repos with read access (#5393)
  2309. * Fix repository deletion when there is large number of issues in it (#5426) (#5434)
  2310. * Word-break the WebHook url to prevent a ui-break (#5445)
  2311. * Admin should be able to delete repos via the API even if they are not a member of the organization (#5443) (#5447)
  2312. * Ensure that the `closed_at` is set for closed (#5450)
  2313. * Fix topic name length on database (#5493) (#5495)
  2314. ## [1.6.0](https://github.com/go-gitea/gitea/releases/tag/v1.6.0) - 2018-11-22
  2315. * BREAKING
  2316. * Respect email privacy option in user search via API (#4512)
  2317. * Simply remove tidb and deps (#3993)
  2318. * Swagger.v1.json template (#3572)
  2319. * SECURITY
  2320. * Add CSRF checking to reqToken and add reqToken to admin API routes (#5272) (#5250)
  2321. * Improve URL validation for external wiki and external issues (#4710)
  2322. * Make cookies HttpOnly and obey COOKIE_SECURE flag (#4706)
  2323. * Don't disclose emails of all users when sending out emails (#4664)
  2324. * Check that repositories can only be migrated to own user or organizations (#4366)
  2325. * FEATURES
  2326. * Add comment replies (#5147) (#5104)
  2327. * Pull request review/approval and comment on code (#3748)
  2328. * Added dependencies for issues (#2196) (#2531)
  2329. * Add the ability to have built in themes in Gitea and provide dark theme arc-green (#4198)
  2330. * Add sudo functionality to the API (#4809)
  2331. * Add oauth providers via cli (#4591)
  2332. * Disable merging a WIP Pull request (#4529)
  2333. * Force user to change password (#4489)
  2334. * Add letsencrypt to Gitea (#4189)
  2335. * Add push webhook support for mirrored repositories (#4127)
  2336. * Add csv file render support defaultly (#4105)
  2337. * Add Recaptcha functionality to Gitea (#4044)
  2338. * ENHANCEMENTS
  2339. * Fix milestones sorted wrongly (#4987)
  2340. * Allow api to create tags for releases if they don't exist (#4890)
  2341. * Fix #4877 to follow the OpenID Connect Audiences spec (#4878)
  2342. * Enforce token on api routes [fixed critical security issue #4357] (#4840)
  2343. * Update legacy branch and tag URLs in dashboard to new format (#4812)
  2344. * Slack webhook channel name cannot be empty or just contain an hashtag (#4786)
  2345. * Add whitespace handling to PR-comparsion (#4683)
  2346. * Make reverse proxy auth optional (#4643)
  2347. * MySQL TLS (#4642)
  2348. * Make sure to set PR split view when creating/previewing a pull request (#4617)
  2349. * Log user in after a successful sign up (#4615)
  2350. * Fix typo IsPullReuqestBroken -> IsPullRequestBroken (#4578)
  2351. * Allow admin toggle forcing a password change for newly created users (#4563)
  2352. * Update jQuery to v1.12.4 (#4551)
  2353. * Env var GITEA_PUSHER_EMAIL (#4516)
  2354. * Feat(repo): support search repository by topic name (#4505)
  2355. * Small improvements to dependency UI (#4503)
  2356. * Make max commits in graph configurable (#4498)
  2357. * Add valid for lfs oid (#4461)
  2358. * Add shortcut to save wiki page (#4452)
  2359. * Allow administrator to create repository for any organization (#4368)
  2360. * Fix repository last updated time update when delete a user who watched the repo (#4363)
  2361. * Switch plaintext scratch tokens to use hash instead (#4331)
  2362. * Increase default TOTP secret size to 320 bits (#4287)
  2363. * Keep preseeded database password (#4284)
  2364. * Implemented hover text showing user FullName (#4261)
  2365. * Add ability to delete a token (#4235)
  2366. * Fix typos in i18n variable names. (#4080)
  2367. * Api: repos/search: add parameters to control the sort order (#3964)
  2368. * Add missing path in the Docker app.ini template (#2181)
  2369. * Add file name and branch to page title (#4902)
  2370. * Offline use of google fonts (#4872)
  2371. * Add missing History link to directory listings v2 (#4829)
  2372. * Locale for Edit and Remove due date issue (#4802)
  2373. * Disable 'May Import Local Repository' when is disabled by setting (Is… (#4780)
  2374. * API /admin/users/{username} missing parameter (#4775)
  2375. * Display error when adding a user to a team twice (#4746)
  2376. * Remove UsePrivilegeSeparation from the Docker sshd_config, see #2876 (#4722)
  2377. * Focus title input when clicking helper link (#4696)
  2378. * Add vendor to user reserved words and format words list according alphabet (#4685)
  2379. * Add gitea/issues link to 500 page (#4654)
  2380. * Hide home button when landing page is not set to home (#4651)
  2381. * Remove link to GitHub issues in 404 template (#4639)
  2382. * Cmd/serve: pprof cpu and memory profile dumps to disk (#4560)
  2383. * Add flash message after an account has been successfully activated (#4510)
  2384. * Prevent html entity escaping on delete branch (#4471)
  2385. * Locale for button Edit on protected branch (#4442)
  2386. * Update notification icon (#4343)
  2387. * Added front-end topics validation (#4316)
  2388. * Don't display buttons if there are no system notifications (#4280)
  2389. * Issue due date api (#3890)
  2390. * BUGFIXES
  2391. * dont' send assign webhooks when creating issue (#5365)
  2392. * Fix create team, update team missing units (#5188)
  2393. * Fix file edit change preview functionality (#5300)
  2394. * *ix bug when users have serval teams with different units on different repositories (#5307)
  2395. * Fix U2F if gitea is configured in subpath (#5302)
  2396. * Fix markdown image with link (#4675)
  2397. * Remove maxlines option for file logger (#5282)
  2398. * Fix wrong api request url for instances running in subfolders (#5261) (#5247)
  2399. * Accept web-command cli flags if web-command is commited (#5245) (#5200)
  2400. * Reduce join star, repo_topic, topic tables on repo search, to resolve extra columns problem on MSSQL (#5136) (#5229)
  2401. * Fix data race on migrate repository (#5224) (#5230)
  2402. * Add secret to all webhook's payload where it has been missing (#5208) (#5199)
  2403. * Fix sqlite and MSSQL lock (#5210) (#5223) (#5214) (#5218) (#5176) (#5179)
  2404. * Fix race on updatesize (#5190) (#5215)
  2405. * Fix filtering issues by tags on main screen issues (#5219) (#3824)
  2406. * Fix SQL quoting (#5137) (#5117)
  2407. * Fix regex to support optional end line of old section in diff hunk (#5097) (#5096)
  2408. * Fix release creation via API (#5076)
  2409. * Remove links from topics in edit mode (#5026)
  2410. * Fix missing AppSubUrl in few more templates (fixup) (#5021)
  2411. * Fix missing AppSubUrl in some templates (#5020)
  2412. * Hide outdated comments in file view (#5017)
  2413. * Upgrade gopkg.in/testfixtures.v2 (#4999)
  2414. * Disable debug routes unless PPROF is enabled in configuration (#4995)
  2415. * Fix user menu item styling (#4985)
  2416. * Fix layout of the topics editing form (#4971)
  2417. * Fix null pointer dereference in ParseCommitWithSignature (#4962)
  2418. * Fix url in discord webhook (#4953)
  2419. * Detect charset and convert non UTF-8 files for display (#4950)
  2420. * Make sure to catch the right error so it is displayed on the UI (#4945)
  2421. * Fix(topics): don't redirect to explore page. (#4938)
  2422. * Fix bug forget to remove Stopwatch when remove repository (#4928)
  2423. * Fix bug when repo remained bare if multiple branches pushed in single push (#4923)
  2424. * Fix: Crippled diff (#4726) (#4900)
  2425. * Fix trimming of markup section names (#4863)
  2426. * Issues api allow pulls and fix #4832 (#4852)
  2427. * Do not autocreate directory for new users/orgs (#4828) (#4849)
  2428. * Fix redirect with non-ascii branch names (#4764) (#4810)
  2429. * Fix missing release title in webhook (#4783) (#4796)
  2430. * User shouldn't be able to approve or reject his/her own PR (#4729)
  2431. * Make sure to reset commit count in the cache on mirror syncing (#4720)
  2432. * Fixed bug where team with admin privelege type doesn't get any unit (#4719)
  2433. * Fix incorrect caption of webhook setting (#4701) (#4717)
  2434. * Allow WIP marker to contains < or > (#4709)
  2435. * Hide org/create menu item in Dashboard if user has no rights (#4678) (#4680)
  2436. * Site admin could create repos even MAX_CREATION_LIMIT=0 (#4645)
  2437. * Fix custom templates being ignored (#4638)
  2438. * Fix starring icon after semantic ui update (#4628)
  2439. * Fix Split-View line adjustment (#4622)
  2440. * Fix integer constant overflows in tests (#4616)
  2441. * Push whitelist now doesn't apply to branch deletion (#4601) (#4607)
  2442. * Fix bugs when too many IN variables (#4594)
  2443. * Fix failure on creating pull request with assignees (#4419) (#4583)
  2444. * Fix panic issue on update avatar email (#4580) (#4581)
  2445. * Fix status code label for a successful webhook (#4540)
  2446. * An inactive user shouldn't be able to be added as a collaborator (#4535)
  2447. * Don't fail silently if trying to add a collaborator twice (#4533)
  2448. * Fix incorrect MergeWhitelistTeamIDs check in CanUserMerge function (#4519) (#4525)
  2449. * Fix out-of-transaction query in removeOrgUser (#4521) (#4522)
  2450. * Fix migration from older releases (#4495)
  2451. * Accept 'Data:' in commit graph (#4487)
  2452. * Update xorm to latest version and fix correct `user` table referencing in sql (#4473)
  2453. * Relative URLs for LibreJS page (#4460)
  2454. * Redirect to correct page after using scratch token (#4458)
  2455. * Fix column droping for MSSQL that need new transaction for that (#4440)
  2456. * Replace src with raw to fix image paths (#4377)
  2457. * Add default merge options when creating new repository (#4369)
  2458. * Fix docker build (#4358)
  2459. * Fixes repo membership check in API (#4341)
  2460. * Dep upgrade mysql lib (#4161)
  2461. * Fix some issues with special chars in branch names (#3767)
  2462. * Responsive design fixes (#4508)
  2463. * TRANSLATION
  2464. * Fix punctuation in English translation (#4958)
  2465. * Fix translation (#4355)
  2466. ## [1.5.3](https://github.com/go-gitea/gitea/releases/tag/v1.5.3) - 2018-10-31
  2467. * SECURITY
  2468. * Fix remote command execution vulnerability in upstream library (#5177) (#5196)
  2469. ## [1.5.2](https://github.com/go-gitea/gitea/releases/tag/v1.5.2) - 2018-10-09
  2470. * SECURITY
  2471. * Enforce token on api routes (#4840) (#4905)
  2472. * BUGFIXES
  2473. * Remove links from topics in edit mode (#5030)
  2474. * Detect charset and convert non UTF-8 files for display (#4950) (#4994)
  2475. * Fix layout of the topics editing form (#4971) (#4993)
  2476. * Fix null pointer dereference in ParseCommitWithSignature (#4964)
  2477. * Fix url in discord webhook (#4951)
  2478. * Fix font-cropping UI bug in diff (#4726) (#4929)
  2479. * Fix bug forget to remove Stopwatch when remove repository (#4933)
  2480. * Fix bug when repo remained bare if multiple branches pushed (#4927)
  2481. * Fix redirect with non-ascii branch names (#4764) (#4887)
  2482. * Fix issues api allow pulls (#4852) (#4862)
  2483. * Fix trimming of markup section names (#4864)
  2484. ## [1.5.1](https://github.com/go-gitea/gitea/releases/tag/v1.5.1) - 2018-09-03
  2485. * SECURITY
  2486. * Don't disclose emails of all users when sending out emails (#4784)
  2487. * Improve URL validation for external wiki and external issues (#4710) (#4740)
  2488. * Make cookies HttpOnly and obey COOKIE_SECURE flag (#4706) (#4707)
  2489. * BUGFIXES
  2490. * Fix missing release title in webhook (#4783) (#4800)
  2491. * Make sure to reset commit count in the cache on mirror syncing (#4770)
  2492. * Fixed bug where team with admin privelege type doesn't get any unit (#4759)
  2493. * Fix failure on creating pull request with assignees (#4583) (#4727)
  2494. * Hide org/create menu item in Dashboard if user has no rights (#4678) (#4686)
  2495. * TRANSLATION
  2496. * Fix incorrect caption of webhook setting (#4701) (#4718)
  2497. ## [1.5.0](https://github.com/go-gitea/gitea/releases/tag/v1.5.0) - 2018-08-10
  2498. * SECURITY
  2499. * Check that repositories can only be migrated to own user or organizations (#4366) (#4370)
  2500. * Limit uploaded avatar image-size to 4096px x 3072px by default (#4353)
  2501. * Do not allow to reuse TOTP passcode (#3878)
  2502. * BUGFIXES
  2503. * Fix column droping for MSSQL that need new transaction for that (#4440) (#4484)
  2504. * Redirect to correct page after using scratch token (#4458) (#4472)
  2505. * Replace src with raw to fix image paths (#4377) (#4386)
  2506. * Fixes repo membership check in API (#4341) (#4379)
  2507. * Add default merge options when adding new repository (#4369) (#4373)
  2508. * Fix repository last updated time update when delete a user who watched the repo (#4363) (#4371)
  2509. * Fix html entity escaping in branch deletion message (#4471) (#4485)
  2510. * Fix out-of-transaction query in removeOrgUser (#4521) (#4524)
  2511. * Fix incorrect MergeWhitelistTeamIDs check in CanUserMerge function (#4519)
  2512. * Fix panic issue on update avatar email (#4580) (#4590)
  2513. * Fix bugs when too many IN variables (#4594) (#4597)
  2514. * Push whitelist now doesn't apply to branch deletion (#4601) (#4640)
  2515. * Site admin could create repos even MAX_CREATION_LIMIT=0 (#4645) (#4650)
  2516. * FEATURES
  2517. * Add cli commands to regen hooks & keys (#3979)
  2518. * Add support for FIDO U2F (#3971)
  2519. * Added user language setting (#3875)
  2520. * LDAP Public SSH Keys synchronization (#1844)
  2521. * Add topic support (#3711)
  2522. * Multiple assignees (#3705)
  2523. * Add protected branch whitelists for merging (#3689)
  2524. * Global code search support (#3664)
  2525. * Add label descriptions (#3662)
  2526. * Add issue search via API (#3612)
  2527. * Add repository setting to enable/disable health checks (#3607)
  2528. * Emoji Autocomplete (#3433)
  2529. * Implements generator cli for secrets (#3531)
  2530. * ENHANCEMENTS
  2531. * Add more webhooks support and refactor webhook templates directory (#3929)
  2532. * Add new option to allow only OAuth2/OpenID user registration (#3910)
  2533. * Add option to use paged LDAP search when synchronizing users (#3895)
  2534. * Symlink icons (#1416)
  2535. * Improve release page UI (#3693)
  2536. * Add admin dashboard option to run health checks (#3606)
  2537. * Add branch link in branch list (#3576)
  2538. * Reduce sql query times in retrieveFeeds (#3547)
  2539. * Option to enable or disable swagger endpoints (#3502)
  2540. * Add missing licenses (#3497)
  2541. * Reduce repo indexer disk usage (#3452)
  2542. * Enable caching on assets and avatars (#3376)
  2543. * Add repository search ordered by stars/forks. Forks column in admin repo list (#3969)
  2544. * Add Environment Variables to Docker template (#4012)
  2545. * LFS: make HTTP auth period configurable (#4035)
  2546. * Add config path as an optionial flag when changing pass via CLI (#4184)
  2547. * Refactor User Settings sections (#3900)
  2548. * Allow square brackets in external issue patterns (#3408)
  2549. * Add Attachment API (#3478)
  2550. * Add EnableTimetracking option to app settings (#3719)
  2551. * Add config option to enable or disable log executed SQL (#3726)
  2552. * Shows total tracked time in issue and milestone list (#3341)
  2553. * TRANSLATION
  2554. * Improve English grammar and consistency (#3614)
  2555. * DEPLOYMENT
  2556. * Allow Gitea to run as different USER in Docker (#3961)
  2557. * Provide compressed release binaries (#3991)
  2558. * Sign release binaries (#4188)
  2559. ## [1.4.3](https://github.com/go-gitea/gitea/releases/tag/v1.4.3) - 2018-06-26
  2560. * SECURITY
  2561. * HTML-escape plain-text READMEs (#4192) (#4214)
  2562. * Fix open redirect vulnerability on login screen (#4312) (#4312)
  2563. * BUGFIXES
  2564. * Fix broken monitoring page when running processes are shown (#4203) (#4208)
  2565. * Fix delete comment bug (#4216) (#4228)
  2566. * Delete reactions added to issues and comments when deleting repository (#4232) (#4237)
  2567. * Fix wiki URL encoding bug (#4091) (#4254)
  2568. * Fix code tab link when viewing tags (#3908) (#4263)
  2569. * Fix webhook type conflation (#4285) (#4285)
  2570. ## [1.4.2](https://github.com/go-gitea/gitea/releases/tag/v1.4.2) - 2018-06-04
  2571. * BUGFIXES
  2572. * Adjust z-index for floating labels (#3939) (#3950)
  2573. * Add missing token validation on application settings page (#3976) #3978
  2574. * Webhook and hook_task clean up (#4006)
  2575. * Fix webhook bug of response info is not displayed in UI (#4023)
  2576. * Fix writer cannot read bare repo guide (#4033) (#4039)
  2577. * Don't force due date to current time (#3830) (#4057)
  2578. * Fix wiki redirects (#3919) (#4065)
  2579. * Fix attachment ENABLED (#4064) (#4066)
  2580. * Added deletion of an empty line at the end of file (#4054) (#4074)
  2581. * Use ResolveReference instead of path.Join (#4073)
  2582. * Fix #4081 Check for leading / in base before removing it (#4083)
  2583. * Respository's home page not updated after first push (#4075)
  2584. ## [1.4.1](https://github.com/go-gitea/gitea/releases/tag/v1.4.1) - 2018-05-03
  2585. * BREAKING
  2586. * Add "error" as reserved username (#3882) (#3886)
  2587. * SECURITY
  2588. * Do not allow inactive users to access repositories using private key (#3887) (#3889)
  2589. * Fix path cleanup in file editor, when initilizing new repository and LFS oids (#3871) (#3873)
  2590. * Remove unnecessary allowed safe HTML (#3778) (#3779)
  2591. * Correctly check http git access rights for reverse proxy authorized users (#3721) (#3743)
  2592. * BUGFIXES
  2593. * Fix to use only needed columns from tables to get repository git paths (#3870) (#3883)
  2594. * Fix GPG expire time display when time is zero (#3584) (#3884)
  2595. * Fix to update only issue last update time when adding a comment (#3855) (#3860)
  2596. * Fix repository star count after deleting user (#3781) (#3783)
  2597. * Use the active branch for the code tab (#3720) (#3776)
  2598. * Set default branch name on first push (#3715) (#3723)
  2599. * Show clipboard button if disable HTTP of git protocol (#3773) (#3774)
  2600. ## [1.4.0](https://github.com/go-gitea/gitea/releases/tag/v1.4.0) - 2018-03-25
  2601. * BREAKING
  2602. * Drop deprecated GOGS\_WORK\_DIR use (#2946)
  2603. * Fix API status code for hook creation (#2814)
  2604. * SECURITY
  2605. * Escape branch name in dropdown menu (#3691) (#3692)
  2606. * Refactor and simplify to correctly validate redirect to URL (#3674) (#3676)
  2607. * Fix escaping changed title in comments (#3530) (#3534)
  2608.  * Escape search query (#3486) (#3488)
  2609. * Sanitize logs for mirror sync (#3057)
  2610. * FEATURES
  2611. * Serve .patch and .diff for pull requests (#3305, #3293)
  2612. * Add repo-sync-releases admin command (#3254)
  2613. * Support default private when creating or migrating repository (#3239)
  2614. * Writable deploy keys (closes #671) (#3225)
  2615. * Add Pull Request merge options - Ignore white-space for conflict checking, Rebase, Squash merge (#3188)
  2616. * Added progressbar for issues with checkboxes (#1146). (#3171)
  2617. * Mention completion for issue editor. (#3136)
  2618. * Add 'mark all read' option to notifications (#3097)
  2619. * Git LFS lock api (#2938)
  2620. * Add reactions to issues/PR and comments (#2856)
  2621. * Add dingtalk webhook (#2777)
  2622. * Responsive view (#2750)
  2623. * BUGFIXES
  2624. * Fix wiki inter-links with spaces (#3560) (#3632)
  2625. * Fix query protected branch bug (#3563) (#3571)
  2626. * Fix remove team member issue (#3566) (#3570)
  2627. * Fix the protected branch panic issue (#3567) (#3569)
  2628. * If Mirrors repository no content is fetched, updated time should not be changed (#3551) (#3565)
  2629. * Bug fix for mirrored repository releases sorted (#3522) (#3555)
  2630. * Add issue closed time column to fix activity closed issues list (#3537) (#3540)
  2631.  * Update markbates/goth library to support OAuth2 with new dropbox API (#3533) (#3539)
  2632.  * Fixes missing avatars in offline mode (#3471) (#3477)
  2633.  * Fix synchronization bug in repo indexer (#3455) (#3461)
  2634.  * Fix rendering of wiki page list if wiki repo contains other files (#3454) (#3463)
  2635. * Fix webhook X-GitHub-* headers casing for better compatibility (#3429)
  2636. * Add content type and doctype to requests made with go-get (#3426, #3423)
  2637. * Fix SQL type error for webhooks (#3424)
  2638. * Fix PR merge error (#3421)
  2639. * Recognize more characters in crossreferenced repo name (#3413)
  2640. * Fix MSSQL bug on org (#3405)
  2641. * HTML escape all lines of the search result (#3402)
  2642. * Change local copy origin url after repository rename (#3399)
  2643. * Force-push to base repo's ref/pull/#/head (#3393)
  2644. * Fix bug when a user delete but assigned on issue (#3318)
  2645. * Use issue number/index instead of id for API URL. Fix #3297 (#3298)
  2646. * Fix repo-transfer-and-team-repo-count bug (#3241)
  2647. * Fix always-on SSL Mode checkbox in admin page (#3208)
  2648. * Fix source download link when no code unit allowed (#3166)
  2649. * Fix org owner cannot be removed if he is not in owner team (#3164)
  2650. * Fix run web with -p push failed (#3154)
  2651. * Fix gpg tmpl (#3153)
  2652. * Fix SSH auth lfs locks (#3152)
  2653. * Improvements for supporting UI Location (#3146)
  2654. * Fix new pull request link (#3133)
  2655. * Fix missing branch in release bug (#3108)
  2656. * Allow adding collaborators with (fullname) (#3103)
  2657. * Fix repo links (#3093)
  2658. * fix lfs url refs + keep path upper/lowercase in db. (#3092)
  2659. * Fix redis session failed (#3086)
  2660. * Fix bugs in issue dashboard stats (#3073)
  2661. * Fix avatar URLs (#3069)
  2662. * Fix ref parsing in commit messages (#3067)
  2663. * Fix issue list branch link broken (#3061)
  2664. * sendmail: correct option to set envelope-sender (#3044)
  2665. * Fix missing password length check when change password (#3039)
  2666. * Fix git lfs path (#3016)
  2667. * Fix API-Endpoint release (#3005) (#3012)
  2668. * Set OpenID support on by default when installing new instance (#3010)
  2669. * Various wiki bug fixes (#2996)
  2670. * Fix go-get, src and raw urls to new scheme (#2978)
  2671. * Fix error when add user has full name to team (#2973)
  2672. * Fix memcache support when value is returned as string always (#2924)
  2673. * ENHANCEMENTS
  2674. * Use GiteaServer as the user agent for http requests (#3404)
  2675. * Delete indexer DB entries when (re)creating index (#3385)
  2676. * Change how merged PR commit info are prepared (#3368)
  2677. * Asynchronously populate the repo indexer (#3366)
  2678. * Make the default action for the gitea executable that of running the webserver (#3331)
  2679. * Templates for extra links in top navbar and repo tool tabs. (#3308)
  2680. * Fixed asterisk based tasklist items #3295 (#3296)
  2681. * Add more additional template snippets (#3286)
  2682. * Open external tracker in blank window, consistently with wiki (#3227)
  2683. * Fix repo links on user profile (#3197)
  2684. * Enable emoji for wiki view (#3158)
  2685. * Small improve on deleting attachements (#3145)
  2686. * Reduce overhead of upgrades for users with custom stylesheets/JS (#3051)
  2687. * Default log level to Info without hardcoding it in installer (#3041)
  2688. * Memory usage improvements (#3013)
  2689. * Add fingerprint to ssh key endpoints. (#3009)
  2690. * Improve memory usage when reaching diff limits (#2990)
  2691. * Expandable commit bodies (#2980)
  2692. * Update gitgraph.js to fix blurry commit graph on HiDPI screens (#2957)
  2693. * Fix language names (#2955)
  2694. * Remove render issue link (#2954)
  2695. * Page parameter for repo search API (#2915)
  2696. * Apply LANDING\_PAGE config options for logged in users (#2894)
  2697. * Enable admin to search by email (#2888)
  2698. * Hide add key button if SSH is disabled (#2873)
  2699. * Fix comment API paths (#2813)
  2700. * Add an option to allow redirect of http port 80 to https. (#1928)
  2701. * MISC
  2702. * Fix organization profile on mobile devices (#3332)
  2703. * Fix guide link for webhooks in repository settings (#3291) (#3292)
  2704. * Enable Libravatar by default in new installations (#3287)
  2705. * Improve suppressed diff boxes (#3193)
  2706. * fix button heights on commits page (#3091)
  2707. * Minor copy changes (#3074)
  2708. * Sort repos in issues dashboard sidebar (#3072)
  2709. * Remove box-shadow from UI, fix dashboard issue (#3065)
  2710. * Adjust branch button size (#3063)
  2711. * Fix misalignment issue in repo header (#3062)
  2712. * Delete a user's public key via admin api (closes #3014) (#3059)
  2713. * Dashboard: Fix line height problem in issue titles (#3054)
  2714. * Remove duplicate "Max Diff Lines" from config view (#2987)
  2715. * Drop unmaintained gogs migration script (#2947)
  2716. * App restarts to quickly if it fails to start. (#2945)
  2717. * Add owner to delete repo message (#2886)
  2718. ## [1.3.1](https://github.com/go-gitea/gitea/releases/tag/v1.3.1) - 2017-12-08
  2719. * BUGFIXES
  2720. * Sanitize logs for mirror sync (#3057, #3082) (#3078)
  2721. * Fix missing branch in release bug (#3108) (#3117)
  2722. * Fix repo indexer and submodule bug (#3107) (#3110)
  2723. * Fix legacy URL redirects (#3100) (#3106)
  2724. * Fix redis session failed (#3086) (#3089)
  2725. * Fix issue list branch link broken (#3061) (#3070)
  2726. * Fix missing password length check when change password (#3039) (#3071)
  2727. ## [1.3.0](https://github.com/go-gitea/gitea/releases/tag/v1.3.0) - 2017-11-29
  2728. * BREAKING
  2729. * Make URL scheme unambiguous (#2408)
  2730. * FEATURES
  2731. * Add branch overiew page (#2108)
  2732. * Code/repo search (#2582)
  2733. * Add Activity page to repository (#2674)
  2734. * Issue Timetracking (#2211)
  2735. * Add orgmode document type on file view and readme (#2525)
  2736. * Add external markup render support (#2570)
  2737. * Implementation of discord webhook (#2402)
  2738. * Webhooks for repo creation/deletion (#1663)
  2739. * Complete push webhooks (#2530)
  2740. * Add possibility to record branch information in an issue (#780)
  2741. * Create new branch from branch selection dropdown (#2130)
  2742. * Implementation of all repositories of a user from user->settings (#1740)
  2743. * Add LFS object verification step after upload (#2868)
  2744. * Configurable SSH cipher suite (#913)
  2745. * Disable custom Git Hooks globally via configuration file (#2450)
  2746. * Sync releases table with tags on push and for mirrors (#2459)
  2747. * BUGFIXES
  2748. * Fix label comments for French locale (#3017)
  2749. * Remove duplicate "Max Diff Lines" from config view (#3001)
  2750. * Fix over-escaped characters (#2992)
  2751. * Fix go-get, src and raw urls to new scheme (#2986)
  2752. * Fix error when add user has full name to team (#2975)
  2753. * Fix files/commits of merged PRs (#2970)
  2754. * Update golang x/crypto dependencies - Fix SSH transport fail (#2951)
  2755. * Fix memcache support when value is returned as string always (#2950)
  2756. * Fix issue link rendering in commit messages (#2897)
  2757. * Fix adding a new authentication source after selecting OAuth (#2889)
  2758. * Fix new branch creation to new url scheme (#2884)
  2759. * Allow spaces in username for LDAP users (#2880)
  2760. * Fix LFS not returning correct content length when requesting a range … (#2864)
  2761. * Fix fork repository cycle to self (#2860)
  2762. * Fix click create pull request button 404 (#2859)
  2763. * Fix API raw file content access for default branch (#2849)
  2764. * Clean repository ROOT directory name with filepath.Clean (#2846)
  2765. * Fix API raw requests for commits and tags (#2841)
  2766. * Fix order of comments (#2835)
  2767. * Issue content should not be updated when closing with comment (#2833)
  2768. * Fix ordering in app.ini and fix run mode option (#2829)
  2769. * Fix redirect url of legacy commits route (#2825)
  2770. * Fix commits page url (#2823)
  2771. * Fix wrong translations (#2818)
  2772. * Fix dropdown menu position when explore repos (#2808)
  2773. * Fix Git LFS object/repo link storage in database and small refactoring (#2803)
  2774. * Use relative URLs for avatars on the dashboard (#2800)
  2775. * Add checks for commits with missing author and time (#2771)
  2776. * Fix emojify image URL (#2769)
  2777. * Hide unactive on explore users and some refactors (#2741)
  2778. * Fix IE unsupported javascript construction in branch dropdown (#2736)
  2779. * Only update mirror last update after successful sync (#2730)
  2780. * Fix semantic-ui style conflict with v-cloak (#2722)
  2781. * Fixing wrong translation on sort type oldest/latest (#2720)
  2782. * Fix PR, milestone and label functionality if issue unit is disabled (#2710)
  2783. * Fix plain readme didn't render correctly on repo home page (#2705)
  2784. * Fix organization removal from watch table migration (#2703)
  2785. * Fix repository search function (#2689)
  2786. * fix panic on gogs webhook creation (#2675)
  2787. * Fix orgnization user watch repository (#2670)
  2788. * GPG key email verification no longer case sensitive (#2661) (#2663)
  2789. * Fix index column deletion (#2651)
  2790. * table `pull_request` wasn't updated correctly (#2649)
  2791. * Fix go get response if only app URL is custom in configuration (#2634)
  2792. * Fix doubled issue tab introduced in migration v16 (#2611)
  2793. * Rewrite migrations to not depend on future code changes (#2604)
  2794. * Fix implementation of repo Home func (#2601)
  2795. * Fix translation upload to crowdin (#2599)
  2796. * Reduce usage of allcols on update (#2596)
  2797. * fix go get subpackage bug (#2584)
  2798. * Fix broken migration to add can_push field back to table (#2574)
  2799. * fix readme view bug (#2566)
  2800. * Fix sending mail with a non-latin display name. #2102 (#2559)
  2801. * Restricting access to fork functioanlity to users with Code access (#2534)
  2802. * fix updated update on public key (#2514)
  2803. * Added bucket name to s3 drone plugin (#2505)
  2804. * fixes 500 error on dashboard when using MSSQL (#2504)
  2805. * fix wrong rendering of commit detail page (#2503)
  2806. * Hotfix: Add time manually adds time in nanoseconds (#2499)
  2807. * Remove repository mirrors from "collaborative" list (#2497)
  2808. * fix release failed since the wrong token name (#2496)
  2809. * Fix slice out of bounds error in mailer (#2479)
  2810. * Fix #2470 (#2477)
  2811. * fix orgnization webhooks (#2422)
  2812. * fix webhook test (#2415)
  2813. * fix missing orgnization discord webhook (#2414)
  2814. * Fix route handler order (#2409)
  2815. * Prevent sending emails and notifications to inactive users (#2384)
  2816. * Move themes to plugin directory. Fixes #2372 (#2375)
  2817. * fix duplicated feed (#2370)
  2818. * Fix missing collabrative repos (#2367)
  2819. * Only check at least one email gpg key (#2266)
  2820. * don't check minimum key size when disabled (#1754)
  2821. * Fix run command race (#1470)
  2822. * fix .netrc authentication (#2700)
  2823. * Fix so that user can still fork his own repository to his organizations (#2699)
  2824. * Fix can_push value to false in protected_branch (#2560)
  2825. * Fix copy in email templates (#2801)
  2826. * Fix inconsistencies in user settings UI (#2901)
  2827. * Fix attachments icon size on zoom in/out (#2853)
  2828. * Fix ignored errors in API route (#2850)
  2829. * Fix activity css conflit with semantic ui (#2758)
  2830. * Fix notifications tabs according to semantic-ui docs (#2733)
  2831. * Fix typos in app.ini (#2732)
  2832. * Fix duplicated rel attribute (#2549)
  2833. * Fix tests code to prevent some runtime errors (#2381)
  2834. * ENHANCEMENTS
  2835. * Memory usage improvements and lower minimal git requirement to 1.7.2 (#3013) (#3028)
  2836. * Set OpenID support on by default when installing new instance (#3010) (#3027)
  2837. * Use api.TrackedTime in API (#2807)
  2838. * Configurable SSH key exchange algorithm and MAC suite (#2806)
  2839. * Add Safari pinned tab icon (#2799)
  2840. * Improve force push detect when push (#2798)
  2841. * Add wrapping to long diff lines (#2789)
  2842. * Link members and repositories count to each page on org home. (#2787)
  2843. * Show Sendmail settings on admin config page (#2782)
  2844. * Add commit count caching (#2774)
  2845. * Use identicon image for default gravatar. (#2767)
  2846. * Add default ssh ciphers (#2761)
  2847. * Remove manual of unsupported option (#2757)
  2848. * Add search mode option to /api/repo/search (#2756)
  2849. * Move swagger-ui under /api/v1 (#2746)
  2850. * Add support for extra sendmail arguments (#2731)
  2851. * Use buffersize to reduce database connection when iterate (#2724)
  2852. * Render plain text README.txt monospaced (#2721)
  2853. * Integration test for activity page (#2704)
  2854. * Merge password and 2fa page on user settings (#2695)
  2855. * Allow custom SSH user in UI for built-in SSH server (#2617) (#2678)
  2856. * Refactor duplicated code in repo handlers (#2657)
  2857. * Replace deprecated Id method with ID (#2655)
  2858. * Remove redudant functions and code (#2652)
  2859. * hide navbar when only 1 sign-in method is available (#2444) (#2648)
  2860. * Change default sort order (#2647)
  2861. * Change pull description text (#2075) (#2646)
  2862. * Remove direct user adding to organization members (#2641)
  2863. * Use session when creating user (#2638)
  2864. * Use Semantic UI's Search component for user and repo search (#2636)
  2865. * Use AfterLoad instead of AfterSet on Structs (#2628)
  2866. * Remove redudant CheckUnit calls in router (#2627)
  2867. * Remove repo unit index (#2621)
  2868. * Remove redudant issue LoadAttributes() calls (#2614)
  2869. * Make indexer code more reusable (#2590)
  2870. * Use custom type and constants to hold available order by options (#2572)
  2871. * Use named ActionType constants in template helper (#2545)
  2872. * Make basic functionality work without JavaScript (#2541)
  2873. * Ctrl + Enter to submit forms (#2540)
  2874. * Automatically regenerate indexer for incompatible versions (#2524)
  2875. * Set default lfs content path to data/lfs (#2521)
  2876. * Convert spaces to tabs in footer.tmpl (#2520)
  2877. * Sort repository tree entries in natural way (#2506)
  2878. * Open external wiki in new window (#2489)
  2879. * Use created & updated instead BeforeInsert & BeforeUpdate (#2482)
  2880. * Hide branch on pull request view or create UI (#2454)
  2881. * improve protected branch to add whitelist support (#2451)
  2882. * some refactors for issue and comments (#2419)
  2883. * Restructure markup & markdown to prepare for multiple markup language… (#2411)
  2884. * Improve issue search (#2387)
  2885. * Add UseCompatSSHURI setting (#2356)
  2886. * Use custom search for each filter type in dashboard (#2343)
  2887. * Failed authentication are now properly logged (#2334)
  2888. * Add environment variable support for Docker image (#2201)
  2889. * Set session and indexers' data files rel to AppDataPath (#2192)
  2890. * Display commit status on landing page of repo (#1784)
  2891. * TESTING
  2892. * Add integration test for logging out (#2892)
  2893. * Integration test for user deleting account (#2891)
  2894. * Use different directories for session files in integration tests (#2834)
  2895. * Add deleted_branch table fixture (#2832)
  2896. * Include HTTP method in test error message (#2815)
  2897. * Add repository search unit and integration tests (#2575)
  2898. * Expand fixtures (#2571)
  2899. * Fix /api/repo/search integration tests (#2550)
  2900. * Make integration tests more user-friendly (#2536)
  2901. * Fix unit test race condition (#2516)
  2902. * Add missing fixture to clean gpg_key table (#2494)
  2903. * Hotfix for integration testing (#2473)
  2904. * Make repo private to not interfere with other tests (#2467)
  2905. * Error message for integration test (#2410)
  2906. * Fix "index out of range" runtime error in repo_list tests (#2376)
  2907. * Add git clone test on integration test (#1682)
  2908. * TRANSLATION
  2909. * Fix localization texts that contain semicolon (#2900)
  2910. * Fix activity locale (#2709)
  2911. * Update translation from crowdin (#2368)
  2912. * BUILD
  2913. * change the email and name to GitBot account. (#2848)
  2914. * Fix removing backslash before quotes in translations (#2831)
  2915. * add gitea remote in drone. (#2817)
  2916. * add remote name for git push. (#2816)
  2917. * Launch Gitea with custom UID/GID for 'git' user (fixes #2286) (#2791)
  2918. * Download and pushing translations (#2727)
  2919. * Automatic update of translations (#2585)
  2920. * Add pre-build step for nodejs stuff (#2581)
  2921. * Compress css with nodejs (#2580)
  2922. * Remove go version check for make fmt (#2558)
  2923. * Fix lint errors (#2547)
  2924. * Always run fmt check in CI (#2546)
  2925. * Fix fmt errors (#2544)
  2926. * add codecov.io service. (#2493)
  2927. * Fix some tests : make coverage -> test (#2492)
  2928. * Fix fmt error in mailer (#2490)
  2929. * Allow changing integration test database connection using env variables (#2484)
  2930. * Add changelog config file for generate changelog (#2461)
  2931. * Changes for latest DroneCI (#2362)
  2932. * Use standard lessc and minify CSS using Node.js (#2337)
  2933. * DOCS
  2934. * Update screenshots on README (#2910)
  2935. * Gogs -> Gitea (#2909)
  2936. * Update swagger documentation (#2899)
  2937. * Fix typo (#2810)
  2938. * Fix Polish language name spelling (#2766)
  2939. * Fix Various Grammar Issues and Adjust Unnatural Wording (#2737)
  2940. * Add maintainer label for docker file (#2658)
  2941. * Link to gitea-specific Vagrant example (#2624)
  2942. * add release notes of v1.1.4 (#2463)
  2943. * Wrap most paragraphs to 80 columns (#2396)
  2944. * Update CONTRIBUTING following #2329 discussion (#2394)
  2945. * Update hard-coded version to 1.3.0+dev (#2390)
  2946. * Clarify Translation Process. Also fix branch names (#2378)
  2947. * Admin grammar fixes and improvements (#2056)
  2948. * MISC
  2949. * Sync MaxGitDiffLineCharacters with conf/app.ini (#2779)
  2950. * Dockerfile: Updated alpine image to 3.6. (#2486)
  2951. * Basic VSCode configuration for building and debugging (#2483)
  2952. * Added vendor dir for js/css libs; Documented sources (#1484) (#2241)
  2953. ## [1.2.3](https://github.com/go-gitea/gitea/releases/tag/v1.2.3) - 2017-11-03
  2954. * BUGFIXES
  2955. * Only require one email when validating GPG key (#2266, #2467, #2663) (#2788)
  2956. * Fix order of comments (#2835) (#2839)
  2957. ## [1.2.2](https://github.com/go-gitea/gitea/releases/tag/v1.2.2) - 2017-10-26
  2958. * BUGFIXES
  2959. * Add checks for commits with missing author and time (#2771) (#2785)
  2960. * Fix sending mail with a non-latin display name (#2559) (#2783)
  2961. * Sync MaxGitDiffLineCharacters with conf/app.ini (#2779) (#2780)
  2962. * Update vendor git (#2765) (#2772)
  2963. * Fix emojify image URL (#2769) (#2773)
  2964. ## [1.2.1](https://github.com/go-gitea/gitea/releases/tag/v1.2.1) - 2017-10-16
  2965. * BUGFIXES
  2966. * Fix PR, milestone and label functionality if issue unit is disabled (#2710) (#2714)
  2967. * Fix plain readme didn't render correctly on repo home page (#2705) (#2712)
  2968. * Fix so that user can still fork his own repository to his organizations (#2699) (#2707)
  2969. * Fix .netrc authentication (#2700) (#2708)
  2970. * Fix slice out of bounds error in mailer (#2479) (#2696)
  2971. ## [1.2.0](https://github.com/go-gitea/gitea/releases/tag/v1.2.0) - 2017-10-10
  2972. * SECURITY
  2973. * Sanitation fix from Gogs (#1461)
  2974. * BREAKING
  2975. * Rename /forget_password url to /forgot_password (#1219)
  2976. * FEATURES
  2977. * Logo: Add task to generate images from SVG and change to new logo (#2194)
  2978. * Status-API (#1332)
  2979. * Show commit status icon in commits table (#1688)
  2980. * Additional OAuth2 providers (#1010)
  2981. * GPG commit validation (#1150)
  2982. * Rework SSH key management UI to add GPG (#1293)
  2983. * Implement GPG api (#710)
  2984. * Login via OpenID-2.0 (#618)
  2985. * Add units to team (#947)
  2986. * Batch updates for issues (#926)
  2987. * Add Gitea Webhook (#1755)
  2988. * API: support '/orgs/:org/repos' (#2047)
  2989. * Display all organization from user settings (#1739)
  2990. * LDAP user synchronization (#1478)
  2991. * Adding #issuecomment to the URL in E-Mail notifications (#1674)
  2992. * Add download count field and unit testing for attachment. (#1512)
  2993. * Add repo mirror sync API endpoint (#1508)
  2994. * Add markup package to prepare for org markup format (#1493)
  2995. * Support for custom html meta (#1423)
  2996. * Per issue/PR watch/unwatch (#1410)
  2997. * Allow ENABLE_OPENID_SIGNUP to depend on DISABLE_REGISTRATION (#1369)
  2998. * Repo size in admin panel (#1482)
  2999. * Show user OpenID URIs in their profile (#1314)
  3000. * Add change-password admin command (#1304)
  3001. * Only use issue and wiki on repo. (#1297)
  3002. * Allow push to init a wiki repo (#1279)
  3003. * ENHANCEMENTS
  3004. * Make time diff translatable (#2057)
  3005. * Smaller watch, star, and fork buttons (#2052)
  3006. * Display config file path on admin panel (#2030)
  3007. * Only show SSH clone URL if signed in (#2169) (#2170)
  3008. * Only show "No Description" to repo admins (#2167)
  3009. * Always return valid go-get meta, even if unauthorized (#2010)
  3010. * Enable assignee e-mail notification (#2003)
  3011. * Let not-logged-in users view releases (#1999)
  3012. * No highlighting for .txt files (#1922)
  3013. * Make side nav on dashboard stackable (#1778)
  3014. * Setting to disable authorized_keys backup (#1856)
  3015. * Hide the create organization button (in dashboard/organization section) (#1705)
  3016. * LFS: Return 404 for unimplemented endpoints (#1330)
  3017. * Show a link to password reset from user settings requiring a password (#862)
  3018. * Reserve the "explore" user/org name (#1222)
  3019. * Send notifications to partecipants in issue comments (#1217)
  3020. * Improve style of user OpenID setting page (#1324)
  3021. * Use font-awesome OpenID icon more (#1320)
  3022. * Use readonly input form to show the validated OpenID URI (#1308)
  3023. * Add captcha support to OpenID based signup (#1307)
  3024. * Minor improvements on commit graph UI (#1380)
  3025. * Mirror sync interval specified as duration string (#1407)
  3026. * Make issue in commit graph "clickable" (#1392)
  3027. * Use whole button (commit graph) as link (#1390)
  3028. * Autofocus on 2fa passcode fields (#1460)
  3029. * Sort on repo size in admin panel (#1654)
  3030. * Improve dashboard repo search (#1652)
  3031. * Use a better default MAX_GIT_DIFF_LINE_CHARACTERS (#1845)
  3032. * Adds Parent property to the repo API (#1687)
  3033. * Add configuration option for default permission to create Organizations (#1686)
  3034. * Remove sha1 hash display in repository table (#1678)
  3035. * Download files to their original filename (#1676)
  3036. * Exposes in API the Repo entity's Size and IsBare property (#1668)
  3037. * Change two factor code entry box from text to number (#1733)
  3038. * Directly show error if user hit repository limit (#1767)
  3039. * Generate small and large logos at 4x resolution (#2233)
  3040. * Tags listed in releases tab (#2389) (#2424)
  3041. * BUGFIXES
  3042. * Fix adding branch as protected to not allow pushing to it (#2556)
  3043. * Orgs: fix org page title when full name is not defined (#1495)
  3044. * Fix double borders on edit page (#1152) (#1153)
  3045. * Search bar fixes for #1187 and #1205 (#1207)
  3046. * Fix upgrade failed after ever rollback (#1194)
  3047. * Fix FCGI (over TCP) support (#1368)
  3048. * Backport of migration fixes (#2604) (#2677)
  3049. * fix panic on gogs webhook creation (#2675) (#2676)
  3050. * Backport: Fixes 500 error on dashboard when using MSSQL (#2504) (#2662)
  3051. * Fix go get response if only app URL is custom in configuration (#2634) (#2640)
  3052. * Fix deletion of unprotected branches (#2630)
  3053. * Backport of 2611 / Fix doubled issue tab introduced in migration v16 (#2622)
  3054. * v38 migration used an outdated version of RepoUnit model (#2602)
  3055. * fix go get subpackage bug (#2584) (#2589)
  3056. * Backport: Sync releases table with tags on push and for mirrors (#2459) (#2554)
  3057. * Backport: Restricting access to fork functioanlity to users with Code access (#2542)
  3058. * Fix migration from pre-v15 to 1.2.0 (#2460) (#2465)
  3059. * Fix migration from pre-v15 to 1.2.0 (#2460)
  3060. * fix duplicated feed (#2370) (#2413)
  3061. * Fix releases to be counted from database not tags (#2389)
  3062. * Fix missing collabrative repos (#2367) (#2382)
  3063. * Add more test for login links and fix a bug on action retrieve (#2361)
  3064. * Fix SQL condition bug in GetFeeds(..) (#2360)
  3065. * fix bug on create repo link on dashboard (#2359)
  3066. * Fix order of elements in dashboard html (#2344)
  3067. * Fix repo-search template errors for go1.7 (#2336)
  3068. * Add missing forks key for dashboard repository component (#2325)
  3069. * fix template error on explore repos (#2319)
  3070. * Trigger sync webhooks on UI commit (#2302)
  3071. * fix 500 error when view an issue which's milestone deleted (#2297)
  3072. * Only update needed columns when update user (#2296)
  3073. * Fix rendering of external links (#2292)
  3074. * Fix and improve dashboard repo UI (#2285)
  3075. * Make short link pattern greedy (#2259)
  3076. * Temporarily patch go-ini/ini with fork (#2255)
  3077. * Convert xorm literal queries to method calls (#2253)
  3078. * update code.gitea.io/git in vendor to fix delete branch fails (#2250)
  3079. * Replace calls to xorm UseBool with Where (#2237)
  3080. * rhel7 has a git version with four digits (1.8.3.1) (#2236)
  3081. * Fix internal requests when gitea listens to unix socket or only external IP (#2234)
  3082. * Check for access in /repositories/:id (#2227)
  3083. * Fixed robots.txt 404 error (#2226)
  3084. * Fix counts on issues dashboard (#2215)
  3085. * Fix unclosed session bug (#2214)
  3086. * Add collaborative repositories to the dashboard (#2205)
  3087. * Fix issue updated_unix bug (#2204)
  3088. * Fix Commits nil pointer dereference (#2203)
  3089. * Fix bare-repo bugs (#2199)
  3090. * Fix PR nil-dereference bug (#2195)
  3091. * Allow only single fork per user/organization (#2193)
  3092. * Fix key usage time update if the key is used in parallel for multiple operations (#2185)
  3093. * Only allow token authentication with 2FA enabled (#2184)
  3094. * Fix profile update for non-local users (#2178)
  3095. * Fix compiling without sqlite and gcc (#2177)
  3096. * Make compare button URL aware if current repo is a fork (#2162) (#2163)
  3097. * Remove unit types commits and settings (#2161)
  3098. * Fix OpenID registration route (#2160)
  3099. * Fix repository settings collobration list display (#2151)
  3100. * Ignore invalid issue numbers in commit messages. Fixes #2022 (#2150)
  3101. * Fix SHA1 hash linking (#2143)
  3102. * Fix repo API bug (#2133)
  3103. * Use POSIX complaint ! operator in find (#2132)
  3104. * Fix GET /users/:username/repos endpoint (#2125)
  3105. * Fix username rendering bug (#2122)
  3106. * Fix wiki preview links (#2119)
  3107. * vendor: update sqlite to fix "database is locked" errors (#2116)
  3108. * Fix unchecked error bug (#2110)
  3109. * Fix missing-return bug (#2109)
  3110. * Fix API for branches with slashes (#2096)
  3111. * Fix git hooks update to receive required arguments (#2095)
  3112. * upgrade git source code. (#2094)
  3113. * Fix SQL bug in models.PullRequests (#2092)
  3114. * Don't ignore gravatar error (#2083)
  3115. * Fix release display and correct paging (#2080)
  3116. * remove unnecessary blank lines and wrong error log (#2079)
  3117. * Check for valid renamed usernames (#2077)
  3118. * Update git module (#2074)
  3119. * Fix org hooks UI (#2072)
  3120. * Fix #1271: Call location.reload after XHR finishes (#2071)
  3121. * Fix default ghost assignee bug (#2069)
  3122. * Fix bug in issue labels API (#2048)
  3123. * Load label ID in NewLabels (#2045)
  3124. * Fix: `http: multiple response.WriteHeader calls` (#2038)
  3125. * Pagination on releases page (#2035)
  3126. * repo/editor: fix breadcrumb path cuts parent dirs (#3859) (#2032)
  3127. * Fix displaying commits and files of PR created from now deleted fork (#2023)
  3128. * Fix #2001 and fix issue comments hidden (#2016)
  3129. * Update code.gitea.io/git (#2014)
  3130. * Keep sort when switching page (#2013)
  3131. * Important: wrong PR merge commit ID saved (#2007)
  3132. * Don't show non-comments in comments API (#2001)
  3133. * Fix "Dashboard shows deleted comments" (#1995)
  3134. * Make branch deletion URL more like GitHub's, fixes #1397 (#1994)
  3135. * Fix fast-forward PR bug (#1989)
  3136. * Fix GPG email checking to be case insensitive (#1988)
  3137. * fix bug for normal user visit public repo (#1984)
  3138. * fix collborators lack of units on orgnization repositories (#1968)
  3139. * Fix diff of renamed and modified file (#1967)
  3140. * Fix uppercase default branch bug (#1965)
  3141. * Fix bug in Action.loadRepo() (#1959)
  3142. * Fix deleted milestone bug (#1942)
  3143. * Fix engine bug in getIssueByID (#1934)
  3144. * Switch to keybase go-crypto (for some elliptic curve key) + test (#1925)
  3145. * Fix setting.AppPath for integration tests (#1923)
  3146. * Fix search by issue type (#1914)
  3147. * Fix ghost user bug (#1913)
  3148. * Require token before checking membership/ownership (#1905)
  3149. * Bug fixes for org member API (#1904)
  3150. * A missing / to provide a correct endpoint (#1903)
  3151. * Fix 500 in public activity page (#1901)
  3152. * Center-aligned login topbar (#1880)
  3153. * Migration to fix existing owner team units (#1873)
  3154. * Fix paginater length (#1866)
  3155. * Fix bug in removeOrgRepo (#1858)
  3156. * Display draft releases (#1854)
  3157. * Fix 404 for external tracking issues (#1852)
  3158. * Update code.gitea.io/git (#1849)
  3159. * Fix user profile activity feed (#1848)
  3160. * Don't ignore error in getMergeCommit (#1843)
  3161. * Fix locking bug in removeOrgRepo (#1842)
  3162. * Fix status table race condition (#1835)
  3163. * Fix PR template error (#1834)
  3164. * Fix pull request compare link (#1832)
  3165. * Use ghost users in issues/PRs (#1831)
  3166. * Commitless repos should be bare (#1829)
  3167. * Update code.gitea.io/git (#1824)
  3168. * Fix invalid reference in feeds template (#1820)
  3169. * fix bug to deny to add orgnization as a member of an orgnization or team (#1815)
  3170. * xxx_active_code_live setting in printed in hours and minutes instead … (#1814)
  3171. * Fix deadlock in updateRepository (#1813)
  3172. * Give all units to owner team (#1812)
  3173. * Fix 500 for GET /teams/:id endpoints (#1811)
  3174. * fix bug not to trim space of login username (#1796)
  3175. * Fix renaming bug (#1786)
  3176. * Fix activity feed (#1779)
  3177. * Make navbar scroll on overflow (#1777)
  3178. * Delete repo redirects on repo deletion (#1776)
  3179. * Fix unloaded owner bug (#1770)
  3180. * Admin should always be allowed to create repositories even if hit limit (#1765)
  3181. * Update HighlightJS and fix YAML files highlighting (#1764)
  3182. * fix: #1757 fix set MAX_CREATION_LIMIT as zero. (#1762)
  3183. * fix admin lost permission caused by #947 (#1753)
  3184. * More fixes for dashboard search (#1750)
  3185. * fixes wrong after field in webhook payload (#1746)
  3186. * fix avatar update bug (#1729)
  3187. * Fix FOUC on Firefox (#1728)
  3188. * Fix changes introduce by update of go-swagger. (#1727)
  3189. * Fix #1719 (#1722)
  3190. * Correct flash after sending password reset email (#1718)
  3191. * Fix and test for delete user (#1713)
  3192. * Fix rendering of issue checkboxes (#1709)
  3193. * Enforce netgo build tag while cross-compilation (#1690)
  3194. * fix bug when push a branch name with / & fix an integration test bug (#1689)
  3195. * fix potential sqlite lock (#1680)
  3196. * Fix commit sha1 URL rendering in markdown (#1677)
  3197. * Fix static files permission under public/ (#1675)
  3198. * fix: tag contain character ) will http 500 on release page (#1670)
  3199. * Fix CSS for code in wiki markdown (#1660)
  3200. * fix multiple readme file rendering and fix #1657 (#1658)
  3201. * Add primary key and index to external login user table (#1656)
  3202. * fix #1643 and improve integration test (#1645)
  3203. * Fix version in Makefile (#1636)
  3204. * Handle display of GPG key without end date (#1628)
  3205. * fix bug on issue view when not login (#1624)
  3206. * bug fixed for API to get user's repos (#1622)
  3207. * fix lost text color on button on set as primary email (#1621)
  3208. * Add create_at and updated_at in PR json (#1616)
  3209. * update git and fix #1133 (#1614)
  3210. * fix bug on status API (#1533)
  3211. * Do not show empty collaborators segment (#1531)
  3212. * Fix markdown rendering (#1530)
  3213. * fix go get sub package and add domain on installation to let go get work defaultly (#1518)
  3214. * fix #1501 ssh hangs caused by #1461 (#1513)
  3215. * Fix empty file download (#1506)
  3216. * Fix broken v27 migration - change mirror interval from int to bigint (#1504)
  3217. * Do not allow commiting to protected branch from online editor (#1502)
  3218. * Add internal routes for ssh hook comands (#1471)
  3219. * Fix races within code.gitea.io/git.(*Command).RunInDirTimeoutPipeline (#1465)
  3220. * Simple quick fix for #1418 (#1456)
  3221. * fix gpg API panic when no verification (#1451)
  3222. * fix migrate failed and org dashboard failed on MSSQL database (#1448)
  3223. * Optimize and fix autolink function (#1442) (#1444)
  3224. * Fix and simplify repo branches (settings) UI (#1435)
  3225. * Fix disabled fields in repo settings UI (#1431)
  3226. * fixes pull request hanging when it contains normal and LFS files (#1425)
  3227. * Fix races in the log module by using syncmap (#1421)
  3228. * Add length check for the return string (#1420)
  3229. * Fix "Error: No issue number specified" when pushing (#1393)
  3230. * Corrected Mirror.NextUpdate not set (#1388)
  3231. * fix: remove `str2html` from org full name (#1360)
  3232. * Correct broken unaligned load/store in armv5 (#1355)
  3233. * Remove href on first/last link when on first/last page (#1345)
  3234. * Fix broken table layout (#1344)
  3235. * LFS: Fix SSH authentication for trailing arguments (#1328)
  3236. * Remove empty file (#1326)
  3237. * Fix delete user failed on sqlite (#1321)
  3238. * Fix inconsistency in layout (#1316)
  3239. * Fix gpg wrong column types (#1303)
  3240. * Fix wiki bugs (#1294)
  3241. * Fix missing less sources for oauth (#1288)
  3242. * Make sure both scripts/ can live side by side (#1264)
  3243. * Fix nil-dereference bug (#1258)
  3244. * rewrite pre-commit, post-commit and options hooks (fixes #1250) (#1257)
  3245. * Commit search appearence fixes (#1254)
  3246. * Fix forget migration for wiki hooks (#1227)
  3247. * Fix repo settings external tracker failed and check external urls (#1215)
  3248. * Fix 500 caused by branches settings introduced by #1198 (#1214)
  3249. * fix #1189, commit messages containing a pipe (#1203)
  3250. * Bug fixed for delete repo failed (#1193)
  3251. * Fix migration failed when authorized_keys is not exist (#1180)
  3252. * Fix ini format incomiptable with crowdin (#1177)
  3253. * TESTING
  3254. * Integration tests for issues API (#2059)
  3255. * Add integration tests for signin (#2363)
  3256. * Add INTERNAL_TOKEN to integration .ini file (#2346)
  3257. * Add public links check (#2323)
  3258. * Fix hooks for integration repo (#2216)
  3259. * More integration tests for comment API (#2156)
  3260. * Cache session cookies in tests (#2128)
  3261. * Less verbose integration tests (#2123)
  3262. * Fix improper setup for integration tests (#2050)
  3263. * Improve integration test helper functions (#2049)
  3264. * Add integration test for issue creating (#2002)
  3265. * Use testing/benchmark interface (#1993)
  3266. * Add integration test for repository migration (#1983)
  3267. * Consolidate boilerplate in integration tests (#1979)
  3268. * Set console to debug for integration tests (#1976)
  3269. * Add pull-create integration test (#1972)
  3270. * Coverage reports for integration tests (#1960)
  3271. * Add integration test for pull-request merge (#1912)
  3272. * Add integration test for file editing (#1907)
  3273. * Add integration test for repository forking (#1896)
  3274. * Run unused test (#1875)
  3275. * Don't recreate database in integration tests (#1697)
  3276. * remove sqlite tag when integration test with mysql/postgres and recreate database when init integration test (#1693)
  3277. * MySQL, Postgres integration tests in drone (#1638)
  3278. * improve integration test to resue models/fixtures and store git repos with tests (#1627)
  3279. * Improve govendor testing (#1623)
  3280. * Integration test framework (#1290)
  3281. * Unit tests for issue_list (#1209)
  3282. * Add integration test for signup (#1135)
  3283. * TRANSLATION
  3284. * update translation from crowdin (#2368) (#2380)
  3285. * Small fixes (#2144)
  3286. * Missing signed commit display translations (#2134)
  3287. * Sync latest translations from crowdin (#2104)
  3288. * Add make command update-translations for update translations from crodwin (#2097)
  3289. * Fix some mistakes (#1833)
  3290. * Improve clarity between is_activated and prohibit_login (#1788)
  3291. * Improve grammar (#1775)
  3292. * Fix bad grammar and wordiness (#1741)
  3293. * Make strings translatable (#1188) (#1198)
  3294. * BUILD
  3295. * Dockerfile for aarch64 (#1128) (#1130)
  3296. * backport from v1.2 branch: add secrets for github release (#2588) (#2598)
  3297. * Add secrets for github release to fix drone failed (#2588)
  3298. * Backport changes for latest drone (#2586)
  3299. * Removing .drone.yml.sig (#2579)
  3300. * Fix drone for tags (#2573) (#2576)
  3301. * Backport: Remove go version check for make fmt (#2558) (#2561)
  3302. * Backport: Fix lint, fmt and integration testing errors (#2553)
  3303. * update latest xorm version to vendor (#2353)
  3304. * Remove integration test executables on `make clean` (#2340)
  3305. * refactor(Makefile): allow overriding default go program (#2310)
  3306. * Revert to upstream ini dependency (#2304)
  3307. * Use /dev/urandom to create random password (#2298)
  3308. * update drone sig file. (#2262)
  3309. * go get github.com/wadey/gocovmerge when needed (#2235)
  3310. * fix typo (#2145)
  3311. * Revert "Reduce number of layer" (#2086)
  3312. * Reduce number of layer (#2078)
  3313. * Skip sqlite integration in CI (#2058)
  3314. * fix golint error and rename func for suggestion. (#1997)
  3315. * fix misspell (#1996)
  3316. * update drone sig file (#1981)
  3317. * send notification if status changed (#1973)
  3318. * switch gitter to discord for drone. (#1971)
  3319. * Fix missing backslash in Dockerfile.rpi (#1952)
  3320. * Don't run 'make release' on PRs (#1908)
  3321. * Update code.gitea.io/git (#1892)
  3322. * Use production version of vuejs (#1869)
  3323. * Add a variable for docker tag (#1825)
  3324. * resign drone and fix #1816 (#1819)
  3325. * Separate generate swagger + fix sed os specific (#1791)
  3326. * Only run coverage on merges/pushes to master (#1783)
  3327. * Remove stale rule from Makefile (#1782)
  3328. * feat: upgrade drone docker image to support multi-stage build. (#1732)
  3329. * Realy don't cache apk index (#1694)
  3330. * Limit clone depth when drone-building (#1644)
  3331. * Refactor Dockerfile (#1632)
  3332. * Check if missing/modified/unused deps in vendor and fix errors (#1468)
  3333. * Add GOFLAGS and EXTRA_GOFLAGS (#1438)
  3334. * Include formatting check to the `make test` (and thus also `check`) rule (#1366)
  3335. * DOCS
  3336. * fix wrong changelog title (#2395)
  3337. * fix webhook link (#2289)
  3338. * Improve swagger doc (#2274)
  3339. * Add link to forum in issue template (#2070)
  3340. * add missing lfs config on example file (#2039)
  3341. * Add discourse link (#2027)
  3342. * Fix wording (#2024)
  3343. * Fix typo (#1974)
  3344. * Swagger docs for list/create forks (#1941)
  3345. * Update links to Discord server (#1940)
  3346. * [ci skip] update discord badge. (#1930)
  3347. * Change join chat from gitter to discord (#1929)
  3348. * Update changelog with v1.1.1 (#1926)
  3349. * Correct grammar in APIEmpty documentation (#1748)
  3350. * Add swagger comment for MirrorSync (#1747)
  3351. * Add "Table of Contents" in CONTRIBUTING.md (#1634)
  3352. * Fix service description in Debian init file (#1538)
  3353. * Use MAINTAINERS file in repository in CONTRIBUTING (#1489)
  3354. * Generate swagger json (#1402)
  3355. * Changed text when password reset disabled. (#1364)
  3356. * Removed email copyright year (#1348)
  3357. * Specify that time interval units are seconds (#1311)
  3358. * Gitea OpenID-2.0 login has been tested with livejournal.com too (#1306)
  3359. * Make wording of commit search more clear (#1291)
  3360. * Add notice that LFS mirroring is not supported (#1251)
  3361. * Fix typos in models/ and modules/ (#1248)
  3362. * Refactor and fix incorrect comment (#1247)
  3363. * Fix migration comment (#1241)
  3364. * Update locale_en-US.ini (#1235)
  3365. * Add LibreJS support (#1201)
  3366. * rename OSX to macOS (#1176)
  3367. * add mssql to app.ini db config comment (#1172)
  3368. * Add MSSQL to issues template (#1171)
  3369. * MISC
  3370. * Add badge and link to the Matrix room (#2348)
  3371. * ignore coverage steps. (#2257)
  3372. * Use sqlite3 database as default for Docker image (#2182)
  3373. * update drone discord plugin to 0.0.4 version (#1992)
  3374. * fix typo (#1990)
  3375. * Move 3rd party js/css into `public/vendor` and document sources (#2383)
  3376. * Prevent conflicting TOTP accounts by adding AppURL to issuer parameter (#2335)
  3377. * Fix variable name typo (#2327)
  3378. * Make use of Vue more universal (#2318)
  3379. * Remove (almost) server side data rendering from repo-search component (#2317)
  3380. * Add OpenID configuration in install page (#2276)
  3381. * More tweaks to repo top panel (#2267)
  3382. * File path tweaks in UI (#2264)
  3383. * Make SHOW_USER_EMAIL also apply to profiles (#2258)
  3384. * EnableUnit() -> UnitEnabled() (#2242)
  3385. * Prevent selection of diff line numbers (#2240)
  3386. * Remove unused variable on makefile (#2225)
  3387. * No error log entries for repo 404 (#2200)
  3388. * Refactor vue delimeters to use es6 template delimeters (#2171)
  3389. * Replace tmp with TMPDIR. (#2152)
  3390. * Remove unused files (#2124)
  3391. * Improve org error handling (#2117)
  3392. * Absolute path for setting.CustomConf (#2085)
  3393. * remove deprecated code for Gogs compitable (#2041)
  3394. * Refactor session close as xorm already does everything needed internally (#2020)
  3395. * SQLite has a query timeout. Hopefully fixes most 'database locked' errors (#1961)
  3396. * Use monospace font in githook editor (#1958)
  3397. * Fix import order (#1951)
  3398. * Gracefully handle bare repositories on API operations. (#1932)
  3399. * Fix errors caused by force push (#1927)
  3400. * Display URLs in integration test logs (#1924)
  3401. * Set TMPDIR enviroment variable for dump command (#1915)
  3402. * Cache ctx.User in retrieveFeeds (#1902)
  3403. * Make `LocalCopyPath` a setting instead of a hard-coded path (#1881)
  3404. * Add check misspelling (#1877)
  3405. * Fix misspelled variables (#1874)
  3406. * Gofmt (#1868, #1710, #1662)
  3407. * Rename misnamed migration (#1867)
  3408. * Support CRLF when splitting code lines for display (#1862)
  3409. * Add convert less css file step. (#1861)
  3410. * Prevent accidential selection of line numbers in code view (#1860)
  3411. * Delete Public SSH Key tmp file after calculating fingerprint (#1855)
  3412. * Remove annoying difference in button heights. (#1853)
  3413. * Only run test coverage on master branch. (#1838)
  3414. * Error from mktemp command in MacOS. (#1837)
  3415. * Use writeTmpKeyFile in calcFingerprint (#1828)
  3416. * ROOT_URL setting use the default as shown in conf/app.ini (#1823)
  3417. * Rename RepoCreationNum -> MaxCreationLimit (#1766)
  3418. * Add button to admin ui (#1738)
  3419. * Correct spelling mistakes (#1703)
  3420. * Make openid support default false for compitable with v1.1 (#1650)
  3421. * Send mails as HTML as default. Setting for send as plain text. (#1648)
  3422. * fix potential lock when sqlite (#1647)
  3423. * Optimize png images via Google zopflipng [ci skip] (#1639)
  3424. * Upgrade alpine to v3.5 in Dockerfile (#1633)
  3425. * remove unused vendor packages (#1620)
  3426. * markup: microoptimise for many short filenames in directory (#1534)
  3427. * support health check via / and fix #969 (#1520)
  3428. * Remove env user salt since no need to use (#1515)
  3429. * Drop db operations from hook commands (#1514)
  3430. * Better URL validation (#1507)
  3431. * Migrate WatchInfo struct to api (#1492)
  3432. * refactor: show command help message. (#1486)
  3433. * refactor update ssh key use time (#1466)
  3434. * Set VERSION from git once, in a variable (#1447)
  3435. * Remove unused mutex field (#1440)
  3436. * Simplify settings pages with item list (#1389)
  3437. * Clean-up PostgreSQL Tests (#1361)
  3438. * refactor: remove workaround after the golang 1.7 release. (#1349)
  3439. * Delete the useless code (#1335)
  3440. * Run "make fmt" with go-1.6 (#1333)
  3441. * Refactor admin/auth/new.tmpl (#1277)
  3442. * Refactor repo/issue/view_content.tmpl (#1276)
  3443. * Cleaner ui for admin, repo settings, and user settings page (#1269) (#1270)
  3444. * Cleaner UI for explore page (#1253) (#1255)
  3445. * Synced licenses with github repo (#1246)
  3446. * Synced gitignores with github repo (#1245)
  3447. * Simplify RepositoryList.loadAttributes() (#1211)
  3448. * Move user_follow to separate file (#1210)
  3449. * Reduce conditionals in signin/signup inner forms (#1138)
  3450. ## [1.1.4](https://github.com/go-gitea/gitea/releases/tag/v1.1.4) - 2017-09-04
  3451. * BUGFIXES
  3452. * Fix rendering of external links (#2292) (#2315)
  3453. * Fix deleted milestone bug (#1942) (#2300)
  3454. * fix 500 error when view an issue which's milestone deleted (#2297) (#2299)
  3455. * Fix SHA1 hash linking (#2143) (#2293)
  3456. * back port from #1709 (#2291)
  3457. ## [1.1.3](https://github.com/go-gitea/gitea/releases/tag/v1.1.3) - 2017-08-03
  3458. * BUGFIXES
  3459. * Fix PR template error (#2008)
  3460. * Fix markdown rendering (fix #1530) (#2043)
  3461. * Fix missing less sources for oauth (backport #1288) (#2135)
  3462. * Don't ignore gravatar error (#2138)
  3463. * Fix diff of renamed and modified file (#2136)
  3464. * Fix fast-forward PR bug (#2137)
  3465. * Fix some security bugs
  3466. ## [1.1.2](https://github.com/go-gitea/gitea/releases/tag/v1.1.2) - 2017-06-13
  3467. * BUGFIXES
  3468. * Enforce netgo build tag while cross-compilation (Backport of #1690) (#1731)
  3469. * fix update avatar
  3470. * fix delete user failed on sqlite (#1321)
  3471. * fix bug not to trim space of login username (#1806)
  3472. * Backport bugfixes #1220 and #1393 to v1.1 (#1758)
  3473. ## [1.1.1](https://github.com/go-gitea/gitea/releases/tag/v1.1.1) - 2017-05-04
  3474. * BUGFIXES
  3475. * Markdown Sanitation Fix [#1646](https://github.com/go-gitea/gitea/pull/1646)
  3476. * Fix broken hooks [#1376](https://github.com/go-gitea/gitea/pull/1376)
  3477. * Fix migration issue [#1375](https://github.com/go-gitea/gitea/pull/1375)
  3478. * Fix Wiki Issues [#1338](https://github.com/go-gitea/gitea/pull/1338)
  3479. * Forgotten migration for wiki githooks [#1237](https://github.com/go-gitea/gitea/pull/1237)
  3480. * Commit messages can contain pipes [#1218](https://github.com/go-gitea/gitea/pull/1218)
  3481. * Verify external tracker URLs [#1236](https://github.com/go-gitea/gitea/pull/1236)
  3482. * Allow upgrade after downgrade [#1197](https://github.com/go-gitea/gitea/pull/1197)
  3483. * 500 on delete repo with issue [#1195](https://github.com/go-gitea/gitea/pull/1195)
  3484. * INI compat with CrowdIn [#1192](https://github.com/go-gitea/gitea/pull/1192)
  3485. ## [1.1.0](https://github.com/go-gitea/gitea/releases/tag/v1.1.0) - 2017-03-09
  3486. * BREAKING
  3487. * The SSH keys can potentially break, make sure to regenerate the authorized keys
  3488. * FEATURES
  3489. * Git LFSv2 support [#122](https://github.com/go-gitea/gitea/pull/122)
  3490. * API endpoints for repo watching [#191](https://github.com/go-gitea/gitea/pull/191)
  3491. * Search within private repos [#222](https://github.com/go-gitea/gitea/pull/222)
  3492. * Hide user email address on explore page [#336](https://github.com/go-gitea/gitea/pull/336)
  3493. * Protected branch system [#339](https://github.com/go-gitea/gitea/pull/339)
  3494. * Sendmail for mail delivery [#355](https://github.com/go-gitea/gitea/pull/355)
  3495. * API endpoints for org webhooks [#372](https://github.com/go-gitea/gitea/pull/372)
  3496. * Enabled MSSQL support [#383](https://github.com/go-gitea/gitea/pull/383)
  3497. * API endpoints for org teams [#370](https://github.com/go-gitea/gitea/pull/370)
  3498. * API endpoints for collaborators [#375](https://github.com/go-gitea/gitea/pull/375)
  3499. * Graceful server restart [#416](https://github.com/go-gitea/gitea/pull/416)
  3500. * Commitgraph / timeline on commits page [#428](https://github.com/go-gitea/gitea/pull/428)
  3501. * API endpoints for repo forks [#509](https://github.com/go-gitea/gitea/pull/509)
  3502. * API endpoints for releases [#510](https://github.com/go-gitea/gitea/pull/510)
  3503. * Folder jumping [#511](https://github.com/go-gitea/gitea/pull/511)
  3504. * Stars tab on profile page [#519](https://github.com/go-gitea/gitea/pull/519)
  3505. * Notification system [#523](https://github.com/go-gitea/gitea/pull/523)
  3506. * Push and pull through reverse proxy basic auth [#524](https://github.com/go-gitea/gitea/pull/524)
  3507. * Search for issues and pull requests [#530](https://github.com/go-gitea/gitea/pull/530)
  3508. * API endpoint for stargazers [#597](https://github.com/go-gitea/gitea/pull/597)
  3509. * API endpoints for subscribers [#598](https://github.com/go-gitea/gitea/pull/598)
  3510. * PID file support [#610](https://github.com/go-gitea/gitea/pull/610)
  3511. * Two factor authentication (2FA) [#630](https://github.com/go-gitea/gitea/pull/630)
  3512. * API endpoints for org users [#645](https://github.com/go-gitea/gitea/pull/645)
  3513. * Release attachments [#673](https://github.com/go-gitea/gitea/pull/673)
  3514. * OAuth2 consumer [#679](https://github.com/go-gitea/gitea/pull/679)
  3515. * Add ability to fork your own repos [#761](https://github.com/go-gitea/gitea/pull/761)
  3516. * Search repository on dashboard [#773](https://github.com/go-gitea/gitea/pull/773)
  3517. * Search bar on user profile [#787](https://github.com/go-gitea/gitea/pull/787)
  3518. * Track label changes on issue view [#788](https://github.com/go-gitea/gitea/pull/788)
  3519. * Allow using custom time format [#798](https://github.com/go-gitea/gitea/pull/798)
  3520. * Redirects for renamed repos [#807](https://github.com/go-gitea/gitea/pull/807)
  3521. * Track assignee changes on issue view [#808](https://github.com/go-gitea/gitea/pull/808)
  3522. * Track title changes on issue view [#841](https://github.com/go-gitea/gitea/pull/841)
  3523. * Archive cleanup action [#885](https://github.com/go-gitea/gitea/pull/885)
  3524. * Basic Open Graph support [#901](https://github.com/go-gitea/gitea/pull/901)
  3525. * Take back control of Git hooks [#1006](https://github.com/go-gitea/gitea/pull/1006)
  3526. * API endpoints for user repos [#1059](https://github.com/go-gitea/gitea/pull/1059)
  3527. * BUGFIXES
  3528. * Fixed counting issues for issue filters [#413](https://github.com/go-gitea/gitea/pull/413)
  3529. * Added back default settings for SSH [#500](https://github.com/go-gitea/gitea/pull/500)
  3530. * Fixed repo permissions [#513](https://github.com/go-gitea/gitea/pull/513)
  3531. * Issues cannot be created with labels [#622](https://github.com/go-gitea/gitea/pull/622)
  3532. * Add a reserved wiki paths check to the wiki [#720](https://github.com/go-gitea/gitea/pull/720)
  3533. * Update website binding MaxSize to 255 [#722](https://github.com/go-gitea/gitea/pull/722)
  3534. * User can see the private activity on public history [#818](https://github.com/go-gitea/gitea/pull/818)
  3535. * Wrong pages number which includes private repositories [#844](https://github.com/go-gitea/gitea/pull/844)
  3536. * Trim whitespaces for search keyword [#893](https://github.com/go-gitea/gitea/pull/893)
  3537. * Don't rewrite non-gitea public keys [#906](https://github.com/go-gitea/gitea/pull/906)
  3538. * Use fingerprint to check instead content for public key [#911](https://github.com/go-gitea/gitea/pull/911)
  3539. * Fix random avatars [#1147](https://github.com/go-gitea/gitea/pull/1147)
  3540. * ENHANCEMENTS
  3541. * Refactored process manager [#75](https://github.com/go-gitea/gitea/pull/75)
  3542. * Restrict rights to create new orgs [#193](https://github.com/go-gitea/gitea/pull/193)
  3543. * Added label and milestone sorting [#199](https://github.com/go-gitea/gitea/pull/199)
  3544. * Make minimum password length configurable [#223](https://github.com/go-gitea/gitea/pull/223)
  3545. * Speedup conflict checking on pull requests [#276](https://github.com/go-gitea/gitea/pull/276)
  3546. * Added button to delete merged pull request branches [#441](https://github.com/go-gitea/gitea/pull/441)
  3547. * Improved issue references within markdown [#471](https://github.com/go-gitea/gitea/pull/471)
  3548. * Dutch translation for the landingpage [#487](https://github.com/go-gitea/gitea/pull/487)
  3549. * Added Gogs migration script [#532](https://github.com/go-gitea/gitea/pull/532)
  3550. * Support a .gitea folder for issue templates [#582](https://github.com/go-gitea/gitea/pull/582)
  3551. * Enhanced diff-view coloring [#584](https://github.com/go-gitea/gitea/pull/584)
  3552. * Added ETag header to avatars [#721](https://github.com/go-gitea/gitea/pull/721)
  3553. * Added option to config to disable local path imports [#724](https://github.com/go-gitea/gitea/pull/724)
  3554. * Allow custom public files [#782](https://github.com/go-gitea/gitea/pull/782)
  3555. * Added pprof endpoint for debugging [#801](https://github.com/go-gitea/gitea/pull/801)
  3556. * Added `X-GitHub-*` headers [#809](https://github.com/go-gitea/gitea/pull/809)
  3557. * Fill SSH key title automatically [#863](https://github.com/go-gitea/gitea/pull/863)
  3558. * Display Git version on admin panel [#921](https://github.com/go-gitea/gitea/pull/921)
  3559. * Expose URL field on issue API [#982](https://github.com/go-gitea/gitea/pull/982)
  3560. * Statically compile the binaries [#985](https://github.com/go-gitea/gitea/pull/985)
  3561. * Embed build tags into version string [#1051](https://github.com/go-gitea/gitea/pull/1051)
  3562. * Gitignore support for FSharp and Clojure [#1072](https://github.com/go-gitea/gitea/pull/1072)
  3563. * Custom templates for static builds [#1087](https://github.com/go-gitea/gitea/pull/1087)
  3564. * Add ProxyFromEnvironment if none set [#1096](https://github.com/go-gitea/gitea/pull/1096)
  3565. * MISC
  3566. * Replaced remaining Gogs references
  3567. * Added more tests on various packages
  3568. * Use Crowdin for translations again
  3569. * Resolved some XSS attack vectors
  3570. * Optimized and reduced number of database queries
  3571. ## [1.0.2](https://github.com/go-gitea/gitea/releases/tag/v1.0.2) - 2017-02-21
  3572. * BUGFIXES
  3573. * Fixed issue counter [#882](https://github.com/go-gitea/gitea/pull/882)
  3574. * Fixed XSS vulnerability on wiki page [#955](https://github.com/go-gitea/gitea/pull/955)
  3575. * Add data dir without session to dump [#587](https://github.com/go-gitea/gitea/pull/587)
  3576. * Fixed wiki page renaming [#958](https://github.com/go-gitea/gitea/pull/958)
  3577. * Drop default console logger if not required [#960](https://github.com/go-gitea/gitea/pull/960)
  3578. * Fixed docker docs link on install page [#972](https://github.com/go-gitea/gitea/pull/972)
  3579. * Handle SetModel errors [#957](https://github.com/go-gitea/gitea/pull/957)
  3580. * Fixed XSS vulnerability on milestones [#977](https://github.com/go-gitea/gitea/pull/977)
  3581. * Fixed XSS vulnerability on alerts [#981](https://github.com/go-gitea/gitea/pull/981)
  3582. ## [1.0.1](https://github.com/go-gitea/gitea/releases/tag/v1.0.1) - 2017-01-05
  3583. * BUGFIXES
  3584. * Fixed localized `MIN_PASSWORD_LENGTH` [#501](https://github.com/go-gitea/gitea/pull/501)
  3585. * Fixed 500 error on organization delete [#507](https://github.com/go-gitea/gitea/pull/507)
  3586. * Ignore empty wiki repo on migrate [#544](https://github.com/go-gitea/gitea/pull/544)
  3587. * Proper check access for forking [#563](https://github.com/go-gitea/gitea/pull/563)
  3588. * Fix SSH domain on installer [#506](https://github.com/go-gitea/gitea/pull/506)
  3589. * Fix missing data rows on admin UI [#580](https://github.com/go-gitea/gitea/pull/580)
  3590. * Do not delete tags with releases by default [#579](https://github.com/go-gitea/gitea/pull/579)
  3591. * Fix missing session config data on admin UI [#578](https://github.com/go-gitea/gitea/pull/578)
  3592. * Properly show the version within footer on the UI [#593](https://github.com/go-gitea/gitea/pull/593)
  3593. ## [1.0.0](https://github.com/go-gitea/gitea/releases/tag/v1.0.0) - 2016-12-23
  3594. * BREAKING
  3595. * We have various changes on the API, scripting against API must be updated
  3596. * FEATURES
  3597. * Show last login for admins [#121](https://github.com/go-gitea/gitea/pull/121)
  3598. * BUGFIXES
  3599. * Fixed sender of notifications [#2](https://github.com/go-gitea/gitea/pull/2)
  3600. * Fixed keyword hijacking vulnerability [#20](https://github.com/go-gitea/gitea/pull/20)
  3601. * Fixed non-markdown readme rendering [#95](https://github.com/go-gitea/gitea/pull/95)
  3602. * Allow updating draft releases [#169](https://github.com/go-gitea/gitea/pull/169)
  3603. * GitHub API compliance [#227](https://github.com/go-gitea/gitea/pull/227)
  3604. * Added commit SHA to tag webhook [#286](https://github.com/go-gitea/gitea/issues/286)
  3605. * Secured links via noopener [#315](https://github.com/go-gitea/gitea/issues/315)
  3606. * Replace tabs with spaces on wiki title [#371](https://github.com/go-gitea/gitea/pull/371)
  3607. * Fixed vulnerability on labels and releases [#409](https://github.com/go-gitea/gitea/pull/409)
  3608. * Fixed issue comment API [#449](https://github.com/go-gitea/gitea/pull/449)
  3609. * ENHANCEMENTS
  3610. * Use proper import path for libravatar [#3](https://github.com/go-gitea/gitea/pull/3)
  3611. * Integrated DroneCI for tests and builds [#24](https://github.com/go-gitea/gitea/issues/24)
  3612. * Integrated dependency manager [#29](https://github.com/go-gitea/gitea/issues/29)
  3613. * Embedded bindata optionally [#30](https://github.com/go-gitea/gitea/issues/30)
  3614. * Integrated pagination for releases [#73](https://github.com/go-gitea/gitea/pull/73)
  3615. * Autogenerate version on every build [#91](https://github.com/go-gitea/gitea/issues/91)
  3616. * Refactored Docker container [#104](https://github.com/go-gitea/gitea/issues/104)
  3617. * Added short-hash support for downloads [#211](https://github.com/go-gitea/gitea/issues/211)
  3618. * Display tooltip for downloads [#221](https://github.com/go-gitea/gitea/issues/221)
  3619. * Improved HTTP headers for issue attachments [#270](https://github.com/go-gitea/gitea/pull/270)
  3620. * Integrate public as bindata optionally [#293](https://github.com/go-gitea/gitea/pull/293)
  3621. * Integrate templates as bindata optionally [#314](https://github.com/go-gitea/gitea/pull/314)
  3622. * Inject more ENV variables into custom hooks [#316](https://github.com/go-gitea/gitea/issues/316)
  3623. * Correct LDAP login validation [#342](https://github.com/go-gitea/gitea/pull/342)
  3624. * Integrate conf as bindata optionally [#354](https://github.com/go-gitea/gitea/pull/354)
  3625. * Serve video files in browser [#418](https://github.com/go-gitea/gitea/pull/418)
  3626. * Configurable SSH host binding [#431](https://github.com/go-gitea/gitea/issues/431)
  3627. * MISC
  3628. * Forked from Gogs and renamed to Gitea
  3629. * Catching more errors with logs
  3630. * Fixed all linting errors
  3631. * Made the go linter entirely happy
  3632. * Really integrated vendoring